/* =====================================================================
   Global Prime — stylesheet
   Palette: Dark Navy (#0A2540) + Emerald Green (#00A86B) on white.
   NOTE: the --gold* variables are kept as the "secondary accent" tokens
   but now hold the emerald green values (renaming everywhere is avoided).
   ===================================================================== */

:root {
    /* Primary — Dark Navy */
    --navy: #0A2540;
    --navy-700: #0e3258;
    --navy-600: #14456f;
    /* Secondary — Emerald Green (accent) */
    --gold: #00A86B;
    --gold-600: #008f5a;
    --gold-light: #d8f3e8;
    --ink: #14202e;
    --muted: #5b6675;
    --line: #e6e9ef;
    --bg: #ffffff;
    --bg-soft: #f5f8fb;
    --bg-navy-soft: #0c2e4f;
    --success: #00A86B;
    --danger: #d2433a;
    --radius: 14px;
    --radius-sm: 9px;
    --shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.16);
    --container: 1180px;
    --font: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-head: 'Plus Jakarta Sans', var(--font);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.18;
    margin: 0 0 .5em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--navy-600);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--gold-600);
}

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

.section {
    padding: clamp(48px, 7vw, 90px) 0;
}

.section--soft {
    background: var(--bg-soft);
}

.section--navy {
    background: var(--navy);
    color: #dfe6f1;
}

.section--navy h2,
.section--navy h3 {
    color: #fff;
}

.text-center {
    text-align: center;
}

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

.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .76rem;
    color: var(--gold-600);
    margin-bottom: .8rem;
}

.section--navy .eyebrow {
    color: var(--gold);
}

.lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 720px;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-head.text-center .lead {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .98rem;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, color .2s;
    text-align: center;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 168, 107, .35);
}

.btn--gold:hover {
    background: var(--gold-600);
    color: #fff;
}

.btn--navy {
    background: var(--navy);
    color: #fff;
}

.btn--navy:hover {
    background: var(--navy-700);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn--ghost:hover {
    background: var(--gold);
    color: #fff;
}

.btn--light {
    background: #fff;
    color: var(--navy);
}

.btn--block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ---- Top bar ---- */
.topbar {
    background: var(--navy);
    color: #aebfdb;
    font-size: .85rem;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar a {
    color: #cdd8ee;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar__contact {
    display: flex;
    gap: 1.4rem;
}

.topbar__meta {
    opacity: .85;
}

/* ---- Header / nav ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s;
}

.site-header.is-stuck {
    box-shadow: var(--shadow);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.brand__mark {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--navy), var(--navy-600));
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    letter-spacing: .02em;
    border: 1px solid rgba(0, 168, 107, .4);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__text strong {
    font-family: var(--font-head);
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 800;
}

.brand__text small {
    color: var(--muted);
    font-size: .72rem;
}

.brand--footer .brand__text strong {
    color: #fff;
}

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

.main-nav__item {
    flex: none;
}

.main-nav__item>a {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    white-space: nowrap;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink);
    padding: .6rem .85rem;
    border-radius: 8px;
}

.main-nav__item>a:hover {
    color: var(--navy);
    background: var(--bg-soft);
}

.main-nav__item.is-active>a {
    color: var(--gold-600);
}

.main-nav__item .caret {
    font-size: .7rem;
    opacity: .7;
}

/* Full-width header — let the top bar and nav span the whole viewport
   so the 8-item menu has room to breathe instead of being boxed to 1180px. */
.topbar .container,
.site-header__inner {
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
}

/* Keep everything on one line on mid-width desktops. */
@media (max-width: 1180px) {
    .brand__text small {
        display: none;
    }

    .main-nav__item>a {
        font-size: .9rem;
        padding: .55rem .55rem;
    }

    .main-nav__list {
        gap: .15rem;
    }

    .topbar .container,
    .site-header__inner {
        padding-left: 22px;
        padding-right: 22px;
    }
}

.main-nav__item.is-cta>a {
    background: var(--gold);
    color: #fff;
}

.main-nav__item.is-cta>a:hover {
    background: var(--gold-600);
    color: #fff;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: .5rem;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 268px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
    z-index: 60;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: .6rem .8rem;
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
}

.dropdown li a:hover {
    background: var(--bg-soft);
    color: var(--navy);
    padding-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: .25s;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    color: #eaf0fb;
    overflow: hidden;
    background:
        radial-gradient(1100px 500px at 85% -10%, rgba(0, 168, 107, .20), transparent 60%),
        radial-gradient(800px 500px at 0% 110%, rgba(27, 59, 107, .55), transparent 55%),
        linear-gradient(160deg, var(--navy) 0%, #0a1830 100%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
    padding: clamp(56px, 8vw, 104px) 0;
}

/* Single-column hero (no side form) — center the content. */
.hero--centered .hero__inner {
    grid-template-columns: 1fr;
}

.hero--centered .hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero--centered .hero__sub {
    margin-left: auto;
    margin-right: auto;
}

.hero--centered .hero__cta,
.hero--centered .hero__stats,
.hero--centered .hero__badges {
    justify-content: center;
}

.hero h1 {
    color: #fff;
}

.hero h1 span {
    color: var(--gold);
}

.hero__sub {
    font-size: 1.15rem;
    color: #c4d2ea;
    max-width: 560px;
    margin-bottom: 1.8rem;
}

.hero__cta {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero__stats {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
}

.hero__stats .stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.9rem;
    color: var(--gold);
    font-weight: 800;
}

.hero__stats .stat span {
    font-size: .85rem;
    color: #aebfdb;
}

.hero__badges {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.hero__badges span {
    font-size: .78rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: .35rem .7rem;
    border-radius: 999px;
    color: #cdd8ee;
}

/* Hero quick enquiry card */
.hero-card {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px;
}

.hero-card h3 {
    color: var(--navy);
    margin-bottom: .35rem;
}

.hero-card p.muted {
    font-size: .9rem;
    margin-bottom: 1.2rem;
}

/* ---- Forms ---- */
.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .35rem;
    font-family: var(--font-head);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .8rem .9rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, .18);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.field .req {
    color: var(--danger);
}

.form-note {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .4rem;
}

.alert {
    padding: .9rem 1.1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    font-size: .92rem;
}

.alert--success {
    background: #e7f7f0;
    color: #0c6b48;
    border: 1px solid #b8e6d3;
}

.alert--error {
    background: #fdeceb;
    color: #962019;
    border: 1px solid #f4c7c3;
}

.alert ul {
    margin: .4rem 0 0;
    padding-left: 1.1rem;
}

/* ---- Cards / grids ---- */
.grid {
    display: grid;
    gap: 24px;
}

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

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 107, .5);
}

.card__icon {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: var(--gold-light);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: .4rem;
}

.card p {
    color: var(--muted);
    font-size: .95rem;
}

.card__link {
    margin-top: auto;
    padding-top: .9rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy-600);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.card__link::after {
    content: '→';
    transition: transform .2s;
}

.card:hover .card__link::after {
    transform: translateX(4px);
}

/* Feature (why choose) */
.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature__icon {
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 12px;
    background: rgba(0, 168, 107, .15);
    color: var(--gold-600);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.section--navy .feature__icon {
    background: rgba(0, 168, 107, .18);
}

.feature h3 {
    font-size: 1.08rem;
    margin-bottom: .25rem;
}

.feature p {
    font-size: .92rem;
}

.section--navy .feature p {
    color: #b8c6e0;
}

/* Process steps */
.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 0;
}

.step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(0, 168, 107, .4);
}

.step h3 {
    font-size: 1.1rem;
}

.step p {
    font-size: .92rem;
    color: var(--muted);
}

/* Testimonials */
.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.testimonial__stars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: .6rem;
}

.testimonial p {
    font-size: 1rem;
    color: var(--ink);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1rem;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 700;
}

.testimonial__author strong {
    display: block;
    font-family: var(--font-head);
    color: var(--navy);
    font-size: .95rem;
}

.testimonial__author span {
    font-size: .82rem;
    color: var(--muted);
}

/* FAQ accordion */
.faq {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

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

.faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 1.15rem 1.3rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq__q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-600);
    flex: none;
    transition: transform .25s;
}

.faq__item.is-open .faq__q::after {
    transform: rotate(45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq__a p {
    padding: 0 1.3rem 1.2rem;
    color: var(--muted);
    margin: 0;
    font-size: .96rem;
}

/* Breadcrumb */
.breadcrumb {
    font-size: .85rem;
    color: var(--muted);
    padding: 1rem 0 0;
}

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

.breadcrumb a:hover {
    color: var(--gold-600);
}

.breadcrumb span {
    margin: 0 .4rem;
    opacity: .6;
}

/* Page hero (inner pages) */
.page-hero {
    background: linear-gradient(160deg, var(--navy), #0a1830);
    color: #e7eefb;
    padding: clamp(40px, 6vw, 72px) 0;
}

.page-hero h1 {
    color: #fff;
}

.page-hero p {
    color: #c4d2ea;
    max-width: 680px;
}

/* Service layout */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 44px;
    align-items: start;
}

.prose p {
    color: #3a4555;
}

.prose h2 {
    margin-top: 2rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.checklist li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: .7rem;
    color: #3a4555;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.3rem;
    height: 1.3rem;
    background: var(--gold-light);
    color: var(--gold-600);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .8rem;
    font-weight: 700;
}

.sidebar-sticky {
    position: sticky;
    top: 96px;
}

.enquiry-sidebar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.enquiry-sidebar h3 {
    color: var(--navy);
    margin-bottom: .3rem;
}

.enquiry-sidebar .muted {
    font-size: .88rem;
    margin-bottom: 1.2rem;
}

.benefit-row {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

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

.benefit-row .ico {
    font-size: 1.3rem;
    color: var(--gold-600);
}

.benefit-row strong {
    font-family: var(--font-head);
    color: var(--navy);
    display: block;
}

.benefit-row span {
    color: var(--muted);
    font-size: .92rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-600));
    color: #fff;
    border-radius: var(--radius);
    padding: clamp(32px, 5vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 200px at 80% 0, rgba(0, 168, 107, .25), transparent 60%);
}

.cta-band h2 {
    color: #fff;
    position: relative;
}

.cta-band p {
    color: #c4d2ea;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.cta-band .btn {
    position: relative;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
    transition: transform .2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: #aebfdb;
    padding-top: 64px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr) 1fr;
    gap: 32px;
    padding-bottom: 48px;
}

.site-footer p {
    font-size: .9rem;
    color: #9fb0cf;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: .55rem;
}

.site-footer a {
    color: #aebfdb;
    font-size: .9rem;
}

.site-footer a:hover {
    color: var(--gold);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-top: 1rem;
    font-size: .9rem;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
}

.site-footer__bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__bottom p {
    margin: 0;
    font-size: .85rem;
}

/* Our Services — Dubai skyline section */
.services-section {
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(80px, 11vw, 140px);
    background: linear-gradient(180deg, #f6fafe 0%, #e9f0f8 100%);
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: url("../upload/section-bg.png") no-repeat center 72%;
    background-size: 122% auto;
    opacity: .8;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 18px 42px rgba(10, 37, 64, .10);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 62px rgba(10, 37, 64, .17);
}

.service-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    background: #e3f6ec;
    display: grid;
    place-items: center;
    font-size: 1.85rem;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: .7rem;
    font-size: 1.2rem;
}

.service-card__rule {
    display: block;
    width: 44px;
    height: 3px;
    background: #ce1126;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted);
    font-size: .95rem;
}

.service-card__link {
    margin-top: auto;
    padding-top: 1.1rem;
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.service-card__link svg {
    color: #00A86B;
    transition: transform .2s;
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* Business Setup Options — cards + comparison table */
.flag-divider {
    position: relative;
    display: block;
    width: 150px;
    height: 3px;
    border-radius: 2px;
    margin: .2rem auto 1.3rem;
    background: rgba(120, 134, 158, .28);
}

.flag-divider::before,
.flag-divider::after {
    content: "";
    position: absolute;
    top: 0;
    height: 3px;
    width: 36px;
    border-radius: 2px;
}

.flag-divider::before {
    right: calc(50% + 5px);
    background: #ce1126;
}

.flag-divider::after {
    left: calc(50% + 5px);
    background: #009639;
}

.setup-options {
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(90px, 12vw, 150px);
}

.setup-options .container {
    position: relative;
    z-index: 2;
}

.setup-options__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .6;
    background-image:
        radial-gradient(rgba(255, 255, 255, .07) 1.1px, transparent 1.1px),
        radial-gradient(900px 380px at 12% 60%, rgba(0, 168, 107, .10), transparent 60%);
    background-size: 24px 24px, 100% 100%;
}

.setup-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 30px;
    transition: transform .2s, border-color .2s, background .2s;
    display: flex;
    flex-direction: column;
}

.setup-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 107, .55);
    background: rgba(255, 255, 255, .06);
}

.setup-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 15px;
    margin-bottom: 1.3rem;
    background: linear-gradient(160deg, rgba(0, 168, 107, .22), rgba(0, 168, 107, .04));
    border: 1px solid rgba(0, 168, 107, .45);
    display: grid;
    place-items: center;
    color: #fff;
}

.setup-card__icon svg {
    width: 32px;
    height: 32px;
}

.setup-card h3 {
    color: #fff;
    margin-bottom: .5rem;
}

.setup-card p {
    color: #b8c6e0;
    font-size: .96rem;
}

.setup-card__link {
    margin-top: auto;
    padding-top: 1rem;
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.setup-card__link svg {
    width: 17px;
    height: 17px;
    transition: transform .2s;
}

.setup-card:hover .setup-card__link svg {
    transform: translateX(4px);
}

.compare-wrap {
    margin-top: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
    overflow-x: auto;
}

.compare {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.compare th,
.compare td {
    padding: 15px 22px;
    text-align: left;
    vertical-align: middle;
}

.compare thead th {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.compare thead th:first-child {
    color: var(--gold);
}

.compare tbody tr+tr td {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.compare .colhead {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

.compare .colhead .ci {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    color: #fff;
    flex: none;
}

.compare .colhead .ci svg {
    width: 19px;
    height: 19px;
}

.compare .feat {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #e3eaf6;
    font-weight: 600;
}

.compare .feat svg {
    width: 21px;
    height: 21px;
    color: #8aa0c4;
    flex: none;
}

.cmp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
}

.cmp svg {
    width: 23px;
    height: 23px;
    flex: none;
}

.cmp--yes {
    color: #8fe6c1;
}

.cmp--yes svg {
    color: #00A86B;
}

.cmp--limited {
    color: #f3c07e;
}

.cmp--limited svg {
    color: #e8922e;
}

.cmp--no {
    color: #f2978f;
}

.cmp--no svg {
    color: #e0554c;
}

.flag-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}

.flag-wave svg {
    width: 100%;
    height: clamp(46px, 6vw, 78px);
    display: block;
}

/* Meet your consultant */
.consultant__photo {
    position: relative;
}

.consultant__avatar {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy), #0a1d33);
    display: grid;
    place-items: center;
    font-size: 5rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 168, 107, .25);
}

.consultant__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultant__badge {
    position: absolute;
    right: 18px;
    bottom: -18px;
    background: var(--gold);
    color: #fff;
    padding: .7rem 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 168, 107, .4);
    line-height: 1.1;
}

.consultant__badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.25rem;
}

.consultant__badge span {
    font-size: .72rem;
    opacity: .95;
}

@media (max-width: 1024px) {
    .consultant__avatar {
        aspect-ratio: 16 / 9;
        font-size: 4rem;
    }
}

/* Logos / trust strip */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    align-items: center;
    justify-content: center;
    opacity: .85;
}

.trust-strip span {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Utility */
.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mb-0 {
    margin-bottom: 0
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 2rem 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: static;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 70;
    }

    /* Drawer reveals by expanding its width from the right edge. It is NEVER
       positioned off-screen, so it can't create horizontal page scroll
       (and it doesn't touch html/body overflow, so the sticky header is safe). */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100dvh;
        width: 0;
        max-width: 86vw;
        background: #fff;
        overflow: hidden;
        transition: width .28s ease;
        box-shadow: var(--shadow-lg);
        z-index: 60;
    }

    .main-nav.is-open {
        width: min(330px, 86vw);
    }

    .main-nav__list {
        position: absolute;
        top: 0;
        right: 0;
        width: min(330px, 86vw);
        height: 100%;
        padding: 84px 18px 28px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
    }

    .main-nav__item {
        border-bottom: 1px solid var(--line);
        width: 100%;
    }

    .main-nav__item>a {
        padding: .95rem .4rem;
        font-size: 1rem;
        white-space: normal;
        justify-content: space-between;
    }

    .main-nav__item.is-cta>a {
        margin-top: .5rem;
        border-radius: 8px;
        justify-content: center;
    }

    /* Sub-menus: collapsed until the parent is tapped open. */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 .6rem .8rem;
        min-width: 0;
        max-height: none;
        display: none;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
    }

    .has-dropdown.is-open>a .caret {
        transform: rotate(180deg);
    }

    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {

    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .topbar__meta {
        display: none;
    }

    .hero__stats {
        gap: 1.4rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}