:root {
    --ink: #202328;
    --charcoal: #30343a;
    --muted: #6b7280;
    --line: #d9dee5;
    --paper: #ffffff;
    --soft: #f5f6f8;
    --mist: #eef2f5;
    --blue: #486a82;
    --blue-soft: #dce7ee;
    --steel-dark: #242a31;
    --shadow: 0 20px 50px rgba(27, 34, 42, .10);
    --max: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(217, 222, 229, .82);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.nav {
    width: min(var(--max), calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    min-width: 330px;
}

.brand img {
    width: 304px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    color: #454a52;
    font-size: 14px;
}

.nav-links a {
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
    border-bottom-color: var(--blue);
}

.nav-cta {
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid var(--charcoal);
    border-radius: 4px;
    color: var(--paper);
    background: var(--charcoal);
    font-weight: 760;
    box-shadow: 0 10px 24px rgba(32, 35, 40, .18);
}

.hero {
    min-height: 520px;
    display: grid;
    align-items: end;
    padding: 74px 0 42px;
    color: var(--paper);
    background:
        linear-gradient(90deg, rgba(22, 25, 29, .88), rgba(39, 48, 56, .62) 48%, rgba(39, 48, 56, .28)),
        url("../images/global-enterprise-network.jpg") center / cover no-repeat;
}

.hero-inner,
.section-inner,
.footer-inner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(230px, 300px);
    gap: 34px;
    align-items: end;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #d5dde3;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.06;
    font-weight: 620;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 590px;
    margin-bottom: 22px;
    color: #edf1f4;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.48;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
}

.stat {
    padding: 14px;
    background: rgba(22, 25, 29, .34);
}

.stat strong {
    display: block;
    color: var(--paper);
    font-size: 17px;
    font-weight: 650;
}

.stat span {
    display: block;
    margin-top: 4px;
    color: #d7dde2;
    font-size: 13px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 17px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 720;
}

.button.primary {
    background: var(--charcoal);
    color: var(--paper);
    border-color: var(--charcoal);
    box-shadow: 0 12px 28px rgba(32, 35, 40, .18);
}

.hero .button.primary,
.cta-band .button.primary {
    background: var(--paper);
    color: var(--charcoal);
    border-color: var(--paper);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .20);
}

.button.secondary {
    border-color: rgba(255, 255, 255, .44);
    color: var(--paper);
}

.button.dark {
    background: var(--charcoal);
    color: var(--paper);
}

.signal-panel {
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 6px;
    background: rgba(24, 28, 33, .42);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.signal-panel div {
    padding: 15px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.signal-panel div:last-child {
    border-bottom: 0;
}

.signal-panel strong {
    display: block;
    color: var(--paper);
    font-size: 18px;
    font-weight: 620;
}

.signal-panel span {
    display: block;
    margin-top: 4px;
    color: #d8e0e6;
    font-size: 14px;
}

.page-hero {
    --hero-image: url("../images/global-enterprise-network.jpg");
    position: relative;
    overflow: hidden;
    min-height: 318px;
    padding: 58px 0 42px;
    display: grid;
    align-items: end;
    color: var(--ink);
    border-bottom: 0;
    background:
        linear-gradient(94deg, rgba(255, 255, 255, .99), rgba(250, 251, 252, .96) 42%, rgba(248, 250, 251, .72) 66%, rgba(255, 255, 255, .32)),
        linear-gradient(118deg, rgba(72, 106, 130, .10), transparent 38%),
        var(--hero-image) center / cover no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, transparent 61%, rgba(255, 255, 255, .52) 61%, rgba(255, 255, 255, .52) 68%, transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .82));
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(52vw, 620px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 106, 130, .36), transparent);
    pointer-events: none;
}

.page-hero .section-inner {
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 26px;
}

.page-hero .section-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 1px;
    height: min(100%, 208px);
    background: linear-gradient(180deg, rgba(72, 106, 130, .72), rgba(72, 106, 130, .10));
}

.page-hero h1 {
    max-width: 620px;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(31px, 3.35vw, 46px);
    line-height: 1.08;
    font-weight: 600;
}

.page-hero p {
    max-width: 600px;
}

.page-hero .section-kicker {
    color: var(--blue);
}

.page-hero .lead {
    color: #596270;
    font-size: 16px;
    line-height: 1.58;
}

.page-hero .soft-highlight {
    display: inline-flex;
    max-width: none;
    margin-bottom: 12px;
    padding: 0 0 0 11px;
    border-left: 1px solid rgba(72, 106, 130, .74);
    border-radius: 0;
    color: #3f4a54;
    background: transparent;
    font-size: 14px;
    font-weight: 560;
}

.hero-services {
    --hero-image: url("../images/gcc-workspace-grid.jpg");
}

.hero-about {
    --hero-image: url("../images/modern-office-corridor.jpg");
}

.hero-insight {
    --hero-image: url("../images/india-market-map.jpg");
}

.hero-contact {
    --hero-image: url("../images/india-delivery-floor.jpg");
}

.hero-setup {
    --hero-image: url("../images/modern-office-corridor.jpg");
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 21px;
}

.hero-chips span {
    padding: 0 13px;
    border: 0;
    border-left: 1px solid rgba(72, 106, 130, .26);
    border-radius: 0;
    color: #4e5964;
    background: transparent;
    font-size: 12px;
    font-weight: 660;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hero-chips span:first-child {
    padding-left: 0;
    border-left: 0;
}

section {
    padding: 54px 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 15px;
    color: var(--ink);
    font-size: clamp(25px, 2.7vw, 36px);
    line-height: 1.12;
    font-weight: 610;
    letter-spacing: 0;
}

h3 {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 630;
    letter-spacing: 0;
}

.lead {
    color: var(--muted);
    font-size: 17px;
}

.quiet-lead {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
}

.soft-highlight {
    max-width: 720px;
    margin: 0 0 18px;
    padding: 10px 14px;
    border-left: 2px solid var(--blue);
    border-radius: 0 5px 5px 0;
    color: #343a42;
    background: linear-gradient(90deg, rgba(220, 231, 238, .62), rgba(245, 246, 248, .18));
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 610;
    line-height: 1.35;
}

.soft-highlight.small {
    max-width: 560px;
    font-size: 14px;
    font-weight: 620;
}

.section-title-quiet {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    font-weight: 610;
}

.muted {
    color: var(--muted);
}

.feature-image {
    min-height: 360px;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.office-corridor {
    background-image: url("../images/modern-office-corridor.jpg");
}

.delivery-floor {
    background-image: url("../images/india-delivery-floor.jpg");
}

.market-map {
    background-image: url("../images/india-market-map.jpg");
}

.workspace-grid-image {
    background-image: url("../images/gcc-workspace-grid.jpg");
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.definition-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: stretch;
}

.definition-panel {
    min-height: 370px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 6px;
    color: var(--paper);
    background:
        linear-gradient(180deg, rgba(29, 33, 38, .10), rgba(29, 33, 38, .82)),
        url("../images/modern-office-corridor.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.definition-panel h2 {
    max-width: 520px;
    margin-bottom: 10px;
    color: var(--paper);
}

.definition-panel p {
    max-width: 520px;
    margin-bottom: 0;
    color: #e5eaee;
}

.definition-list {
    display: grid;
    gap: 14px;
}

.definition-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
}

.definition-card h3 {
    margin-bottom: 6px;
}

.definition-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--line);
}

.compact-item {
    min-height: 165px;
    padding: 22px;
    background: var(--paper);
}

.compact-item small {
    display: block;
    margin-bottom: 22px;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.compact-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

.content-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
}

.content-panel h3 {
    margin-bottom: 8px;
}

.content-panel p {
    color: var(--muted);
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--line);
}

.benefit {
    min-height: 150px;
    padding: 22px;
    background: var(--paper);
}

.benefit h3 {
    margin-bottom: 7px;
}

.benefit p {
    margin-bottom: 0;
    color: var(--muted);
}

.timeline {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--paper);
}

.timeline th,
.timeline td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.timeline th {
    color: var(--ink);
    background: var(--soft);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.timeline tr:last-child td {
    border-bottom: 0;
}

.timeline td:last-child {
    color: var(--muted);
}

.detail-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid rgba(72, 106, 130, .15);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 249, 251, .90)),
        var(--paper);
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--ink);
    font-weight: 680;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.image-led {
    min-height: 390px;
    display: grid;
    align-items: end;
    color: var(--paper);
    background:
        linear-gradient(90deg, rgba(28, 31, 36, .84), rgba(28, 31, 36, .28)),
        url("../images/india-market-map.jpg") center / cover no-repeat;
}

.image-led h2 {
    max-width: 640px;
    color: var(--paper);
}

.image-led p {
    max-width: 620px;
    color: #e1e7eb;
}

.card {
    min-height: 210px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
}

.card:hover {
    border-color: #c4ced8;
    box-shadow: var(--shadow);
}

.card small {
    display: block;
    margin-bottom: 26px;
    color: #7a838d;
    font-weight: 780;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.card p {
    color: var(--muted);
}

.band {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.process-step {
    min-height: 190px;
    padding: 23px;
    border: 1px solid rgba(72, 106, 130, .16);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(245, 248, 250, .84)),
        var(--paper);
    box-shadow: 0 16px 38px rgba(27, 34, 42, .055);
}

.process-step small {
    display: block;
    margin-bottom: 22px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.list li {
    padding-left: 18px;
    border-left: 2px solid var(--blue-soft);
    color: var(--muted);
}

.article-list {
    display: grid;
    gap: 18px;
}

.article-list.spaced {
    margin-top: 18px;
}

.article-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
}

.insight-feature {
    min-height: 300px;
    padding: 32px;
    display: grid;
    align-items: end;
    border-radius: 6px;
    color: var(--paper);
    background:
        linear-gradient(180deg, rgba(29, 33, 38, .08), rgba(29, 33, 38, .80)),
        url("../images/global-enterprise-network.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.insight-board {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: 18px;
    align-items: stretch;
}

.insight-stack {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--line);
}

.insight-mini {
    padding: 20px;
    background: var(--paper);
}

.insight-mini small {
    display: block;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.insight-mini h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.insight-mini p {
    margin-bottom: 0;
    color: var(--muted);
}

.insight-feature h2 {
    max-width: 680px;
    color: var(--paper);
}

.insight-feature p {
    max-width: 640px;
    margin-bottom: 0;
    color: #e5eaee;
}

.article-row small {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-row h3 {
    margin-bottom: 10px;
    font-size: clamp(18px, 2vw, 24px);
}

.contact-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.contact-summary {
    min-height: 100%;
    padding: 34px;
    border-radius: 6px;
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(72, 106, 130, .36), rgba(32, 35, 40, 0) 48%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--steel-dark);
    box-shadow: 0 24px 60px rgba(32, 35, 40, .18);
}

.contact-summary .section-kicker {
    color: #b8c9d4;
}

.contact-summary h2 {
    margin-bottom: 12px;
    color: var(--paper);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
}

.contact-summary p {
    color: #d7dde2;
}

.contact-premium {
    position: relative;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(238, 242, 245, .84), rgba(255, 255, 255, .96)),
        var(--paper);
    box-shadow: 0 18px 46px rgba(27, 34, 42, .08);
}

.contact-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-card address {
    color: var(--ink);
    font-size: clamp(22px, 2.2vw, 30px);
    font-style: normal;
    font-weight: 720;
    line-height: 1.35;
}

.contact-note {
    grid-column: 1 / -1;
    padding: 18px 22px;
    border-left: 3px solid var(--blue);
    color: var(--muted);
    background: var(--soft);
}

.contact-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.email-link {
    display: inline-flex;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 720;
    line-height: 1.1;
    overflow-wrap: anywhere;
    border-bottom: 1px solid rgba(72, 106, 130, .45);
}

.cta-band {
    padding: 36px 0;
    color: var(--paper);
    background: #2f343a;
}

.positioning-band {
    padding: 54px 0;
    color: var(--ink);
    border-top: 1px solid rgba(217, 222, 229, .70);
    border-bottom: 1px solid rgba(217, 222, 229, .70);
    background:
        linear-gradient(120deg, rgba(220, 231, 238, .36), rgba(255, 255, 255, .82) 42%, rgba(247, 249, 251, .96)),
        var(--soft);
}

.positioning-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 48px;
    align-items: start;
}

.positioning-copy {
    padding: 2px 0 0 22px;
    border-left: 1px solid rgba(72, 106, 130, .42);
    background: transparent;
}

.positioning-copy h2 {
    margin-bottom: 14px;
    color: var(--ink);
}

.positioning-band .section-kicker {
    color: var(--blue);
}

.positioning-copy p {
    color: var(--muted);
}

.positioning-copy p:last-child {
    margin-bottom: 0;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border: 0;
    background: transparent;
}

.decision-card {
    position: relative;
    min-height: 0;
    padding: 23px;
    border: 1px solid rgba(72, 106, 130, .15);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(245, 248, 250, .82)),
        var(--paper);
    box-shadow: 0 16px 38px rgba(27, 34, 42, .055);
}

.decision-card::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 0;
    width: 42px;
    height: 2px;
    background: rgba(72, 106, 130, .48);
}

.decision-card small {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.decision-card h3 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 20px;
}

.decision-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.offer-board {
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--paper);
}

.offer-row {
    display: grid;
    grid-template-columns: 210px 1fr 250px;
    gap: 0;
    min-height: 116px;
    border-bottom: 1px solid var(--line);
}

.offer-row:last-child {
    border-bottom: 0;
}

.offer-label,
.offer-main,
.offer-outcome {
    padding: 22px;
}

.offer-label {
    background: var(--soft);
    border-right: 1px solid var(--line);
}

.offer-label small {
    display: block;
    margin-bottom: 16px;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.offer-label strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.offer-main h3 {
    margin-bottom: 7px;
}

.offer-main p,
.offer-outcome p {
    margin-bottom: 0;
    color: var(--muted);
}

.offer-outcome {
    border-left: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(220, 231, 238, .34), rgba(255, 255, 255, .65));
}

.offer-outcome span {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.metric-belt {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--line);
}

.metric-cell {
    padding: 18px;
    background: var(--paper);
}

.metric-cell strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 19px;
}

.metric-cell span {
    color: var(--muted);
    font-size: 13px;
}

.cta-band .section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-band h2 {
    margin-bottom: 6px;
    color: var(--paper);
    font-size: clamp(24px, 2.6vw, 34px);
}

.cta-band p {
    margin-bottom: 0;
    color: #d7dde2;
}

.footer {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: var(--paper);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer img {
    width: 244px;
}

.footer a {
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 720;
}

.cookie-panel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: min(560px, calc(100% - 44px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(72, 106, 130, .38), rgba(32, 35, 40, 0) 48%),
        var(--steel-dark);
    box-shadow: 0 24px 70px rgba(12, 16, 20, .28);
}

.cookie-panel[hidden] {
    display: none;
}

.cookie-panel__copy {
    display: grid;
    gap: 8px;
}

.cookie-panel__eyebrow {
    margin: 0;
    color: #b8c9d4;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cookie-panel h2 {
    margin: 0;
    color: var(--paper);
    font-size: 22px;
    line-height: 1.15;
}

.cookie-panel p {
    margin: 0;
    color: #d7dde2;
    font-size: 14px;
    line-height: 1.55;
}

.cookie-panel a {
    width: fit-content;
    color: var(--paper);
    font-size: 13px;
    font-weight: 760;
    border-bottom: 1px solid rgba(255, 255, 255, .52);
}

.cookie-panel__actions {
    display: grid;
    gap: 10px;
    min-width: 190px;
}

.cookie-panel__actions .button {
    width: 100%;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.cookie-panel__actions .button.secondary {
    color: var(--paper);
    background: rgba(255, 255, 255, .10);
    box-shadow: none;
}

@media (max-width: 980px) {
    .nav {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero {
        min-height: auto;
        padding-top: 90px;
    }

    .hero-grid,
    .page-hero .section-inner,
    .split,
    .contact-panel,
    .insight-board,
    .definition-grid,
    .content-grid,
    .positioning-layout,
    .offer-row {
        grid-template-columns: 1fr;
    }

    .cards,
    .compact-grid,
    .benefit-grid,
    .metric-belt {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cookie-panel {
        grid-template-columns: 1fr;
    }

    .cookie-panel__actions {
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .nav,
    .hero-inner,
    .section-inner,
    .footer-inner {
        width: min(100% - 28px, var(--max));
    }

    .brand img {
        width: min(278px, 100%);
    }

    .brand {
        min-width: 0;
    }

    .nav-links {
        font-size: 13px;
    }

    .page-hero {
        min-height: 292px;
        padding: 46px 0 34px;
        background-position: 58% center;
    }

    .page-hero .section-inner {
        padding-left: 18px;
    }

    .page-hero .section-inner::before {
        height: min(100%, 184px);
    }

    .hero-chips {
        gap: 8px 14px;
    }

    .hero-chips span {
        padding: 0;
        border-left: 0;
        font-size: 11px;
    }

    h1 {
        font-size: 42px;
    }

    section {
        padding: 64px 0;
    }

    .cards,
    .process-grid,
    .article-row,
    .compact-grid,
    .benefit-grid,
    .decision-grid,
    .metric-belt,
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 300px;
    }

    .cookie-panel {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
    }
}
