@import url('https://fonts.bunny.net/css?family=dm-sans:400,500,600,700|manrope:500,600,700,800');

:root {
    --ink: #17383f;
    --ink-soft: #526b70;
    --ocean: #1f5c63;
    --ocean-deep: #17474d;
    --teal: #3c8887;
    --seafoam: #dceeea;
    --sand: #efbd75;
    --sand-soft: #fff4df;
    --paper: #fbfaf6;
    --white: #ffffff;
    --line: #e5ebe7;
    --shadow: 0 20px 60px rgba(23, 56, 63, .10);
    --shell: 1440px;
    --radius-lg: 30px;
    --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'DM Sans', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--ink);
    color: white;
    border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,250,246,.88);
    border-bottom: 1px solid rgba(23,56,63,.08);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(23,56,63,.08); background: rgba(251,250,246,.97); }
.header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-mark { width: 48px; height: 48px; fill: var(--ocean); overflow: visible; }
.brand-mark-accent { fill: var(--teal); }
.brand-mark-wheel { fill: var(--ink); }
.brand-mark-route { fill:none; stroke:var(--sand); stroke-width:4; stroke-linecap:round; }
.brand-wordmark { display:flex; flex-direction:column; line-height:.94; font-family:'Manrope', sans-serif; font-size:22px; letter-spacing:-.05em; }
.brand-wordmark strong { font-weight:800; color:var(--teal); }
.brand-wordmark span { font-weight:600; }

.primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}
.primary-nav a {
    position: relative;
    color: #496268;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--teal);
    transition: right .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { right: 0; }
.primary-nav a:hover { color: var(--ink); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-header {
    min-height: 48px;
    color: white;
    background: var(--ocean);
    box-shadow: 0 12px 28px rgba(31,92,99,.18);
}
.button-header:hover, .button-primary:hover { background: var(--ocean-deep); }
.button-primary {
    color: white;
    background: var(--ocean);
    box-shadow: 0 14px 34px rgba(31,92,99,.22);
}
.nav-toggle { display:none; }

.service-notice { padding: 14px 0 0; }
.notice-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    align-items: start;
    padding: 14px 18px;
    border: 1px solid #ead6ad;
    border-radius: 16px;
    background: #fff8e9;
    box-shadow: 0 10px 30px rgba(86,67,31,.04);
}
.notice-icon {
    display:grid;
    place-items:center;
    width:30px;
    height:30px;
    margin-top:1px;
    border-radius:50%;
    color:white;
    background:var(--ocean);
    font-family:Georgia, serif;
    font-weight:700;
}
.notice-copy h2 { margin:0 0 3px; font-size:15px; letter-spacing:-.01em; }
.notice-copy p { margin:0; color:#6e624e; font-size:14px; line-height:1.55; }
.notice-copy strong { color:#4c3f2d; }

.hero { position:relative; overflow:hidden; }
.hero::before {
    content:'';
    position:absolute;
    width:640px;
    height:640px;
    right:-230px;
    top:40px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(216,238,233,.72) 0, rgba(216,238,233,0) 68%);
}
.hero-grid {
    position:relative;
    z-index:1;
    min-height: 690px;
    display:grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: clamp(40px, 6vw, 100px);
    align-items:center;
    padding-block: 40px 68px;
}
.hero-copy { max-width: 700px; }
.eyebrow {
    margin:0 0 24px;
    color:var(--teal);
    font-size:13px;
    font-weight:800;
    letter-spacing:.18em;
}
.hero h1 {
    margin:0;
    max-width: 760px;
    font-family:'Manrope', sans-serif;
    font-size:clamp(54px, 5.5vw, 86px);
    line-height:1.02;
    letter-spacing:-.065em;
    font-weight:700;
}
.hero-lead {
    max-width: 650px;
    margin:28px 0 0;
    color:var(--ink-soft);
    font-size:clamp(18px, 1.45vw, 22px);
    line-height:1.62;
}
.hero-actions {
    display:flex;
    align-items:center;
    gap:26px;
    margin-top:34px;
}
.text-link {
    text-decoration:none;
    color:var(--ink);
    font-weight:700;
}
.text-link span { display:inline-block; margin-left:5px; transition:transform .2s ease; }
.text-link:hover span { transform:translateX(4px); }
.trust-line {
    display:flex;
    flex-wrap:wrap;
    gap:12px 26px;
    margin-top:42px;
    color:#5d7478;
    font-size:14px;
    font-weight:600;
}
.trust-line span { position:relative; padding-left:18px; }
.trust-line span::before {
    content:'';
    position:absolute;
    left:0;
    top:.52em;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--sand);
}

.hero-art { position:relative; min-height:600px; display:grid; place-items:center; }
.journey-art { width:min(100%, 760px); height:auto; overflow:visible; }
.art-orbit { position:absolute; border:1px solid rgba(31,92,99,.10); border-radius:50%; }
.art-orbit-one { width:520px; height:520px; }
.art-orbit-two { width:620px; height:620px; }
.route-dots circle { animation: pulse 2.8s ease-in-out infinite; transform-origin:center; }
.route-dots circle:nth-child(2){ animation-delay:.45s; }
.route-dots circle:nth-child(3){ animation-delay:.9s; }
@keyframes pulse { 0%,100%{opacity:.45;transform:scale(.8)} 50%{opacity:1;transform:scale(1.25)} }

.placeholder-section { scroll-margin-top:20px; border-top:1px solid var(--line); background:white; }
.placeholder-inner { min-height:180px; display:grid; place-items:center; text-align:center; color:#819195; }
.placeholder-inner p { margin:0; max-width:620px; }

.site-footer { background:#eef4f1; border-top:1px solid #dce7e2; }
.footer-inner {
    min-height:170px;
    display:grid;
    grid-template-columns:1fr auto;
    gap:22px 40px;
    align-content:center;
}
.footer-brand { font-family:'Manrope', sans-serif; font-size:20px; font-weight:800; letter-spacing:-.04em; }
.footer-inner p { margin:5px 0 0; color:#6d8083; }
.footer-links { display:flex; gap:24px; }
.footer-links a { color:#50676b; text-decoration:none; font-size:14px; font-weight:600; }
.footer-meta { grid-column:1 / -1; padding-top:18px; border-top:1px solid rgba(23,56,63,.09); font-size:13px; }

@media (max-width: 1220px) {
    .header-inner { grid-template-columns:auto auto 1fr auto; gap:20px; }
    .nav-toggle {
        display:inline-flex;
        flex-direction:column;
        gap:5px;
        padding:10px;
        border:0;
        background:transparent;
    }
    .nav-toggle span:not(.sr-only){ width:24px;height:2px;background:var(--ink);border-radius:2px; }
    .primary-nav {
        position:absolute;
        left:24px;
        right:24px;
        top:80px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:16px;
        background:white;
        border:1px solid var(--line);
        border-radius:18px;
        box-shadow:var(--shadow);
    }
    .primary-nav.is-open { display:flex; }
    .primary-nav a { padding:12px 10px; }
    .primary-nav a::after { display:none; }
    .hero-grid { grid-template-columns:1fr 1fr; gap:28px; }
}

@media (max-width: 900px) {
    .shell { width:min(calc(100% - 32px), var(--shell)); }
    .header-inner { min-height:78px; grid-template-columns:auto 1fr auto; }
    .nav-toggle { justify-self:end; }
    .button-header { display:none; }
    .hero-grid { grid-template-columns:1fr; padding-top:56px; }
    .hero-copy { max-width:760px; text-align:center; margin-inline:auto; }
    .hero-lead { margin-inline:auto; }
    .hero-actions, .trust-line { justify-content:center; }
    .hero-art { min-height:510px; }
    .journey-art { max-width:680px; }
    .footer-inner { grid-template-columns:1fr; text-align:center; padding-block:42px; }
    .footer-links { justify-content:center; flex-wrap:wrap; }
}

@media (max-width: 600px) {
    .brand-mark { width:42px;height:42px; }
    .brand-wordmark { font-size:19px; }
    .notice-card { grid-template-columns:30px 1fr; padding:13px 14px; }
    .notice-icon { width:26px;height:26px;font-size:14px; }
    .notice-copy p { font-size:13px; }
    .hero-grid { min-height:0; padding:44px 0 56px; }
    .hero h1 { font-size:clamp(44px, 13vw, 62px); }
    .hero-lead { font-size:18px; }
    .hero-actions { flex-direction:column; gap:18px; }
    .button-primary { width:100%; }
    .trust-line { flex-direction:column; align-items:center; gap:11px; }
    .hero-art { min-height:390px; margin-top:4px; }
    .art-orbit-one { width:360px;height:360px; }
    .art-orbit-two { width:420px;height:420px; }
    .footer-links { gap:16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
}


.art-caption {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border: 1px solid rgba(23,56,63,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 12px 30px rgba(23,56,63,.08);
    color: #526b70;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.art-caption-uk { top: 12%; left: 4%; }
.art-caption-home { right: 2%; bottom: 10%; }
.route-line { stroke-dashoffset: 180; animation: routeDraw 2.4s ease-out .2s forwards; }
.delivery-van { animation: vanFloat 4.5s ease-in-out infinite; transform-origin: center; }
.route-dots circle { animation: dotPulse 2.4s ease-in-out infinite; transform-origin: center; }
.route-dots circle:nth-child(2) { animation-delay: .35s; }
.route-dots circle:nth-child(3) { animation-delay: .7s; }
@keyframes routeDraw { to { stroke-dashoffset: 0; } }
@keyframes vanFloat { 0%,100% { transform: translate(360px,285px); } 50% { transform: translate(364px,279px); } }
@keyframes dotPulse { 0%,100% { opacity:.45; transform:scale(.9); } 50% { opacity:1; transform:scale(1.18); } }

.trust-section {
    padding: 110px 0 120px;
    background: #f2f6f3;
    border-top: 1px solid rgba(23,56,63,.06);
}
.section-heading {
    display:grid;
    grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
    column-gap: 80px;
    align-items:end;
    margin-bottom: 54px;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 18px; }
.section-heading h2 {
    margin:0;
    max-width:720px;
    font-family:'Manrope',sans-serif;
    font-size:clamp(38px,4.2vw,64px);
    line-height:1.06;
    letter-spacing:-.055em;
    font-weight:700;
}
.section-heading > p:last-child {
    margin:0 0 6px;
    max-width:560px;
    color:var(--ink-soft);
    font-size:19px;
    line-height:1.65;
}
.trust-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}
.trust-card {
    min-height:330px;
    padding:34px;
    border:1px solid rgba(23,56,63,.08);
    border-radius:26px;
    background:rgba(255,255,255,.72);
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.trust-card:hover { transform:translateY(-5px); box-shadow:0 24px 50px rgba(23,56,63,.08); background:#fff; }
.trust-card.featured { background:var(--ocean); color:white; }
.trust-card.featured p { color:rgba(255,255,255,.76); }
.trust-number {
    display:inline-grid;
    place-items:center;
    width:46px;
    height:46px;
    margin-bottom:70px;
    border-radius:50%;
    background:var(--sand-soft);
    color:#8b6536;
    font-weight:800;
    font-size:13px;
}
.trust-card.featured .trust-number { background:rgba(255,255,255,.12); color:#fff; }
.trust-card h3 { margin:0 0 16px; font-family:'Manrope',sans-serif; font-size:25px; letter-spacing:-.03em; }
.trust-card p { margin:0; color:var(--ink-soft); font-size:16px; line-height:1.7; }
.care-strip {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr)) auto;
    gap:30px;
    align-items:center;
    margin-top:26px;
    padding:28px 32px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 14px 40px rgba(23,56,63,.06);
}
.care-strip div { display:flex; flex-direction:column; gap:4px; }
.care-strip strong { font-size:15px; }
.care-strip span { color:var(--ink-soft); font-size:13px; }

@media (max-width: 1050px) {
    .section-heading { grid-template-columns:1fr; gap:22px; }
    .trust-grid { grid-template-columns:1fr; }
    .trust-card { min-height:0; }
    .trust-number { margin-bottom:42px; }
    .care-strip { grid-template-columns:1fr 1fr; }
}
@media (max-width: 700px) {
    .art-caption { display:none; }
    .trust-section { padding:76px 0 84px; }
    .section-heading { margin-bottom:34px; }
    .section-heading > p:last-child { font-size:17px; }
    .trust-card { padding:28px; }
    .care-strip { grid-template-columns:1fr; padding:24px; }
}
@media (prefers-reduced-motion: reduce) {
    .route-line, .delivery-van, .route-dots circle { animation:none; }
}

/* V0.3 — Public page foundations */
.page-hero { padding: 100px 0 110px; overflow:hidden; }
.page-hero.compact { padding-bottom: 82px; }
.page-hero-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr); gap:clamp(52px,8vw,130px); align-items:center; }
.page-hero h1 { margin:0; max-width:900px; font-family:'Manrope',sans-serif; font-size:clamp(52px,6vw,88px); line-height:1.02; letter-spacing:-.065em; font-weight:700; }
.page-lead { max-width:700px; margin:28px 0 34px; color:var(--ink-soft); font-size:clamp(18px,1.55vw,22px); line-height:1.65; }
.page-side-note,.price-card,.quote-card,.contact-card,.editorial-panel { padding:36px; border:1px solid rgba(23,56,63,.08); border-radius:28px; background:#fff; box-shadow:var(--shadow); }
.page-side-note > span { display:inline-grid; place-items:center; width:48px; height:48px; border-radius:50%; background:var(--sand-soft); color:#8b6536; font-weight:800; }
.page-side-note strong { display:block; margin:56px 0 10px; font-family:'Manrope',sans-serif; font-size:26px; }
.page-side-note p,.price-card p,.contact-card p { margin:0; color:var(--ink-soft); line-height:1.65; }
.price-card { background:var(--ocean); color:#fff; }
.price-card > span { color:rgba(255,255,255,.72); font-size:14px; font-weight:700; }
.price-card strong { display:block; margin:18px 0 12px; font-family:'Manrope',sans-serif; font-size:82px; line-height:1; letter-spacing:-.07em; }
.price-card p { color:rgba(255,255,255,.72); }
.quote-card blockquote { margin:0 0 22px; font-family:'Manrope',sans-serif; font-size:30px; line-height:1.35; letter-spacing:-.035em; }
.quote-card span { color:var(--teal); font-weight:700; }
.editorial-panel { min-height:360px; display:flex; flex-direction:column; justify-content:flex-end; background:linear-gradient(145deg,#dceeea,#f8ebd4); }
.editorial-panel p { margin:0 0 14px; color:var(--teal); font-weight:800; font-size:13px; letter-spacing:.13em; text-transform:uppercase; }
.editorial-panel strong { font-family:'Manrope',sans-serif; font-size:34px; line-height:1.18; letter-spacing:-.04em; }
.contact-card { display:grid; gap:28px; }
.contact-card div { display:grid; gap:6px; }
.contact-card span { color:var(--ink-soft); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.11em; }
.contact-card a { font-size:20px; font-weight:700; color:var(--ocean); text-decoration:none; }
.content-section { padding:100px 0 115px; background:#fff; border-top:1px solid var(--line); }
.steps-list { display:grid; gap:0; }
.steps-list article { display:grid; grid-template-columns:110px 1fr; gap:30px; padding:38px 0; border-bottom:1px solid var(--line); }
.steps-list article:first-child { border-top:1px solid var(--line); }
.steps-list article > span { color:var(--teal); font-weight:800; }
.steps-list h2,.two-column-copy h2,.feature-list h2 { margin:0 0 12px; font-family:'Manrope',sans-serif; font-size:30px; letter-spacing:-.035em; }
.steps-list p,.two-column-copy p,.feature-list p { margin:0; max-width:780px; color:var(--ink-soft); font-size:18px; line-height:1.7; }
.two-column-copy { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:70px; }
.feature-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.feature-list article { padding:32px; border:1px solid var(--line); border-radius:24px; background:var(--paper); }
.narrow { max-width:920px; }
.faq-list { max-width:980px; }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list details:first-child { border-top:1px solid var(--line); }
.faq-list summary { cursor:pointer; list-style:none; padding:28px 54px 28px 0; font-family:'Manrope',sans-serif; font-size:22px; font-weight:700; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:8px; top:24px; color:var(--teal); font-size:28px; font-weight:500; }
.faq-list details[open] summary::after { content:'−'; }
.faq-list details p { margin:0; padding:0 70px 28px 0; color:var(--ink-soft); font-size:17px; line-height:1.7; }
.page-cta { padding:75px 0; background:#eef4f1; border-top:1px solid #dce7e2; }
.page-cta-inner { display:flex; justify-content:space-between; align-items:end; gap:40px; }
.page-cta .eyebrow { margin-bottom:12px; }
.page-cta h2 { margin:0; font-family:'Manrope',sans-serif; font-size:clamp(34px,4vw,58px); letter-spacing:-.055em; }
@media(max-width:900px){.page-hero{padding:70px 0 80px}.page-hero-grid,.two-column-copy,.feature-list{grid-template-columns:1fr}.page-hero-grid{gap:38px}.page-hero h1{font-size:clamp(48px,12vw,72px)}.steps-list article{grid-template-columns:70px 1fr}.page-cta-inner{align-items:flex-start;flex-direction:column}}
@media(max-width:600px){.page-side-note,.price-card,.quote-card,.contact-card,.editorial-panel{padding:26px}.content-section{padding:72px 0 82px}.steps-list article{grid-template-columns:1fr;gap:10px}.two-column-copy{gap:46px}.feature-list{gap:16px}.faq-list summary{font-size:19px}.page-cta{padding:58px 0}}

/* V0.4 — Brand and header refinement */
:root {
    --ink: #173f5f;
    --ink-soft: #587083;
    --ocean: #245b7b;
    --ocean-deep: #173f5f;
    --teal: #4a91b8;
    --seafoam: #e4f1f7;
    --sand: #f28c6f;
    --sand-soft: #fff0e9;
    --paper: #fbfaf7;
    --line: #e3e9ed;
    --shadow: 0 22px 64px rgba(23, 63, 95, .11);
}

.site-header {
    background: rgba(251,250,247,.90);
    border-bottom-color: rgba(23,63,95,.09);
}
.site-header.is-scrolled {
    background: rgba(251,250,247,.98);
    box-shadow: 0 14px 38px rgba(23,63,95,.08);
}
.header-inner {
    min-height: 94px;
    gap: clamp(24px, 3vw, 52px);
}
.brand { min-width: 218px; }
.brand img {
    display: block;
    width: 218px;
    height: auto;
}
.primary-nav { gap: clamp(16px, 1.65vw, 30px); }
.primary-nav a {
    color: #536c7d;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.012em;
}
.primary-nav a::after {
    bottom: -12px;
    height: 3px;
    border-radius: 99px;
    background: var(--sand);
}
.primary-nav a.is-active { color: var(--ink); }
.button-header {
    min-height: 50px;
    padding-inline: 22px;
    gap: 9px;
    border-radius: 13px;
    background: var(--ocean-deep);
    box-shadow: 0 13px 28px rgba(23,63,95,.20);
}
.button-header span { transition: transform .2s ease; }
.button-header:hover { background: #245b7b; }
.button-header:hover span { transform: translateX(3px); }
.button-primary { background: var(--ocean-deep); box-shadow: 0 14px 34px rgba(23,63,95,.22); }
.button-primary:hover { background: #245b7b; }
.notice-icon { background: var(--ocean-deep); }
.notice-card { border-color: #efcfb9; background: #fff6ef; }
.notice-copy p { color: #725f54; }
.notice-copy strong { color: #4c3a32; }
.hero::before { background: radial-gradient(circle, rgba(183,217,235,.48) 0, rgba(183,217,235,0) 68%); }
.trust-line span::before { background: var(--sand); }
.site-footer { background: #eef3f6; border-top-color: #dce6ec; }
.page-cta { background: #eef3f6; border-top-color: #dce6ec; }

@media (max-width: 1220px) {
    .header-inner { grid-template-columns: auto auto 1fr auto; }
    .brand { min-width: 190px; }
    .brand img { width: 190px; }
    .primary-nav { top: 86px; }
}
@media (max-width: 900px) {
    .header-inner { min-height: 82px; }
    .brand { min-width: 174px; }
    .brand img { width: 174px; }
    .primary-nav { top: 76px; }
}
@media (max-width: 420px) {
    .brand { min-width: 154px; }
    .brand img { width: 154px; }
}

/* v0.5 — approved brand and complete homepage */
:root {
    --paper: #f9fbfc;
    --white: #ffffff;
    --line: #e2eaf0;
    --shadow: 0 22px 60px rgba(23,63,95,.10);
}
.brand img { width: 230px; height: auto; display:block; }
.header-inner { min-height: 94px; }
.button-header { background:#2f78ad; box-shadow:0 12px 28px rgba(47,120,173,.20); }
.button-header:hover,.button-primary:hover { background:#173f5f; }
.button-primary { background:#2f78ad; box-shadow:0 14px 34px rgba(47,120,173,.22); }
.primary-nav a::after { background:#2f78ad; }
.hero::before { background:radial-gradient(circle,rgba(213,232,243,.78) 0,rgba(213,232,243,0) 68%); }
.hero-grid { padding-top:50px; }

.home-trust { padding:112px 0 118px; background:#fff; border-top:1px solid var(--line); }
.home-section-heading { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr); gap:30px 80px; align-items:end; margin-bottom:56px; }
.home-section-heading .eyebrow { grid-column:1/-1; margin-bottom:0; }
.home-section-heading h2,.retailers-copy h2,.home-cta h2 { margin:0; font-family:'Manrope',sans-serif; font-size:clamp(38px,4.4vw,66px); line-height:1.06; letter-spacing:-.055em; }
.home-section-heading > p:last-child,.retailers-copy > p:last-child,.home-cta p { margin:0; color:var(--ink-soft); font-size:18px; line-height:1.7; }
.home-trust-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.home-trust-grid article { padding:34px 28px 38px; border-right:1px solid var(--line); }
.home-trust-grid article:last-child { border-right:0; }
.home-trust-grid span { display:inline-block; margin-bottom:52px; color:#2f78ad; font-size:12px; font-weight:800; letter-spacing:.12em; }
.home-trust-grid h3 { margin:0 0 14px; font-family:'Manrope',sans-serif; font-size:23px; letter-spacing:-.035em; }
.home-trust-grid p { margin:0; color:var(--ink-soft); line-height:1.7; }

.retailers-section { padding:112px 0; background:#f1f6f9; border-top:1px solid #e2edf3; }
.retailers-inner { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); gap:clamp(50px,8vw,120px); align-items:start; }
.retailers-copy h2 { font-size:clamp(38px,4vw,58px); }
.retailers-copy > p:last-child { margin-top:24px; }
.retailer-wall { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); background:#fff; border:1px solid var(--line); border-radius:26px; overflow:hidden; box-shadow:0 18px 48px rgba(23,63,95,.06); }
.retailer-wall span { min-height:92px; display:grid; place-items:center; padding:20px; color:#6f8290; text-align:center; font-size:17px; font-weight:700; border-right:1px solid var(--line); border-bottom:1px solid var(--line); transition:color .2s ease,background .2s ease; }
.retailer-wall span:nth-child(3n) { border-right:0; }
.retailer-wall span:nth-last-child(-n+3) { border-bottom:0; }
.retailer-wall span:hover { color:#173f5f; background:#f8fbfd; }

.home-cta { padding:90px 0; background:#173f5f; color:#fff; }
.home-cta-inner { display:flex; align-items:flex-end; justify-content:space-between; gap:50px; }
.home-cta .eyebrow { color:#8fc4e5; margin-bottom:16px; }
.home-cta h2 { max-width:760px; }
.home-cta p { margin-top:20px; color:rgba(255,255,255,.72); }
.home-cta .button-primary { flex:none; background:#fff; color:#173f5f; box-shadow:none; }
.home-cta .button-primary:hover { background:#e8f2f8; }

.site-footer { background:#f7fafc; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1.8fr repeat(4,minmax(120px,1fr)); gap:38px; padding:64px 0 34px; }
.footer-intro img { width:205px; height:auto; display:block; margin-bottom:20px; }
.footer-intro p { max-width:260px; }
.footer-column { display:flex; flex-direction:column; gap:12px; }
.footer-column h2 { margin:0 0 8px; color:#173f5f; font-size:13px; text-transform:uppercase; letter-spacing:.13em; }
.footer-column a,.footer-column span { color:#647b8c; text-decoration:none; font-size:14px; }
.footer-column a:hover { color:#2f78ad; }
.footer-meta { grid-column:1/-1; margin-top:24px; padding-top:24px; border-top:1px solid var(--line); color:#80909c; font-size:13px; }

@media(max-width:1120px){
    .brand img{width:205px}.home-trust-grid{grid-template-columns:repeat(2,1fr)}.home-trust-grid article:nth-child(2){border-right:0}.home-trust-grid article:nth-child(-n+2){border-bottom:1px solid var(--line)}.footer-grid{grid-template-columns:1.5fr repeat(2,1fr)}.footer-intro{grid-row:span 2}
}
@media(max-width:900px){
    .brand img{width:190px}.home-section-heading,.retailers-inner{grid-template-columns:1fr}.home-section-heading{gap:22px}.retailer-wall{grid-template-columns:repeat(2,1fr)}.retailer-wall span:nth-child(3n){border-right:1px solid var(--line)}.retailer-wall span:nth-child(2n){border-right:0}.retailer-wall span:nth-last-child(-n+3){border-bottom:1px solid var(--line)}.retailer-wall span:nth-last-child(-n+2){border-bottom:0}.home-cta-inner{align-items:flex-start;flex-direction:column}.footer-grid{grid-template-columns:repeat(2,1fr)}.footer-intro{grid-column:1/-1;grid-row:auto}
}
@media(max-width:620px){
    .brand img{width:165px}.home-trust{padding:76px 0 82px}.home-trust-grid{grid-template-columns:1fr}.home-trust-grid article{border-right:0!important;border-bottom:1px solid var(--line)!important}.home-trust-grid article:last-child{border-bottom:0!important}.home-trust-grid span{margin-bottom:28px}.retailers-section{padding:78px 0}.retailer-wall{grid-template-columns:1fr}.retailer-wall span{border-right:0!important;border-bottom:1px solid var(--line)!important}.retailer-wall span:last-child{border-bottom:0!important}.home-cta{padding:68px 0}.home-cta .button-primary{width:100%}.footer-grid{grid-template-columns:1fr;padding-top:48px}.footer-intro{grid-column:auto}
}

/* v0.6 — photographic UK-to-Gibraltar homepage hero */
.hero-visual {
    padding: 20px 0 34px;
    background:
        radial-gradient(circle at 80% 20%, rgba(223, 238, 249, .46), transparent 42%),
        var(--paper);
}
.hero-visual::before { display: none; }
.hero-visual-picture {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(23, 56, 63, .08);
    border-radius: 28px;
    background: #eef5fa;
    box-shadow: 0 24px 70px rgba(25, 58, 92, .12);
}
.hero-visual-picture img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 900px) {
    .hero-visual { padding-top: 16px; }
    .hero-visual-picture {
        overflow-x: auto;
        border-radius: 20px;
        scrollbar-width: thin;
    }
    .hero-visual-picture img {
        width: 1120px;
        max-width: none;
    }
}
@media (max-width: 560px) {
    .hero-visual .shell { width: 100%; }
    .hero-visual-picture {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
    .hero-visual-picture img { width: 980px; }
}

/* Foundation 1.4 — compact story homepage */
.journey-hero {
    padding: 44px 0 66px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 18%, rgba(213,232,243,.72), transparent 34%),
        linear-gradient(180deg, #fbfaf7 0%, #f7fafc 100%);
}
.journey-hero-grid {
    display: grid;
    grid-template-columns: minmax(360px,.72fr) minmax(620px,1.28fr);
    gap: clamp(42px,5vw,82px);
    align-items: center;
}
.journey-hero-copy { padding: 22px 0; }
.journey-hero-copy .eyebrow { margin-bottom: 20px; color:#2f78ad; }
.journey-hero-copy h1 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px,5.2vw,78px);
    line-height: 1.01;
    letter-spacing: -.065em;
    font-weight: 700;
}
.journey-hero-copy h1 span { color:#617a91; font-size:.76em; letter-spacing:-.045em; }
.journey-hero-lead {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.65;
}
.journey-hero-actions { display:flex; align-items:center; gap:24px; margin-top:30px; }
.journey-visual {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 12px;
    min-width: 0;
}
.journey-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(23,63,95,.09);
    border-radius: 24px;
    background:#dceaf3;
    box-shadow:0 20px 55px rgba(23,63,95,.11);
}
.journey-photo img { display:block; width:100%; height:100%; object-fit:cover; }
.journey-photo-uk { height: 265px; }
.journey-photo-gibraltar { height: 205px; margin-left: 18%; }
.journey-photo figcaption {
    position:absolute;
    left:16px;
    bottom:14px;
    padding:9px 13px;
    border:1px solid rgba(23,63,95,.08);
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:#173f5f;
    box-shadow:0 8px 22px rgba(23,63,95,.10);
    font-size:12px;
    font-weight:700;
    backdrop-filter:blur(8px);
}
.journey-route {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:auto 1fr auto 1fr auto;
    align-items:center;
    gap:12px;
    margin:-4px 7% -4px 10%;
    padding:12px 15px;
    border:1px solid rgba(23,63,95,.08);
    border-radius:18px;
    background:rgba(255,255,255,.96);
    box-shadow:0 14px 38px rgba(23,63,95,.09);
}
.journey-route div { display:flex; align-items:center; gap:8px; white-space:nowrap; }
.journey-route span { display:grid; place-items:center; width:26px; height:26px; border-radius:50%; background:#e5f0f7; color:#2f78ad; font-size:10px; font-weight:800; }
.journey-route strong { color:#486578; font-size:12px; }
.journey-route i { height:1px; background:repeating-linear-gradient(90deg,#8fb7d0 0 5px,transparent 5px 10px); }

.retailers-logos { padding: 84px 0; }
.retailer-logo-wall {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
}
.retailer-logo-card {
    min-height:82px;
    display:grid;
    place-items:center;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 28px rgba(23,63,95,.045);
    transition:transform .2s ease, box-shadow .2s ease;
}
.retailer-logo-card:hover { transform:translateY(-2px); box-shadow:0 15px 34px rgba(23,63,95,.085); }
.retailer-logo-card img { display:block; width:100%; height:100%; min-height:82px; object-fit:cover; }

.home-values { padding: 74px 0 82px; background:#fff; border-top:1px solid var(--line); text-align:center; }
.value-line { display:flex; justify-content:center; flex-wrap:wrap; gap:12px 34px; color:#526e82; font-weight:700; }
.value-line span { position:relative; }
.value-line span:not(:last-child)::after { content:'•'; position:absolute; right:-20px; color:#8fb7d0; }
.brand-philosophy {
    margin:42px 0 0;
    color:#173f5f;
    font-family:'Manrope',sans-serif;
    font-size:clamp(38px,5vw,68px);
    font-weight:700;
    letter-spacing:-.06em;
}
.compact-home-cta { padding: 66px 0; }
.compact-home-cta h2 { font-size:clamp(36px,4.2vw,58px); }

@media (max-width: 1120px) {
    .journey-hero-grid { grid-template-columns:1fr; }
    .journey-hero-copy { max-width:780px; text-align:center; margin-inline:auto; }
    .journey-hero-lead { margin-inline:auto; }
    .journey-hero-actions { justify-content:center; }
    .journey-visual { max-width:900px; width:100%; margin-inline:auto; }
}
@media (max-width: 780px) {
    .journey-hero { padding-top:32px; }
    .journey-photo-uk { height:220px; }
    .journey-photo-gibraltar { height:180px; margin-left:8%; }
    .journey-route { grid-template-columns:1fr; gap:8px; margin:-2px 5%; }
    .journey-route i { display:none; }
    .journey-route div { justify-content:center; }
    .retailer-logo-wall { grid-template-columns:repeat(3,1fr); }
    .value-line { flex-direction:column; gap:15px; }
    .value-line span::after { display:none; }
}
@media (max-width: 520px) {
    .journey-hero-grid { gap:30px; }
    .journey-hero-copy h1 { font-size:44px; }
    .journey-hero-actions { flex-direction:column; }
    .journey-hero-actions .button { width:100%; }
    .journey-photo { border-radius:18px; }
    .journey-photo-uk { height:170px; }
    .journey-photo-gibraltar { height:150px; margin-left:0; }
    .journey-photo figcaption { left:10px; right:10px; bottom:9px; text-align:center; }
    .retailer-logo-wall { grid-template-columns:repeat(2,1fr); }
    .brand-philosophy { font-size:42px; }
}

/* Foundation 1.4.1 — continuous journey artwork and linked retailer wall */
.journey-visual-continuous {
    display:block;
}
.journey-continuous-panel {
    position:relative;
    margin:0;
    overflow:hidden;
    border:1px solid rgba(23,63,95,.09);
    border-radius:28px;
    background:#dceaf3;
    box-shadow:0 24px 64px rgba(23,63,95,.13);
}
.journey-continuous-panel picture,
.journey-continuous-panel img {
    display:block;
    width:100%;
    height:auto;
}
.journey-stage {
    position:absolute;
    z-index:2;
    display:flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border:1px solid rgba(23,63,95,.10);
    border-radius:999px;
    background:rgba(255,255,255,.91);
    color:#294f6a;
    box-shadow:0 10px 25px rgba(23,63,95,.12);
    font-size:11px;
    font-weight:700;
    backdrop-filter:blur(9px);
}
.journey-stage span {
    display:grid;
    place-items:center;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#e7f2f9;
    color:#2f78ad;
    font-size:9px;
    font-weight:800;
}
.journey-stage-retailers { left:3%; top:4%; }
.journey-stage-uk { left:5%; top:45%; }
.journey-stage-transport { left:38%; top:53%; }
.journey-stage-gibraltar { right:4%; top:64%; }
.journey-stage-ready { right:3%; bottom:4%; }

.retailer-logo-card {
    position:relative;
    text-decoration:none;
    cursor:pointer;
}
.retailer-logo-card:focus-visible {
    outline:3px solid rgba(47,120,173,.34);
    outline-offset:3px;
}
.retailer-external {
    position:absolute;
    right:9px;
    top:8px;
    color:#7d96a7;
    font-size:12px;
    opacity:0;
    transform:translate(-2px,2px);
    transition:opacity .2s ease, transform .2s ease;
}
.retailer-logo-card:hover .retailer-external,
.retailer-logo-card:focus-visible .retailer-external {
    opacity:1;
    transform:none;
}

@media (max-width:780px) {
    .journey-stage { padding:7px 10px; font-size:10px; }
    .journey-stage span { width:20px; height:20px; }
    .journey-stage-retailers { left:3%; top:3%; }
    .journey-stage-uk { left:3%; top:43%; }
    .journey-stage-transport { left:30%; top:54%; }
    .journey-stage-gibraltar { right:3%; top:66%; }
    .journey-stage-ready { left:3%; right:auto; bottom:3%; }
}
@media (max-width:520px) {
    .journey-continuous-panel { border-radius:19px; }
    .journey-stage-retailers,
    .journey-stage-ready { max-width:80%; }
    .journey-stage-uk { top:41%; }
    .journey-stage-transport { left:4%; top:53%; }
    .journey-stage-gibraltar { right:3%; top:65%; }
    .journey-stage strong { font-size:9px; }
}

/* Foundation 1.5 — How It Works */
.hiw-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 110px;
    background:
        radial-gradient(circle at 82% 16%, rgba(213,232,243,.78), transparent 34%),
        linear-gradient(180deg, #fbfaf7 0%, #f6fafc 100%);
}
.hiw-hero::after {
    content: '';
    position: absolute;
    right: -160px;
    bottom: -230px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(47,120,173,.10);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(47,120,173,.025), 0 0 0 140px rgba(47,120,173,.018);
}
.hiw-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr);
    gap: clamp(60px,9vw,145px);
    align-items: center;
}
.hiw-hero-copy h1 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(54px,6.2vw,94px);
    line-height: 1.01;
    letter-spacing: -.068em;
    font-weight: 700;
}
.hiw-hero-copy h1 span { color: #607c91; font-size: .78em; letter-spacing: -.05em; }
.hiw-hero-lead {
    max-width: 690px;
    margin: 30px 0 0;
    color: var(--ink-soft);
    font-size: clamp(18px,1.45vw,22px);
    line-height: 1.7;
}
.hiw-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hiw-summary {
    padding: 38px;
    border: 1px solid rgba(23,63,95,.09);
    border-radius: 30px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 24px 70px rgba(23,63,95,.11);
    backdrop-filter: blur(12px);
}
.hiw-summary-route { display: grid; grid-template-columns: 32px 1fr 32px 1fr 32px; align-items: center; gap: 10px; }
.hiw-summary-route span {
    width: 32px; height: 32px; border: 8px solid #dcebf4; border-radius: 50%; background: #2f78ad;
    box-shadow: 0 0 0 1px rgba(47,120,173,.14);
}
.hiw-summary-route span:last-child { background: #d68c58; border-color: #f9e7da; }
.hiw-summary-route i { height: 2px; background: repeating-linear-gradient(90deg,#8fb7d0 0 7px,transparent 7px 13px); }
.hiw-summary-copy { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 14px; }
.hiw-summary-copy p { margin: 0; color: #6d8190; font-size: 12px; line-height: 1.35; text-align: center; font-weight: 700; }
.hiw-summary blockquote {
    margin: 66px 0 0;
    color: #173f5f;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(27px,2.45vw,40px);
    line-height: 1.18;
    letter-spacing: -.045em;
    font-weight: 650;
}
.hiw-intro { padding: 104px 0 62px; background: #fff; border-top: 1px solid var(--line); }
.hiw-intro-grid { display: grid; grid-template-columns: .62fr 1.05fr .95fr; gap: 40px 72px; align-items: end; }
.hiw-intro .eyebrow { margin: 0; align-self: start; }
.hiw-intro h2 { margin: 0; font-family: 'Manrope',sans-serif; font-size: clamp(38px,4.3vw,64px); line-height: 1.06; letter-spacing: -.055em; }
.hiw-intro-grid > p:last-child { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.hiw-steps { background: #fff; padding-bottom: 108px; }
.hiw-step {
    display: grid;
    grid-template-columns: 70px 76px minmax(0,1fr) minmax(190px,.36fr);
    gap: 30px;
    align-items: center;
    padding: 42px 0;
    border-top: 1px solid var(--line);
}
.hiw-step:last-child { border-bottom: 1px solid var(--line); }
.hiw-step-number { color: #94a7b4; font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.hiw-step-icon {
    display: grid; place-items: center; width: 68px; height: 68px;
    border-radius: 22px; background: #edf5f9; color: #2f78ad;
}
.hiw-step-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hiw-step-kicker { margin: 0 0 8px; color: #2f78ad; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.hiw-step-copy h3 { margin: 0 0 10px; font-family: 'Manrope',sans-serif; font-size: clamp(27px,2.2vw,36px); letter-spacing: -.04em; }
.hiw-step-copy > p:last-child { margin: 0; max-width: 760px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.hiw-step-note { justify-self: end; max-width: 210px; color: #738896; font-size: 14px; line-height: 1.55; font-weight: 650; }
.hiw-options { padding: 105px 0; background: #f1f6f9; border-top: 1px solid #e2edf3; }
.hiw-options-grid { display: grid; grid-template-columns: 1.15fr repeat(2,minmax(250px,.72fr)); gap: 22px; }
.hiw-options-heading { padding-right: clamp(30px,5vw,80px); }
.hiw-options-heading h2 { margin: 0; font-family: 'Manrope',sans-serif; font-size: clamp(38px,4.2vw,62px); line-height: 1.06; letter-spacing: -.055em; }
.hiw-options article {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(23,63,95,.055);
}
.hiw-options article span { color: #2f78ad; font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.hiw-options article h3 { margin: auto 0 14px; font-family: 'Manrope',sans-serif; font-size: 29px; letter-spacing: -.04em; }
.hiw-options article p { margin: 0; color: var(--ink-soft); line-height: 1.7; }
.hiw-reassurance { padding: 112px 0; background: #fff; text-align: center; }
.hiw-reassurance-inner { max-width: 1050px; }
.hiw-reassurance h2 { margin: 0 auto; max-width: 970px; font-family: 'Manrope',sans-serif; font-size: clamp(40px,5vw,72px); line-height: 1.07; letter-spacing: -.06em; }
.hiw-reassurance-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 34px; margin-top: 46px; color: #627b8c; font-weight: 700; }
.hiw-reassurance-points span { position: relative; }
.hiw-reassurance-points span:not(:last-child)::after { content: '•'; position: absolute; right: -20px; color: #8fb7d0; }
@media (max-width: 1040px) {
    .hiw-hero-grid { grid-template-columns: 1fr; gap: 52px; }
    .hiw-summary { max-width: 650px; }
    .hiw-intro-grid { grid-template-columns: 1fr 1fr; }
    .hiw-intro .eyebrow { grid-column: 1/-1; }
    .hiw-step { grid-template-columns: 56px 68px 1fr; }
    .hiw-step-note { grid-column: 3; justify-self: start; max-width: none; }
    .hiw-options-grid { grid-template-columns: repeat(2,1fr); }
    .hiw-options-heading { grid-column: 1/-1; max-width: 760px; margin-bottom: 26px; }
}
@media (max-width: 700px) {
    .hiw-hero { padding: 68px 0 78px; }
    .hiw-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .hiw-summary { padding: 27px; }
    .hiw-summary blockquote { margin-top: 44px; }
    .hiw-intro { padding: 76px 0 46px; }
    .hiw-intro-grid { grid-template-columns: 1fr; gap: 22px; }
    .hiw-step { grid-template-columns: 46px 1fr; gap: 18px; align-items: start; padding: 34px 0; }
    .hiw-step-icon { width: 58px; height: 58px; grid-column: 2; }
    .hiw-step-copy { grid-column: 2; }
    .hiw-step-note { grid-column: 2; }
    .hiw-options { padding: 76px 0; }
    .hiw-options-grid { grid-template-columns: 1fr; }
    .hiw-options-heading { grid-column: auto; }
    .hiw-options article { min-height: 250px; }
    .hiw-reassurance { padding: 82px 0; }
    .hiw-reassurance-points { align-items: center; flex-direction: column; gap: 14px; }
    .hiw-reassurance-points span::after { display: none; }
}

/* Foundation 1.6 — detailed How It Works */
.hiw-hero-detailed { padding-bottom: 92px; }
.hiw-summary-detailed { align-self: stretch; display:flex; flex-direction:column; justify-content:center; }
.hiw-summary-label { margin:0 0 24px; color:#748996; font-size:11px; font-weight:800; letter-spacing:.16em; }
.hiw-summary-detailed ol { list-style:none; margin:0; padding:0; display:grid; gap:18px; }
.hiw-summary-detailed li { display:flex; align-items:center; gap:14px; color:var(--ink); font-weight:700; }
.hiw-summary-detailed li span { display:grid; place-items:center; width:34px; height:34px; border-radius:50%; background:#f1ecf7; color:var(--purple); font-size:12px; font-weight:800; }

.hiw-why { padding:96px 0; background:#fff; border-bottom:1px solid var(--line); }
.hiw-why-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(50px,8vw,120px); align-items:start; }
.hiw-why h2 { margin:12px 0 0; max-width:650px; font-family:'Manrope',sans-serif; font-size:clamp(38px,5vw,62px); line-height:1.05; letter-spacing:-.055em; }
.hiw-why-copy { max-width:720px; }
.hiw-why-copy p { margin:0 0 22px; color:var(--ink-soft); font-size:19px; line-height:1.75; }
.hiw-why-copy p:last-child { margin-bottom:0; }

.hiw-journey { padding:108px 0 118px; background:#fbfcfd; }
.hiw-journey-header { max-width:800px; margin-bottom:56px; }
.hiw-journey-header h2 { margin:12px 0 0; font-family:'Manrope',sans-serif; font-size:clamp(40px,5vw,64px); line-height:1.05; letter-spacing:-.055em; }
.hiw-detail-step { display:grid; grid-template-columns:90px minmax(230px,.7fr) minmax(0,1.3fr); gap:clamp(28px,5vw,70px); padding:52px 0; border-top:1px solid var(--line); }
.hiw-detail-step-final { border-bottom:1px solid var(--line); }
.hiw-detail-marker { position:relative; }
.hiw-detail-marker span { display:grid; place-items:center; width:52px; height:52px; border:1px solid #d9d0e7; border-radius:50%; background:#fff; color:var(--purple); font-size:12px; font-weight:850; letter-spacing:.08em; }
.hiw-detail-heading h3 { margin:7px 0 0; font-family:'Manrope',sans-serif; font-size:clamp(27px,2.5vw,38px); line-height:1.12; letter-spacing:-.04em; }
.hiw-detail-copy p { margin:0 0 18px; color:var(--ink-soft); font-size:17px; line-height:1.75; }
.hiw-detail-copy p:last-child { margin-bottom:0; }
.hiw-detail-small { font-size:14px !important; color:#758995 !important; }
.hiw-detail-list,.hiw-check-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 18px; margin:24px 0; }
.hiw-detail-list span,.hiw-check-grid span { position:relative; padding:12px 14px 12px 38px; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--ink); font-size:14px; font-weight:700; }
.hiw-detail-list span::before,.hiw-check-grid span::before { content:'✓'; position:absolute; left:14px; top:11px; color:var(--purple); font-weight:900; }
.hiw-inline-link { display:inline-flex; align-items:center; gap:8px; margin-top:4px; color:var(--purple); font-weight:800; text-decoration:none; }
.hiw-inline-link:hover { text-decoration:underline; }

.hiw-reassurance-card { display:grid; grid-template-columns:68px 1fr; gap:24px; align-items:center; margin:20px 0 32px 90px; padding:30px 34px; border:1px solid #ddd2eb; border-radius:20px; background:#f7f3fa; }
.hiw-reassurance-card-blue { border-color:#cfe1ee; background:#f1f8fc; }
.hiw-reassurance-symbol { display:grid; place-items:center; width:52px; height:52px; border-radius:50%; background:#fff; color:var(--purple); font-size:24px; font-weight:900; box-shadow:0 8px 24px rgba(56,42,75,.08); }
.hiw-reassurance-card h3 { margin:8px 0 0; max-width:850px; font-family:'Manrope',sans-serif; font-size:clamp(22px,2.2vw,31px); line-height:1.25; letter-spacing:-.035em; }

.hiw-closing { padding:110px 0; background:#fff; }
.hiw-closing-inner { max-width:850px; text-align:center; }
.hiw-closing h2 { margin:14px 0 22px; font-family:'Manrope',sans-serif; font-size:clamp(44px,6vw,74px); line-height:1.02; letter-spacing:-.06em; }
.hiw-closing p { max-width:720px; margin:0 auto 34px; color:var(--ink-soft); font-size:19px; line-height:1.7; }

@media(max-width:900px){
    .hiw-why-grid { grid-template-columns:1fr; gap:34px; }
    .hiw-detail-step { grid-template-columns:64px 1fr; gap:20px 26px; }
    .hiw-detail-heading { grid-column:2; }
    .hiw-detail-copy { grid-column:2; }
    .hiw-reassurance-card { margin-left:0; }
}
@media(max-width:640px){
    .hiw-hero-detailed { padding-bottom:70px; }
    .hiw-why,.hiw-journey,.hiw-closing { padding-top:76px; padding-bottom:82px; }
    .hiw-detail-step { grid-template-columns:1fr; gap:16px; padding:38px 0; }
    .hiw-detail-marker,.hiw-detail-heading,.hiw-detail-copy { grid-column:1; }
    .hiw-detail-list,.hiw-check-grid { grid-template-columns:1fr; }
    .hiw-reassurance-card { grid-template-columns:1fr; padding:26px; }
    .hiw-closing-inner { text-align:left; }
    .hiw-closing p { margin-left:0; }
}

/* Foundation 1.7 — completed How It Works page */
.hiw17-hero{padding:88px 0 92px;background:linear-gradient(180deg,#f8fbfd 0%,#fff 100%);border-bottom:1px solid var(--line)}
.hiw17-hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:clamp(48px,8vw,118px);align-items:center}
.hiw17-hero-copy h1{margin:14px 0 24px;font-family:'Manrope',sans-serif;font-size:clamp(54px,7vw,92px);line-height:.98;letter-spacing:-.07em;color:var(--ink)}
.hiw17-hero-copy h1 span{color:var(--purple)}
.hiw17-hero-lead{max-width:720px;margin:0;color:var(--ink-soft);font-size:clamp(18px,1.8vw,22px);line-height:1.65}
.hiw17-hero-actions{display:flex;align-items:center;gap:26px;margin-top:34px}
.hiw17-hero-card{position:relative;min-height:330px;display:flex;flex-direction:column;justify-content:flex-end;padding:38px;border:1px solid #ded5e9;border-radius:30px;background:linear-gradient(145deg,#f7f1fb 0%,#eef7fb 100%);box-shadow:0 24px 70px rgba(32,67,91,.09);overflow:hidden}
.hiw17-hero-card::before{content:'';position:absolute;top:-80px;right:-70px;width:230px;height:230px;border-radius:50%;border:48px solid rgba(111,73,146,.08)}
.hiw17-hero-card-mark{position:absolute;top:34px;left:38px;display:grid;place-items:center;width:58px;height:58px;border-radius:18px;background:#fff;color:var(--purple);font-family:'Manrope',sans-serif;font-size:27px;font-weight:800;box-shadow:0 12px 30px rgba(74,53,94,.1)}
.hiw17-hero-card p{position:relative;margin:0 0 12px;font-family:'Manrope',sans-serif;font-size:clamp(28px,3vw,39px);line-height:1.08;letter-spacing:-.045em;color:var(--ink)}
.hiw17-hero-card small{position:relative;color:#667e8d;font-size:15px;line-height:1.55}
.hiw17-route{position:sticky;top:0;z-index:20;border-bottom:1px solid var(--line);background:rgba(255,255,255,.93);backdrop-filter:blur(14px)}
.hiw17-route-inner{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));overflow-x:auto;scrollbar-width:none}
.hiw17-route-inner::-webkit-scrollbar{display:none}
.hiw17-route a{position:relative;min-width:105px;display:flex;align-items:center;justify-content:center;gap:8px;padding:17px 10px;color:#6d8290;font-size:12px;font-weight:800;text-decoration:none;white-space:nowrap}
.hiw17-route a:not(:last-child)::after{content:'›';position:absolute;right:-3px;color:#b3c3cc;font-size:18px}
.hiw17-route a span{width:7px;height:7px;border-radius:50%;background:#cabbd9}
.hiw17-route a:hover{color:var(--purple)}
.hiw17-why{padding:106px 0;background:#fff;border-bottom:1px solid var(--line)}
.hiw17-why-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(52px,8vw,120px);align-items:start}
.hiw17-why h2{margin:12px 0 0;max-width:660px;font-family:'Manrope',sans-serif;font-size:clamp(42px,5vw,66px);line-height:1.04;letter-spacing:-.06em}
.hiw17-why-copy{max-width:740px}
.hiw17-why-copy p{margin:0 0 24px;color:var(--ink-soft);font-size:19px;line-height:1.78}
.hiw17-why-copy p:last-child{margin-bottom:0}
.hiw17-journey{padding:112px 0 124px;background:#f9fbfc}
.hiw17-journey-header{max-width:850px;margin-bottom:64px}
.hiw17-journey-header h2{margin:12px 0 0;font-family:'Manrope',sans-serif;font-size:clamp(42px,5vw,68px);line-height:1.04;letter-spacing:-.058em}
.hiw17-timeline{position:relative}
.hiw17-timeline::before{content:'';position:absolute;top:32px;bottom:32px;left:29px;width:1px;background:linear-gradient(#cfc3dc,#bfd7e5)}
.hiw17-step{position:relative;display:grid;grid-template-columns:60px minmax(0,1fr) minmax(170px,.3fr);gap:clamp(24px,4vw,58px);align-items:start;padding:48px 0;border-top:1px solid var(--line);scroll-margin-top:72px}
.hiw17-step-final{border-bottom:1px solid var(--line)}
.hiw17-marker{position:relative;z-index:2;padding-top:1px;background:#f9fbfc}
.hiw17-marker span{display:grid;place-items:center;width:58px;height:58px;border:1px solid #d8cee5;border-radius:50%;background:#fff;color:var(--purple);font-size:12px;font-weight:850;letter-spacing:.08em;box-shadow:0 9px 25px rgba(48,72,89,.06)}
.hiw17-step-kicker{margin:3px 0 8px;color:#397ba9;font-size:11px;font-weight:850;letter-spacing:.17em}
.hiw17-step-body h3{margin:0 0 14px;font-family:'Manrope',sans-serif;font-size:clamp(29px,3vw,43px);line-height:1.08;letter-spacing:-.045em}
.hiw17-step-body>p{max-width:780px;margin:0 0 17px;color:var(--ink-soft);font-size:17px;line-height:1.76}
.hiw17-step-body>p:last-child{margin-bottom:0}
.hiw17-step-side{justify-self:end;max-width:190px;padding-top:34px}
.hiw17-step-side strong,.hiw17-step-side span{display:block}
.hiw17-step-side strong{margin-bottom:6px;color:var(--ink);font-size:14px}
.hiw17-step-side span{color:#778b97;font-size:13px;line-height:1.55}
.hiw17-chip-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 12px;max-width:760px;margin:22px 0}
.hiw17-chip-grid span{position:relative;padding:12px 14px 12px 38px;border:1px solid var(--line);border-radius:13px;background:#fff;color:var(--ink);font-size:14px;font-weight:700}
.hiw17-chip-grid span::before{content:'✓';position:absolute;left:14px;top:11px;color:var(--purple);font-weight:900}
.hiw17-small{font-size:14px!important;color:#788b96!important}
.hiw17-inline-link{display:inline-flex;align-items:center;gap:8px;margin-top:4px;color:var(--purple);font-weight:800;text-decoration:none}
.hiw17-inline-link:hover{text-decoration:underline}
.hiw17-reassurance{position:relative;display:grid;grid-template-columns:58px 1fr;gap:22px;align-items:center;margin:18px 0 22px 84px;padding:30px 34px;border:1px solid #ddd2e9;border-radius:22px;background:#f7f2fa;box-shadow:0 14px 36px rgba(74,53,94,.045)}
.hiw17-reassurance>span{display:grid;place-items:center;width:50px;height:50px;border-radius:50%;background:#fff;color:var(--purple);font-size:22px;font-weight:900;box-shadow:0 8px 22px rgba(74,53,94,.08)}
.hiw17-reassurance small,.hiw17-reassurance strong{display:block}
.hiw17-reassurance small{margin-bottom:6px;color:#7a668e;font-size:10px;font-weight:850;letter-spacing:.15em}
.hiw17-reassurance strong{max-width:900px;font-family:'Manrope',sans-serif;font-size:clamp(22px,2.3vw,32px);line-height:1.28;letter-spacing:-.035em}
.hiw17-reassurance-blue{border-color:#cfe1ed;background:#f1f8fc}
.hiw17-reassurance-blue small{color:#397ba9}
.hiw17-closing{padding:118px 0;background:#fff;text-align:center}
.hiw17-closing-inner{max-width:900px}
.hiw17-closing h2{margin:14px 0 24px;font-family:'Manrope',sans-serif;font-size:clamp(48px,6vw,78px);line-height:1.01;letter-spacing:-.065em}
.hiw17-closing p{max-width:740px;margin:0 auto 36px;color:var(--ink-soft);font-size:19px;line-height:1.72}
@media(max-width:980px){.hiw17-hero-grid{grid-template-columns:1fr}.hiw17-hero-card{min-height:260px}.hiw17-why-grid{grid-template-columns:1fr;gap:36px}.hiw17-step{grid-template-columns:60px minmax(0,1fr)}.hiw17-step-side{grid-column:2;justify-self:start;max-width:none;padding-top:0;display:flex;gap:8px}.hiw17-step-side strong::after{content:' ·';color:#9dafb9}.hiw17-reassurance{margin-left:0}}
@media(max-width:700px){.hiw17-hero{padding:68px 0 72px}.hiw17-hero-copy h1{font-size:52px}.hiw17-hero-actions{align-items:flex-start;flex-direction:column;gap:20px}.hiw17-route-inner{justify-content:start}.hiw17-why,.hiw17-journey,.hiw17-closing{padding-top:78px;padding-bottom:84px}.hiw17-timeline::before{display:none}.hiw17-step{grid-template-columns:1fr;gap:14px;padding:38px 0}.hiw17-marker,.hiw17-step-body,.hiw17-step-side{grid-column:1}.hiw17-marker{background:transparent}.hiw17-marker span{width:48px;height:48px}.hiw17-chip-grid{grid-template-columns:1fr}.hiw17-reassurance{grid-template-columns:1fr;padding:26px}.hiw17-closing{text-align:left}.hiw17-closing p{margin-left:0}.hiw17-hero-card{padding:30px;min-height:250px}.hiw17-hero-card-mark{top:28px;left:30px}}

/* Foundation 1.8 — How It Works narrative redesign */
.hiw18-hero{padding:88px 0 86px;background:radial-gradient(circle at 75% 25%,rgba(126,91,183,.12),transparent 32%),linear-gradient(180deg,#fbfaff 0%,#fff 100%);border-bottom:1px solid var(--line)}
.hiw18-hero-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);gap:clamp(44px,7vw,110px);align-items:center}
.hiw18-hero-copy h1{margin:15px 0 24px;font-family:'Manrope',sans-serif;font-size:clamp(54px,6.6vw,88px);line-height:1;letter-spacing:-.068em;color:var(--ink)}
.hiw18-hero-copy h1 span{color:var(--purple)}
.hiw18-hero-copy>p:not(.eyebrow){max-width:660px;margin:0 0 32px;color:var(--ink-soft);font-size:clamp(18px,1.7vw,21px);line-height:1.7}
.hiw18-hero-visual{position:relative;margin:0;min-height:330px;display:flex;align-items:center;justify-content:center}
.hiw18-hero-visual::before{content:'';position:absolute;inset:7% 1%;border-radius:44% 56% 42% 58%/55% 43% 57% 45%;background:linear-gradient(135deg,rgba(242,236,251,.94),rgba(235,247,251,.72));filter:blur(2px)}
.hiw18-hero-visual img{position:relative;z-index:1;display:block;width:100%;max-width:650px;height:auto;mix-blend-mode:multiply}
.hiw18-why{padding:76px 0;background:#fff}
.hiw18-why-panel{display:grid;grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr);gap:clamp(42px,6vw,86px);padding:48px 54px;border:1px solid #e6def0;border-radius:28px;background:linear-gradient(110deg,#fbf8fd 0%,#f4f9fc 100%)}
.hiw18-why-title{display:flex;gap:22px;align-items:flex-start}
.hiw18-line-icon{display:grid;place-items:center;flex:0 0 56px;width:56px;height:56px;border:2px solid #ad8bd0;border-radius:18px;color:var(--purple);font-size:29px;line-height:1}
.hiw18-why h2{margin:10px 0 0;font-family:'Manrope',sans-serif;font-size:clamp(32px,4vw,50px);line-height:1.08;letter-spacing:-.05em}
.hiw18-why-copy{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:32px}
.hiw18-why-copy p{margin:0;color:var(--ink-soft);font-size:16px;line-height:1.78}
.hiw18-story{padding:112px 0 126px;background:#fbfcfd}
.hiw18-story-heading{max-width:900px;margin-bottom:72px}
.hiw18-story-heading h2{margin:13px 0 0;font-family:'Manrope',sans-serif;font-size:clamp(44px,5.4vw,72px);line-height:1.03;letter-spacing:-.062em}
.hiw18-chapters{display:flex;flex-direction:column}
.hiw18-chapter{display:grid;grid-template-columns:minmax(300px,.78fr) minmax(0,1.22fr);gap:clamp(48px,8vw,116px);align-items:center;padding:76px 0;border-top:1px solid var(--line)}
.hiw18-chapter:last-child{border-bottom:1px solid var(--line)}
.hiw18-chapter-reverse .hiw18-chapter-visual{order:2}.hiw18-chapter-reverse .hiw18-chapter-copy{order:1}
.hiw18-chapter-visual{position:relative;min-height:280px;display:flex;flex-direction:column;justify-content:flex-end;padding:34px;border:1px solid rgba(132,102,169,.15);border-radius:30px;overflow:hidden;background:linear-gradient(145deg,#f4eef9,#eaf5fa)}
.hiw18-chapter-visual::before,.hiw18-chapter-visual::after{content:'';position:absolute;border-radius:50%;background:rgba(255,255,255,.68)}
.hiw18-chapter-visual::before{width:210px;height:210px;right:-55px;top:-70px}.hiw18-chapter-visual::after{width:120px;height:120px;left:-40px;bottom:-42px}
.hiw18-chapter-visual span,.hiw18-chapter-visual strong{position:relative;z-index:1}.hiw18-chapter-visual span{position:absolute;top:30px;left:30px;display:grid;place-items:center;width:52px;height:52px;border-radius:50%;background:#fff;color:var(--purple);font-size:12px;font-weight:850;letter-spacing:.08em;box-shadow:0 10px 28px rgba(69,47,91,.08)}
.hiw18-chapter-visual strong{font-family:'Manrope',sans-serif;font-size:clamp(38px,5vw,68px);line-height:1;letter-spacing:-.06em;color:rgba(25,58,79,.9)}
.hiw18-visual-form{background:linear-gradient(145deg,#edf7fb,#f6f0fa)}.hiw18-visual-review{background:linear-gradient(145deg,#f7f1fb,#f2f7fb)}.hiw18-visual-quote{background:linear-gradient(145deg,#f2f8fb,#f7f1fa)}.hiw18-visual-purchase{background:linear-gradient(145deg,#f7f2fb,#edf7fb)}.hiw18-visual-hub{background:linear-gradient(145deg,#eff7fa,#f6f1fa)}.hiw18-visual-travel{background:linear-gradient(145deg,#f5effa,#eaf5f9)}.hiw18-visual-customs{background:linear-gradient(145deg,#edf7fb,#f6f0fa)}.hiw18-visual-ready{background:linear-gradient(145deg,#f7f2fb,#edf7fa)}
.hiw18-step-label{margin:0 0 10px;color:#397ba9;font-size:11px;font-weight:850;letter-spacing:.17em}
.hiw18-chapter-copy h3{margin:0 0 18px;font-family:'Manrope',sans-serif;font-size:clamp(34px,4.2vw,56px);line-height:1.06;letter-spacing:-.052em}
.hiw18-chapter-copy>p:not(.hiw18-step-label){max-width:760px;margin:0 0 17px;color:var(--ink-soft);font-size:17px;line-height:1.78}
.hiw18-detail-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 12px;max-width:680px;margin-top:24px}
.hiw18-detail-list span{position:relative;padding:12px 14px 12px 38px;border:1px solid var(--line);border-radius:13px;background:#fff;color:var(--ink);font-size:14px;font-weight:750}.hiw18-detail-list span::before{content:'✓';position:absolute;left:14px;color:var(--purple);font-weight:900}
.hiw18-good-to-know{margin-top:28px;padding:24px 27px;border:1px solid #ddd2e9;border-radius:18px;background:#f8f3fa}.hiw18-good-to-know small,.hiw18-good-to-know strong{display:block}.hiw18-good-to-know small{margin-bottom:6px;color:#7a668e;font-size:10px;font-weight:850;letter-spacing:.15em}.hiw18-good-to-know strong{font-family:'Manrope',sans-serif;font-size:clamp(19px,2vw,26px);line-height:1.35;letter-spacing:-.025em}.hiw18-good-to-know-blue{border-color:#cfe1ed;background:#f1f8fc}.hiw18-good-to-know-blue small{color:#397ba9}
.hiw18-inline-link{display:inline-flex;align-items:center;gap:8px;margin-top:5px;color:var(--purple);font-weight:800;text-decoration:none}.hiw18-inline-link:hover{text-decoration:underline}
.hiw18-closing{padding:124px 0;background:#fff;text-align:center}.hiw18-closing-inner{max-width:900px}.hiw18-closing h2{margin:14px 0 24px;font-family:'Manrope',sans-serif;font-size:clamp(50px,6.2vw,80px);line-height:1.01;letter-spacing:-.066em}.hiw18-closing p{max-width:720px;margin:0 auto 36px;color:var(--ink-soft);font-size:19px;line-height:1.72}
@media(max-width:980px){.hiw18-hero-grid{grid-template-columns:1fr}.hiw18-hero-visual{min-height:260px}.hiw18-why-panel{grid-template-columns:1fr}.hiw18-chapter{grid-template-columns:1fr;gap:34px}.hiw18-chapter-reverse .hiw18-chapter-visual,.hiw18-chapter-reverse .hiw18-chapter-copy{order:initial}.hiw18-chapter-visual{min-height:230px}}
@media(max-width:700px){.hiw18-hero{padding:66px 0 64px}.hiw18-hero-copy h1{font-size:50px}.hiw18-why{padding:54px 0}.hiw18-why-panel{padding:30px 24px;border-radius:22px}.hiw18-why-title{gap:16px}.hiw18-line-icon{width:48px;height:48px;flex-basis:48px}.hiw18-why-copy{grid-template-columns:1fr;gap:18px}.hiw18-story{padding:78px 0 84px}.hiw18-story-heading{margin-bottom:36px}.hiw18-chapter{padding:46px 0}.hiw18-chapter-visual{min-height:190px;padding:26px;border-radius:22px}.hiw18-chapter-visual span{top:22px;left:22px;width:46px;height:46px}.hiw18-detail-list{grid-template-columns:1fr}.hiw18-closing{padding:86px 0;text-align:left}.hiw18-closing p{margin-left:0}.hiw18-hero-visual img{max-width:540px}}

/* Foundation 1.9 — faithful How It Works implementation */
.hiw19-hero{padding:72px 0 58px;background:linear-gradient(120deg,#fff 0%,#fbf8ff 46%,#eef7fb 100%)}
.hiw19-hero-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(440px,1.18fr);align-items:center;gap:44px}
.hiw19-hero-copy h1{margin:12px 0 20px;font-family:'Manrope',sans-serif;font-size:clamp(48px,5.7vw,76px);line-height:1.01;letter-spacing:-.06em;color:#173f5f}
.hiw19-hero-copy h1 span{color:#173f5f}.hiw19-hero-copy>p:not(.eyebrow){max-width:560px;margin:0 0 28px;color:#5f7890;font-size:18px;line-height:1.75}
.hiw19-hero-art{margin:0;overflow:hidden}.hiw19-hero-art img{display:block;width:100%;height:auto;object-fit:contain}
.hiw19-why{padding:28px 0 62px;background:#fff}.hiw19-why-panel{display:grid;grid-template-columns:1.15fr repeat(3,1fr);align-items:center;gap:28px;padding:30px 34px;border:1px solid #e7dcf4;border-radius:22px;background:linear-gradient(100deg,#fbf8ff,#fff)}
.hiw19-why-heading{display:flex;align-items:center;gap:20px}.hiw19-why-heading h2{margin:0;font-family:'Manrope',sans-serif;font-size:28px;line-height:1.12;letter-spacing:-.04em;color:#173f5f}.hiw19-heart{display:grid;place-items:center;width:60px;height:60px;border:2px solid #9b6ee8;border-radius:18px;color:#7a4bc7;font-size:34px}.hiw19-why-panel>p{margin:0;color:#5d7185;line-height:1.72}
.hiw19-process{padding:82px 0 105px;background:#fff}.hiw19-process-heading{max-width:820px;margin-bottom:60px}.hiw19-process-heading h2{margin:12px 0 0;font-family:'Manrope',sans-serif;font-size:clamp(40px,5vw,66px);line-height:1.04;letter-spacing:-.058em;color:#173f5f}
.hiw19-timeline{position:relative}.hiw19-timeline::before{content:"";position:absolute;left:20px;top:22px;bottom:22px;width:2px;background:#e4d7f6}
.hiw19-step{position:relative;display:grid;grid-template-columns:56px 230px minmax(0,1fr) 220px;align-items:center;gap:28px;padding:18px 0;min-height:170px}
.hiw19-number{position:relative;z-index:2;display:grid;place-items:center;width:42px;height:42px;border:2px solid #cdb7ee;border-radius:50%;background:#fff;color:#173f5f;font-weight:800}
.hiw19-step>img{display:block;width:230px;aspect-ratio:1.56/1;object-fit:cover;border-radius:14px}
.hiw19-copy h3{margin:0 0 10px;font-family:'Manrope',sans-serif;font-size:27px;line-height:1.15;letter-spacing:-.035em;color:#173f5f}.hiw19-copy p{margin:0 0 8px;color:#5c7084;line-height:1.7}.hiw19-copy p:last-child{margin-bottom:0}
.hiw19-note{padding:22px;border:1px solid #dfd0f1;border-radius:16px;background:linear-gradient(135deg,#fbf8ff,#f7f2fc)}.hiw19-note strong{display:block;margin-bottom:8px;color:#173f5f}.hiw19-note p{margin:0;color:#617487;font-size:14px;line-height:1.6}
.hiw19-closing{padding:0 0 92px;background:#fff}.hiw19-closing-panel{display:grid;grid-template-columns:1fr auto;align-items:center;gap:48px;padding:42px 50px;border:1px solid #e5d8f4;border-radius:24px;background:linear-gradient(110deg,#faf7ff,#fff)}.hiw19-closing h2{margin:10px 0 12px;font-family:'Manrope',sans-serif;font-size:clamp(34px,4vw,52px);line-height:1.05;letter-spacing:-.05em;color:#173f5f}.hiw19-closing p{margin:0;max-width:650px;color:#60768a;line-height:1.7}.hiw19-closing-panel>div:last-child{display:flex;flex-direction:column;align-items:flex-start;gap:12px}.hiw19-closing small{color:#6a7e90}
@media(max-width:1050px){.hiw19-hero-grid{grid-template-columns:1fr}.hiw19-hero-copy{max-width:720px}.hiw19-hero-art{max-width:760px}.hiw19-why-panel{grid-template-columns:1fr 1fr}.hiw19-why-heading{grid-column:1/-1}.hiw19-step{grid-template-columns:56px 210px minmax(0,1fr)}.hiw19-note{grid-column:3}}
@media(max-width:760px){.hiw19-hero{padding:58px 0 46px}.hiw19-hero-grid{gap:28px}.hiw19-hero-copy h1{font-size:50px}.hiw19-why-panel{grid-template-columns:1fr;padding:26px}.hiw19-why-heading{grid-column:auto}.hiw19-process{padding:68px 0 78px}.hiw19-process-heading{margin-bottom:38px}.hiw19-timeline::before{left:19px}.hiw19-step{grid-template-columns:46px 1fr;gap:16px 18px;padding:28px 0}.hiw19-number{grid-column:1;grid-row:1}.hiw19-step>img{grid-column:2;width:100%;max-width:440px}.hiw19-copy{grid-column:2}.hiw19-note{grid-column:2}.hiw19-closing-panel{grid-template-columns:1fr;padding:30px 26px}.hiw19-closing{padding-bottom:70px}}

/* Foundation 2.1.1 — corrected homepage composition */
.dd211-hero{overflow:hidden;background:linear-gradient(112deg,#fff 0%,#f8f6ff 36%,#e8f3fc 67%,#d7ecfb 100%)}
.dd211-hero-grid{display:grid;grid-template-columns:minmax(390px,.78fr) minmax(650px,1.42fr);align-items:stretch;gap:30px;min-height:560px}
.dd211-hero-copy{display:flex;flex-direction:column;justify-content:center;padding:74px 0 76px}
.dd211-hero-copy h1{margin:22px 0 22px;font-family:'Manrope',sans-serif;font-size:clamp(58px,5.2vw,82px);line-height:.98;letter-spacing:-.067em;color:#102f4b}
.dd211-hero-copy h1 span{color:var(--purple)}
.dd211-hero-copy>p:not(.eyebrow){max-width:520px;margin:0 0 5px;color:#29475e;font-size:18px;line-height:1.65}
.dd211-actions{display:flex;gap:18px;margin-top:34px}
.dd211-secondary{border:1px solid #d8d8e6;background:#fff;color:var(--purple);box-shadow:0 12px 28px rgba(49,60,83,.06)}
.dd211-secondary:hover{background:#fff;color:var(--purple)}
.dd211-hero-art{align-self:stretch;margin:0;overflow:hidden;border-radius:0}
.dd211-hero-art img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.dd211-retailers{padding:34px 0;background:#fff;border-bottom:1px solid var(--line)}
.dd211-retailers-grid{display:grid;grid-template-columns:250px minmax(0,1fr);align-items:center;gap:34px}
.dd211-retailer-intro{display:flex;align-items:center;gap:18px}
.dd211-intro-icon{display:grid;place-items:center;flex:0 0 64px;width:64px;height:64px;border-radius:50%;background:#f4effb;color:var(--purple)}
.dd211-intro-icon svg{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.dd211-retailer-intro h2{margin:0 0 10px;font-family:'Manrope',sans-serif;font-size:21px;line-height:1.24;letter-spacing:-.035em;color:#173f5f}
.dd211-retailer-intro a{color:var(--purple);font-weight:750;text-decoration:none}
.dd211-retailer-list{display:grid;grid-template-columns:repeat(10,minmax(56px,1fr));align-items:center;gap:18px}
.dd211-retailer-list a{display:grid;place-items:center;height:58px;padding:0;text-decoration:none;transition:transform .18s ease}
.dd211-retailer-list a:hover{transform:translateY(-3px)}
.dd211-retailer-list img{display:block;max-width:100%;max-height:42px;object-fit:contain;border:0;background:transparent;box-shadow:none}
.dd211-trust{padding:32px 0 58px;background:#fbfcfd}
.dd211-trust-panel{display:grid;grid-template-columns:repeat(4,1fr);overflow:hidden;border:1px solid #edf0f3;border-radius:20px;background:#fff;box-shadow:0 12px 34px rgba(34,56,75,.05)}
.dd211-trust-panel article{display:flex;align-items:flex-start;gap:18px;padding:31px 27px}
.dd211-trust-panel article+article{border-left:1px solid #e8edf1}
.dd211-trust-icon{display:grid;place-items:center;flex:0 0 52px;width:52px;height:52px;border:2px solid #6f3bd6;border-radius:16px;color:#6f3bd6}
.dd211-trust-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.dd211-trust-panel h3{margin:2px 0 7px;font-family:'Manrope',sans-serif;font-size:17px;letter-spacing:-.025em;color:#173f5f}
.dd211-trust-panel p{margin:0;color:#63788b;font-size:14px;line-height:1.58}
@media(max-width:1160px){.dd211-hero-grid{grid-template-columns:minmax(340px,.82fr) minmax(560px,1.18fr)}.dd211-retailers-grid{grid-template-columns:1fr}.dd211-retailer-list{grid-template-columns:repeat(5,1fr)}.dd211-trust-panel{grid-template-columns:repeat(2,1fr)}.dd211-trust-panel article:nth-child(3){border-left:0;border-top:1px solid #e8edf1}.dd211-trust-panel article:nth-child(4){border-top:1px solid #e8edf1}}
@media(max-width:900px){.dd211-hero-grid{grid-template-columns:1fr;gap:0}.dd211-hero-copy{padding:58px 0 36px}.dd211-hero-art{min-height:430px;margin:0 -24px}.dd211-hero-art img{object-position:center}}
@media(max-width:680px){.dd211-hero-copy h1{font-size:50px}.dd211-hero-copy>p:not(.eyebrow){font-size:16px}.dd211-actions{flex-direction:column;align-items:stretch}.dd211-actions .button{justify-content:center}.dd211-hero-art{min-height:300px}.dd211-retailer-list{grid-template-columns:repeat(2,1fr)}.dd211-retailer-list a{height:62px}.dd211-trust-panel{grid-template-columns:1fr}.dd211-trust-panel article+article,.dd211-trust-panel article:nth-child(3),.dd211-trust-panel article:nth-child(4){border-left:0;border-top:1px solid #e8edf1}}

/* Foundation 2.1.2 — restore the full hero composition without cropping or distortion */
.dd211-hero {
    background: linear-gradient(112deg,#fff 0%,#f8f6ff 34%,#e8f3fc 70%,#d7ecfb 100%);
}
.dd211-hero-grid {
    grid-template-columns: minmax(430px, 0.72fr) minmax(0, 1.28fr);
    gap: 0;
    min-height: 540px;
    align-items: center;
}
.dd211-hero-copy {
    padding: 68px 42px 68px 0;
}
.dd211-hero-art {
    align-self: center;
    overflow: visible;
    min-width: 0;
}
.dd211-hero-art img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 1160px) {
    .dd211-hero-grid {
        grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
    }
    .dd211-hero-copy {
        padding-right: 28px;
    }
}
@media (max-width: 900px) {
    .dd211-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .dd211-hero-copy {
        padding: 56px 0 32px;
    }
    .dd211-hero-art {
        min-height: 0;
        margin: 0 -24px;
    }
    .dd211-hero-art img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* V0.7 — Interior designers: two-audience partnership page */
.id-hero { padding:96px 0 110px; background:linear-gradient(135deg,#f7f4ee 0%,#f5f8f8 58%,#e9f3f4 100%); overflow:hidden; }
.id-hero-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr); gap:clamp(54px,8vw,120px); align-items:center; }
.id-hero h1 { margin:0; max-width:790px; font-family:'Manrope',sans-serif; font-size:clamp(52px,5.8vw,84px); line-height:1.02; letter-spacing:-.064em; font-weight:700; }
.id-lead { max-width:760px; margin:28px 0 34px; color:var(--ink-soft); font-size:clamp(18px,1.5vw,22px); line-height:1.7; }
.id-hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.id-hero-visual { position:relative; min-height:550px; }
.id-visual-room { position:absolute; inset:0 0 48px 0; overflow:hidden; border-radius:42px 42px 110px 42px; background:linear-gradient(180deg,#f8e8da 0 66%,#d9bd9d 66% 100%); box-shadow:0 30px 80px rgba(23,63,95,.15); }
.id-visual-room::before { content:''; position:absolute; left:8%; right:8%; bottom:34%; height:2px; background:rgba(118,83,63,.12); }
.id-lamp { position:absolute; right:13%; top:9%; width:94px; height:112px; border-radius:48% 48% 42% 42%; background:#e88468; box-shadow:0 17px 0 -7px #274f62; }
.id-lamp::before { content:''; position:absolute; left:45px; top:108px; width:5px; height:236px; background:#274f62; }
.id-lamp::after { content:''; position:absolute; left:13px; top:338px; width:70px; height:8px; border-radius:50%; background:#274f62; }
.id-art { position:absolute; top:14%; border:10px solid #fffaf4; box-shadow:0 10px 24px rgba(64,52,45,.10); }
.id-art::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,#62a3b7 0 45%,#f1bf8f 45% 68%,#d86f58 68%); }
.id-art-one { left:12%; width:112px; height:150px; transform:rotate(-2deg); }
.id-art-two { left:39%; top:20%; width:86px; height:112px; transform:rotate(3deg); }
.id-sofa { position:absolute; left:9%; bottom:17%; width:62%; height:30%; border-radius:44px 44px 24px 24px; background:#4f8291; box-shadow:inset 0 -22px 0 rgba(28,67,79,.14); }
.id-sofa::before,.id-sofa::after { content:''; position:absolute; top:-24px; width:43%; height:70%; border-radius:32px 32px 18px 18px; background:#5c91a0; border:1px solid rgba(255,255,255,.14); }
.id-sofa::before { left:4%; }.id-sofa::after { right:4%; }
.id-table { position:absolute; left:47%; bottom:7%; width:36%; height:72px; border-radius:50%; background:#f4e5d0; box-shadow:0 18px 28px rgba(79,50,35,.15); }
.id-table::after { content:''; position:absolute; left:49%; top:53px; width:8px; height:80px; background:#815d45; transform:translateX(-50%); }
.id-plant { position:absolute; right:5%; bottom:26%; width:92px; height:142px; border-radius:48% 52% 44% 56%; background:#769770; transform:rotate(8deg); box-shadow:-38px 18px 0 -14px #86a67f,-20px -32px 0 -18px #688d68; }
.id-plant::after { content:''; position:absolute; left:29px; bottom:-75px; width:64px; height:74px; border-radius:10px 10px 24px 24px; background:#c77859; }
.id-visual-note { position:absolute; left:-34px; bottom:0; width:min(310px,76%); padding:24px 26px; border-radius:22px; background:#fff; box-shadow:0 22px 52px rgba(23,63,95,.15); }
.id-visual-note span { display:block; margin-bottom:8px; color:var(--teal); font-size:12px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.id-visual-note strong { font-family:'Manrope',sans-serif; font-size:24px; line-height:1.25; letter-spacing:-.035em; }
.id-opportunity { padding:105px 0; background:#fff; border-top:1px solid var(--line); }
.id-opportunity-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.8fr); gap:clamp(50px,8vw,130px); align-items:start; }
.id-opportunity h2,.id-audience h2,.id-partnership h2,.id-closing h2 { margin:0; font-family:'Manrope',sans-serif; font-size:clamp(40px,4.8vw,68px); line-height:1.07; letter-spacing:-.055em; }
.id-opportunity-copy { padding-top:35px; border-top:1px solid var(--line); }
.id-opportunity-copy p { margin:0 0 22px; color:var(--ink-soft); font-size:19px; line-height:1.75; }
.id-audience { padding:115px 0; border-top:1px solid var(--line); scroll-margin-top:100px; }
.id-homeowners { background:#f8f5ef; }.id-designers { background:#edf5f6; }
.id-audience-grid { display:grid; grid-template-columns:190px minmax(0,1fr); gap:clamp(45px,7vw,110px); }
.id-audience-marker { position:relative; }
.id-audience-marker::after { content:''; position:absolute; top:52px; left:0; width:1px; height:calc(100% - 52px); background:rgba(23,63,95,.14); }
.id-audience-marker span { position:sticky; top:125px; display:block; color:var(--ocean); font-size:13px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.id-audience-content { max-width:980px; }
.id-audience-intro { max-width:850px; margin:28px 0 56px; color:var(--ink-soft); font-size:20px; line-height:1.75; }
.id-benefits { display:grid; gap:0; border-top:1px solid rgba(23,63,95,.13); }
.id-benefits article { display:grid; grid-template-columns:70px 1fr; gap:28px; padding:30px 0; border-bottom:1px solid rgba(23,63,95,.13); }
.id-benefits article > span { color:var(--teal); font-size:13px; font-weight:800; letter-spacing:.12em; }
.id-benefits h3,.id-designer-services h3,.id-flow h3 { margin:0 0 9px; font-family:'Manrope',sans-serif; font-size:25px; letter-spacing:-.035em; }
.id-benefits p,.id-designer-services p,.id-flow p { margin:0; color:var(--ink-soft); font-size:17px; line-height:1.7; }
.id-inline-cta { display:flex; align-items:center; justify-content:space-between; gap:34px; margin-top:42px; padding:28px 30px; border-radius:22px; background:#fff; box-shadow:0 18px 44px rgba(23,63,95,.08); }
.id-inline-cta strong { display:block; margin-bottom:5px; font-family:'Manrope',sans-serif; font-size:20px; }
.id-inline-cta p { margin:0; color:var(--ink-soft); line-height:1.55; }
.text-link { display:inline-flex; align-items:center; gap:10px; color:var(--ocean); font-weight:800; text-decoration:none; white-space:nowrap; }
.text-link span { font-size:20px; transition:transform .2s ease; }.text-link:hover span { transform:translateX(4px); }
.id-designer-services { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.id-designer-services article { padding:30px; border:1px solid rgba(23,63,95,.11); border-radius:24px; background:rgba(255,255,255,.72); }
.id-designer-services article > span,.id-flow article > span { display:block; margin-bottom:35px; color:var(--teal); font-size:12px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.id-project-strip { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:38px; padding:20px 0; border-top:1px solid rgba(23,63,95,.14); border-bottom:1px solid rgba(23,63,95,.14); }
.id-project-strip p { margin:0; color:var(--ocean); font-weight:700; }.id-project-strip span { width:4px; height:4px; border-radius:50%; background:var(--sand); }
.id-partnership { padding:115px 0 120px; background:#fff; border-top:1px solid var(--line); }
.id-partnership-heading { display:flex; justify-content:space-between; gap:50px; align-items:end; margin-bottom:68px; }
.id-partnership-heading .eyebrow { align-self:flex-start; white-space:nowrap; }
.id-flow { display:grid; grid-template-columns:1fr 36px 1fr 36px 1fr; align-items:stretch; }
.id-flow article { padding:34px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.id-flow i { display:grid; place-items:center; color:var(--sand); font-size:25px; font-style:normal; }
.id-closing { padding:95px 0; background:var(--ocean-deep); color:#fff; }
.id-closing-inner { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:70px; align-items:end; }
.id-closing h2 { max-width:900px; }.id-closing p:not(.eyebrow) { max-width:750px; margin:24px 0 0; color:rgba(255,255,255,.72); font-size:18px; line-height:1.7; }
.id-closing .eyebrow { color:#91c5d9; }.id-closing .text-link { color:#fff; }
.id-closing-actions { display:flex; flex-direction:column; align-items:flex-start; gap:22px; }
@media(max-width:980px){
    .id-hero-grid,.id-opportunity-grid,.id-closing-inner{grid-template-columns:1fr}.id-hero-visual{min-height:500px;max-width:650px}.id-visual-note{left:20px}.id-audience-grid{grid-template-columns:1fr}.id-audience-marker::after{display:none}.id-audience-marker span{position:static}.id-designer-services{grid-template-columns:1fr}.id-partnership-heading{display:block}.id-partnership-heading .eyebrow{margin-bottom:22px}.id-flow{grid-template-columns:1fr}.id-flow i{height:40px;transform:rotate(90deg)}.id-closing-actions{flex-direction:row;align-items:center}
}
@media(max-width:650px){
    .id-hero{padding:70px 0 80px}.id-hero h1{font-size:clamp(46px,13vw,67px)}.id-hero-actions{display:grid}.id-hero-actions .button{width:100%}.id-hero-visual{min-height:400px}.id-visual-room{inset:0 0 38px;border-radius:28px 28px 70px 28px}.id-lamp{transform:scale(.72);transform-origin:top right}.id-art-one{left:8%;transform:scale(.78) rotate(-2deg);transform-origin:top left}.id-art-two{display:none}.id-sofa{left:6%;width:69%}.id-table{left:43%;width:39%}.id-plant{right:0;transform:scale(.75) rotate(8deg);transform-origin:bottom right}.id-visual-note{left:14px;padding:18px 20px}.id-visual-note strong{font-size:20px}.id-opportunity,.id-audience,.id-partnership{padding:76px 0}.id-audience-intro{margin-bottom:38px;font-size:18px}.id-benefits article{grid-template-columns:1fr;gap:8px}.id-inline-cta{display:block}.id-inline-cta .text-link{margin-top:18px}.id-project-strip{align-items:flex-start;flex-direction:column}.id-project-strip span{display:none}.id-flow article{padding:28px 0}.id-closing{padding:72px 0}.id-closing-actions{align-items:stretch;flex-direction:column}.id-closing-actions .button{width:100%}
}

/* Interior Designers v0.8 — honest service scope and numberless presentation */
.id-benefits-plain article > span {
    display: none;
}

.id-benefits-plain article {
    grid-template-columns: 1fr;
}

.id-designer-services-plain article > span {
    width: auto;
}

.id-scope-note {
    max-width: 860px;
    margin: 2rem auto 0;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-muted, #5f6470);
    text-align: center;
    line-height: 1.7;
}

/* V0.9 — Interior Designers: replace illustrated placeholder with lifestyle photography */
.id-hero-visual {
    position: relative;
    min-height: 550px;
    margin: 0;
}
.id-hero-visual > img {
    display: block;
    width: 100%;
    height: 502px;
    object-fit: cover;
    object-position: center;
    border-radius: 42px 42px 110px 42px;
    box-shadow: 0 30px 80px rgba(23,63,95,.15);
}
.id-visual-note {
    z-index: 2;
}
@media (max-width: 980px) {
    .id-hero-visual {
        min-height: 500px;
    }
    .id-hero-visual > img {
        height: 455px;
        object-position: center 54%;
    }
}
@media (max-width: 640px) {
    .id-hero-visual {
        min-height: 390px;
    }
    .id-hero-visual > img {
        height: 350px;
        border-radius: 28px 28px 70px 28px;
        object-position: 45% center;
    }
    .id-visual-note {
        left: 16px;
        width: min(280px, calc(100% - 32px));
        padding: 19px 21px;
    }
}

/* About v1.0 — trust, care and quiet confidence */
.about-hero{padding:88px 0 105px;background:linear-gradient(120deg,#fff 0%,#fbf8ff 48%,#edf6f8 100%);overflow:hidden}
.about-hero-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);gap:clamp(48px,7vw,105px);align-items:center}
.about-hero-copy h1{margin:14px 0 26px;font-family:'Manrope',sans-serif;font-size:clamp(58px,6.6vw,92px);line-height:.98;letter-spacing:-.072em;color:var(--ocean-deep)}
.about-hero-copy h1 span{color:var(--purple)}
.about-hero-intro{max-width:590px;margin:0 0 10px;color:var(--ink-soft);font-size:20px;line-height:1.68}
.about-hero-statement{max-width:640px;margin:0 0 30px;font-family:'Manrope',sans-serif;color:var(--ocean);font-size:clamp(24px,2.3vw,34px);font-weight:650;line-height:1.35;letter-spacing:-.035em}
.about-hero-fact{max-width:620px;margin:0;padding-top:25px;border-top:1px solid var(--line);color:var(--ink-soft);font-size:16px;line-height:1.75}
.about-hero-visual{position:relative;margin:0;min-height:570px}
.about-hero-visual img{display:block;width:100%;height:530px;object-fit:cover;object-position:center;border-radius:42px 42px 116px 42px;box-shadow:0 30px 80px rgba(23,63,95,.15)}
.about-hero-visual figcaption{position:absolute;left:-28px;bottom:0;width:min(330px,78%);padding:25px 27px;border-radius:22px;background:#fff;box-shadow:0 22px 52px rgba(23,63,95,.14)}
.about-hero-visual figcaption span{display:block;margin-bottom:8px;color:var(--teal);font-size:11px;font-weight:850;letter-spacing:.14em;text-transform:uppercase}
.about-hero-visual figcaption strong{font-family:'Manrope',sans-serif;font-size:22px;line-height:1.3;letter-spacing:-.035em}
.about-trust{padding:122px 0;background:var(--ocean-deep);color:#fff}
.about-trust-grid{display:grid;grid-template-columns:230px minmax(0,1fr);gap:clamp(45px,8vw,130px)}
.about-trust .eyebrow{color:#91c5d9}
.about-trust h2{max-width:930px;margin:0;font-family:'Manrope',sans-serif;font-size:clamp(43px,5.3vw,72px);line-height:1.06;letter-spacing:-.06em}
.about-emphasis{margin:24px 0 38px;color:#d5b7f5;font-family:'Manrope',sans-serif;font-size:28px;font-weight:700}
.about-trust-copy{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:35px;max-width:900px;padding-top:34px;border-top:1px solid rgba(255,255,255,.18)}
.about-trust-copy p{margin:0;color:rgba(255,255,255,.72);font-size:17px;line-height:1.76}
.about-purpose{padding:118px 0;background:#f8f5ef}
.about-purpose-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1fr);gap:clamp(55px,9vw,140px);align-items:start}
.about-purpose h2,.about-section-heading h2,.about-values h2,.about-improving h2,.about-closing h2{margin:14px 0 0;font-family:'Manrope',sans-serif;font-size:clamp(42px,5vw,68px);line-height:1.06;letter-spacing:-.058em}
.about-purpose-copy{padding-top:34px;border-top:1px solid rgba(23,63,95,.15)}
.about-purpose-copy p{margin:0 0 21px;color:var(--ink-soft);font-size:19px;line-height:1.75}
.about-service{padding:118px 0 125px;background:#fff}
.about-section-heading{max-width:800px;margin-bottom:64px}
.about-service-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.about-service-grid article{padding:38px 28px 42px;border-right:1px solid var(--line)}
.about-service-grid article:last-child{border-right:0}
.about-icon{display:grid;place-items:center;width:52px;height:52px;margin-bottom:48px;border-radius:17px;background:#f3edf9;color:var(--purple)}
.about-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.about-service-grid h3,.about-values-list h3{margin:0 0 11px;font-family:'Manrope',sans-serif;font-size:24px;letter-spacing:-.035em}
.about-service-grid p,.about-values-list p{margin:0;color:var(--ink-soft);font-size:16px;line-height:1.72}
.about-values{padding:118px 0;background:#edf5f6}
.about-values-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:clamp(55px,8vw,125px)}
.about-values-heading{position:sticky;top:130px;align-self:start}
.about-values-list{border-top:1px solid rgba(23,63,95,.16)}
.about-values-list article{padding:30px 0 34px;border-bottom:1px solid rgba(23,63,95,.16)}
.about-values-list h3{font-size:27px}
.about-values-list p{max-width:680px;font-size:17px}
.about-improving{padding:128px 0;background:#fff;text-align:center}
.about-improving-inner{max-width:920px}
.about-improving h2{margin-bottom:28px}
.about-improving p{max-width:760px;margin:0 auto 16px;color:var(--ink-soft);font-size:19px;line-height:1.75}
.about-improving strong{display:block;margin-top:36px;font-family:'Manrope',sans-serif;color:var(--purple);font-size:clamp(34px,4vw,54px);letter-spacing:-.05em}
.about-closing{padding:96px 0;background:#f7f2fa}
.about-closing-inner{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:70px;align-items:end}
.about-closing h2{max-width:820px}
.about-closing p:not(.eyebrow){max-width:720px;margin:25px 0 0;color:var(--ink-soft);font-size:18px;line-height:1.72}
@media(max-width:980px){.about-hero-grid,.about-purpose-grid,.about-values-grid,.about-closing-inner{grid-template-columns:1fr}.about-hero-visual{max-width:700px;min-height:520px}.about-hero-visual img{height:480px}.about-trust-grid{grid-template-columns:1fr}.about-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.about-service-grid article:nth-child(2){border-right:0}.about-service-grid article:nth-child(-n+2){border-bottom:1px solid var(--line)}.about-values-heading{position:static}.about-closing-inner{align-items:start}}
@media(max-width:650px){.about-hero{padding:68px 0 82px}.about-hero-copy h1{font-size:clamp(52px,15vw,70px)}.about-hero-intro{font-size:18px}.about-hero-statement{font-size:25px}.about-hero-visual{min-height:405px}.about-hero-visual img{height:360px;border-radius:28px 28px 72px 28px}.about-hero-visual figcaption{left:14px;width:min(285px,calc(100% - 28px));padding:19px 21px}.about-hero-visual figcaption strong{font-size:19px}.about-trust,.about-purpose,.about-service,.about-values,.about-improving{padding:78px 0}.about-trust-copy{grid-template-columns:1fr;gap:20px}.about-service-grid{grid-template-columns:1fr}.about-service-grid article{border-right:0;border-bottom:1px solid var(--line)}.about-service-grid article:nth-child(3){border-bottom:1px solid var(--line)}.about-service-grid article:last-child{border-bottom:0}.about-icon{margin-bottom:28px}.about-closing{padding:72px 0}.about-closing .button{width:100%}}

/* FAQ v1.0 — concise, conversational answers */
.faq-hero {
    padding: 96px 0 104px;
    background: linear-gradient(135deg, #ffffff 0%, #fbf8ff 52%, #edf6f8 100%);
    border-bottom: 1px solid var(--line);
}
.faq-hero-inner {
    max-width: 920px;
}
.faq-hero h1 {
    max-width: 860px;
    margin: 14px 0 26px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(54px, 6vw, 84px);
    line-height: 1.02;
    letter-spacing: -.065em;
    color: var(--ocean-deep);
}
.faq-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.72;
}
.faq-content {
    padding: 118px 0 126px;
    background: #fff;
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
    gap: clamp(55px, 8vw, 130px);
    align-items: start;
}
.faq-intro {
    position: sticky;
    top: 128px;
}
.faq-intro h2,
.faq-contact h2 {
    margin: 14px 0 24px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(38px, 4.2vw, 60px);
    line-height: 1.08;
    letter-spacing: -.052em;
    color: var(--ocean-deep);
}
.faq-intro > p:not(.eyebrow) {
    max-width: 430px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.72;
}
.faq-accordion {
    border-top: 1px solid var(--line);
}
.faq-accordion details {
    border-bottom: 1px solid var(--line);
}
.faq-accordion summary {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 28px;
    align-items: center;
    padding: 30px 0;
    list-style: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -.035em;
    color: var(--ocean-deep);
    transition: color .2s ease;
}
.faq-accordion summary::-webkit-details-marker {
    display: none;
}
.faq-accordion summary:hover {
    color: var(--purple);
}
.faq-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    justify-self: end;
    border-radius: 50%;
    background: #f3edf9;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 99px;
    background: var(--purple);
    transition: transform .22s ease;
}
.faq-toggle::after {
    transform: rotate(90deg);
}
.faq-accordion details[open] .faq-toggle::after {
    transform: rotate(0deg);
}
.faq-answer {
    overflow: hidden;
}
.faq-answer p {
    max-width: 760px;
    margin: -5px 72px 31px 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.76;
}
.faq-contact {
    padding: 94px 0;
    background: #f7f2fa;
    border-top: 1px solid rgba(23, 63, 95, .08);
}
.faq-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: end;
}
.faq-contact h2 {
    max-width: 850px;
}
.faq-contact p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.72;
}
@media (max-width: 900px) {
    .faq-layout,
    .faq-contact-inner {
        grid-template-columns: 1fr;
    }
    .faq-intro {
        position: static;
        max-width: 720px;
    }
    .faq-contact-inner {
        align-items: start;
    }
}
@media (max-width: 650px) {
    .faq-hero {
        padding: 70px 0 78px;
    }
    .faq-hero h1 {
        font-size: clamp(48px, 14vw, 66px);
    }
    .faq-hero p:not(.eyebrow) {
        font-size: 18px;
    }
    .faq-content {
        padding: 78px 0 84px;
    }
    .faq-accordion summary {
        grid-template-columns: 1fr 38px;
        gap: 18px;
        padding: 25px 0;
        font-size: 21px;
    }
    .faq-toggle {
        width: 36px;
        height: 36px;
    }
    .faq-answer p {
        margin-right: 0;
        font-size: 16px;
    }
    .faq-contact {
        padding: 72px 0;
    }
    .faq-contact .button {
        width: 100%;
    }
}

/* FAQ v1.1 — unmistakable expand/collapse controls */
.faq-accordion summary {
    grid-template-columns: minmax(0, 1fr) auto;
}
.faq-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    color: var(--purple);
}
.faq-action-label::before {
    content: 'Show answer';
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}
.faq-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(111, 69, 150, .22);
    background: #f7f1fb;
    color: var(--purple);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-toggle::before,
.faq-toggle::after {
    content: none;
}
.faq-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}
.faq-toggle svg path {
    transform-origin: center;
    transition: transform .22s ease;
}
.faq-accordion summary:hover .faq-toggle {
    background: #efe4f7;
    border-color: rgba(111, 69, 150, .42);
}
.faq-accordion details[open] .faq-action-label::before {
    content: 'Hide answer';
}
.faq-accordion details[open] .faq-toggle svg path {
    transform: rotate(45deg);
}
.faq-accordion details[open] .faq-toggle {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
@media (max-width: 650px) {
    .faq-action-label {
        display: none;
    }
    .faq-toggle {
        width: 38px;
        height: 38px;
    }
}

/* ========================================================================
   Our Service & Pricing
   ======================================================================== */
.pricing25-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 132px) 0 clamp(76px, 9vw, 128px);
    background:
        radial-gradient(circle at 88% 10%, rgba(220, 238, 234, .95), transparent 34%),
        linear-gradient(180deg, #fbfaf6 0%, #f6faf8 100%);
}
.pricing25-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, .65fr);
    gap: clamp(52px, 8vw, 120px);
    align-items: center;
}
.pricing25-hero-copy { max-width: 820px; }
.pricing25-hero h1,
.pricing25-section-heading h2,
.pricing25-difference h2,
.pricing25-included h2,
.pricing25-commitment h2,
.pricing25-faq h2,
.pricing25-closing h2 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -.055em;
    color: var(--ink);
}
.pricing25-hero h1 {
    margin: 0;
    font-size: clamp(50px, 6.2vw, 92px);
    line-height: .98;
    font-weight: 700;
}
.pricing25-hero h1 span { color: var(--teal); }
.pricing25-hero-copy > p:not(.eyebrow) {
    max-width: 720px;
    margin: 28px 0 32px;
    color: var(--ink-soft);
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.65;
}
.pricing25-hero-card {
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(31, 92, 99, .10);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}
.pricing25-hero-card p { margin: 0 0 18px; color: var(--ink-soft); font-weight: 600; }
.pricing25-hero-card strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(64px, 7vw, 96px);
    line-height: .9;
    letter-spacing: -.07em;
    color: var(--ocean);
}
.pricing25-hero-card > span { display: block; margin-top: 12px; font-size: 20px; font-weight: 700; }
.pricing25-hero-card small { display: block; margin-top: 24px; color: var(--ink-soft); line-height: 1.65; }

.pricing25-estimator { padding: clamp(76px, 9vw, 132px) 0; background: var(--white); scroll-margin-top: 110px; }
.pricing25-section-heading { max-width: 820px; margin-bottom: 48px; }
.pricing25-section-heading-centred { margin-inline: auto; text-align: center; }
.pricing25-section-heading h2,
.pricing25-difference h2,
.pricing25-included h2,
.pricing25-commitment h2,
.pricing25-faq h2,
.pricing25-closing h2 {
    margin: 0;
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.05;
}
.pricing25-section-heading > p:last-child {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.7;
}
.pricing25-calculator {
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 24px 70px rgba(23, 56, 63, .08);
}
.pricing25-retailer-list { display: grid; gap: 22px; }
.pricing25-retailer {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid #dce6e2;
    border-radius: 22px;
    background: var(--white);
}
.pricing25-retailer-topline { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:24px; }
.pricing25-retailer-topline h3 { margin:0; font-size:22px; }
.pricing25-remove-retailer {
    border:0;
    background:transparent;
    color:#8a5d5d;
    font:inherit;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}
.pricing25-fields { display:grid; grid-template-columns:1.1fr 1fr 1fr; gap:18px; }
.pricing25-fields label { display:grid; gap:9px; color:var(--ink); font-weight:700; }
.pricing25-fields label > span:first-child { font-size:14px; }
.pricing25-fields small { color:var(--ink-soft); font-weight:500; }
.pricing25-fields input {
    width:100%;
    min-height:52px;
    border:1px solid #cad8d4;
    border-radius:12px;
    padding:0 14px;
    background:#fff;
    color:var(--ink);
    font:inherit;
    outline:none;
}
.pricing25-fields input:focus { border-color:var(--teal); box-shadow:0 0 0 4px rgba(60,136,135,.12); }
.pricing25-money-input { position:relative; display:block; }
.pricing25-money-input b { position:absolute; left:14px; top:50%; transform:translateY(-50%); z-index:1; color:var(--ink-soft); }
.pricing25-money-input input { padding-left:30px; }
.pricing25-retailer-result {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:22px;
    padding-top:20px;
    border-top:1px solid var(--line);
}
.pricing25-retailer-result > div { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.pricing25-retailer-result span { color:var(--ink-soft); }
.pricing25-retailer-result strong { font-size:20px; }
.pricing25-retailer-total { padding-left:18px; border-left:1px solid var(--line); }
.pricing25-calculator-actions { margin:22px 0; }
.pricing25-add-retailer {
    min-height:48px;
    padding:0 18px;
    border:1px solid #cbdad6;
    border-radius:12px;
    background:#fff;
    color:var(--ocean);
    font:inherit;
    font-weight:700;
    cursor:pointer;
}
.pricing25-add-retailer:hover { border-color:var(--teal); }
.pricing25-grand-total {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:32px;
    padding:26px 28px;
    border-radius:20px;
    color:white;
    background:var(--ocean);
}
.pricing25-grand-total span { display:block; font-size:18px; font-weight:800; }
.pricing25-grand-total small { display:block; margin-top:4px; color:rgba(255,255,255,.72); }
.pricing25-grand-total strong { font-family:'Manrope',sans-serif; font-size:clamp(30px,4vw,48px); letter-spacing:-.05em; }
.pricing25-estimate-note { margin:18px 0 0; color:var(--ink-soft); font-size:14px; line-height:1.6; }

.pricing25-difference,
.pricing25-included { padding: clamp(76px, 9vw, 132px) 0; background: #f2f7f5; }
.pricing25-difference-grid,
.pricing25-included-grid,
.pricing25-faq-grid {
    display:grid;
    grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
    gap:clamp(52px,8vw,120px);
    align-items:start;
}
.pricing25-difference-copy > p,
.pricing25-commitment-copy p { margin:0 0 18px; color:var(--ink-soft); font-size:18px; line-height:1.75; }
.pricing25-comparison { margin-top:34px; border-top:1px solid #d7e3df; }
.pricing25-comparison > div { display:grid; grid-template-columns:180px 1fr; gap:24px; padding:22px 0; border-bottom:1px solid #d7e3df; }
.pricing25-comparison span { color:var(--ink-soft); }
.pricing25-comparison strong { color:var(--ink); }

.pricing25-journey { padding:clamp(76px,9vw,132px) 0; background:var(--white); }
.pricing25-timeline { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.pricing25-step {
    min-height:260px;
    padding:30px;
    border:1px solid var(--line);
    border-radius:22px;
    background:var(--paper);
}
.pricing25-step-icon {
    display:grid;
    place-items:center;
    width:46px;
    height:46px;
    margin-bottom:36px;
    border-radius:14px;
    color:var(--ocean);
    background:var(--seafoam);
    font-size:21px;
    font-weight:800;
}
.pricing25-step h3 { margin:0 0 12px; font-size:21px; }
.pricing25-step p { margin:0; color:var(--ink-soft); line-height:1.7; }
.pricing25-step-final { background:var(--ocean); border-color:var(--ocean); color:white; }
.pricing25-step-final .pricing25-step-icon { background:rgba(255,255,255,.14); color:white; }
.pricing25-step-final h3 { color:white; }
.pricing25-step-final p { color:rgba(255,255,255,.78); }

.pricing25-included-list { display:grid; grid-template-columns:1fr 1fr; gap:0 32px; }
.pricing25-included-list span { position:relative; padding:18px 0 18px 28px; border-bottom:1px solid #d7e3df; font-weight:700; }
.pricing25-included-list span::before { content:'✓'; position:absolute; left:0; color:var(--teal); font-weight:900; }

.pricing25-commitment { padding:clamp(76px,9vw,132px) 0; background:var(--white); }
.pricing25-commitment-panel {
    display:grid;
    grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
    gap:clamp(48px,8vw,110px);
    padding:clamp(34px,6vw,78px);
    border-radius:var(--radius-lg);
    background:var(--sand-soft);
}
.pricing25-commitment-panel > .eyebrow { grid-column:1/-1; margin-bottom:-20px; }

.pricing25-faq { padding:clamp(76px,9vw,132px) 0; background:var(--paper); }
.pricing25-faq-list { border-top:1px solid #cedbd7; }
.pricing25-faq details { border-bottom:1px solid #cedbd7; }
.pricing25-faq summary {
    position:relative;
    list-style:none;
    padding:24px 48px 24px 0;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
}
.pricing25-faq summary::-webkit-details-marker { display:none; }
.pricing25-faq summary::after { content:'+'; position:absolute; right:4px; top:19px; color:var(--teal); font-size:28px; font-weight:500; }
.pricing25-faq details[open] summary::after { content:'−'; }
.pricing25-faq details p { margin:0; padding:0 52px 24px 0; color:var(--ink-soft); line-height:1.7; }

.pricing25-closing { padding:0 0 clamp(76px,9vw,132px); background:var(--paper); }
.pricing25-closing-panel {
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:clamp(48px,8vw,110px);
    align-items:end;
    padding:clamp(36px,6vw,74px);
    border-radius:var(--radius-lg);
    background:var(--seafoam);
}
.pricing25-closing-panel > div:last-child p { margin:0 0 28px; color:var(--ink-soft); font-size:18px; line-height:1.7; }

@media (max-width: 980px) {
    .pricing25-hero-grid,
    .pricing25-difference-grid,
    .pricing25-included-grid,
    .pricing25-faq-grid,
    .pricing25-commitment-panel,
    .pricing25-closing-panel { grid-template-columns:1fr; }
    .pricing25-hero-card { max-width:560px; }
    .pricing25-fields { grid-template-columns:1fr 1fr; }
    .pricing25-fields label:first-child { grid-column:1/-1; }
    .pricing25-timeline { grid-template-columns:1fr 1fr; }
}
@media (max-width: 680px) {
    .pricing25-hero { padding-top:58px; }
    .pricing25-hero h1 { font-size:clamp(46px,14vw,64px); }
    .pricing25-calculator { padding:18px; border-radius:22px; }
    .pricing25-retailer { padding:20px 16px; }
    .pricing25-fields,
    .pricing25-retailer-result,
    .pricing25-timeline,
    .pricing25-included-list { grid-template-columns:1fr; }
    .pricing25-fields label:first-child { grid-column:auto; }
    .pricing25-retailer-total { padding-left:0; padding-top:16px; border-left:0; border-top:1px solid var(--line); }
    .pricing25-grand-total { align-items:flex-start; flex-direction:column; gap:14px; }
    .pricing25-difference-grid,
    .pricing25-included-grid,
    .pricing25-faq-grid { gap:36px; }
    .pricing25-comparison > div { grid-template-columns:1fr; gap:6px; }
    .pricing25-step { min-height:auto; }
    .pricing25-commitment-panel > .eyebrow { margin-bottom:0; }
}

/* Pricing v1.1 — positive benefit-led cost explanation */
.pricing25-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}
.pricing25-benefit {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 24px;
    border: 1px solid #d7e3df;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
}
.pricing25-benefit-check {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e6f3ee;
    color: #16735f;
    font-weight: 800;
    line-height: 1;
}
.pricing25-benefit h3 {
    margin: 1px 0 8px;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -.025em;
}
.pricing25-benefit p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 720px) {
    .pricing25-benefits {
        grid-template-columns: 1fr;
    }
}

/* Legal and payment pages — v1.3 */
.legal-hero { padding: clamp(72px, 9vw, 126px) 0 58px; background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%); }
.legal-hero-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr); gap:clamp(34px,7vw,90px); align-items:end; }
.legal-hero h1 { margin:8px 0 20px; color:var(--ink); font-family:'Manrope',sans-serif; font-size:clamp(48px,7vw,84px); line-height:.98; letter-spacing:-.055em; }
.legal-lead { max-width:720px; margin:0; color:var(--ink-soft); font-size:clamp(19px,2vw,24px); line-height:1.55; }
.legal-updated { margin:24px 0 0; color:#7b8794; font-size:14px; }
.legal-plain-card { display:grid; grid-template-columns:42px 1fr; gap:18px; padding:26px; border:1px solid #dfe6ee; border-radius:22px; background:rgba(255,255,255,.86); box-shadow:0 18px 50px rgba(24,42,74,.07); }
.legal-plain-icon { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:#eaf0ff; color:#5267b8; font-weight:800; }
.legal-plain-card strong { display:block; color:var(--ink); font-size:17px; }
.legal-plain-card p { margin:7px 0 0; color:var(--ink-soft); line-height:1.65; }
.legal-page { padding:clamp(70px,9vw,120px) 0; background:#fff; }
.legal-layout { display:grid; grid-template-columns:240px minmax(0,780px); justify-content:center; gap:clamp(48px,8vw,100px); align-items:start; }
.legal-toc { position:sticky; top:118px; padding:22px 0; border-top:1px solid #dfe5ec; border-bottom:1px solid #dfe5ec; }
.legal-toc > p { margin:0 0 16px; color:var(--ink); font-size:13px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.legal-toc nav { display:grid; gap:4px; }
.legal-toc a { padding:9px 0; color:#6f7b88; font-size:14px; line-height:1.35; text-decoration:none; transition:color .2s ease, transform .2s ease; }
.legal-toc a:hover,.legal-toc a:focus-visible { color:var(--ink); transform:translateX(3px); }
.legal-content { color:var(--ink-soft); font-size:17px; line-height:1.78; }
.legal-content > p { margin:0 0 52px; }
.legal-content a { color:#5267b8; text-decoration-thickness:1px; text-underline-offset:3px; }
.legal-notice { margin:0 0 34px; padding:24px 26px; border-left:4px solid #5267b8; border-radius:0 16px 16px 0; background:#f4f6fb; }
.legal-notice strong { color:var(--ink); }
.legal-notice p { margin:7px 0 0; }
.legal-section { scroll-margin-top:120px; padding:58px 0 8px; border-top:1px solid #e3e8ee; }
.legal-section-first { padding-top:0; border-top:0; }
.legal-section-kicker { margin:0 0 8px; color:#7184c7; font-size:13px; font-weight:800; letter-spacing:.12em; }
.legal-section h2 { margin:0 0 34px; color:var(--ink); font-family:'Manrope',sans-serif; font-size:clamp(30px,4vw,45px); line-height:1.1; letter-spacing:-.035em; }
.legal-section h3 { margin:32px 0 10px; color:var(--ink); font-family:'Manrope',sans-serif; font-size:20px; line-height:1.35; letter-spacing:-.02em; }
.legal-section p { margin:0 0 18px; }
.legal-section ul { margin:0 0 18px; padding-left:22px; }
.legal-section li { margin:8px 0; }
.legal-company { margin-top:54px; padding:38px; border:1px solid #dfe6ee; border-radius:24px; background:#f8fafc; }
.legal-company h2 { margin-bottom:26px; }
.legal-company dl { margin:26px 0 18px; }
.legal-company dl > div { display:grid; grid-template-columns:150px 1fr; gap:22px; padding:15px 0; border-top:1px solid #dfe6ee; }
.legal-company dt { color:#75808c; font-size:13px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.legal-company dd { margin:0; color:var(--ink); }
.legal-address-note { color:#7b8794; font-size:14px; }
.footer-legal { grid-column:1/-1; padding-top:28px; border-top:1px solid rgba(255,255,255,.13); color:rgba(255,255,255,.68); font-size:13px; line-height:1.65; }
.footer-legal p { margin:3px 0; }
.footer-legal strong { color:rgba(255,255,255,.9); }

.payment-result { min-height:72vh; display:grid; align-items:center; padding:clamp(72px,9vw,126px) 0; background:linear-gradient(180deg,#f7f9fc 0%,#fff 100%); }
.payment-result-shell { display:grid; grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr); gap:clamp(48px,9vw,120px); align-items:center; max-width:1120px; }
.payment-illustration { position:relative; width:min(100%,390px); aspect-ratio:1; margin:auto; border-radius:38%; background:radial-gradient(circle at 38% 35%,#fff 0 15%,#eef2f8 52%,#e6ebf3 100%); box-shadow:inset 0 0 0 1px rgba(66,83,115,.08),0 35px 80px rgba(39,54,88,.10); animation:payment-float 5s ease-in-out infinite; }
.payment-card-shape { position:absolute; inset:29% 18% 31%; padding:28px; border-radius:24px; background:linear-gradient(145deg,#586fc2,#354b9d); box-shadow:0 22px 40px rgba(47,65,130,.28); transform:rotate(-4deg); }
.payment-card-shape::before { content:''; display:block; width:46px; height:32px; border-radius:8px; background:rgba(255,255,255,.78); }
.payment-card-shape span { display:block; height:6px; margin-top:18px; border-radius:99px; background:rgba(255,255,255,.35); }
.payment-card-shape span:nth-child(2){ width:68%; }.payment-card-shape span:nth-child(3){ width:42%; }
.payment-status-mark { position:absolute; right:12%; bottom:18%; display:grid; place-items:center; width:92px; height:92px; border:9px solid #fff; border-radius:50%; color:#fff; font-size:44px; font-weight:900; box-shadow:0 18px 35px rgba(28,49,73,.18); animation:payment-pop .65s cubic-bezier(.2,.8,.2,1) both; }
.payment-result-success .payment-status-mark { background:#38a675; }.payment-result-failed .payment-status-mark { background:#d96b6b; }
.payment-result-failed .payment-illustration { animation:payment-float 5s ease-in-out infinite,payment-nudge .55s ease .2s 1; }
.payment-orbit { position:absolute; border-radius:50%; border:1px solid rgba(86,111,194,.18); }.payment-orbit-one{inset:12%;}.payment-orbit-two{inset:5%;border-style:dashed;}
.payment-result-copy { max-width:650px; }
.payment-badge { display:inline-flex; margin:0 0 20px; padding:9px 13px; border-radius:999px; font-size:12px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.payment-result-success .payment-badge { background:#e8f6ef; color:#267c59; }.payment-result-failed .payment-badge { background:#fbecec; color:#a34d4d; }
.payment-result h1 { margin:0 0 20px; color:var(--ink); font-family:'Manrope',sans-serif; font-size:clamp(48px,7vw,78px); line-height:1; letter-spacing:-.055em; }
.payment-lead { margin:0 0 30px; color:var(--ink-soft); font-size:clamp(19px,2vw,24px); line-height:1.55; }
.payment-notice { display:grid; grid-template-columns:38px 1fr; gap:16px; margin:0 0 32px; padding:24px; border:1px solid #dfe6ee; border-radius:20px; background:#fff; box-shadow:0 18px 50px rgba(24,42,74,.06); }
.payment-notice > span { display:grid; place-items:center; width:36px; height:36px; border-radius:50%; color:#fff; font-weight:900; }
.payment-result-success .payment-notice > span { background:#38a675; }.payment-result-failed .payment-notice > span { background:#d96b6b; }
.payment-notice strong { color:var(--ink); }.payment-notice p { margin:7px 0 0; color:var(--ink-soft); line-height:1.65; }
.payment-close-note { margin:22px 0 0; color:#87919c; font-size:14px; }
@keyframes payment-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes payment-pop { from{opacity:0;transform:scale(.6)} to{opacity:1;transform:scale(1)} }
@keyframes payment-nudge { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 50%{transform:translateX(5px)} 75%{transform:translateX(-2px)} }
@media (prefers-reduced-motion: reduce){.payment-illustration,.payment-status-mark{animation:none!important}}
@media (max-width:900px){.legal-hero-grid,.payment-result-shell{grid-template-columns:1fr}.legal-layout{grid-template-columns:1fr}.legal-toc{position:relative;top:auto;padding:20px;border:1px solid #dfe5ec;border-radius:18px;background:#fafbfd}.legal-toc nav{grid-template-columns:repeat(2,minmax(0,1fr));gap:4px 20px}.payment-illustration{max-width:310px}.payment-result-copy{text-align:center}.payment-notice{text-align:left}.payment-result-copy .button{margin-inline:auto}}
@media (max-width:620px){.legal-hero{padding-top:52px}.legal-toc nav{grid-template-columns:1fr}.legal-company{padding:26px 22px}.legal-company dl>div{grid-template-columns:1fr;gap:4px}.legal-section{padding-top:44px}.payment-result{padding-top:54px}.payment-illustration{max-width:260px}.payment-status-mark{width:72px;height:72px;font-size:34px}.payment-notice{grid-template-columns:1fr}.payment-notice>span{margin:auto}.payment-notice{text-align:center}}

/* Contact page — v1.4 */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(74px, 9vw, 128px) 0 clamp(62px, 8vw, 104px);
    background: linear-gradient(180deg, #f7f9fc 0%, #fbfaf6 100%);
}
.contact-hero::after {
    content: '';
    position: absolute;
    width: 540px;
    height: 540px;
    right: -190px;
    top: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,238,234,.85), rgba(220,238,234,0) 70%);
}
.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
    gap: clamp(40px, 8vw, 112px);
    align-items: end;
}
.contact-hero-copy h1 {
    margin: 0 0 24px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(58px, 8vw, 104px);
    line-height: .94;
    letter-spacing: -.065em;
    font-weight: 700;
}
.contact-hero-copy > p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.58;
}
.contact-hero-note {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 26px;
    border: 1px solid #dbe6e2;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 20px 55px rgba(23,56,63,.07);
}
.contact-hero-note > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    background: var(--teal);
    font-weight: 800;
}
.contact-hero-note strong { display:block; margin:1px 0 7px; font-size:17px; }
.contact-hero-note p { margin:0; color:var(--ink-soft); line-height:1.6; }
.contact-main { padding: clamp(70px, 9vw, 124px) 0; background: white; }
.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    gap: 28px;
    align-items: stretch;
}
.contact-form-card,
.contact-details-card {
    border: 1px solid #dfe8e4;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(23,56,63,.07);
}
.contact-form-card { padding: clamp(30px, 5vw, 58px); }
.contact-details-card { padding: clamp(30px, 4vw, 46px); background: #f4f8f6; }
.contact-kicker { margin:0 0 12px; color:var(--teal); font-size:12px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.contact-section-heading h2,
.contact-details-card h2,
.contact-location-copy h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.contact-section-heading > p:last-child { max-width:650px; margin:18px 0 0; color:var(--ink-soft); font-size:17px; line-height:1.65; }
.contact-form { display:grid; gap:22px; margin-top:38px; }
.contact-field-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.contact-form label { display:grid; gap:9px; color:var(--ink); font-size:14px; font-weight:700; }
.contact-form label small { margin-left:5px; color:#8a9895; font-size:12px; font-weight:500; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8e2de;
    border-radius: 14px;
    padding: 15px 16px;
    color: #647772;
    background: #f7f9f8;
    font: inherit;
    resize: vertical;
}
.contact-form input:disabled,
.contact-form select:disabled,
.contact-form textarea:disabled { opacity:1; cursor:not-allowed; }
.contact-form ::placeholder { color:#9aa7a3; }
.contact-submit-row { display:flex; align-items:center; gap:18px; margin-top:4px; }
.contact-submit-button {
    min-width: 160px;
    color: #8a9894;
    background: #e7ecea;
    box-shadow: none;
    cursor: not-allowed;
}
.contact-submit-button:hover { transform:none; }
.contact-submit-row p { margin:0; color:#7f8e8a; font-size:14px; }
.contact-details-card h2 { font-size:clamp(32px,4vw,46px); }
.contact-detail-list { display:grid; gap:4px; margin-top:30px; }
.contact-detail {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #dbe5e1;
    text-decoration: none;
}
.contact-detail-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: var(--ocean);
    background: white;
    box-shadow: inset 0 0 0 1px #dce6e2;
}
.contact-detail-icon svg { width:21px; height:21px; fill:currentColor; }
.contact-detail small { display:block; margin-bottom:4px; color:#7a8985; font-size:12px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.contact-detail strong { color:var(--ink); font-size:16px; line-height:1.5; }
.contact-detail:hover strong { color:var(--teal); }
.contact-depot-note { margin-top:28px; padding:22px; border-radius:18px; background:#fff; }
.contact-depot-note strong { display:block; margin-bottom:8px; }
.contact-depot-note p { margin:0; color:var(--ink-soft); font-size:14px; line-height:1.65; }
.contact-location { padding: clamp(72px, 9vw, 126px) 0; background:#f3f6f4; }
.contact-location-grid { display:grid; grid-template-columns:minmax(0,.78fr) minmax(480px,1.22fr); gap:clamp(42px,7vw,94px); align-items:center; }
.contact-location-copy p:not(.contact-kicker) { margin:22px 0 0; color:var(--ink-soft); font-size:17px; line-height:1.7; }
.contact-location-copy .button { margin-top:30px; }
.contact-map-card { overflow:hidden; min-height:500px; border:10px solid white; border-radius:28px; background:#e4ebe7; box-shadow:0 28px 70px rgba(23,56,63,.12); }
.contact-map-card iframe { display:block; width:100%; height:500px; border:0; }
@media (max-width: 920px) {
    .contact-hero-grid,
    .contact-main-grid,
    .contact-location-grid { grid-template-columns:1fr; }
    .contact-hero-note { max-width:620px; }
    .contact-location-grid { gap:40px; }
    .contact-map-card { min-height:430px; }
    .contact-map-card iframe { height:430px; }
}
@media (max-width: 640px) {
    .contact-hero { padding-top:54px; }
    .contact-field-grid { grid-template-columns:1fr; }
    .contact-form-card,
    .contact-details-card { border-radius:22px; }
    .contact-submit-row { align-items:flex-start; flex-direction:column; }
    .contact-map-card { min-height:360px; border-width:6px; border-radius:22px; }
    .contact-map-card iframe { height:360px; }
}

/* Branded production error pages */
.friendly-error {
    min-height: 62vh;
    display: grid;
    place-items: center;
    padding: clamp(4rem, 9vw, 8rem) 1.25rem;
    background: radial-gradient(circle at top, rgba(112, 79, 139, .10), transparent 42%), #f8faf9;
}
.friendly-error__inner { max-width: 760px; text-align: center; }
.friendly-error__mark {
    width: 72px; height: 72px; margin: 0 auto 1.25rem; border-radius: 50%;
    display: grid; place-items: center; font-size: 2rem; font-weight: 600;
    color: #6d4d82; background: #eee7f3; border: 1px solid #dfd2e8;
}
.friendly-error__eyebrow { margin: 0 0 .65rem; color: #6d4d82; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.friendly-error h1 { max-width: 680px; margin: 0 auto 1rem; color: #34464a; font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 1.04; }
.friendly-error__message, .friendly-error__extra { max-width: 620px; margin: 0 auto; color: #687b7f; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.friendly-error__extra { margin-top: .75rem; }
.friendly-error__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
@media (max-width: 620px) { .friendly-error__actions { flex-direction: column; } .friendly-error__actions .btn { width: 100%; } }
.footer-socials{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.15rem}.footer-social-link{display:inline-flex;align-items:center;gap:.55rem;padding:.65rem .85rem;border:1px solid rgba(81,111,143,.18);border-radius:999px;background:rgba(255,255,255,.56);color:#516f8f;font-size:.88rem;font-weight:700;text-decoration:none;transition:transform .18s ease,background-color .18s ease,border-color .18s ease,box-shadow .18s ease}.footer-social-link:hover,.footer-social-link:focus-visible{transform:translateY(-2px);border-color:rgba(81,111,143,.32);background:#fff;box-shadow:0 8px 20px rgba(48,73,89,.10);outline:none}@media(max-width:720px){.footer-socials{margin-top:1rem}}
