/* =====================================
   SMARTLEDGER SOLUTIONS — HOME PAGE
   ===================================== */

/* Self-hosted Inter (replaces the Google Fonts CSS + fonts.gstatic.com
   round trip). This one file is a variable font covering the whole
   400-900 weight range used across the site, extracted from Google's
   own "latin" subset — see fonts/README for provenance/licence (SIL OFL). */
@font-face{
    font-family:'Inter';
    font-style:normal;
    font-weight:100 900;
    font-display:swap;
    src:url('../fonts/inter-latin-var.woff2') format('woff2');
}

:root{

    /* Brand palette — sourced directly from the logo's 2 colours. */
    --navy:#1E4661;
    --navy-dark:#153144;
    --navy-light:#506F84;
    --blue:#1E4661;
    --blue-light:#EDF0F2;
    --green:#3A8A57;
    --green-light:#EFF6F2;
    --green-bright:#75AD89;

    --bg:#FFFFFF;
    --bg-soft:#F6F8FB;
    --border:#E6EAF2;

    --text:#1A2233;
    --text-light:#64748B;
    --text-inverse:#F1F5FF;
    --text-inverse-muted:#AEBBDD;

    --radius-sm:10px;
    --radius:16px;
    --radius-lg:24px;
    --radius-pill:999px;

    --shadow-sm:0 2px 8px rgba(16,24,50,0.06);
    --shadow:0 12px 32px rgba(16,24,50,0.08);
    --shadow-lg:0 24px 60px rgba(16,24,50,0.14);

    --container:1200px;

    --space-xs:8px;
    --space-sm:16px;
    --space-md:24px;
    --space-lg:40px;
    --space-xl:64px;
    --space-2xl:96px;

    --ease:cubic-bezier(.4,0,.2,1);
    --ease-spring:cubic-bezier(.34,1.56,.64,1);

}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; overflow-x:hidden; scroll-padding-top:100px; }

body.home-body{

    margin:0;
    font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;

}

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

.home-body a{ text-decoration:none; color:inherit; }

.home-body ul{ list-style:none; margin:0; padding:0; }

.home-body button{

    font-family:inherit;
    cursor:pointer;
    -webkit-appearance:none;
    appearance:none;
    border:none;
    background:none;
    color:inherit;
    font-size:inherit;
    text-align:inherit;

}

.container{

    max-width:var(--container);
    margin:0 auto;
    padding:0 24px;

}

.section{ padding:96px 0; }

@media(max-width:768px){
    .section{ padding:64px 0; }
}

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

.section-navy{

    background:linear-gradient(160deg,var(--navy),var(--navy-dark));
    color:var(--text-inverse);

}

.eyebrow{

    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--blue);
    background:var(--blue-light);
    padding:6px 14px;
    border-radius:var(--radius-pill);
    margin-bottom:16px;

}

.eyebrow-dot{

    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(30,70,97,0.18);

}

.eyebrow-dot::before{

    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 0 3px var(--green-light);
    flex-shrink:0;

}

.section-navy .eyebrow{

    color:var(--green-bright);
    background:rgba(255,255,255,0.08);

}

.section-head{

    max-width:680px;
    margin:0 auto 56px;
    text-align:center;

}

.section-head h2{

    font-size:clamp(30px,4vw,42px);
    font-weight:800;
    margin:0 0 16px;
    letter-spacing:-.01em;
    overflow-wrap:break-word;

}

.section-head p{

    font-size:17px;
    color:var(--text-light);
    margin:0;

}

.section-navy .section-head p{ color:var(--text-inverse-muted); }

.reveal{

    opacity:0;
    transform:translateY(24px);
    transition:opacity .6s ease, transform .6s ease;

}

.reveal.in-view{

    opacity:1;
    transform:translateY(0);

}


/* =====================================
   BUTTONS
   ===================================== */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    border-radius:var(--radius-pill);
    font-weight:700;
    font-size:15px;
    border:1px solid transparent;
    position:relative;
    overflow:hidden;
    isolation:isolate;
    transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space:nowrap;

}

/* Diagonal shine sweep on hover — a subtle, one-shot highlight rather
   than a distracting looping animation. */
.btn::before{

    content:"";
    position:absolute;
    inset:0 auto 0 -60%;
    width:45%;
    background:linear-gradient(115deg,transparent,rgba(255,255,255,0.45),transparent);
    transform:skewX(-18deg);
    transition:left .55s ease;
    pointer-events:none;
    z-index:1;

}

.btn:hover::before{ left:130%; }

.btn > *{ position:relative; z-index:2; }

.btn i{ transition:transform .25s ease; }

.btn:hover{ transform:translateY(-3px) scale(1.025); }

.btn:active{ transform:translateY(-1px) scale(0.97); transition-duration:.1s; }

.btn:hover i.fa-arrow-right{ transform:translateX(4px); }

/* .btn.btn-primary (rather than plain .btn-primary) so this beats
   .home-body a{color:inherit}'s specificity — that rule was otherwise
   winning and leaving the button text a dark inherited colour instead
   of white, illegible against the navy background. Same fix applied to
   the other two variants below for the same reason. */
.btn.btn-primary{

    background:var(--blue);
    color:#fff;
    box-shadow:0 10px 24px rgba(30,70,97,0.32);

}

.btn.btn-primary:hover{

    background:var(--navy-dark);
    color:#fff;
    box-shadow:0 16px 34px -4px rgba(30,70,97,0.48);

}

.btn.btn-secondary{

    background:#fff;
    color:var(--navy);
    border-color:var(--border);

}

.btn.btn-secondary:hover{

    border-color:var(--blue);
    color:var(--blue);
    box-shadow:0 12px 26px -6px rgba(30,70,97,0.18);

}

.btn.btn-ghost-light{

    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,0.35);

}

.btn.btn-ghost-light:hover{ background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.6); color:#fff; }

.btn-lg{ padding:16px 32px; font-size:16px; }

.btn-block{ width:100%; }


/* =====================================
   HEADER / NAV
   ===================================== */

.site-header{

    position:sticky;
    top:0;
    z-index:200;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(230,234,242,0.7);
    transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;

}

.site-header.scrolled{

    background:rgba(255,255,255,0.96);
    border-color:var(--border);
    box-shadow:0 8px 30px rgba(10,31,68,0.06);

}

/* Home page only: header floats fixed over the light hero background as
   frosted glass — translucent tint + heavy blur + a soft glass-edge
   border, so the hero's colour genuinely shows (and blurs) through it,
   rather than just looking invisible. Switches to the normal solid
   header once scrolled past the hero. Scoped to .page-home because
   every other page's top section is a dark navy .page-hero — glass
   over that would need different (light) nav text to stay legible. */
.page-home .site-header{ position:fixed; left:0; right:0; }

.page-home .site-header:not(.scrolled){

    background:rgba(255,255,255,0.35);
    backdrop-filter:blur(18px) saturate(160%);
    -webkit-backdrop-filter:blur(18px) saturate(160%);
    border-bottom:1px solid rgba(255,255,255,0.5);
    box-shadow:0 8px 32px rgba(16,24,50,0.06);

}

/* Fixed header no longer occupies flow, so the hero needs the height
   back as top padding — otherwise its heading starts underneath it. */
.page-home .hero-split{ padding-top:174px; }
.page-home .hero-centered{ padding-top:150px; }

.nav-inner{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    height:86px;

}

.nav-logo{

    display:flex;
    align-items:center;
    gap:13px;
    font-weight:800;
    font-size:18px;
    color:var(--navy);
    white-space:nowrap;
    flex-shrink:0;

}

.logo-img{

    height:52px;
    width:auto;
    display:block;

}

.footer-logo-link{

    background:#fff;
    padding:10px 16px;
    border-radius:12px;
    display:inline-flex;

}

.footer-logo-link .logo-img{ height:42px; }

.nav-links{

    display:flex;
    align-items:center;
    gap:4px;

}

.nav-links > li{ position:relative; }

.nav-link{

    display:flex;
    align-items:center;
    gap:6px;
    padding:10px 15px;
    font-weight:600;
    font-size:14.5px;
    color:#3B4459;
    transition:color .15s ease;
    position:relative;

}

.nav-link::after{

    content:"";
    position:absolute;
    left:15px;
    right:15px;
    bottom:4px;
    height:2px;
    border-radius:2px;
    background:var(--blue);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .2s ease;

}

.nav-link:hover,
.nav-link.open{

    color:var(--navy);

}

.nav-link:hover::after,
.nav-link.open::after{ transform:scaleX(1); }

.nav-link i.chev{ font-size:10px; transition:transform .2s ease; color:#9AA5BD; }

.nav-link.open i.chev{ transform:rotate(180deg); }

.nav-actions{

    display:flex;
    align-items:center;
    gap:20px;
    flex-shrink:0;

}

.nav-actions .btn{ padding:12px 26px; font-size:14.5px; }

.nav-login{

    display:flex;
    align-items:center;
    gap:7px;
    font-weight:600;
    font-size:14.5px;
    color:#3B4459;

}

.nav-login i{ font-size:13px; color:#9AA5BD; transition:color .15s ease; }

.nav-login:hover{ color:var(--navy); }

.nav-login:hover i{ color:var(--blue); }

.nav-toggle{

    display:none;
    background:none;
    border:none;
    width:42px;
    height:42px;
    border-radius:10px;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--navy);

}

.nav-toggle:hover{ background:var(--bg-soft); }


/* --- Services mega dropdown --- */

.mega-dropdown{

    position:absolute;
    top:calc(100% + 14px);
    left:50%;
    transform:translateX(-50%) translateY(8px);
    width:820px;
    max-width:90vw;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:0 30px 70px -12px rgba(10,31,68,0.22);
    padding:30px 32px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px 28px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease, visibility .18s;
    z-index:50;
    overflow:hidden;

}

.mega-dropdown::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg,var(--navy),var(--green));

}

.mega-col{ position:relative; }

.mega-col + .mega-col{

    border-left:1px solid var(--border);
    padding-left:28px;

}

.nav-link.open + .mega-dropdown,
.mega-dropdown.open{

    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);

}

.mega-col-head{

    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:0 0 16px;

}

.mega-col-icon{

    width:36px;
    height:36px;
    border-radius:10px;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    flex-shrink:0;

}

.mega-col h4{

    font-size:13.5px;
    font-weight:800;
    color:var(--navy);
    margin:0;

}

.mega-col-desc{

    font-size:12px;
    color:var(--text-light);
    margin:3px 0 0;
    line-height:1.4;

}

.mega-col-head-second{

    margin-top:20px;
    align-items:center;

}

.mega-col-head-second .mega-col-icon{ width:30px; height:30px; font-size:12.5px; }

.mega-col-head-second h4{ font-size:12.5px; }

.mega-col ul li a{

    display:block;
    padding:7px 0;
    font-size:14px;
    color:var(--text);
    font-weight:500;
    border-radius:6px;
    transition:color .15s ease;

}

.mega-col ul li a:hover{ color:var(--blue); }

.mega-dropdown-footer{

    grid-column:1 / -1;
    margin-top:4px;
    padding-top:16px;
    border-top:1px solid var(--border);

}

.mega-dropdown-footer a{

    font-size:13.5px;
    font-weight:700;
    color:var(--navy);
    transition:color .15s ease;

}

.mega-dropdown-footer a:hover{ color:var(--blue); }

.mega-dropdown-footer a i{ margin-left:4px; font-size:12px; }


/* --- Simple dropdown (Resources — a short flat list of pages rather
   than the Services mega-menu's categorised columns; shares the mega
   dropdown's positioning/shadow/icon styles for visual consistency) --- */

.simple-dropdown{

    position:absolute;
    top:calc(100% + 14px);
    left:50%;
    transform:translateX(-50%) translateY(8px);
    width:300px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:0 30px 70px -12px rgba(10,31,68,0.22);
    padding:12px;
    display:flex;
    flex-direction:column;
    gap:2px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease, visibility .18s;
    z-index:50;
    overflow:hidden;

}

.simple-dropdown::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg,var(--navy),var(--green));

}

.simple-dropdown.open{

    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);

}

.simple-dropdown-item{

    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px;
    border-radius:var(--radius-sm);
    transition:background .15s ease;

}

.simple-dropdown-item:hover{ background:var(--bg-soft); }

.simple-dropdown-item h4{ font-size:14px; font-weight:800; color:var(--navy); margin:0; }


/* =====================================
   MOBILE NAV DRAWER
   ===================================== */

.nav-overlay{

    position:fixed;
    inset:0;
    background:rgba(6,15,32,0.5);
    z-index:300;
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;

}

.nav-overlay.open{ opacity:1; visibility:visible; }

.mobile-drawer{

    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:min(360px,86vw);
    background:#fff;
    z-index:310;
    transform:translateX(100%);
    transition:transform .3s ease;
    overflow-y:auto;
    box-shadow:-10px 0 40px rgba(16,24,50,0.2);

}

.mobile-drawer.open{ transform:translateX(0); }

.drawer-head{

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid var(--border);

}

.drawer-close{

    background:var(--bg-soft);
    border:none;
    width:38px;
    height:38px;
    border-radius:10px;
    font-size:17px;
    color:var(--text);

}

.drawer-body{ padding:12px 12px 32px; }

.drawer-link{

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 12px;
    font-weight:700;
    font-size:15.5px;
    color:var(--navy);
    border-radius:10px;

}

.drawer-link:hover{ background:var(--bg-soft); }

.drawer-link-btn{ width:100%; }

.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;

}

.drawer-sub{

    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
    padding:0 12px;

}

.drawer-sub.open{ max-height:900px; }

.drawer-sub-group{ margin:10px 0 16px; }

.drawer-sub-group h5{

    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:var(--text-light);
    margin:0 0 8px;
    font-weight:800;

}

.drawer-sub-group a{

    display:block;
    padding:8px 0;
    font-size:14px;
    color:var(--text);
    font-weight:500;

}

.drawer-actions{

    padding:16px 12px 0;
    display:flex;
    flex-direction:column;
    gap:10px;
    border-top:1px solid var(--border);
    margin-top:10px;

}


/* =====================================
   HERO
   ===================================== */

.hero{

    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,var(--blue-light) 0%,#fff 55%);

}

.hero-split{ padding:88px 0 100px; }

.hero-centered{ padding:64px 0 88px; }

/* --- Full-width navy banner variant: bold centred text, no side
   visual, no light decorative blobs (those were tuned for the light
   hero background and would barely show against navy). CSS only —
   no stock image involved. --- */

.hero-banner{

    padding:100px 0;
    background:linear-gradient(160deg,var(--navy),var(--navy-dark));

}

.hero-banner .hero-bg{ display:none; }

.hero-banner .hero-copy{ max-width:760px; margin:0 auto; text-align:center; }

.hero-banner .hero-copy h1{ color:#fff; }

.hero-banner .hero-copy p.lead{ color:var(--text-inverse-muted); max-width:600px; margin:0 auto 36px; }

.hero-banner .eyebrow{ color:var(--green-bright); background:rgba(255,255,255,0.1); }

.hero-banner .hero-cta{ justify-content:center; }

.hero-banner .hero-mini-trust{ justify-content:center; color:var(--text-inverse-muted); }

.hero-banner .hero-mini-trust i{ background:rgba(255,255,255,0.15); color:#fff; }

.hero-banner .text-accent{

    background:linear-gradient(100deg,var(--green-bright) 10%,#fff 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;

}

@media(max-width:560px){

    .hero-banner{ padding:80px 0; }

}

/* --- Layered background depth (no bright gradients/blobs-everywhere —
   just two soft tint circles, a masked dot-grid patch and a couple of
   faint geometric lines, all well below the copy in z-index) --- */

.hero-bg{ position:absolute; inset:0; z-index:0; overflow:hidden; }

.hero-bg-blob{ position:absolute; border-radius:50%; }

.hbg-1{

    width:560px;
    height:560px;
    top:-180px;
    right:-160px;
    background:radial-gradient(circle,var(--blue-light) 0%,rgba(237,240,242,0) 70%);

}

.hbg-2{

    width:440px;
    height:440px;
    bottom:-180px;
    left:-150px;
    background:radial-gradient(circle,var(--green-light) 0%,rgba(239,246,242,0) 70%);

}

.hero-bg-dots{

    position:absolute;
    width:260px;
    height:260px;
    top:10%;
    right:6%;
    background-image:radial-gradient(rgba(30,70,97,0.14) 1.4px,transparent 1.4px);
    background-size:15px 15px;
    -webkit-mask-image:radial-gradient(circle,#000 0%,transparent 72%);
    mask-image:radial-gradient(circle,#000 0%,transparent 72%);

}

.hero-bg-lines{

    position:absolute;
    left:4%;
    bottom:14%;
    width:220px;
    height:120px;
    background-image:repeating-linear-gradient(135deg,var(--border) 0 1px,transparent 1px 22px);
    -webkit-mask-image:linear-gradient(135deg,#000,transparent 75%);
    mask-image:linear-gradient(135deg,#000,transparent 75%);
    opacity:.7;

}

.text-accent{

    background:linear-gradient(100deg,var(--navy) 10%,var(--green) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:var(--blue);

}

.hero-grid{ position:relative; z-index:1; }

.hero-split .hero-grid{

    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;

}

.hero-centered .hero-copy{

    max-width:760px;
    margin:0 auto;
    text-align:center;

}

.hero-copy h1{

    font-size:clamp(36px,5vw,60px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-.02em;
    margin:0 0 22px;
    color:var(--navy);

}

.hero-copy p.lead{

    font-size:18px;
    color:var(--text-light);
    max-width:520px;
    margin:0 0 32px;

}

.hero-centered .hero-copy p.lead{ max-width:600px; margin:0 auto 36px; }

.hero-cta{

    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:32px;

}

.hero-centered .hero-cta{ justify-content:center; margin-bottom:36px; }

.hero-mini-trust{

    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    font-size:13.5px;
    color:#3B4459;
    font-weight:600;

}

.hero-centered .hero-mini-trust{ justify-content:center; }

.hero-mini-trust span{ display:flex; align-items:center; gap:9px; }

.hero-mini-trust i{

    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:9.5px;
    flex-shrink:0;

}


/* --- Hero visual: dashboard card + floating service cards --- */

.hero-visual{

    position:relative;
    z-index:1;
    height:480px;

}

.hero-visual-glow{

    position:absolute;
    inset:14% 18%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(30,70,97,0.14),transparent 72%);
    z-index:0;

}

.dashboard-card{

    position:absolute;
    top:50%;
    left:50%;
    width:300px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
    padding:22px 24px 16px;
    z-index:2;
    opacity:0;
    transform:translate(-50%,-46%);
    animation:dashFadeIn .7s var(--ease) .15s forwards;

}

.dashboard-card-head{

    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:11.5px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:var(--text-light);
    padding-bottom:12px;
    margin-bottom:8px;
    border-bottom:1px solid var(--border);

}

.dashboard-card-head i{ color:#B9C2D6; font-size:13px; }

.dashboard-row{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:8px 0;
    font-size:13px;

}

.dashboard-row + .dashboard-row{ border-top:1px dashed var(--border); }

.dr-label{

    display:flex;
    align-items:center;
    gap:9px;
    font-weight:700;
    color:var(--navy);
    white-space:nowrap;

}

.dr-label i{ color:var(--navy-light); font-size:12.5px; width:14px; text-align:center; }

.dr-status{

    display:flex;
    align-items:center;
    gap:5px;
    font-weight:700;
    font-size:11.5px;
    white-space:nowrap;

}

.dr-status.dr-done{ color:var(--green); }

.dr-status.dr-pending{ color:var(--navy-light); }

.dr-status i{ font-size:10.5px; }

@keyframes dashFadeIn{
    to{ opacity:1; transform:translate(-50%,-50%); }
}

.float-card{

    position:absolute;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    width:190px;
    z-index:3;
    opacity:0;
    transition:transform .25s ease, box-shadow .25s ease;
    animation:floatSlideIn .6s var(--ease-spring) forwards, floatDrift 7s ease-in-out infinite;

}

.float-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); z-index:4; }

.float-card.ff-icon-only{ width:168px; padding:12px 14px; }

.ff-icon{

    width:40px;
    height:40px;
    border-radius:11px;
    background:linear-gradient(145deg,var(--navy-light),var(--navy));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
    box-shadow:0 6px 14px -4px rgba(10,31,68,0.4);

}

.ff-text strong{ display:block; font-size:13px; color:var(--navy); line-height:1.3; }

.ff-text span{ font-size:11px; color:var(--text-light); }

.ff-1{ top:2%; left:0%; animation-delay:.55s, 1.2s; }
.ff-2{ bottom:4%; right:2%; animation-delay:.7s, 1.35s; }

.ff-3{ top:6%; right:8%; animation-delay:.85s, 1.5s; }
.ff-3 .ff-icon{ background:linear-gradient(145deg,var(--green-bright),var(--green)); }

.ff-4{ bottom:8%; left:10%; animation-delay:1s, 1.65s; }
.ff-4 .ff-icon{ background:linear-gradient(145deg,var(--green-bright),var(--green)); }

@keyframes floatSlideIn{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes floatDrift{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-8px); }
}

@media(prefers-reduced-motion:reduce){

    .dashboard-card{ animation:none; opacity:1; transform:translate(-50%,-50%); }
    .float-card{ animation:none; opacity:1; }

}


/* =====================================
   TRUST STRIP
   ===================================== */

.trust-strip{

    padding:36px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);

}

.trust-strip-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.trust-item{

    display:flex;
    align-items:center;
    gap:14px;

}

.trust-item .ti-icon{

    width:46px;
    height:46px;
    border-radius:12px;
    background:var(--blue-light);
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;

}

.trust-item strong{ display:block; font-size:14.5px; color:var(--navy); }

.trust-item span{ font-size:12.5px; color:var(--text-light); }


/* =====================================
   QUICK START
   ===================================== */

.quickstart{

    background:linear-gradient(160deg,var(--navy),var(--navy-dark));
    border-radius:var(--radius-lg);
    padding:56px;
    color:var(--text-inverse);
    position:relative;
    overflow:hidden;

}

.quickstart::before{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(30,70,97,0.3),transparent 70%);
    top:-100px;
    right:-60px;

}

.quickstart-inner{

    position:relative;
    z-index:1;
    max-width:640px;
    margin:0 auto;
    text-align:center;

}

.quickstart-inner h2{

    font-size:clamp(24px,3.4vw,32px);
    font-weight:800;
    margin:0 0 12px;

}

.quickstart-inner p{

    color:var(--text-inverse-muted);
    margin:0 0 32px;
    font-size:15.5px;

}

.quickstart-form-row{

    display:flex;
    gap:10px;
    background:#fff;
    padding:8px;
    border-radius:var(--radius-pill);
    box-shadow:var(--shadow-lg);

}

.quickstart-form input{

    flex:1;
    border:none;
    outline:none;
    padding:12px 18px;
    font-size:15px;
    font-family:inherit;
    border-radius:var(--radius-pill);
    color:var(--text);
    min-width:0;

}

.quickstart-form .form-status{ max-width:480px; margin-left:auto; margin-right:auto; }

@media(max-width:560px){

    .quickstart{ padding:36px 22px; }

    .quickstart-form-row{

        flex-direction:column;
        border-radius:var(--radius);
        background:transparent;
        padding:0;
        gap:12px;

    }

    .quickstart-form input{

        background:#fff;
        border-radius:var(--radius-pill);
        padding:14px 20px;

    }

}


/* =====================================
   SERVICES OVERVIEW
   ===================================== */

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;

}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5){

    grid-column:span 1;

}

@media(min-width:900px){

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

    .services-grid .service-card{ grid-column:span 2; }

    /* Row 2 has only 2 cards — stretch them to fill the full row width
       (half each) instead of leaving them bunched to one side with an
       empty gap next to them. */
    .services-grid .service-card:nth-child(4){ grid-column:1 / span 3; }
    .services-grid .service-card:nth-child(5){ grid-column:4 / span 3; }

    /* Home page's own Services Overview grid gets a hierarchy pass —
       one large feature card instead of a flat, uniform 3+2 grid.
       Scoped to #services only so the shared service-card component's
       default (even) layout elsewhere — e.g. About Us's "What We Do" —
       is untouched. */
    #services .services-grid{ grid-template-columns:repeat(6,1fr); grid-auto-rows:auto; }

    #services .services-grid .service-card{ grid-column:span 2; grid-row:2; }

    #services .services-grid .service-card:nth-child(1){ grid-column:1 / span 4; grid-row:1; }
    #services .services-grid .service-card:nth-child(4){ grid-column:5 / span 2; grid-row:1; }
    #services .services-grid .service-card:nth-child(2){ grid-column:1 / span 2; }
    #services .services-grid .service-card:nth-child(3){ grid-column:3 / span 2; }
    #services .services-grid .service-card:nth-child(5){ grid-column:5 / span 2; }

}

/* Large feature card treatment for the home page's lead service card */

#services .services-grid .service-card:nth-child(1){

    padding:44px 40px 38px;

}

#services .services-grid .service-card:nth-child(1) .sc-icon{

    width:64px;
    height:64px;
    font-size:24px;
    border-radius:16px;

}

#services .services-grid .service-card:nth-child(1) h3{ font-size:24px; }

#services .services-grid .service-card:nth-child(1) p{ font-size:15.5px; max-width:520px; }

#services .services-grid .service-card:nth-child(1) ul{

    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:20px;

}

.service-card{

    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:34px 30px 30px;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display:flex;
    flex-direction:column;

}

.service-card::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:var(--blue);

}

.service-card:hover{

    transform:translateY(-6px);
    box-shadow:0 22px 50px -14px rgba(30,70,97,0.25);
    border-color:transparent;

}

.service-card .sc-icon{

    width:52px;
    height:52px;
    border-radius:14px;
    background:linear-gradient(140deg,var(--navy-light),var(--navy));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:20px;
    box-shadow:0 10px 18px -6px rgba(30,70,97,0.45);

}

.service-card h3{ font-size:19px; font-weight:800; margin:0 0 10px; color:var(--navy); }

.service-card p{ font-size:14.5px; color:var(--text-light); margin:0 0 18px; }

.service-card ul{ margin:0 0 22px; flex-grow:1; }

.service-card ul li{

    font-size:13.5px;
    color:var(--text);
    padding:6px 0 6px 20px;
    position:relative;

}

.service-card ul li::before{

    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:9px;
    color:var(--green);
    position:absolute;
    left:0;
    top:10px;

}

.service-card .sc-link{

    font-weight:700;
    font-size:14px;
    color:var(--blue);
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;

}

.service-card .sc-link i{ transition:transform .15s ease; font-size:12px; }

.service-card:hover .sc-link i{ transform:translateX(4px); }


/* --- Per-category accent colours --- */

.service-card.accent-green::before{ background:var(--green); }
.service-card.accent-green .sc-icon{ background:linear-gradient(140deg,var(--green-bright),var(--green)); box-shadow:0 10px 18px -6px rgba(58,138,87,0.45); }
.service-card.accent-green:hover{ box-shadow:0 22px 50px -14px rgba(58,138,87,0.25); }

.service-card.accent-navy::before{ background:var(--navy); }
.service-card.accent-navy .sc-icon{ background:linear-gradient(140deg,var(--navy-light),var(--navy)); box-shadow:0 10px 18px -6px rgba(30,70,97,0.45); }
.service-card.accent-navy:hover{ box-shadow:0 22px 50px -14px rgba(30,70,97,0.25); }


/* --- Featured card (the one live, working service) --- */

.service-card.featured{

    background:linear-gradient(160deg,var(--navy),var(--navy-light));
    border-color:transparent;

}

.service-card.featured::before{ background:linear-gradient(90deg,var(--green),var(--green-bright)); }

.service-card.featured h3{ color:#fff; }

.service-card.featured p{ color:var(--text-inverse-muted); }

.service-card.featured ul li{ color:#fff; }

.service-card.featured .sc-icon{

    background:rgba(255,255,255,0.12);
    color:#fff;
    box-shadow:none;

}

.service-card.featured .sc-link{ color:var(--green-bright); }

.service-card.featured:hover{

    transform:translateY(-6px);
    box-shadow:0 26px 55px -14px rgba(6,21,48,0.55);

}

.sc-badge{

    position:absolute;
    top:20px;
    right:20px;
    background:var(--green);
    color:#06281F;
    font-size:11px;
    font-weight:800;
    letter-spacing:.03em;
    text-transform:uppercase;
    padding:6px 12px;
    border-radius:var(--radius-pill);

}


/* =====================================
   WHY CHOOSE US
   ===================================== */

.feature-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}

.feature-card{

    text-align:left;
    padding:8px;

}

.feature-card .fcard-icon{

    width:54px;
    height:54px;
    border-radius:14px;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
    margin-bottom:20px;

}

.feature-card h3{ font-size:16.5px; font-weight:800; margin:0 0 8px; color:var(--navy); }

.feature-card p{ font-size:14px; color:var(--text-light); margin:0; }


/* =====================================
   WHY US — split section with numbered features
   ===================================== */

.why-split{

    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
    align-items:center;

}

.why-visual{

    position:relative;
    aspect-ratio:1/0.9;
    background:linear-gradient(160deg,var(--blue-light),var(--bg-soft));
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr;
    gap:20px;
    padding:32px;
}

.why-visual-tile{

    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:var(--navy);

}

.why-visual-tile.wt-2,
.why-visual-tile.wt-3{ color:var(--green); }

.why-visual-tile.wt-1{ transform:translateY(-8px); }
.why-visual-tile.wt-2{ transform:translateY(8px); }
.why-visual-tile.wt-3{ transform:translateY(-8px); }
.why-visual-tile.wt-4{ transform:translateY(8px); }

.why-copy h2{

    font-size:clamp(28px,4vw,40px);
    font-weight:800;
    letter-spacing:-.01em;
    margin:16px 0 40px;

}

.why-list{

    display:flex;
    flex-direction:column;
    gap:28px;

}

.why-item{

    display:flex;
    gap:24px;
    align-items:flex-start;

}

.why-num{

    font-size:34px;
    font-weight:800;
    color:transparent;
    -webkit-text-stroke:1.5px var(--navy-light);
    line-height:1;
    flex-shrink:0;
    width:52px;

}

.why-item h3{ font-size:17.5px; font-weight:800; margin:0 0 6px; color:var(--navy); }

.why-item p{ font-size:14.5px; color:var(--text-light); margin:0; }

@media(max-width:900px){

    .why-split{ grid-template-columns:minmax(0,1fr); gap:40px; }

    .why-visual{ max-width:420px; margin:0 auto; width:100%; }

}


/* =====================================
   ABOUT TEASER (home page → links to /about-us)
   ===================================== */

.about-teaser{

    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:center;

}

.about-teaser-copy h2{

    font-size:clamp(28px,4vw,38px);
    font-weight:800;
    letter-spacing:-.01em;
    margin:0 0 16px;

}

.about-teaser-copy p{ font-size:16px; color:var(--text-light); margin:0 0 20px; max-width:480px; }

.about-teaser-cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;

}

.about-teaser-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px 18px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease;

}

.about-teaser-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }

.about-teaser-card .why-num{ display:block; margin:0 auto 10px; width:auto; }

.about-teaser-card h3{ font-size:14.5px; font-weight:800; color:var(--navy); margin:0; }

@media(max-width:900px){

    .about-teaser{ grid-template-columns:minmax(0,1fr); gap:32px; }

}

@media(max-width:560px){

    .about-teaser-cards{ grid-template-columns:minmax(0,1fr); }

}


/* =====================================
   HOW IT WORKS
   ===================================== */

.steps-row{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    position:relative;

}

.step-item{

    text-align:center;
    padding:0 18px;
    position:relative;

}

.step-item .step-num{

    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;
    border:2px solid var(--blue);
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:19px;
    margin:0 auto 20px;
    position:relative;
    z-index:1;

}

.step-item::before{

    content:"";
    position:absolute;
    top:28px;
    left:calc(-50% + 28px);
    width:calc(100% - 56px);
    height:2px;
    background:var(--border);
    z-index:0;

}

.step-item:first-child::before{ display:none; }

.step-item h3{ font-size:16px; font-weight:800; margin:0 0 8px; color:var(--navy); }

.step-item p{ font-size:13.5px; color:var(--text-light); margin:0; }

@media(max-width:900px){

    .steps-row{ grid-template-columns:1fr; gap:0; }

    .step-item{

        display:flex;
        align-items:flex-start;
        gap:20px;
        text-align:left;
        padding:0 0 32px;

    }

    .step-item:last-child{ padding-bottom:0; }

    .step-item .step-num{ margin:0; flex-shrink:0; }

    /* Vertical connecting line replaces the horizontal one on mobile —
       a real timeline rather than desktop circles simply stacked with
       nothing joining them. */
    .step-item::before{

        display:block;
        top:56px;
        left:27px;
        width:2px;
        height:calc(100% - 36px);
        background:var(--border);

    }

    .step-item:last-child::before{ display:none; }

}


/* =====================================
   INTERNATIONAL SECTION
   ===================================== */

.intl-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;

}

.intl-copy h2{

    font-size:clamp(26px,3.6vw,34px);
    font-weight:800;
    margin:0 0 16px;

}

.intl-copy p{

    color:var(--text-inverse-muted);
    font-size:16px;
    margin:0 0 28px;
    max-width:480px;

}

.intl-badges{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:32px;

}

.intl-badge{

    display:flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    padding:9px 16px;
    border-radius:var(--radius-pill);
    font-size:13px;
    font-weight:600;

}

.intl-badge i{ color:var(--green-bright); }

.globe-wrap{

    position:relative;
    height:340px;
    display:flex;
    align-items:center;
    justify-content:center;

}

.globe-ring{

    position:absolute;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:50%;

}

.globe-ring.r1{ width:340px; height:340px; }
.globe-ring.r2{ width:260px; height:260px; }
.globe-ring.r3{ width:180px; height:180px; }

.globe-core{

    width:120px;
    height:120px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--navy),var(--green));
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#fff;
    box-shadow:0 0 60px rgba(30,70,97,0.5);
    position:relative;
    z-index:1;

}

.globe-node{

    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 0 6px rgba(58,138,87,0.18);

}

.gn-1{ top:6%; left:18%; }
.gn-2{ bottom:10%; left:8%; }
.gn-3{ top:14%; right:12%; }
.gn-4{ bottom:16%; right:16%; }

.globe-label{

    position:absolute;
    font-size:11px;
    font-weight:700;
    color:#fff;
    background:rgba(6,21,48,0.55);
    border:1px solid rgba(255,255,255,0.18);
    padding:4px 10px;
    border-radius:var(--radius-pill);
    white-space:nowrap;
    backdrop-filter:blur(4px);

}

.gl-1{ top:2%; left:26%; }
.gl-2{ bottom:6%; left:14%; }
.gl-3{ top:10%; right:6%; }


/* =====================================
   TRUST / SECURITY
   ===================================== */

.security-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}

.security-card{

    background:var(--bg-soft);
    border-radius:var(--radius);
    padding:26px;
    text-align:center;

}

.security-card i{

    font-size:26px;
    color:var(--blue);
    margin-bottom:16px;
    display:block;

}

.security-card strong{

    display:block;
    font-size:14.5px;
    color:var(--navy);
    font-weight:700;

}


/* =====================================
   TESTIMONIALS
   ===================================== */

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;

}

.testimonial-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:30px;

}

.testimonial-card .quote-icon{

    font-size:22px;
    color:var(--blue-light);
    margin-bottom:14px;

}

.testimonial-card p.quote{

    font-size:14.5px;
    color:var(--text);
    margin:0 0 22px;
    min-height:88px;

}

.testimonial-author{

    display:flex;
    align-items:center;
    gap:12px;

}

.testimonial-avatar{

    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--bg-soft);
    color:var(--text-light);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;

}

.testimonial-author strong{ display:block; font-size:13.5px; color:var(--navy); }

.testimonial-author span{ font-size:12px; color:var(--text-light); }


/* =====================================
   FAQ
   ===================================== */

.faq-list{ display:flex; flex-direction:column; gap:14px; }

.faq-item{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:border-color .2s ease, box-shadow .2s ease;

}

.faq-item.open{ border-color:transparent; box-shadow:var(--shadow); }

.faq-question{

    width:100%;
    background:none;
    border:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:20px 22px;
    text-align:left;
    font-size:15.5px;
    font-weight:700;
    color:var(--navy);

}

.faq-question i{

    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    transition:transform .2s ease, background .2s ease, color .2s ease;
    flex-shrink:0;

}

.faq-item.open .faq-question i{ transform:rotate(45deg); background:var(--navy); color:#fff; }

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;

}

.faq-answer p{

    padding:0 22px 22px;
    margin:0;
    font-size:14.5px;
    color:var(--text-light);

}


/* =====================================
   FINAL CTA
   ===================================== */

.final-cta{

    text-align:center;
    position:relative;
    overflow:hidden;

}

.final-cta::before,
.final-cta::after{

    content:"";
    position:absolute;
    border-radius:50%;

}

.final-cta::before{

    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(30,70,97,0.3),transparent 70%);
    top:-140px;
    left:-100px;

}

.final-cta::after{

    width:300px;
    height:300px;
    background:radial-gradient(circle,rgba(58,138,87,0.22),transparent 70%);
    bottom:-120px;
    right:-80px;

}

.final-cta-inner{ position:relative; z-index:1; max-width:640px; margin:0 auto; }

.final-cta h2{

    font-size:clamp(26px,3.8vw,36px);
    font-weight:800;
    margin:0 0 14px;

}

.final-cta p{

    color:var(--text-inverse-muted);
    font-size:16px;
    margin:0 0 32px;

}

.final-cta .hero-cta{ justify-content:center; margin-bottom:0; }


/* =====================================
   FOOTER
   ===================================== */

.site-footer{

    background:var(--navy-dark);
    color:var(--text-inverse-muted);
    padding:72px 0 0;

}

.footer-top{

    display:grid;
    grid-template-columns:1.4fr repeat(4,1fr);
    gap:32px;
    padding-bottom:56px;
    border-bottom:1px solid rgba(255,255,255,0.08);

}

.footer-brand .nav-logo{ color:#fff; margin-bottom:16px; }

.footer-brand p{ font-size:13.5px; max-width:280px; margin:0; }

.footer-col h4{

    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#fff;
    margin:0 0 18px;

}

.footer-col ul li{ margin-bottom:12px; }

.footer-col ul li a{ font-size:14px; transition:color .15s ease; }

.footer-col ul li a:hover{ color:#fff; }

.footer-col ul li{

    font-size:14px;
    display:flex;
    align-items:flex-start;
    gap:10px;

}

.footer-col ul li i{ color:var(--green-bright); margin-top:3px; font-size:13px; }

.footer-col-contact p{ font-size:13.5px; line-height:1.5; margin:0 0 16px; }

.footer-col-contact .sc-link{

    font-weight:700;
    font-size:14px;
    color:var(--green-bright);
    display:inline-flex;
    align-items:center;
    gap:8px;

}

.footer-col-contact .sc-link i{ transition:transform .15s ease; font-size:12px; }

.footer-col-contact .sc-link:hover{ color:#fff; }

.footer-col-contact .sc-link:hover i{ transform:translateX(4px); }

.footer-bottom{

    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    padding:26px 0;
    font-size:13px;

}

.footer-bottom-links{ display:flex; gap:22px; flex-wrap:wrap; }

.footer-bottom-links a:hover{ color:#fff; }


/* =====================================
   RESPONSIVE
   ===================================== */

@media(max-width:1080px){

    .footer-top{ grid-template-columns:1fr 1fr 1fr; }
    .footer-brand{ grid-column:1 / -1; }

}

@media(max-width:900px){

    .nav-links,
    .nav-actions .nav-login,
    .nav-actions .btn{ display:none; }

    .nav-actions{ gap:8px; }

    .nav-toggle{ display:flex; }

    .hero-copy{ min-width:0; }

    .hero-split .hero-grid{ grid-template-columns:1fr; }

    /* Below 900px the absolute corner-composition has no room to
       breathe, so the visual drops into normal flow instead: the
       dashboard becomes a plain full-width card and the four floating
       cards settle into a simple 2-up grid underneath it — content
       first, visual second, nothing overlapping, no absolute
       positioning left to go wrong. */
    .hero-visual{

        height:auto;
        margin-top:36px;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px;

    }

    .hero-visual-glow{ display:none; }

    .dashboard-card,
    .float-card{

        position:static;
        width:100%;
        opacity:1;
        transform:none;
        animation:none;

    }

    .dashboard-card{ grid-column:1 / -1; }

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

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

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

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

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

    .trust-strip-grid{ grid-template-columns:1fr 1fr; }

    .footer-top{ grid-template-columns:1fr 1fr; }

}

@media(max-width:560px){

    .services-grid,
    .feature-grid,
    .security-grid,
    .trust-strip-grid,
    .footer-top{ grid-template-columns:1fr; }

    .quickstart{ padding:32px 20px; }

    .hero-cta{ flex-direction:column; align-items:stretch; }

    .hero-cta .btn{ width:100%; }

    .hero-visual{ grid-template-columns:1fr; }

    /* .globe-ring's r1/r2/r3 widths (340/260/180px) are fixed and
       absolutely positioned, so below ~375px they can overflow the
       container's actual width — scale the whole globe down to fit
       comfortably inside any phone viewport. */
    .globe-wrap{ height:220px; }
    .globe-ring.r1{ width:220px; height:220px; }
    .globe-ring.r2{ width:168px; height:168px; }
    .globe-ring.r3{ width:116px; height:116px; }
    .globe-core{ width:84px; height:84px; font-size:28px; }

    .dashboard-card{ grid-column:auto; }

}


/* =====================================
   ABOUT US PAGE COMPONENTS
   (reused wherever else these patterns fit — built once here rather
   than duplicated per page)
   ===================================== */

.page-hero{

    background:linear-gradient(160deg,var(--navy),var(--navy-dark));
    color:var(--text-inverse);
    padding:120px 0 84px;
    text-align:center;

}

.page-hero .eyebrow{ color:var(--green-bright); background:rgba(255,255,255,0.08); }

.page-hero h1{

    font-size:clamp(32px,5vw,48px);
    font-weight:800;
    letter-spacing:-.01em;
    margin:0 0 18px;
    max-width:780px;
    margin-inline:auto;

}

.page-hero .lead{

    font-size:17.5px;
    color:var(--text-inverse-muted);
    max-width:640px;
    margin:0 auto;

}

.narrative{

    max-width:760px;
    margin:0 auto;
    text-align:center;

}

.narrative h2{

    font-size:clamp(28px,4vw,38px);
    font-weight:800;
    margin:0 0 20px;
    letter-spacing:-.01em;

}

.narrative p{

    font-size:16.5px;
    color:var(--text-light);
    margin:0 0 16px;
    text-align:left;

}

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

.section-navy .narrative p{ color:var(--text-inverse-muted); }

/* Mission / Vision — paired cards */

.mv-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;

}

.mv-card{

    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:36px 32px;
    box-shadow:var(--shadow-sm);

}

.mv-card .mv-icon{

    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
    background:var(--blue-light);
    color:var(--navy);

}

.mv-card.mv-vision .mv-icon{ background:var(--green-light); color:var(--green); }

.mv-card h3{ font-size:20px; font-weight:800; margin:0 0 12px; color:var(--navy); }

.mv-card p{ font-size:15px; color:var(--text-light); margin:0; }

/* Core Values — 6-up grid, reuses .feature-card's look */

.values-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;

}

/* Professional Standards checklist */

.standards-list{

    max-width:760px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:18px;

}

.standards-item{

    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:20px 24px;
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);

}

.standards-item i{

    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    flex:none;
    margin-top:2px;

}

.standards-item div strong{ display:block; font-size:15.5px; color:var(--navy); margin-bottom:4px; }

.standards-item div span{ font-size:14px; color:var(--text-light); }

/* Our Journey — vertical timeline (explicit [YEAR] placeholders; no
   dates/milestones are invented here — the including page supplies them) */

.timeline{

    max-width:720px;
    margin:0 auto;
    position:relative;
    padding-left:32px;
    border-left:2px solid var(--border);

}

.timeline-item{

    position:relative;
    padding-bottom:40px;

}

.timeline-item:last-child{ padding-bottom:0; }

.timeline-item::before{

    content:"";
    position:absolute;
    left:-39px;
    top:2px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--green);
    border:3px solid var(--bg);
    box-shadow:0 0 0 2px var(--green);

}

.timeline-year{

    display:inline-block;
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    color:var(--green);
    background:var(--green-light);
    padding:4px 12px;
    border-radius:var(--radius-pill);
    margin-bottom:10px;

}

.timeline-item h3{ font-size:17px; font-weight:800; margin:0 0 6px; color:var(--navy); }

.timeline-item p{ font-size:14.5px; color:var(--text-light); margin:0; }

/* Our Team — placeholder cards, no invented names/photos */

.team-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}

.team-card{

    text-align:center;
    padding:32px 20px;
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);

}

.team-card-avatar{

    width:76px;
    height:76px;
    margin:0 auto 18px;
    border-radius:50%;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;

}

.team-card h3{ font-size:16.5px; font-weight:800; margin:0 0 4px; color:var(--navy); }

.team-card-role{ display:block; font-size:13px; font-weight:600; color:var(--green); margin-bottom:10px; }

.team-card p{ font-size:13.5px; color:var(--text-light); margin:0; }

@media(max-width:900px){

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

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

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

}

@media(max-width:560px){

    .page-hero{ padding:100px 0 56px; }

    .values-grid,
    .team-grid{ grid-template-columns:1fr; }

    .timeline{ padding-left:26px; }

    .timeline-item::before{ left:-33px; }

}


/* =====================================
   NAV ACTIVE STATE
   ===================================== */

.nav-link.nav-link-active{ color:var(--navy); }

.nav-link.nav-link-active::after{ transform:scaleX(1); }

.drawer-link.drawer-link-active{ background:var(--bg-soft); color:var(--green); }


/* =====================================
   BREADCRUMBS
   ===================================== */

.breadcrumbs{ padding:18px 0; border-bottom:1px solid var(--border); }

.breadcrumbs ol{

    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    list-style:none;
    margin:0;
    padding:0;
    font-size:13px;

}

.breadcrumbs li{ display:flex; align-items:center; gap:8px; }

.breadcrumbs a{ color:var(--text-light); font-weight:600; }

.breadcrumbs a:hover{ color:var(--blue); }

.breadcrumbs i{ font-size:9px; color:#B9C2D6; }

.breadcrumbs span[aria-current]{ color:var(--navy); font-weight:700; }


/* =====================================
   RESOURCES — CATEGORY GRID
   ===================================== */

.category-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.category-card{

    display:block;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:26px 22px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;

}

.category-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }

.category-card-icon{

    width:46px;
    height:46px;
    border-radius:13px;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:16px;

}

.category-card h3{ font-size:15.5px; font-weight:800; margin:0 0 6px; color:var(--navy); }

.category-card p{ font-size:13px; color:var(--text-light); margin:0; }


/* =====================================
   RESOURCES — RESOURCE CARDS
   ===================================== */

.resource-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;

}

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

.resource-card{

    position:relative;
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:28px 26px 24px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    color:inherit;

}

.resource-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }

.resource-card-icon{

    width:46px;
    height:46px;
    border-radius:13px;
    background:linear-gradient(140deg,var(--navy-light),var(--navy));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:18px;
    box-shadow:0 8px 16px -6px rgba(30,70,97,0.4);

}

.resource-card-category{

    display:inline-block;
    font-size:11px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--green);
    margin-bottom:10px;

}

.resource-card h3{ font-size:17.5px; font-weight:800; margin:0 0 10px; color:var(--navy); line-height:1.3; }

.resource-card p{ font-size:13.5px; color:var(--text-light); margin:0 0 18px; flex-grow:1; }

.resource-card-foot{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:auto;
    padding-top:14px;
    border-top:1px solid var(--border);

}

.resource-card-time{ font-size:12px; color:var(--text-light); display:flex; align-items:center; gap:6px; }

.resource-card-link{ font-size:13.5px; font-weight:700; color:var(--blue); display:flex; align-items:center; gap:7px; white-space:nowrap; }

.resource-card-link i{ transition:transform .15s ease; font-size:11px; }

.resource-card:hover .resource-card-link i{ transform:translateX(4px); }

/* Compact guide cards (no description/read-time — title + category is
   enough at this density) still share the same visual card language */
.resource-grid-compact .resource-card{ padding:22px 22px 20px; }

.resource-grid-compact .resource-card-icon{ width:38px; height:38px; font-size:15px; margin-bottom:14px; }

.resource-grid-compact .resource-card h3{ font-size:15px; margin:0; }

.resource-grid-compact .resource-card-foot{ margin-top:14px; padding-top:0; border-top:none; justify-content:flex-end; }


/* =====================================
   RESOURCES — SEARCH
   ===================================== */

.resource-search{

    max-width:700px;
    margin:0 auto;
    text-align:center;

}

.resource-search h2{

    font-size:clamp(24px,3.4vw,32px);
    font-weight:800;
    margin:0 0 24px;
    color:var(--navy);

}

.resource-search-box{

    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-pill);
    box-shadow:var(--shadow-sm);
    padding:8px 8px 8px 22px;

}

.resource-search-box i{ color:#9AA5BD; font-size:15px; flex-shrink:0; }

.resource-search-box input{

    flex:1;
    border:none;
    background:none;
    font-family:inherit;
    font-size:15px;
    color:var(--text);
    padding:10px 0;

}

.resource-search-box input::placeholder{ color:#9AA5BD; }

.resource-search-box input:disabled{ cursor:not-allowed; }

.resource-search-box .btn:disabled{ opacity:.6; cursor:not-allowed; }

.resource-search-note{ display:block; margin-top:14px; font-size:12.5px; color:var(--text-light); }


/* =====================================
   RESOURCES — CHECKLISTS
   ===================================== */

.checklist-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;

}

.checklist-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:30px 28px;
    box-shadow:var(--shadow-sm);

}

.checklist-card-head{

    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
    padding-bottom:18px;
    border-bottom:1px solid var(--border);

}

.checklist-card-icon{

    width:44px;
    height:44px;
    border-radius:12px;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;

}

.checklist-card h3{ font-size:17px; font-weight:800; margin:0; color:var(--navy); }

.checklist-card ul{ display:flex; flex-direction:column; gap:12px; }

.checklist-card li{

    display:flex;
    align-items:center;
    gap:12px;
    font-size:14.5px;
    color:var(--text);

}

.checklist-card li i{

    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    flex-shrink:0;

}


/* =====================================
   RESOURCES — TOOLS (Coming Soon)
   ===================================== */

.tools-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}

.tool-card{

    background:#fff;
    border:1px dashed var(--border);
    border-radius:var(--radius);
    padding:26px 22px;
    text-align:center;

}

.tool-card-icon{

    width:44px;
    height:44px;
    margin:0 auto 14px;
    border-radius:12px;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;

}

.tool-card h3{ font-size:14.5px; font-weight:800; margin:0 0 12px; color:var(--navy); }

.tool-card-badge{

    display:inline-block;
    font-size:10.5px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--text-light);
    background:var(--bg-soft);
    padding:5px 12px;
    border-radius:var(--radius-pill);

}


/* =====================================
   FAQ GROUPS (grouped/categorised FAQ variant)
   ===================================== */

.faq-groups{ display:flex; flex-direction:column; gap:40px; }

.faq-group-heading{

    font-size:13px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--green);
    margin:0 0 4px;

}


/* --- FAQ split layout: sticky "still have questions" card beside the
   accordion, instead of a plain centred heading over a single list --- */

.faq-split{

    display:grid;
    grid-template-columns:340px 1fr;
    gap:48px;
    align-items:start;

}

.faq-side{ position:sticky; top:110px; }

.faq-side .eyebrow{ margin-bottom:16px; }

.faq-side h2{

    font-size:clamp(26px,3.2vw,34px);
    font-weight:800;
    letter-spacing:-.01em;
    margin:0 0 28px;
    color:var(--navy);

}

.faq-side-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    padding:32px 28px;
    text-align:center;

}

.faq-side-icon{

    width:56px;
    height:56px;
    margin:0 auto 18px;
    border-radius:16px;
    background:linear-gradient(140deg,var(--navy-light),var(--navy));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    box-shadow:0 10px 20px -6px rgba(30,70,97,0.4);

}

.faq-side-card h3{ font-size:18px; font-weight:800; margin:0 0 10px; color:var(--navy); }

.faq-side-card p{ font-size:14px; color:var(--text-light); margin:0 0 22px; }

@media(max-width:900px){

    .faq-split{ grid-template-columns:1fr; gap:32px; }

    .faq-side{ position:static; }

    .faq-side-card{ max-width:420px; margin:0 auto; }

}


/* =====================================
   HERO CTA — centered variant (used outside the hero component,
   e.g. the Resources "Need Help" section)
   ===================================== */

.hero-cta-centered{ justify-content:center; margin-top:28px; }


@media(max-width:900px){

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

    .resource-grid,
    .resource-grid-compact{ grid-template-columns:1fr 1fr; }

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

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

}

@media(max-width:560px){

    .category-grid,
    .resource-grid,
    .resource-grid-compact,
    .tools-grid{ grid-template-columns:1fr; }

    .resource-search-box{ flex-wrap:wrap; border-radius:var(--radius); padding:14px; }

    .resource-search-box input{ flex-basis:100%; order:1; padding:6px 0; }

    .resource-search-box .btn{ order:2; width:100%; }

    .breadcrumbs ol{ font-size:12px; }

}


/* =====================================
   INDIVIDUAL RESOURCE ARTICLE PAGES
   (reused by every /resources/{slug} page — build new articles with
   this same layout rather than a bespoke one each time)
   ===================================== */

.article-layout{

    display:grid;
    grid-template-columns:1fr 300px;
    gap:56px;
    align-items:start;

}

.article-body h2{

    font-size:22px;
    font-weight:800;
    color:var(--navy);
    margin:36px 0 14px;

}

.article-body h2:first-child{ margin-top:0; }

.guide-steps{

    counter-reset:guidestep;
    display:flex;
    flex-direction:column;
    gap:16px;
    margin:0 0 16px;
    padding:0;
    list-style:none;

}

.guide-steps li{

    counter-increment:guidestep;
    display:flex;
    gap:16px;
    font-size:15.5px;
    line-height:1.7;
    color:var(--text);

}

.guide-steps li::before{

    content:counter(guidestep);
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:14px;
    flex-shrink:0;

}

.guide-steps li strong{ color:var(--navy); }

.article-body p{

    font-size:15.5px;
    line-height:1.75;
    color:var(--text);
    margin:0 0 16px;

}

.article-callout{

    display:flex;
    gap:14px;
    align-items:flex-start;
    background:var(--blue-light);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:20px 22px;
    margin-top:28px;

}

.article-callout i{ color:var(--navy); font-size:18px; margin-top:2px; flex-shrink:0; }

.article-callout p{ margin:0; font-size:14px; color:var(--navy); }

.article-sidebar{

    position:sticky;
    top:110px;
    display:flex;
    flex-direction:column;
    gap:20px;

}

.key-info-card{

    background:var(--bg-soft);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px 22px;

}

.key-info-card h3{ font-size:14px; font-weight:800; color:var(--navy); margin:0 0 16px; }

.key-info-card ul{ display:flex; flex-direction:column; gap:12px; }

.key-info-card li{

    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:13.5px;
    color:var(--text);
    line-height:1.4;

}

.key-info-card li i{ color:var(--green); font-size:13px; margin-top:2px; flex-shrink:0; width:14px; }

@media(max-width:900px){

    .article-layout{ grid-template-columns:1fr; }

    .article-sidebar{ position:static; }

}


/* =====================================
   CONTACT PAGE
   ===================================== */

.section-head-left{ max-width:560px; margin:0 0 32px; }

.section-head-left h2{

    font-size:clamp(26px,3.4vw,34px);
    font-weight:800;
    letter-spacing:-.01em;
    margin:16px 0 12px;

}

.section-head-left p{ font-size:15px; color:var(--text-light); margin:0; }

.section-foot-link{ text-align:center; margin-top:36px; }

/* --- How Can We Help cards --- */

.contact-card-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;

}

.contact-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:28px 24px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease;
    display:flex;
    flex-direction:column;

}

.contact-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }

.contact-card-icon{

    width:48px;
    height:48px;
    border-radius:13px;
    background:linear-gradient(140deg,var(--navy-light),var(--navy));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    margin-bottom:18px;
    box-shadow:0 8px 16px -6px rgba(30,70,97,0.4);

}

.contact-card h3{ font-size:16.5px; font-weight:800; margin:0 0 8px; color:var(--navy); }

.contact-card p{ font-size:13.5px; color:var(--text-light); margin:0 0 18px; flex-grow:1; }

.contact-card .sc-link{ margin-top:auto; }

/* --- Main enquiry layout: form + sidebar --- */

.contact-layout{

    display:grid;
    grid-template-columns:1fr 340px;
    gap:56px;
    align-items:start;

}

.contact-form-panel{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    padding:44px 40px;

}

.contact-info-panel{ position:sticky; top:110px; }

.login-register-link{

    text-align:center;
    font-size:13.5px;
    color:var(--text-light);
    margin:20px 0 0;

}

.login-register-link a{ color:var(--blue); font-weight:700; }

.login-register-link a:hover{ text-decoration:underline; }

.before-send-card + .before-send-card{ margin-top:24px; }

.before-send-card li a:hover{ color:var(--green); }

.before-send-card{

    background:var(--bg-soft);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:32px 28px;

}

.before-send-icon{

    width:52px;
    height:52px;
    border-radius:14px;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:18px;

}

.before-send-card h3{ font-size:17px; font-weight:800; margin:0 0 10px; color:var(--navy); }

.before-send-card p{ font-size:13.5px; color:var(--text-light); margin:0 0 16px; }

.before-send-card ul{ display:flex; flex-direction:column; gap:12px; }

.before-send-card li{

    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:13.5px;
    color:var(--text);
    line-height:1.4;

}

.before-send-card li i{

    width:20px;
    height:20px;
    border-radius:50%;
    background:#fff;
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:9px;
    flex-shrink:0;
    margin-top:1px;
    box-shadow:0 0 0 1px var(--border);

}

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

.form-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.form-group{ margin-bottom:20px; }

.contact-form label,
.form-label-static{

    display:block;
    font-size:13.5px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:8px;

}

.required{ color:#C0392B; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea{

    width:100%;
    font-family:inherit;
    font-size:14.5px;
    color:var(--text);
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    padding:13px 16px;
    transition:border-color .2s ease, box-shadow .2s ease;

}

.contact-form textarea{ resize:vertical; min-height:130px; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    outline:none;
    border-color:var(--blue);
    box-shadow:0 0 0 3px var(--blue-light);

}

.contact-form input.invalid,
.contact-form select.invalid,
.contact-form textarea.invalid,
.quickstart-form input.invalid{ border-color:#C0392B; box-shadow:0 0 0 3px rgba(192,57,43,0.12); }

.contact-form .form-message{

    display:block;
    min-height:16px;
    font-size:12px;
    font-weight:600;
    color:#C0392B;
    margin-top:6px;

}

.radio-group{ display:flex; gap:24px; }

.radio-option{

    display:flex !important;
    align-items:center;
    gap:8px;
    font-size:14.5px;
    font-weight:600;
    color:var(--text);
    cursor:pointer;
    margin-bottom:0 !important;

}

.radio-option input{ width:17px; height:17px; accent-color:var(--navy); cursor:pointer; }

.consent-check{

    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:13px;
    color:var(--text-light);
    line-height:1.5;
    margin:8px 0 4px;
    cursor:pointer;

}

.consent-check input{ width:17px; height:17px; margin-top:2px; accent-color:var(--navy); cursor:pointer; flex-shrink:0; }

.consent-check strong{ color:var(--navy); }

.consent-check a{ text-decoration:underline; text-underline-offset:2px; }

/* Honeypot — off-screen, not display:none, so a scripted bot filling
   every visible-to-the-DOM field still trips it. */
.hp-field{

    position:absolute;
    left:-9999px;
    top:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;

}

.contact-form .btn-block{ width:100%; margin-top:8px; position:relative; }

.btn-spinner{ display:inline-flex; align-items:center; gap:8px; }

.btn-spinner[hidden],
.btn-label[hidden]{ display:none; }

.form-status{

    margin-top:16px;
    padding:12px 16px;
    border-radius:var(--radius-sm);
    font-size:13.5px;
    font-weight:600;
    text-align:center;

}

.form-status-error{ background:#FBEAEA; color:#C0392B; }

.form-status-info{ background:var(--blue-light); color:var(--navy); }

.contact-form-success{

    text-align:center;
    padding:40px 20px;

}

.contact-form-success-icon{

    display:inline-flex;
    width:64px;
    height:64px;
    border-radius:50%;
    background:var(--green-light);
    color:var(--green);
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;

}

.contact-form-success h3{ font-size:20px; font-weight:800; color:var(--navy); margin:0 0 10px; }

.contact-form-success p{ font-size:14.5px; color:var(--text-light); margin:0; }

@media(max-width:900px){

    .contact-card-grid{ grid-template-columns:1fr 1fr; }

    .contact-layout{ grid-template-columns:1fr; gap:32px; }

    .contact-info-panel{ position:static; }

    .contact-form-panel{ padding:32px 24px; }

}

@media(max-width:560px){

    .contact-card-grid{ grid-template-columns:1fr; }

    .form-row{ grid-template-columns:1fr; }

    .radio-group{ gap:16px; }

}


/* =====================================
   LEGAL PAGES (Privacy Policy, Terms & Conditions, Cookie Policy)
   ===================================== */

.legal-hero{ padding:100px 0 44px; }

.legal-updated{

    display:inline-block;
    margin-top:20px;
    font-size:13px;
    font-weight:600;
    color:var(--text-inverse-muted);

}

.legal-layout{

    display:grid;
    grid-template-columns:260px 1fr;
    gap:56px;
    align-items:start;
    max-width:1180px;

}

/* --- Table of contents (native <details>, no JS) --- */

.legal-toc{

    position:sticky;
    top:110px;
    background:var(--bg-soft);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:20px 22px;

}

.legal-toc summary{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    cursor:pointer;
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--navy);
    list-style:none;

}

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

.legal-toc summary i{ font-size:11px; color:var(--text-light); transition:transform .2s ease; }

.legal-toc[open] summary i{ transform:rotate(180deg); }

.legal-toc nav{ margin-top:16px; }

.legal-toc ol{

    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
    counter-reset:toc;

}

.legal-toc li{ counter-increment:toc; }

.legal-toc a{

    display:flex;
    gap:8px;
    font-size:13.5px;
    font-weight:600;
    color:var(--text-light);
    line-height:1.4;

}

.legal-toc a::before{

    content:counter(toc) ".";
    color:var(--green);
    font-weight:800;
    flex-shrink:0;

}

.legal-toc a:hover{ color:var(--navy); }

/* --- Document content --- */

.legal-content{ max-width:850px; }

.legal-content h2{

    font-size:22px;
    font-weight:800;
    color:var(--navy);
    margin:40px 0 14px;
    scroll-margin-top:110px;

}

.legal-content > section:first-of-type h2,
.legal-content h2:first-child{ margin-top:0; }

.legal-content p{

    font-size:15.5px;
    line-height:1.75;
    color:var(--text);
    margin:0 0 16px;

}

.legal-content ul{

    margin:0 0 16px;
    padding-left:0;
    display:flex;
    flex-direction:column;
    gap:8px;

}

.legal-content ul li{

    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:15px;
    line-height:1.6;
    color:var(--text);
}

.legal-content ul li::before{

    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:10px;
    color:var(--green);
    margin-top:6px;
    flex-shrink:0;

}

.legal-content a{ color:var(--blue); font-weight:600; text-decoration:underline; text-underline-offset:2px; }

.legal-callout{

    display:flex;
    gap:14px;
    align-items:flex-start;
    background:var(--blue-light);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:18px 20px;
    margin:20px 0;

}

.legal-callout i{ color:var(--navy); font-size:17px; margin-top:2px; flex-shrink:0; }

.legal-callout p{ margin:0; font-size:14px; color:var(--navy); }

.legal-table-wrap{ overflow-x:auto; margin:0 0 20px; }

.legal-table{

    width:100%;
    border-collapse:collapse;
    min-width:640px;
    font-size:14px;

}

.legal-table th,
.legal-table td{

    text-align:left;
    padding:12px 16px;
    border:1px solid var(--border);
    vertical-align:top;

}

.legal-table th{

    background:var(--bg-soft);
    font-weight:800;
    color:var(--navy);
    font-size:12.5px;
    text-transform:uppercase;
    letter-spacing:.03em;

}

.legal-table td{ color:var(--text); }

/* --- Bottom cross-link nav --- */

.legal-nav{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    padding:32px 0;

}

.legal-nav-link{

    padding:10px 20px;
    border-radius:var(--radius-pill);
    border:1px solid var(--border);
    font-size:13.5px;
    font-weight:700;
    color:var(--text-light);
    background:#fff;
    transition:border-color .2s ease, color .2s ease;

}

.legal-nav-link:hover{ border-color:var(--blue); color:var(--blue); }

.legal-nav-link-active{ background:var(--navy); border-color:var(--navy); color:#fff; }

.legal-nav-link-active:hover{ color:#fff; }

@media(max-width:900px){

    .legal-layout{ grid-template-columns:1fr; }

    .legal-toc{ position:static; }

}


/* =====================================
   RESOURCES ECOSYSTEM — shared bits (FAQs, Blog, Business Guides,
   Help Centre)
   ===================================== */

.category-pill-row{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;

}

.category-pill{

    display:flex;
    align-items:center;
    gap:9px;
    padding:11px 20px;
    border-radius:var(--radius-pill);
    border:1px solid var(--border);
    background:#fff;
    font-size:13.5px;
    font-weight:700;
    color:var(--navy);
    transition:border-color .2s ease, background .2s ease, color .2s ease;

}

.category-pill i{ color:var(--green); font-size:12px; }

.category-pill:hover{ border-color:var(--navy); background:var(--blue-light); }

/* --- Blog cards --- */

.blog-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

.blog-card{

    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:26px 24px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease;
    color:inherit;

}

.blog-card:not(.blog-card-pending):hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }

.blog-card-pending{ opacity:.75; }

.blog-card-icon{

    width:44px;
    height:44px;
    border-radius:12px;
    background:linear-gradient(140deg,var(--navy-light),var(--navy));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    margin-bottom:16px;

}

.blog-card-category{

    display:inline-block;
    font-size:11px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--green);
    margin-bottom:8px;

}

.blog-card h3{ font-size:16.5px; font-weight:800; margin:0 0 8px; color:var(--navy); line-height:1.35; }

.blog-card p{ font-size:13.5px; color:var(--text-light); margin:0 0 16px; flex-grow:1; }

.blog-card-foot{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-top:14px;
    border-top:1px solid var(--border);

}

.blog-card-badge{

    font-size:11px;
    font-weight:800;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:var(--text-light);
    background:var(--bg-soft);
    padding:5px 10px;
    border-radius:var(--radius-pill);

}

/* --- Featured blog article --- */

.featured-article{

    display:grid;
    grid-template-columns:220px 1fr;
    gap:36px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    padding:36px;

}

.featured-article-visual{

    width:100%;
    aspect-ratio:1/1;
    border-radius:var(--radius);
    background:linear-gradient(155deg,var(--navy),var(--navy-light));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:52px;

}

.featured-article h2{ font-size:26px; font-weight:800; color:var(--navy); margin:12px 0 12px; }

.featured-article-foot{ border:none !important; padding:0 !important; }

.featured-article p{ font-size:15px; color:var(--text-light); margin:0 0 20px; }

/* --- Guide cards (more detailed than blog cards) --- */

.guide-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

.guide-card{

    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:26px 24px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease;
    color:inherit;

}

.guide-card:not(.guide-card-pending):hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }

.guide-card-pending{ opacity:.75; }

.guide-card-top{

    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;

}

.guide-card-icon{

    width:44px;
    height:44px;
    border-radius:12px;
    background:linear-gradient(140deg,var(--green-bright),var(--green));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;

}

.guide-card-type{

    font-size:10.5px;
    font-weight:800;
    letter-spacing:.05em;
    color:var(--navy);
    background:var(--blue-light);
    padding:5px 10px;
    border-radius:var(--radius-pill);

}

.guide-card h3{ font-size:16.5px; font-weight:800; margin:8px 0; color:var(--navy); line-height:1.35; }

.guide-card p{ font-size:13.5px; color:var(--text-light); margin:0 0 16px; flex-grow:1; }

.guide-card-foot{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-top:14px;
    border-top:1px solid var(--border);

}

/* --- Featured guide (larger, with structured sub-sections) --- */

.featured-guide{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    padding:40px;

}

.featured-guide-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin:28px 0;

}

.featured-guide-block h4{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:var(--green);
    margin:0 0 10px;

}

.featured-guide-block p,
.featured-guide-block li{ font-size:14px; color:var(--text); margin:0; }

.featured-guide-block ul{ display:flex; flex-direction:column; gap:8px; }

.featured-guide-block ul li{ display:flex; align-items:flex-start; gap:8px; }

.featured-guide-block ul li::before{

    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:9px;
    color:var(--green);
    margin-top:5px;
    flex-shrink:0;

}

.guide-category-block{ margin-bottom:48px; }

.guide-category-block:last-child{ margin-bottom:0; }

.guide-category-heading{

    display:flex;
    align-items:center;
    gap:12px;
    font-size:19px;
    font-weight:800;
    color:var(--navy);
    margin:0 0 22px;

}

.guide-category-heading i{

    width:38px;
    height:38px;
    border-radius:11px;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;

}

/* --- Help Centre category cards --- */

.help-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

.help-category-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:28px 26px;
    box-shadow:var(--shadow-sm);

}

.help-category-icon{

    width:48px;
    height:48px;
    border-radius:13px;
    background:var(--blue-light);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    margin-bottom:18px;

}

.help-category-card h3{ font-size:16.5px; font-weight:800; margin:0 0 14px; color:var(--navy); }

.help-category-card ul{ display:flex; flex-direction:column; gap:10px; }

.help-category-card li a{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:13.5px;
    color:var(--text-light);
    font-weight:600;

}

.help-category-card li a::before{

    content:"\f105";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:var(--green);
    font-size:11px;

}

.help-category-card li a:hover{ color:var(--navy); }

/* --- Help Centre search results (client-side) --- */

.help-search-results{ display:flex; flex-direction:column; gap:12px; margin-top:24px; }

.help-search-result{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:16px 20px;

}

.help-search-result h4{ font-size:14.5px; font-weight:800; color:var(--navy); margin:0 0 4px; }

.help-search-result span{ font-size:12px; color:var(--green); font-weight:700; }

.help-search-empty{ text-align:center; color:var(--text-light); font-size:14px; padding:20px 0; }

/* --- FAQ search highlight (no-results state) --- */

.faq-no-results{ text-align:center; color:var(--text-light); font-size:14px; padding:20px 0; display:none; }

@media(max-width:900px){

    .blog-grid,
    .guide-grid,
    .help-grid{ grid-template-columns:1fr 1fr; }

    .featured-article{ grid-template-columns:1fr; }

    .featured-article-visual{ max-width:180px; margin:0 auto; }

    .featured-guide-grid{ grid-template-columns:1fr; }

}

@media(max-width:560px){

    .blog-grid,
    .guide-grid,
    .help-grid{ grid-template-columns:1fr; }

    .featured-guide{ padding:28px 22px; }

}
