:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-alt: #e9eef3;
    --ink: #112033;
    --ink-soft: #425062;
    --line: #d5dde5;
    --brand: #0b63ce;
    --brand-strong: #094b9d;
    --brand-soft: #e7f0ff;
    --navy: #081524;
    --navy-soft: #10243d;
    --teal: #1ea0b8;
    --shadow-sm: 0 8px 20px rgba(7, 23, 41, 0.06);
    --shadow-md: 0 18px 40px rgba(7, 23, 41, 0.08);
    --shadow-lg: 0 28px 60px rgba(7, 23, 41, 0.12);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --transition: 220ms ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

main {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--ink);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 780px;
}

.section {
    padding: 96px 0;
}

.section.soft {
    background: var(--surface);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.75;
}

.eyebrow.on-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #d3e9ff;
}

.lede {
    max-width: 62ch;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
}

.section-heading .lede {
    max-width: 60ch;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.2rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
    font-size: 1.35rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(11, 99, 206, 0.22);
}

.btn-primary:hover {
    background: var(--brand-strong);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-light {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
}

.btn-light:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand);
    font-weight: 700;
}

.link-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform var(--transition);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.home-page .nav {
    background: transparent;
}

.nav.scrolled,
.interior-page .nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(17, 32, 51, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 26px rgba(10, 22, 38, 0.05);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.home-page .nav:not(.scrolled) .brand {
    color: #ffffff;
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(8, 21, 36, 0.2);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.brand-copy small {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.72;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-dropdown {
    position: relative;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    color: rgba(17, 32, 51, 0.72);
    font-size: 0.96rem;
    font-weight: 600;
}

.home-page .nav:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.76);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity var(--transition), transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--ink);
}

.home-page .nav:not(.scrolled) .nav-links a:hover,
.home-page .nav:not(.scrolled) .nav-links a[aria-current="page"] {
    color: #ffffff;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    z-index: 1001;
    min-width: 292px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(17, 32, 51, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(10, 22, 38, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
    background: var(--brand-soft);
    color: var(--brand);
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 46px;
    min-width: max-content;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #ffffff !important;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(11, 99, 206, 0.2);
}

.home-page .nav:not(.scrolled) .nav-contact {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.nav-contact::after {
    display: none;
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.home-page .nav:not(.scrolled) .mobile-toggle {
    color: #ffffff;
}

.nav.scrolled .mobile-toggle,
.interior-page .mobile-toggle {
    color: var(--ink);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(17, 32, 51, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--ink-soft);
    font-weight: 600;
}

.mobile-nav a[aria-current="page"],
.mobile-nav a:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.mobile-subnav {
    display: grid;
    gap: 6px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 32, 51, 0.08);
}

.mobile-subnav span {
    padding: 0 14px 4px;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mobile-subnav a {
    margin-left: 12px;
    font-size: 0.92rem;
}

.hero-home {
    position: relative;
    min-height: 100svh;
    padding: 156px 0 112px;
    background:
        linear-gradient(90deg, rgba(6, 15, 25, 0.9) 0%, rgba(6, 15, 25, 0.7) 43%, rgba(6, 15, 25, 0.84) 100%),
        url('../images/server-room-hero.jpg') center center / cover no-repeat;
    color: #ffffff;
}

.hero-home::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(8, 21, 36, 0) 0%, rgba(8, 21, 36, 0.34) 45%, var(--bg) 100%);
}

.hero-home .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 1fr;
    align-items: end;
}

.hero-panel {
    max-width: 720px;
    padding: 38px 40px 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(7, 18, 30, 0.58);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}

.hero-panel h1 {
    color: #ffffff;
    max-width: 10.8ch;
    margin-bottom: 18px;
}

.hero-panel p {
    max-width: 58ch;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-summary {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.summary-card {
    display: block;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.summary-label {
    display: block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.summary-card h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.summary-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-hero {
    position: relative;
    padding: 152px 0 78px;
    color: #ffffff;
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
}

.page-hero::before {
    background-position: center center;
    background-size: cover;
}

.page-hero::after {
    background: linear-gradient(120deg, rgba(7, 18, 30, 0.88) 0%, rgba(9, 26, 46, 0.72) 48%, rgba(7, 18, 30, 0.88) 100%);
}

.page-hero-about::before {
    background-image: url('../images/hero-data-centre.jpg');
}

.page-hero-what::before {
    background-image: url('../images/server-support.jpg');
}

.page-hero-solutions::before {
    background-image: url('../images/smart-city.jpg');
}

.page-hero-contact::before {
    background-image: url('../images/server-racks-front.jpg');
}

.page-hero-services::before {
    background-image: url('../images/server-room-hero.jpg');
}

.page-hero-data-centre::before {
    background-image: url('../images/hero-data-centre.jpg');
}

.page-hero-ai::before {
    background-image: url('../images/server-racks-front.jpg');
}

.page-hero-smartcity::before {
    background-image: url('../images/smart-city.jpg');
}

.page-hero-industries::before {
    background-image: url('../images/smart-city.jpg');
}

.page-hero-projects::before {
    background-image: url('../images/server-room-hero.jpg');
}

.page-hero-capabilities::before {
    background-image: url('../images/server-support.jpg');
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.breadcrumbs span {
    opacity: 0.65;
}

.page-hero h1 {
    max-width: 10ch;
    color: #ffffff;
    margin-bottom: 18px;
}

.page-hero p {
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.8;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 48px;
    align-items: center;
}

.split-copy {
    min-width: 0;
}

.split-media {
    min-height: 440px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: var(--shadow-lg);
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.bullet-list {
    display: grid;
    gap: 16px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.bullet-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: start;
}

.bullet-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
}

.bullet-list strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.bullet-list p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.72;
}

.info-card,
.route-card,
.solution-card,
.contact-card,
.process-step,
.faq-item,
.stack-panel,
.note-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover,
.route-card:hover,
.solution-card:hover,
.contact-card:hover,
.process-step:hover,
.stack-panel:hover,
.note-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 206, 0.2);
    box-shadow: var(--shadow-md);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--brand-soft) 0%, #f7fbff 100%);
    border: 1px solid #cfe0ff;
}

.icon-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand);
    stroke-width: 1.8;
    fill: none;
}

.info-card h3,
.route-card h3,
.solution-card h3,
.contact-card h3,
.process-step h3,
.stack-panel h3,
.note-card h3 {
    margin-bottom: 10px;
}

.info-card p,
.route-card p,
.solution-card p,
.contact-card p,
.process-step p,
.stack-panel p,
.note-card p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.route-card {
    display: block;
}

.route-kicker,
.solution-index,
.process-index,
.note-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand);
    font-family: 'Manrope', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.solution-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.note-card {
    padding: 22px;
}

.process-step {
    position: relative;
}

.process-index {
    color: var(--teal);
}

.stack-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.accent-band {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.accent-band h2,
.accent-band h3 {
    color: #ffffff;
}

.accent-band p,
.accent-band li {
    color: rgba(255, 255, 255, 0.78);
}

.accent-band .btn-light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.accent-band .btn-light:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.contact-card + .contact-card {
    margin-top: 16px;
}

.contact-card a {
    color: var(--brand);
    font-weight: 700;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 12px;
}

.contact-list div {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.contact-list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.form-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field label {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--ink);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
    min-height: 180px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(11, 99, 206, 0.6);
    box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.12);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    padding: 0 24px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 0 22px;
    color: var(--ink-soft);
    line-height: 1.76;
}

.cta-panel {
    padding: 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-panel p {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.78;
}

.cta-panel .btn-row {
    margin-top: 24px;
}

.hero-aside {
    display: grid;
    gap: 16px;
    align-self: stretch;
    max-width: 360px;
    margin-left: auto;
}

.hero-aside-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 18, 30, 0.52);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.hero-aside-card h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.12rem;
}

.hero-aside-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
}

.hero-side-list {
    display: grid;
    gap: 14px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.hero-side-list li {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-side-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.hero-side-list span {
    display: block;
    margin-bottom: 4px;
    color: #d3e9ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-side-list strong {
    display: block;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.hero-side-list p {
    margin-top: 4px;
}

.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.fact-tile {
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow-md);
}

.fact-tile span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fact-tile strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.06rem;
    line-height: 1.35;
}

.fact-tile p {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.68;
}

.profile-layout,
.rail-layout,
.dual-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 28px;
    align-items: start;
}

.profile-sheet,
.matrix-card,
.checklist-card,
.path-item,
.rail-item,
.meta-block,
.fact-sheet-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.profile-sheet,
.checklist-card,
.matrix-card,
.fact-sheet-card {
    padding: 30px;
}

.profile-sheet h3,
.checklist-card h3,
.matrix-card h3,
.fact-sheet-card h3 {
    margin-bottom: 12px;
}

.profile-sheet p,
.checklist-card p,
.matrix-card p,
.fact-sheet-card p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.profile-sheet dl {
    margin: 22px 0 0;
}

.profile-sheet div {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.profile-sheet div:first-child {
    padding-top: 0;
    border-top: 0;
}

.profile-sheet dt {
    color: var(--ink-soft);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile-sheet dd {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.68;
}

.rail-list {
    display: grid;
    gap: 16px;
}

.rail-item {
    position: relative;
    padding: 24px 24px 24px 82px;
}

.rail-item::before {
    content: attr(data-step);
    position: absolute;
    top: 24px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
}

.rail-item h3 {
    margin-bottom: 8px;
}

.rail-item p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.path-stack {
    display: grid;
    gap: 16px;
}

.path-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 24px;
}

.path-index {
    color: var(--brand);
    font-family: 'Manrope', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.path-item h3 {
    margin-bottom: 6px;
}

.path-item p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.service-ledger {
    display: grid;
    gap: 18px;
}

.service-row {
    display: grid;
    grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
    gap: 24px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.service-row-head span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-row-head h3 {
    margin-bottom: 10px;
}

.service-row-head p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.service-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.meta-block {
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.meta-block h4 {
    margin-bottom: 8px;
    font-size: 0.92rem;
    letter-spacing: normal;
}

.meta-block p,
.meta-block li {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.68;
}

.meta-block ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.matrix-card {
    overflow: hidden;
}

.matrix-card > p {
    margin-top: 10px;
}

.matrix-scroll {
    margin-top: 20px;
    overflow-x: auto;
}

.matrix-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
    padding: 16px 18px;
    border-top: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.matrix-table th {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.matrix-table td {
    color: var(--ink-soft);
    line-height: 1.68;
}

.matrix-table td strong {
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
}

.ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.ribbon-step {
    padding: 26px 24px;
    border-right: 1px solid var(--line);
}

.ribbon-step:last-child {
    border-right: 0;
}

.ribbon-step:nth-child(odd) {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.ribbon-step span {
    display: block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ribbon-step h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.ribbon-step p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.sector-layout {
    display: grid;
    gap: 18px;
}

.sector-entry {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 22px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.sector-number {
    color: var(--brand);
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sector-body h3 {
    margin-bottom: 10px;
}

.sector-body p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.sector-support {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.sector-support h4 {
    margin-bottom: 10px;
    font-size: 0.94rem;
}

.sector-support ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.sector-support li {
    color: var(--ink-soft);
    line-height: 1.68;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.channel-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.channel-card h3 {
    margin-bottom: 8px;
}

.channel-card p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.channel-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checklist-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.checklist {
    display: grid;
    gap: 16px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.checklist strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
}

.checklist span {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.checklist p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.site-footer {
    padding: 72px 0 36px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand .brand {
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-brand p {
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.74;
}

.footer-address {
    margin-top: 18px;
    font-size: 0.97rem;
    line-height: 1.8;
}

.footer-address a {
    color: #ffffff;
    font-weight: 700;
}

.footer-col h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.26);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.whatsapp-float span {
    font-weight: 700;
    white-space: nowrap;
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 100ms; }
.fade-in-delay-2 { transition-delay: 200ms; }
.fade-in-delay-3 { transition-delay: 300ms; }
.fade-in-delay-4 { transition-delay: 400ms; }

.premium-home {
    background: #ffffff;
}

.premium-home .nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 32, 51, 0.07);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(7, 23, 41, 0.035);
}

.premium-home .nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(7, 23, 41, 0.05);
}

.premium-home .nav-contact {
    background: var(--ink);
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(17, 32, 51, 0.14);
}

.premium-home .nav-contact:hover {
    background: var(--brand);
}

.premium-home .btn {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 14px;
}

.premium-home .btn-primary {
    box-shadow: 0 14px 28px rgba(11, 99, 206, 0.14);
}

.premium-home .btn-light {
    background: #ffffff;
    border-color: rgba(17, 32, 51, 0.1);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }

.home-section {
    position: relative;
}

.section-surface {
    background: #f7f8fa;
}

.premium-hero {
    position: relative;
    padding: 102px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(11, 99, 206, 0.1) 0%, rgba(11, 99, 206, 0) 36%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    overflow: hidden;
}

.premium-hero::before,
.premium-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.premium-hero::before {
    inset: 0 auto auto 0;
    width: 52%;
    height: 320px;
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.08) 0%, rgba(11, 99, 206, 0.02) 38%, rgba(11, 99, 206, 0) 76%);
}

.premium-hero::after {
    top: 72px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 21, 36, 0.08) 0%, rgba(8, 21, 36, 0) 72%);
}

.premium-hero .container {
    position: relative;
    z-index: 2;
}

.hero-lede {
    max-width: 60ch;
    color: var(--ink-soft);
    font-size: 0.99rem;
    line-height: 1.68;
}

.hero-actions-row {
    margin-top: 20px;
}

.hero-command-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.94fr);
    gap: 22px;
    align-items: center;
    min-height: calc(100svh - 126px);
}

.hero-command-copy {
    position: relative;
    padding: 0;
}

.hero-command-kicker {
    margin: 0 0 14px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-command-copy h1 {
    max-width: 12.2ch;
    margin-bottom: 14px;
    font-size: clamp(2.35rem, 3.8vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-command-copy .hero-lede {
    max-width: 58ch;
}

.hero-signal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-signal-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(17, 32, 51, 0.09);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 16px rgba(8, 21, 36, 0.035);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-command-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.hero-command-meta article,
.hero-grid-card,
.hero-grid-summary {
    border: 1px solid rgba(17, 32, 51, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(8, 21, 36, 0.045);
}

.hero-command-meta article {
    padding: 14px 16px;
}

.hero-command-meta span,
.hero-card-label,
.service-kicker,
.case-kicker,
.trust-card span,
.innovation-kicker,
.logo-wordmark span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-command-meta strong {
    display: block;
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero-command-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 12px;
    align-items: stretch;
    padding: 12px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
    box-shadow: 0 14px 28px rgba(8, 21, 36, 0.05);
}

.hero-lead-visual {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #d6e1ec;
    box-shadow: 0 18px 38px rgba(8, 21, 36, 0.12);
}

.hero-lead-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-lead-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 36, 0.04) 0%, rgba(8, 21, 36, 0.12) 32%, rgba(8, 21, 36, 0.58) 100%);
}

.hero-lead-visual figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.38;
}

.hero-visual-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-stage-rail {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-stage-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 18px 18px 16px;
    border: 1px solid rgba(17, 32, 51, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(8, 21, 36, 0.045);
}

.hero-stage-panel strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.44;
}

.hero-stage-panel p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.62;
}

.hero-stage-panel-dark {
    background: linear-gradient(135deg, #091626 0%, #132841 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(8, 21, 36, 0.14);
}

.hero-stage-panel-dark .hero-card-label {
    color: #d3e9ff;
}

.hero-stage-panel-dark strong,
.hero-stage-panel-dark p {
    color: #ffffff;
}

.hero-stage-panel-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(150px, 0.62fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 430px;
}

.hero-grid-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #d6e1ec;
}

.hero-grid-primary {
    grid-row: 1 / span 2;
    min-height: 430px;
    box-shadow: 0 18px 38px rgba(8, 21, 36, 0.12);
}

.hero-grid-secondary,
.hero-grid-tertiary {
    min-height: 164px;
}

.hero-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-grid-secondary img,
.hero-grid-tertiary img {
    filter: saturate(0.9) brightness(0.9);
}

.hero-grid-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 36, 0.02) 0%, rgba(8, 21, 36, 0.42) 100%);
}

.hero-grid-primary::after {
    background: linear-gradient(180deg, rgba(8, 21, 36, 0.04) 0%, rgba(8, 21, 36, 0.12) 32%, rgba(8, 21, 36, 0.56) 100%);
}

.hero-grid-secondary::after,
.hero-grid-tertiary::after {
    background: linear-gradient(180deg, rgba(8, 21, 36, 0.08) 0%, rgba(8, 21, 36, 0.58) 100%);
}

.hero-grid-card figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.34;
}

.hero-grid-primary figcaption {
    left: 20px;
    right: 20px;
    bottom: 18px;
    max-width: 18ch;
    font-size: 1rem;
    line-height: 1.38;
}

.hero-grid-secondary figcaption,
.hero-grid-tertiary figcaption {
    font-size: 0.74rem;
    line-height: 1.26;
}

.home-section-grid {
    align-items: start;
}

.home-heading-sticky {
    position: sticky;
    top: 118px;
}

.home-section-head {
    max-width: 820px;
    margin-bottom: 42px;
}

.home-section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.credibility-panel,
.stack-system-card,
.capability-side-panel,
.premium-cta,
.service-prime-card,
.case-study-card,
.trust-card,
.logo-wordmark,
.hero-identity-panel,
.hero-photo-card,
.overview-card,
.experience-card,
.service-detail-card,
.service-detail-panel,
.client-card {
    border: 1px solid rgba(17, 32, 51, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(8, 21, 36, 0.045);
}

.credibility-panel {
    padding: 36px;
}

.credibility-intro {
    max-width: 58ch;
    color: var(--ink);
    font-size: 1.03rem;
    line-height: 1.74;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.credibility-card {
    padding: 24px;
    border: 1px solid rgba(17, 32, 51, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.credibility-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.credibility-card h3 {
    margin-bottom: 8px;
    font-size: 1.14rem;
}

.credibility-card p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.overview-card {
    padding: 24px;
}

.overview-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.overview-card h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.overview-card p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.overview-note {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 32, 51, 0.08);
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.76;
}

.overview-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(220px, 0.72fr);
    gap: 16px;
    margin-top: 24px;
}

.section-photo-card {
    position: relative;
    margin: 0;
    min-height: 280px;
    overflow: hidden;
    border-radius: 24px;
    background: #d6e1ec;
    box-shadow: 0 14px 32px rgba(8, 21, 36, 0.06);
}

.section-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 36, 0.04) 0%, rgba(8, 21, 36, 0.18) 40%, rgba(8, 21, 36, 0.58) 100%);
}

.section-photo-card figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.42;
}

.section-photo-card-wide {
    min-height: 300px;
}

.section-photo-card-tall {
    min-height: 300px;
}

.section-photo-card:hover img {
    transform: scale(1.04);
}

.section-banner-visual {
    position: relative;
    min-height: 340px;
    margin: 28px 0 0;
    overflow: hidden;
    border-radius: 28px;
    background: #d6e1ec;
    box-shadow: 0 18px 40px rgba(8, 21, 36, 0.07);
}

.section-banner-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-banner-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 21, 36, 0.24) 0%, rgba(8, 21, 36, 0.16) 32%, rgba(8, 21, 36, 0.62) 100%);
}

.section-banner-copy {
    position: absolute;
    left: 24px;
    width: min(440px, calc(100% - 48px));
    bottom: 24px;
    z-index: 1;
    max-width: calc(100% - 48px);
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(8, 18, 31, 0.46);
    backdrop-filter: blur(10px);
}

.section-banner-copy h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(1.28rem, 2vw, 1.82rem);
    line-height: 1.14;
}

.section-banner-copy p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
    line-height: 1.62;
}

.capability-photo {
    min-height: 240px;
    margin-bottom: 22px;
}

.capability-photo figcaption {
    max-width: 24ch;
}

.service-prime-card,
.case-study-card {
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-prime-card:hover,
.case-study-card:hover,
.trust-card:hover,
.logo-wordmark:hover,
.hero-photo-card:hover,
.overview-card:hover,
.experience-card:hover,
.service-detail-card:hover,
.client-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 206, 0.18);
    box-shadow: 0 18px 38px rgba(8, 21, 36, 0.08);
}

.hero-photo-card:hover img {
    transform: scale(1.04);
}

.service-detail-stack {
    display: grid;
    gap: 18px;
}

.service-detail-card {
    padding: 28px 30px;
}

.service-detail-top {
    max-width: 62ch;
}

.service-detail-top h3 {
    margin-bottom: 10px;
}

.service-detail-top p {
    color: var(--ink-soft);
    line-height: 1.76;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.service-detail-panel {
    padding: 20px 22px;
    box-shadow: none;
}

.service-detail-panel h4 {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-detail-panel p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.service-detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.service-detail-list li {
    color: var(--ink-soft);
    line-height: 1.68;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.experience-card {
    padding: 28px;
}

.experience-card span,
.client-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.experience-card h3,
.client-card h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
}

.experience-card p,
.client-card p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.experience-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.experience-list li {
    color: var(--ink-soft);
    line-height: 1.68;
}

.service-prime-card {
    padding: 36px;
}

.service-prime-card h3 {
    margin-bottom: 10px;
}

.service-prime-card p {
    color: var(--ink-soft);
    line-height: 1.76;
}

.service-points {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.service-points li {
    padding-top: 12px;
    border-top: 1px solid rgba(17, 32, 51, 0.08);
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.6;
}

.case-study-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ebf1f6;
}

.case-study-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover .case-study-media img {
    transform: scale(1.04);
}

.case-study-body {
    padding: 28px;
}

.case-study-body h3 {
    margin-bottom: 8px;
}

.case-study-body p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.case-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: #f2f6fb;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.trust-card {
    padding: 28px;
}

.trust-card h3 {
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.stack-layout {
    align-items: stretch;
}

.stack-system-card {
    padding: 38px;
}

.stack-system-card h2 {
    max-width: 14ch;
    margin-top: 2px;
}

.stack-layers {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.stack-layer {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(17, 32, 51, 0.08);
}

.stack-layer:first-child {
    padding-top: 0;
    border-top: 0;
}

.stack-layer strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.stack-layer p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.capability-table {
    display: grid;
    gap: 0;
    margin-top: 24px;
}

.capability-row {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(17, 32, 51, 0.08);
}

.capability-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.capability-row strong {
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
}

.capability-row p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.capability-side-panel {
    height: 100%;
    padding: 30px;
}

.capability-side-panel h3 {
    margin-bottom: 12px;
}

.capability-side-panel p {
    color: var(--ink-soft);
    line-height: 1.76;
}

.innovation-list {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.innovation-list li {
    padding-top: 14px;
    border-top: 1px solid rgba(17, 32, 51, 0.08);
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.55;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.client-card {
    padding: 28px;
}

.final-cta-section {
    padding-top: 18px;
}

.premium-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    align-items: center;
    gap: 28px;
    padding: 38px 42px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(8, 21, 36, 0.05);
}

.premium-cta h2 {
    max-width: 13ch;
    margin-bottom: 14px;
    color: var(--ink);
}

.premium-cta p {
    max-width: 62ch;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.home-footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
}

.premium-home .site-footer {
    background: #0b1422;
    padding-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1100px) {
    .hero-layout,
    .split,
    .contact-grid,
    .grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .facts-strip,
    .channel-grid,
    .ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-layout,
    .rail-layout,
    .dual-panel,
    .service-row,
    .sector-entry {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        max-width: none;
        margin-left: 0;
    }

    .hero-panel h1,
    .page-hero h1 {
        max-width: none;
    }

    .hero-summary,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: inline-block;
    }

    .section {
        padding: 78px 0;
    }

    .hero-home {
        min-height: auto;
        padding: 128px 0 88px;
    }

    .hero-panel {
        padding: 32px 26px;
    }

    .hero-summary,
    .grid.two,
    .grid.three,
    .grid.four,
    .split,
    .contact-grid,
    .form-grid,
    .mini-grid,
    .footer-grid,
    .facts-strip,
    .channel-grid,
    .ribbon,
    .service-meta,
    .profile-layout,
    .rail-layout,
    .dual-panel,
    .service-row,
    .sector-entry,
    .path-item {
        grid-template-columns: 1fr;
    }

    .split-media {
        min-height: 320px;
    }

    .cta-panel,
    .form-card,
    .split-panel,
    .accent-band,
    .matrix-card,
    .profile-sheet,
    .checklist-card,
    .fact-sheet-card {
        padding: 30px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-sheet div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(2.5rem, 11vw, 3.4rem);
    }

    h2 {
        font-size: clamp(1.9rem, 8vw, 2.7rem);
    }

    .brand-copy small {
        display: none;
    }

    .hero-panel,
    .hero-aside-card,
    .fact-tile,
    .summary-card,
    .info-card,
    .route-card,
    .solution-card,
    .contact-card,
    .process-step,
    .faq-item,
    .stack-panel,
    .note-card,
    .form-card,
    .split-panel,
    .cta-panel,
    .service-row,
    .matrix-card,
    .checklist-card,
    .channel-card,
    .profile-sheet,
    .rail-item,
    .path-item,
    .fact-sheet-card,
    .meta-block,
    .sector-entry,
    .sector-support,
    .ribbon-step {
        padding-left: 22px;
        padding-right: 22px;
    }

    .matrix-card {
        padding: 22px 0 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .matrix-card h3,
    .matrix-card > p {
        padding-left: 22px;
        padding-right: 22px;
    }

    .matrix-scroll {
        margin-top: 18px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: var(--surface);
        box-shadow: var(--shadow-sm);
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .footer-bottom {
        align-items: stretch;
    }
}

@media (max-width: 1200px) {
    .home-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .span-4,
    .span-5,
    .span-7,
    .span-8 {
        grid-column: span 6;
    }

    .home-heading-sticky {
        position: static;
    }

    .credibility-grid,
    .overview-grid,
    .experience-grid,
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-command-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: auto;
    }

    .hero-command-stage {
        grid-template-columns: minmax(0, 1fr) 220px;
        padding: 12px;
    }

    .overview-media-grid {
        grid-template-columns: 1fr;
    }

    .stack-layer {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 860px) {
    .premium-hero {
        padding: 104px 0 28px;
    }

    .credibility-grid,
    .overview-grid,
    .experience-grid,
    .trust-grid,
    .client-grid,
    .hero-command-meta {
        grid-template-columns: 1fr;
    }

    .hero-command-copy h1 {
        max-width: none;
    }

    .section-banner-visual {
        min-height: 300px;
    }

    .section-banner-copy {
        left: 18px;
        right: auto;
        width: min(360px, calc(100% - 36px));
        bottom: 18px;
        max-width: calc(100% - 36px);
        padding: 20px 18px;
    }

    .capability-photo {
        min-height: 220px;
    }

    .hero-command-stage {
        grid-template-columns: 1fr;
    }

    .hero-lead-visual {
        min-height: 260px;
        box-shadow: none;
    }

    .hero-stage-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .hero-visual-grid {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .hero-grid-primary {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 230px;
        box-shadow: none;
    }

    .hero-grid-secondary,
    .hero-grid-tertiary {
        min-height: 150px;
    }

    .premium-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .premium-hero {
        padding: 98px 0 22px;
    }

    .hero-command-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .hero-signal-row span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.72rem;
    }

    .credibility-panel,
    .service-prime-card,
    .stack-system-card,
    .capability-side-panel,
    .premium-cta,
    .trust-card,
    .client-card,
    .experience-card,
    .service-detail-card {
        padding: 28px 22px;
    }

    .hero-command-meta article,
    .hero-grid-card {
        border-radius: 20px;
    }

    .hero-lead-visual,
    .hero-stage-panel {
        border-radius: 20px;
    }

    .hero-command-meta article {
        padding: 14px 14px;
    }


    .section-photo-card,
    .section-banner-visual,
    .capability-photo {
        border-radius: 20px;
    }
    .hero-command-stage {
        padding: 10px;
    }


    .section-photo-card,
    .section-photo-card-wide,
    .section-photo-card-tall {
        min-height: 220px;
    }

    .section-photo-card figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 0.82rem;
    }

    .section-banner-visual {
        min-height: 280px;
    }

    .section-banner-copy {
        left: 14px;
        right: auto;
        width: min(300px, calc(100% - 28px));
        bottom: 14px;
        max-width: calc(100% - 28px);
        padding: 14px 12px;
        border-radius: 18px;
    }

    .section-banner-copy h3 {
        margin-bottom: 8px;
        font-size: 1.02rem;
        line-height: 1.16;
    }

    .section-banner-copy p {
        font-size: 0.84rem;
        line-height: 1.48;
    }

    .capability-photo {
        min-height: 200px;
    }
    .hero-lead-visual {
        min-height: 220px;
    }

    .hero-lead-visual figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 0.9rem;
    }

    .hero-stage-rail {
        grid-template-columns: 1fr;
    }

    .hero-stage-panel {
        padding: 14px;
    }

    .hero-visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: auto;
        gap: 10px;
    }

    .hero-grid-primary {
        grid-row: auto;
        min-height: 210px;
    }

    .hero-grid-secondary,
    .hero-grid-tertiary {
        min-height: 160px;
    }

    .hero-grid-primary figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        font-size: 0.9rem;
    }

    .hero-grid-card figcaption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        font-size: 0.76rem;
    }

    .case-study-body {
        padding: 24px 22px;
    }

    .service-detail-grid,
    .home-footer-grid,
    .capability-row {
        grid-template-columns: 1fr;
    }
}