/* ==========================================================
   SEOMozo — app.css
   One stylesheet. Tokens → base → layout → components → utilities.
   ========================================================== */

/* ----------------------------------------------------------
   TOKENS
   ---------------------------------------------------------- */

:root {
    /* Surfaces: paper-white page, cool grey wash, deep navy footer */
    --paper: #ffffff;
    --wash: #f5f7fb;
    --wash-2: #eef2f9;
    --ink: #0a1020;
    --ink-2: #1b2437;
    --body: #4a5568;
    --muted: #71809b;
    --line: #e3e8f0;
    --line-2: #cfd8e6;

    /* Brand: a single blue, plus SERP green used only for URL crumbs */
    --brand: #2b59ff;
    --brand-dark: #1e40d8;
    --brand-wash: #eef2ff;
    --serp-link: #1a0dab;
    --serp-url: #0b7a3b;

    /* Type — fluid, no breakpoints needed */
    --f-display: clamp(2.1rem, 1.35rem + 3.2vw, 3.6rem);
    --f-h2: clamp(1.55rem, 1.15rem + 1.7vw, 2.35rem);
    --f-h3: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem);
    --f-body: clamp(0.975rem, 0.95rem + 0.15vw, 1.0625rem);
    --f-sm: 0.875rem;
    --f-xs: 0.78rem;

    /* Spacing — 8pt */
    --s1: 0.5rem;
    --s2: 1rem;
    --s3: 1.5rem;
    --s4: 2rem;
    --s5: 3rem;
    --s6: 4rem;
    --section: clamp(3.25rem, 7vw, 6rem);

    --radius: 12px;
    --radius-lg: 18px;
    --header-h: 68px;

    --shadow-sm: 0 1px 2px rgba(10, 16, 32, 0.06);
    --shadow: 0 8px 24px -12px rgba(10, 16, 32, 0.18);
    --shadow-lg: 0 28px 60px -32px rgba(10, 16, 32, 0.35);
}

/* ----------------------------------------------------------
   BASE
   ---------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-padding-top: calc(var(--header-h) + 1rem);
    -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 {
    margin: 0 0 var(--s2);
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.14;
    text-wrap: balance;
}

h1 { font-size: var(--f-display); }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); letter-spacing: -0.015em; line-height: 1.35; }

p { margin: 0 0 var(--s2); }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul, ol { margin: 0 0 var(--s2); padding-left: 1.25rem; }

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.75rem 1.25rem;
    background: var(--brand);
    color: #fff;
    border-radius: 0 0 8px 0;
}

.skip:focus { left: 0; }

.sr {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */

.wrap {
    width: min(1180px, 100% - clamp(2rem, 6vw, 5rem));
    margin-inline: auto;
}

.section { padding-block: var(--section); }
.section--wash { background: var(--wash); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }

.head {
    max-width: 46rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.head--center { margin-inline: auto; text-align: center; }
.head p { color: var(--body); font-size: 1.05em; }

.eyebrow {
    display: inline-block;
    margin-bottom: var(--s1);
    font-size: var(--f-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
}

.grid { display: grid; gap: var(--s3); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.35rem;
    font-size: var(--f-sm);
    font-weight: 600;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color .16s ease, border-color .16s ease, transform .12s ease;
}

.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }

.btn--ghost {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line-2);
}

.btn--ghost:hover { background: var(--wash); }

.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: var(--brand-wash); }

.btn--lg { padding: 0.95rem 1.6rem; font-size: 1rem; }

.btns { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */

.hdr {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.hdr__bar {
    display: flex;
    align-items: center;
    gap: var(--s3);
    height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    text-decoration: none !important;
}

.logo__mark {
    display: grid;
    place-items: center;
    width: 32px; height: 32px;
    border-radius: 9px;
    color: #fff;
    background: var(--brand);
}

.logo em { font-style: normal; color: var(--brand); }

.nav { margin-left: auto; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0; padding: 0;
    list-style: none;
}

.nav__list a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: var(--f-sm);
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 8px;
    text-decoration: none !important;
}

.nav__list a:hover { background: var(--wash); }
.nav__list a[aria-current="page"] { color: var(--brand); background: var(--brand-wash); }

.hdr__cta { display: none; }

.burger {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
}

.burger[aria-expanded="true"] span { box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink); }

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.hero {
    position: relative;
    padding-block: clamp(3rem, 8vw, 5.5rem) var(--section);
    background:
        radial-gradient(60rem 30rem at 15% -10%, #e8edff 0%, transparent 60%),
        linear-gradient(180deg, var(--paper), var(--wash));
    border-bottom: 1px solid var(--line);
}

.hero__grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero h1 { margin-bottom: var(--s2); }

.hero__lead {
    max-width: 34rem;
    font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.2rem);
    color: var(--body);
    margin-bottom: var(--s3);
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3) var(--s4);
    margin-top: var(--s4);
    padding-top: var(--s3);
    border-top: 1px solid var(--line);
}

.hero__proof div { min-width: 6rem; }

.hero__proof dt {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

.hero__proof dd {
    margin: 0;
    font-size: var(--f-xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ----------------------------------------------------------
   SIGNATURE: the SERP row
   Cards shaped like a Google result — the one object an SEO agency
   can legitimately own as a visual motif.
   ---------------------------------------------------------- */

.serp {
    display: block;
    padding: var(--s3);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none !important;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.serp:hover {
    border-color: var(--line-2);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.serp__url {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
    font-size: var(--f-xs);
    color: var(--serp-url);
    letter-spacing: 0.01em;
}

.serp__favicon {
    display: grid;
    place-items: center;
    flex: none;
    width: 18px; height: 18px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}

.serp__title {
    margin: 0 0 0.3rem;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--serp-link);
}

.serp:hover .serp__title { text-decoration: underline; }

.serp__snippet {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--body);
}

.serp__meta {
    margin-top: 0.6rem;
    font-size: var(--f-xs);
    color: var(--muted);
}

/* ----------------------------------------------------------
   CARDS + LISTS
   ---------------------------------------------------------- */

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

.card--wash { background: var(--wash); border-color: transparent; }

.card h3 { margin-bottom: 0.4rem; }
.card p { font-size: 0.94rem; margin: 0; }

.steps { counter-reset: step; list-style: none; padding: 0; }

.steps li {
    counter-increment: step;
    position: relative;
    padding: var(--s3) 0 var(--s3) 3.25rem;
    border-top: 1px solid var(--line);
}

.steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0; top: var(--s3);
    font-size: var(--f-sm);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--brand);
}

.steps h3 { margin-bottom: 0.25rem; }
.steps p { margin: 0; font-size: 0.94rem; }

.ticks { list-style: none; padding: 0; display: grid; gap: 0.65rem; }

.ticks li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
}

.ticks li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.45em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-wash);
}

/* Link grids for cities / countries */
.linklist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
    gap: 0.25rem 1rem;
    list-style: none;
    margin: 0; padding: 0;
}

.linklist a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
    text-decoration: none !important;
}

.linklist a:hover { color: var(--brand); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.chips a {
    padding: 0.45rem 0.85rem;
    font-size: var(--f-sm);
    color: var(--ink-2);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none !important;
}

.chips a:hover { border-color: var(--brand); color: var(--brand); }

/* ----------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------- */

.crumbs { padding-block: 0.9rem; border-bottom: 1px solid var(--line); background: var(--paper); }

.crumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0; padding: 0;
    list-style: none;
    font-size: var(--f-xs);
    color: var(--muted);
}

.crumbs li + li::before { content: "/"; margin-right: 0.4rem; color: var(--line-2); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    padding: var(--s3) 0;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: "+";
    flex: none;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--muted);
}

.faq details[open] summary::after { content: "\2212"; }

.faq details > p { padding-bottom: var(--s3); margin: 0; max-width: 60ch; }

/* ----------------------------------------------------------
   CTA BAND
   ---------------------------------------------------------- */

.cta {
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(50rem 22rem at 12% 0%, #4a72ff 0%, transparent 62%),
        linear-gradient(135deg, var(--brand), #1b34a8);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.86); max-width: 44ch; }

/* Domain-input form */
.domain { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 34rem; margin-top: var(--s3); }

.domain__field { position: relative; flex: 1 1 15rem; display: flex; align-items: center; }

.domain__icon {
    position: absolute;
    left: 0.9rem;
    width: 17px; height: 17px;
    color: var(--muted);
    pointer-events: none;
}

.domain input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.6rem;
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid transparent;
    border-radius: 10px;
}

.domain input::placeholder { color: var(--muted); }

.domain input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */

.ftr {
    background: var(--ink);
    color: #c3cbdb;
    font-size: 0.925rem;
}

.ftr a { color: #c3cbdb; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: none; }

.ftr__top { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

.ftr__grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    grid-template-columns: minmax(0, 1fr);
}

.ftr__brand { max-width: 26rem; }
.ftr__brand .logo { color: #fff; }
.ftr__brand .logo em { color: #7f9bff; }
.ftr__about { margin: var(--s2) 0 var(--s3); color: #8e9ab3; }

.ftr__social { display: flex; gap: 0.5rem; }

.ftr__social a {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: #8e9ab3;
}

.ftr__social a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }

.ftr__cols { display: grid; gap: 0; grid-template-columns: minmax(0, 1fr); }

.ftr__col { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.ftr__title { margin: 0; font-size: 0.9rem; font-weight: 600; color: #fff; }

.ftr__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 52px;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: #fff;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
}

.ftr__chev { width: 16px; height: 16px; transition: transform .2s ease; }
.ftr__toggle[aria-expanded="false"] .ftr__chev { transform: rotate(-90deg); }

/* Collapse with grid rows so links stay in the DOM for crawlers */
.ftr__panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .25s ease; }
.ftr__panel.closed { grid-template-rows: 0fr; }
.ftr__panel > ul { overflow: hidden; }

.ftr__links { list-style: none; margin: 0; padding: 0 0 var(--s2); display: grid; gap: 0.55rem; }
.ftr__links a { color: #8e9ab3; font-size: 0.9rem; }
.ftr__links a:hover { color: #fff; }

.ftr__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    justify-content: space-between;
    align-items: center;
    padding-block: var(--s3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--f-xs);
    color: #77839c;
}

.ftr__bottom nav { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* ----------------------------------------------------------
   BACK TO TOP
   ---------------------------------------------------------- */

.top {
    position: fixed;
    right: clamp(1rem, 3vw, 1.75rem);
    bottom: clamp(1rem, 3vw, 1.75rem);
    z-index: 40;
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    color: #fff;
    background: var(--ink);
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.top.show { opacity: 1; transform: none; }
.top[hidden] { display: none !important; }

/* ----------------------------------------------------------
   PROSE (static pages)
   ---------------------------------------------------------- */

.prose { max-width: 46rem; }
.prose h2 { margin-top: var(--s5); }
.prose h3 { margin-top: var(--s4); }
.prose ul { display: grid; gap: 0.5rem; }

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (min-width: 768px) {
    .ftr__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s4); }
    .ftr__col { border-top: 0; }
    .ftr__toggle { cursor: default; min-height: 0; margin-bottom: var(--s2); }
    .ftr__chev { display: none; }
    .ftr__panel { grid-template-rows: 1fr !important; }
}

@media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
    .ftr__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); }
    .ftr__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hdr__cta { display: inline-flex; }
    .burger { display: none; }
}

/* Mobile nav */
@media (max-width: 899px) {
    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto;
        margin: 0;
        padding: var(--s2) clamp(1rem, 5vw, 2rem) var(--s4);
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        display: none;
    }

    .nav.open { display: block; }

    .nav__list { flex-direction: column; align-items: stretch; gap: 0; }

    .nav__list a {
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .nav__list .btn { margin-top: var(--s2); width: 100%; }
}

/* ----------------------------------------------------------
   MOTION / CONTRAST
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}

@media (forced-colors: active) {
    .serp, .card, .chips a { border: 1px solid CanvasText; }
}

@media print {
    .hdr, .ftr, .top, .cta { display: none; }
}

/* ==========================================================
   CONTACT PAGE + WHATSAPP
   ========================================================== */

.lede { font-size: 1.08em; color: var(--body); max-width: 46rem; }

.contact {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: var(--s4);
    align-items: start;
}

@media (min-width: 900px) {
    .contact { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
    .prose:has(.contact) { max-width: none; }
}

.contact__form { min-width: 0; }
.contact__aside { display: grid; gap: var(--s2); }
.contact__aside .card p:last-child { margin-bottom: 0; }

.h3 { font-size: var(--f-h3); font-weight: 700; margin-bottom: .4rem; }
.muted { color: var(--muted); font-size: var(--f-sm); }

/* ---- Form ---- */

.form { display: grid; gap: var(--s3); max-width: 34rem; }

.field { display: grid; gap: 0.35rem; }

.field label { font-weight: 600; font-size: var(--f-sm); color: var(--ink); }
.field label span { color: var(--brand); }

.field input,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.field textarea { resize: vertical; min-height: 8rem; }

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(43, 89, 255, 0.14);
}

.field input::placeholder { color: var(--muted); }

.field__hint { margin: 0; font-size: var(--f-xs); color: var(--muted); }

/* ---- Alerts ---- */

.alert {
    padding: var(--s2) var(--s3);
    margin-bottom: var(--s3);
    border-radius: var(--radius);
    border-left: 3px solid;
    font-size: 0.95rem;
}

.alert ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.alert--ok  { background: #ecfdf5; border-color: #10b981; color: #065f46; }
.alert--bad { background: #fef2f2; border-color: #ef4444; color: #991b1b; }
.alert--ok a { color: #065f46; text-decoration: underline; }

.mini-steps { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.5rem; font-size: 0.93rem; }

/* ---- WhatsApp ---- */

.btn--wa { background: #25d366; color: #05301a; width: 100%; }
.btn--wa:hover { background: #1fbb5a; }

.wa-float {
    position: fixed;
    left: clamp(1rem, 3vw, 1.75rem);
    bottom: clamp(1rem, 3vw, 1.75rem);
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: var(--f-sm);
    font-weight: 600;
    color: #05301a;
    background: #25d366;
    border-radius: 999px;
    box-shadow: 0 12px 28px -12px rgba(5, 48, 26, .6);
    text-decoration: none !important;
}

.wa-float:hover { background: #1fbb5a; }
.wa-float span { display: none; }

@media (min-width: 640px) { .wa-float span { display: inline; } }

@media print { .wa-float { display: none; } }

/* ==========================================================
   IMAGERY + KEY PHRASES  (v2)
   ========================================================== */

.hero {
    background:
        url("/assets/img/pattern.svg") repeat,
        radial-gradient(60rem 30rem at 15% -10%, #e8edff 0%, transparent 60%),
        linear-gradient(180deg, var(--paper), var(--wash));
}

.hero__art { margin: 0; }

.hero__art img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Emphasised key phrases. Kept subtle on purpose — a page where every
   other phrase is bold reads as spam to people, whatever Google thinks. */
.lede strong,
.prose strong {
    font-weight: 700;
    color: var(--ink);
    background: linear-gradient(180deg, transparent 62%, rgba(43, 89, 255, .16) 62%);
}

/* City fact bar */
.factbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
    gap: var(--s2);
    margin: 0 0 var(--s5);
    padding: var(--s3);
    background: var(--wash);
    border-radius: var(--radius);
}

.factbar dt {
    font-size: var(--f-xs);
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .2rem;
}

.factbar dd { margin: 0; font-size: .95rem; color: var(--ink); font-weight: 500; }

/* Sector tags (non-link chips) */
.chips-item {
    padding: .45rem .85rem;
    font-size: var(--f-sm);
    color: var(--ink-2);
    background: var(--wash);
    border-radius: 999px;
}

/* ==========================================================
   CONSENT BANNER
   ========================================================== */

.consent {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    padding: var(--s2) 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 40px -24px rgba(10, 16, 32, .5);
}

.consent[hidden] { display: none !important; }

.consent__inner {
    width: min(1180px, 100% - clamp(2rem, 6vw, 5rem));
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
}

.consent__text { margin: 0; font-size: var(--f-sm); color: var(--body); max-width: 52ch; }
.consent__actions { display: flex; gap: .5rem; flex: none; }

@media (max-width: 560px) {
    .consent__actions { width: 100%; }
    .consent__actions .btn { flex: 1; }
    .wa-float { bottom: 6.5rem; }
    .top { bottom: 6.5rem; }
}

/* ==========================================================
   INTERNAL PAGE HERO
   ========================================================== */

.phero {
    padding-block: clamp(2.25rem, 5vw, 3.75rem);
    background:
        url("/assets/img/pattern.svg") repeat,
        radial-gradient(52rem 26rem at 12% -20%, #e8edff 0%, transparent 62%),
        linear-gradient(180deg, var(--paper), var(--wash));
    border-bottom: 1px solid var(--line);
}

.phero__grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.phero__copy h1 { margin-bottom: var(--s2); }
.phero__copy .lede { max-width: 42rem; margin-bottom: var(--s3); }
.phero__art { margin: 0; }

.phero__art img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

@media (min-width: 860px) {
    .phero__grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* Art is decorative support, not information — drop it first on small
   screens rather than shrinking it to an unreadable thumbnail. */
@media (max-width: 559px) {
    .phero__art { display: none; }
}

/* ==========================================================
   TRUST BAND
   ========================================================== */

.trust {
    padding-block: clamp(2rem, 4vw, 3rem);
    background: var(--ink);
    color: #c3cbdb;
}

.trust__grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 860px) {
    .trust__grid { grid-template-columns: 1.15fr 1fr; }
}

.trust__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(50%, 8rem), 1fr));
    gap: var(--s3);
    margin: 0;
}

.trust__stats dt {
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    color: #fff;
    line-height: 1;
}

.trust__stats dd {
    margin: .35rem 0 0;
    font-size: var(--f-xs);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8e9ab3;
}

.trust__marks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .6rem;
    font-size: .92rem;
}

.trust__marks li { position: relative; padding-left: 1.6rem; }

.trust__marks li::before {
    content: "";
    position: absolute;
    left: 0; top: .45em;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .16);
}

/* ==========================================================
   HORIZONTAL CITY STRIP
   Replaces a 47-item vertical footer column. Scrolls sideways on
   mobile, wraps into rows on desktop. Every link stays in the DOM.
   ========================================================== */

.citystrip {
    padding-block: var(--s3) var(--s4);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.citystrip__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: var(--s2);
}

.citystrip__title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
}

.citystrip__all { font-size: var(--f-sm); color: #7f9bff !important; }

.citystrip__rail {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.citystrip__rail a {
    padding: .42rem .8rem;
    font-size: .85rem;
    color: #c3cbdb;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.citystrip__rail a:hover {
    color: #fff;
    background: rgba(43, 89, 255, .22);
    border-color: rgba(127, 155, 255, .5);
}

/* Mobile: one scrolling rail instead of a 47-chip wall */
@media (max-width: 767px) {
    .citystrip__rail {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-inline: calc(var(--pad, 1.25rem) * -1);
        padding-inline: var(--pad, 1.25rem);
        padding-bottom: .4rem;
        scroll-snap-type: x proximity;
    }

    .citystrip__rail::-webkit-scrollbar { display: none; }
    .citystrip__rail a { flex: none; scroll-snap-align: start; }
}
