/* ============ TOKENS ============ */
:root{
    --green-900:#0c2d22;
    --green-700:#124a37;
    --green-600:#1c5c46;
    --gold-500:#c9a445;
    --gold-600:#a9832f;
    --cream-100:#f6f4ec;
    --white:#ffffff;
    --ink-900:#161f1a;
    --ink-600:#5c6a62;
    --line:#e6e2d6;

    --bg-page:var(--white);
    --bg-alt:var(--cream-100);
    --bg-surface:var(--white);
    --text-primary:var(--ink-900);
    --text-muted:var(--ink-600);
    --border-color:var(--line);
    --shadow-soft: 0 1px 2px rgba(12,45,34,0.06);
}

/* ============ BASE ============ */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    font-family:'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background:var(--bg-page);
    color:var(--text-primary);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{font-family:'Fraunces', serif; font-weight:600; letter-spacing:-0.01em; color:var(--text-primary);}
:focus-visible{outline:2px solid var(--gold-500); outline-offset:3px;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
.eyebrow{font-size:13px; font-weight:600; color:var(--gold-600); margin-bottom:10px;}
.section-head{max-width:600px; margin:0 0 44px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:clamp(28px,3.4vw,38px); line-height:1.15; margin-bottom:12px;}
.section-head p{color:var(--text-muted); line-height:1.65; font-size:16px;}
.btn{display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:9px; font-weight:600; font-size:15px; text-decoration:none; border:1.5px solid transparent; cursor:pointer; transition:transform .15s ease, background .15s ease, border-color .15s ease;}
.btn:active{transform:translateY(1px);}
.btn-gold{background:var(--gold-500); color:var(--green-900);}

.btn-green{background:var(--green-900); color:white;}

.btn-gold:hover{background:var(--gold-600);}
.btn-outline{background:transparent; border-color:var(--green-700); color:var(--green-700);}
.btn-outline:hover{background:var(--green-700); color:#fff;}
.btn-ghost-white{background:transparent; border-color:rgba(255,255,255,.5); color:#fff;}
.btn-ghost-white:hover{background:rgba(255,255,255,.12);}
.btn-white{background:#fff; color:var(--green-900);}
.btn-white:hover{background:#eee;}

/* ============ TOP UTILITY BAR ============ */
.utility-bar{background:var(--green-900); color:#fff; font-size:13px;}
.utility-inner{display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; padding:9px 20px; text-align:center;}
.utility-bar .pill{background:var(--gold-500); color:var(--green-900); font-weight:700; font-size:10.5px; letter-spacing:.04em; padding:3px 9px; border-radius:20px; flex-shrink:0;}
.utility-bar a{color:var(--gold-500); font-weight:600; text-decoration:underline; text-underline-offset:2px;}
.utility-bar.dismissed{display:none;}
.utility-close{background:none; border:0; color:rgba(255,255,255,.6); cursor:pointer; font-size:16px; line-height:1; padding:2px 4px; flex-shrink:0;}
.utility-close:hover{color:#fff;}
@media (max-width:640px){
    .utility-inner{
        display:grid;
        grid-template-columns:auto 1fr auto;
        align-items:flex-start;
        gap:6px 8px;
        padding:10px 14px;
        text-align:left;
    }
    .utility-bar .pill{margin-top:1px;}
    .utility-bar span:not(.pill){grid-column:2; grid-row:1; font-size:12.5px; line-height:1.5;}
    .utility-close{grid-column:3; grid-row:1; margin:0;}
}

/* ============ NAV ============ */
header{position:sticky; top:0; z-index:500; background:var(--bg-surface); border-bottom:1px solid var(--border-color);}
nav{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:1180px; margin:0 auto;}
.logo{display:flex; align-items:center; gap:9px; font-family:'Fraunces',serif; font-weight:700; font-size:21px; color:var(--green-700); text-decoration:none;}
.logo .mark{width:30px; height:30px; border-radius:8px; background:linear-gradient(150deg, var(--green-700), var(--green-900)); display:flex; align-items:center; justify-content:center; color:var(--gold-500); font-size:15px; font-weight:700; flex-shrink:0;}
.nav-links{display:flex; gap:30px; list-style:none;}
.nav-links a{text-decoration:none; color:var(--text-primary); font-size:14.5px; font-weight:500; padding:6px 2px; border-bottom:2px solid transparent; transition:border-color .15s ease;}
.nav-links a:hover{border-color:var(--gold-500);}
.nav-actions{display:flex; align-items:center; gap:10px;}
.hamburger{display:none; width:40px; height:40px; border-radius:8px; border:1px solid var(--border-color); background:none; align-items:center; justify-content:center; cursor:pointer; color:var(--text-primary); font-size:19px;}
.mobile-panel{display:none; flex-direction:column; gap:4px; padding:10px 24px 22px; border-top:1px solid var(--border-color);}
.mobile-panel a.mp-link{padding:12px 6px; text-decoration:none; color:var(--text-primary); font-size:15.5px; font-weight:500; border-bottom:1px solid var(--border-color);}
.mobile-panel .mp-ctas{display:flex; flex-direction:column; gap:10px; margin-top:14px;}
.mobile-panel .btn{justify-content:center; width:100%;}
header.open .mobile-panel{display:flex;}

@media (max-width:860px){
    .nav-links, .nav-actions .btn{display:none;}
    .hamburger{display:flex;}
}

/* ============ HERO ============ */
.hero{padding:76px 24px 90px; background:var(--bg-alt);}
.hero-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center;}
.hero-text h1{font-size:clamp(34px,4.6vw,54px); line-height:1.08; margin-bottom:22px;}
.hero-text h1 em{font-style:normal; color:var(--gold-600); font-family:inherit;}
.hero-text p{font-size:17.5px; line-height:1.65; color:var(--text-muted); max-width:480px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.hero-media{position:relative;}
.hero-media .frame{border-radius:18px; overflow:hidden; aspect-ratio:4/3.1; background:linear-gradient(150deg,var(--green-700),var(--green-900)); position:relative;}
.hero-media img{width:100%; height:100%; object-fit:cover; opacity:.92; mix-blend-mode:luminosity;}
.hero-chip{position:absolute; left:-18px; bottom:-22px; background:var(--bg-surface); border:1px solid var(--border-color); border-radius:14px; padding:18px 22px; box-shadow:0 18px 40px rgba(12,45,34,.16); min-width:190px;}
.hero-chip .num{font-family:'Fraunces',serif; font-size:26px; font-weight:700; color:var(--green-700); line-height:1;}
.hero-chip .lbl{font-size:13px; color:var(--text-muted); margin-top:4px;}
@media (max-width:860px){
    .hero-grid{grid-template-columns:1fr; gap:44px; text-align:left;}
    .hero{padding:44px 20px 64px;}
    .hero-chip{left:16px; bottom:-20px;}
}

/* ============ TRUST STRIP ============ */
.trust-strip{padding:22px 24px; border-bottom:1px solid var(--border-color); background:var(--bg-page);}
.trust-row{max-width:1180px; margin:0 auto; display:flex; justify-content:center; gap:36px; flex-wrap:wrap;}
.trust-row .item{display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--text-muted); font-weight:500;}
.trust-row .item i{color:var(--green-700); font-size:17px;}

/* ============ STATS ============ */
.stats{padding:64px 24px; background:var(--bg-page);}
.stats-row{max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;}
.stats-row .n{font-family:'Fraunces',serif; font-size:34px; font-weight:700; color:var(--green-700);}
.stats-row .l{font-size:13.5px; color:var(--text-muted); margin-top:6px;}
@media (max-width:640px){ .stats-row{grid-template-columns:1fr 1fr; row-gap:36px;} }

/* ============ TWO AREAS ============ */
.areas{padding:96px 24px; background:var(--bg-alt);}
.areas-head{max-width:640px; margin:0 auto 50px; text-align:center;}
.split{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; border-radius:20px; overflow:hidden;}
.split-panel{padding:46px 42px 42px; min-height:300px; display:flex; flex-direction:column; justify-content:space-between; color:#fff;}
.split-panel.finance{background:linear-gradient(160deg,var(--green-700),var(--green-900));}
.split-panel.build{background:linear-gradient(160deg,#2a2416,#161207 130%);}
.split-panel .top i{font-size:26px; color:var(--gold-500); margin-bottom:16px; display:block;}
.split-panel h3{font-size:23px; margin-bottom:10px; color:#fff;}
.split-panel p{opacity:.82; font-size:14.5px; line-height:1.6; max-width:32ch; margin-bottom:20px;}
.flow{display:flex; flex-wrap:wrap; gap:8px 0; align-items:center;}
.flow .pair{display:inline-flex; align-items:center; white-space:nowrap;}
.flow .pill{font-weight:600; font-size:12.5px; padding:7px 13px; border-radius:100px; background:rgba(255,255,255,.14); color:#fff;}
.flow .pair i{margin:0 7px; color:rgba(255,255,255,.4); font-size:13px;}
@media (max-width:860px){ .split{grid-template-columns:1fr;} }

/* ============ SERVICES ============ */
.services{padding:96px 24px; background:var(--bg-page);}
.card-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border-color); border:1px solid var(--border-color); border-radius:16px; overflow:hidden;}
.service-card{background:var(--bg-surface); padding:32px 28px;}
.s-icon{width:44px; height:44px; border-radius:11px; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.s-icon i{font-size:21px; color:var(--green-700);}
.service-card h3{font-size:17px; margin-bottom:8px;}
.service-card p{font-size:14px; color:var(--text-muted); line-height:1.65;}
@media (max-width:860px){ .card-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .card-grid{grid-template-columns:1fr;} }

/* ============ STEPS (shared: how-it-works + build process) ============ */
.steps-section{padding:96px 24px; background:var(--bg-alt);}
.steps-section.on-page{background:var(--bg-page);}
.steps-row{max-width:1180px; margin:0 auto; display:flex; gap:28px; flex-wrap:wrap; justify-content:center;}
.step{flex:1 1 190px; max-width:230px; text-align:center;}
.step-num{width:56px; height:56px; border-radius:50%; background:var(--green-700); color:#fff; font-family:'Fraunces',serif; font-weight:700; font-size:19px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px;}
.step-num.gold{background:var(--gold-500); color:var(--green-900);}
.step h4{font-size:15.5px; margin-bottom:6px; font-weight:600; font-family:'Space Grotesk',sans-serif;}
.step p{font-size:13.5px; color:var(--text-muted); line-height:1.6;}

/* ============ BUILD EXPANSION (added — all sourced from GroMon Build profile) ============ */
.tagline-banner{text-align:center; font-family:'Fraunces',serif; font-weight:600; font-style:italic; font-size:clamp(16px,2vw,20px); color:var(--gold-600); letter-spacing:.01em; margin:2px auto 30px; max-width:640px;}
.vm-grid{max-width:920px; margin:0 auto 60px; display:grid; grid-template-columns:1fr 1fr; gap:22px;}
.vm-card{background:var(--bg-page); border:1px solid var(--border-color); border-radius:14px; padding:26px 28px;}
.vm-card h4{font-size:13px; font-weight:700; color:var(--green-700); margin-bottom:10px; letter-spacing:.04em; text-transform:uppercase; font-family:'Space Grotesk',sans-serif;}
.vm-card p{font-size:14px; color:var(--text-muted); line-height:1.7;}
.subsection-head{max-width:620px; margin:70px auto 36px; text-align:center;}
.subsection-head h3{font-size:clamp(21px,2.4vw,26px); margin-bottom:8px;}
.subsection-head p{font-size:14.5px; color:var(--text-muted); line-height:1.6;}
.serve-tags{display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:920px; margin:0 auto;}
.serve-tags .tag{background:var(--bg-page); border:1px solid var(--border-color); color:var(--text-primary); font-size:13.5px; font-weight:500; padding:9px 17px; border-radius:100px;}
.build-offices{max-width:920px; margin:70px auto 0; display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.office-card{background:var(--bg-page); border:1px solid var(--border-color); border-radius:14px; padding:22px 24px;}
.office-card h4{font-size:12.5px; font-weight:700; color:var(--gold-600); text-transform:uppercase; letter-spacing:.04em; margin-bottom:10px; font-family:'Space Grotesk',sans-serif;}
.office-card p{font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:4px;}
.office-card p strong{color:var(--text-primary);}
@media (max-width:640px){ .vm-grid, .build-offices{grid-template-columns:1fr;} }

/* Leadership */
.leader-card{max-width:820px; margin:0 auto 70px; display:flex; align-items:center; gap:32px; background:var(--bg-page); border:1px solid var(--border-color); border-radius:18px; padding:30px 34px;}
.leader-card .photo{width:132px; height:132px; border-radius:50%; overflow:hidden; flex-shrink:0; border:3px solid var(--gold-500); box-shadow:0 10px 26px rgba(12,45,34,.14);}
.leader-card .photo img{width:100%; height:100%; object-fit:cover;}
.leader-card .info h4{font-size:20px; margin-bottom:4px;}
.leader-card .info .role{font-size:12.5px; font-weight:700; color:var(--gold-600); text-transform:uppercase; letter-spacing:.05em; margin-bottom:12px; font-family:'Space Grotesk',sans-serif;}
.leader-card .info p{font-size:14px; color:var(--text-muted); line-height:1.7; max-width:56ch;}
@media (max-width:640px){
    .leader-card{flex-direction:column; text-align:center; padding:34px 26px;}
    .leader-card .info p{max-width:none;}
}

/* On-site gallery */
.site-gallery{max-width:920px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.site-gallery figure{position:relative; border-radius:16px; overflow:hidden; aspect-ratio:3/4; background:var(--bg-alt);}
.site-gallery img{width:100%; height:100%; object-fit:cover; object-position:top center;}
.site-gallery figcaption{position:absolute; left:0; right:0; bottom:0; padding:16px 18px; background:linear-gradient(0deg,rgba(12,45,34,.88),rgba(12,45,34,0)); color:#fff; font-size:13px; font-weight:500; letter-spacing:.01em;}
@media (max-width:640px){ .site-gallery{grid-template-columns:1fr; max-width:340px;} }

/* Floating WhatsApp button */
.wa-float{position:fixed; right:20px; bottom:20px; width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:30px; text-decoration:none; box-shadow:0 10px 26px rgba(0,0,0,.28); z-index:900; transition:transform .2s ease, box-shadow .2s ease;}
.wa-float:hover{transform:translateY(-3px) scale(1.05); box-shadow:0 14px 32px rgba(0,0,0,.32);}
.wa-float i{line-height:1;}
@media (max-width:640px){ .wa-float{right:14px; bottom:14px; width:52px; height:52px; font-size:26px;} }

/* ============ USSD ============ */
.ussd{padding:60px 24px; background:linear-gradient(135deg,var(--green-900),var(--green-700));}
.ussd-inner{max-width:1180px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;}
.ussd-text{color:#fff; flex:1; min-width:240px;}
.ussd-text h2{color:#fff; font-size:25px; margin-bottom:10px;}
.ussd-text p{color:rgba(255,255,255,.78); font-size:14.5px; line-height:1.6; max-width:440px;}
.ussd-box{background:#fff; border-radius:14px; padding:24px 36px; text-align:center;}
.ussd-box .l{font-size:12.5px; color:var(--text-muted); margin-bottom:6px;}
.ussd-box .code{font-family:'Fraunces',serif; font-size:26px; font-weight:700; color:var(--green-700); letter-spacing:1px;}
.ussd-box .n{font-size:11.5px; color:#999; margin-top:6px;}

/* ============ FAQ ============ */
.faq{padding:96px 24px; background:var(--bg-page);}
.faq-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:.8fr 1.2fr; gap:56px;}
.faq-list{max-width:700px;}
.faq-item{border-bottom:1px solid var(--border-color);}
.faq-q{width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px; background:none; border:0; text-align:left; cursor:pointer; padding:20px 0; font-family:inherit; font-size:15.5px; font-weight:600; color:var(--text-primary);}
.faq-q i{color:var(--gold-500); font-size:19px; flex-shrink:0; transition:transform .2s ease;}
.faq-item.open .faq-q i{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{font-size:14.5px; color:var(--text-muted); line-height:1.7; padding-bottom:20px; max-width:60ch;}
@media (max-width:860px){ .faq-grid{grid-template-columns:1fr; gap:20px;} }

/* ============ FINAL CTA ============ */
.final-cta{padding:80px 24px; background:var(--green-700); text-align:center; color:#fff;}
.final-cta h2{color:#fff; font-size:clamp(26px,3.4vw,34px); margin-bottom:14px;}
.final-cta p{color:rgba(255,255,255,.8); font-size:16px; margin-bottom:30px;}
.final-cta .row{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* ============ FOOTER ============ */
footer{background:var(--green-900); color:#c9d1cb; padding:64px 24px 28px;}
.footer-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr .9fr .9fr 1.1fr; gap:44px;}
.footer-brand .logo{color:#fff; margin-bottom:14px;}
.footer-brand .logo .mark{background:rgba(255,255,255,.12); color:var(--gold-500);}
.footer-brand p{font-size:13.5px; line-height:1.7; color:rgba(201,209,203,.75); margin-bottom:14px; max-width:30ch;}
.footer-brand .addr{font-size:13px; color:rgba(201,209,203,.6); display:flex; gap:7px; margin-bottom:6px;}
.socials{display:flex; gap:10px; margin-top:18px;}
.socials a{width:34px; height:34px; border-radius:8px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color:#c9d1cb; text-decoration:none; font-size:15px;}
.socials a:hover{background:var(--gold-500); color:var(--green-900);}
.foot-col h4{color:#fff; font-size:14px; font-weight:600; margin-bottom:16px; font-family:'Space Grotesk',sans-serif;}
.foot-col ul{list-style:none;}
.foot-col ul li{margin-bottom:10px;}
.foot-col ul li a{text-decoration:none; color:rgba(201,209,203,.75); font-size:13.5px;}
.foot-col ul li a:hover{color:var(--gold-500);}
.foot-col p{font-size:13.5px; color:rgba(201,209,203,.75); margin-bottom:8px;}
.footer-bottom{max-width:1180px; margin:50px auto 0; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); text-align:center; font-size:12.5px; color:rgba(201,209,203,.5);}
@media (max-width:860px){ .footer-grid{grid-template-columns:1fr 1fr; gap:36px;} }
@media (max-width:560px){ .footer-grid{grid-template-columns:1fr;} }


.cta-image img {
    width: 100%;
    max-width: 65px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 12px;
}

.footer-logo {
    width: 100%;
    max-width: 65px;
    border-radius: 12px;

    height: auto;
    margin-bottom: 10px;
    display: block;
}

/* ============ MOTION (added — no layout or colour changes) ============ */

/* Hero entrance: one orchestrated sequence on page load */
html.anim .hero-text h1,
html.anim .hero-text p,
html.anim .hero-ctas,
html.anim .hero-media .frame{
    opacity:0;
    transform:translateY(14px);
    animation:gm-rise .7s cubic-bezier(.22,.61,.36,1) forwards;
}
html.anim .hero-text h1{animation-delay:.05s;}
html.anim .hero-text p{animation-delay:.15s;}
html.anim .hero-ctas{animation-delay:.25s;}
html.anim .hero-media .frame{animation-delay:.12s;}
html.anim .hero-chip{
    opacity:0;
    transform:translateY(10px) scale(.97);
    animation:gm-pop .55s cubic-bezier(.22,.61,.36,1) .55s forwards;
}
@keyframes gm-rise{ to{opacity:1; transform:translateY(0);} }
@keyframes gm-pop{ to{opacity:1; transform:translateY(0) scale(1);} }

/* Scroll reveals — elements settle in as they enter the viewport */
html.anim .gm-reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
    will-change:opacity, transform;
}
html.anim .gm-reveal.gm-in{opacity:1; transform:none;}

/* Staggering within a group */
html.anim .gm-reveal[data-gm-i="1"]{transition-delay:.06s;}
html.anim .gm-reveal[data-gm-i="2"]{transition-delay:.12s;}
html.anim .gm-reveal[data-gm-i="3"]{transition-delay:.18s;}
html.anim .gm-reveal[data-gm-i="4"]{transition-delay:.24s;}
html.anim .gm-reveal[data-gm-i="5"]{transition-delay:.30s;}

/* Step numbers get a small settle of their own */
html.anim .step .step-num{
    transition:transform .5s cubic-bezier(.34,1.3,.64,1) .1s;
}
html.anim .step.gm-reveal:not(.gm-in) .step-num{transform:scale(.8);}

/* Hover polish on existing interactive surfaces */
.service-card{transition:background .25s ease, transform .25s cubic-bezier(.22,.61,.36,1);}
.service-card:hover{transform:translateY(-4px); background:var(--bg-alt);}
.s-icon{transition:transform .25s cubic-bezier(.34,1.3,.64,1);}
.service-card:hover .s-icon{transform:translateY(-2px) rotate(-4deg);}
.btn:hover{transform:translateY(-2px);}
.btn:active{transform:translateY(0);}
.logo .mark{transition:transform .3s cubic-bezier(.34,1.3,.64,1);}
.logo:hover .mark{transform:rotate(-8deg) scale(1.06);}
.socials a{transition:background .2s ease, color .2s ease, transform .2s ease;}
.socials a:hover{transform:translateY(-3px);}
.foot-col ul li a, .utility-bar a{transition:color .2s ease;}
.split-panel .flow .pill{transition:background .25s ease, transform .25s ease;}
.split-panel:hover .flow .pill{background:rgba(255,255,255,.2);}
.hero-media .frame img{transition:transform .8s cubic-bezier(.22,.61,.36,1), opacity .4s ease;}
.hero-media .frame:hover img{transform:scale(1.04);}
.hero-chip{transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;}
.hero-chip:hover{transform:translateY(-3px);}
.trust-row .item i{transition:transform .3s cubic-bezier(.34,1.3,.64,1);}
.trust-row .item:hover i{transform:scale(1.15);}
.faq-a{transition:max-height .35s cubic-bezier(.22,.61,.36,1);}
.faq-a p{transition:opacity .3s ease .05s, transform .3s ease .05s;}
.faq-item:not(.open) .faq-a p{opacity:0; transform:translateY(-6px);}
.faq-item.open .faq-a p{opacity:1; transform:none;}
.ussd-box{transition:transform .35s cubic-bezier(.22,.61,.36,1);}
.ussd-box:hover{transform:translateY(-4px);}
.utility-bar{transition:opacity .25s ease, transform .25s ease;}
.utility-bar.gm-closing{opacity:0; transform:translateY(-100%);}
.office-card, .vm-card{transition:transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;}
.office-card:hover, .vm-card:hover{transform:translateY(-3px); box-shadow:0 12px 28px rgba(12,45,34,.08);}

/* Header gains a subtle lift once the page is scrolled */
header{transition:box-shadow .3s ease;}
header.gm-stuck{box-shadow:0 6px 24px rgba(12,45,34,.08);}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    html.anim .hero-text h1,
    html.anim .hero-text p,
    html.anim .hero-ctas,
    html.anim .hero-media .frame,
    html.anim .hero-chip{animation:none; opacity:1; transform:none;}
    html.anim .gm-reveal{opacity:1; transform:none; transition:none;}
    html.anim .step.gm-reveal:not(.gm-in) .step-num{transform:none;}
    *,*::before,*::after{animation-duration:.01ms !important; transition-duration:.01ms !important;}
}

/* ============ CLICKABLE SERVICE CARDS ============ */
a.service-card{display:block; text-decoration:none; color:inherit; position:relative; padding-right:64px;}
.service-card .card-arrow{position:absolute; top:28px; right:24px; width:32px; height:32px; border-radius:50%; background:var(--bg-alt); color:var(--green-700); display:flex; align-items:center; justify-content:center; font-size:16px; transition:transform .25s cubic-bezier(.22,.61,.36,1), background .25s ease, color .25s ease;}
a.service-card:hover .card-arrow{background:var(--gold-500); color:var(--green-900); transform:translateX(4px);}

/* ============ INNER / SERVICE PAGES (shared) ============ */
.breadcrumb{padding:16px 24px; border-bottom:1px solid var(--border-color); background:var(--bg-page);}
.breadcrumb .wrap{display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-muted);}
.breadcrumb a{text-decoration:none; color:var(--text-muted); transition:color .15s ease;}
.breadcrumb a:hover{color:var(--green-700);}
.breadcrumb .sep{color:var(--border-color);}
.breadcrumb .current{color:var(--text-primary); font-weight:600;}

.page-hero{padding:64px 24px 56px; background:var(--bg-alt);}
.page-hero-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:auto 1fr; gap:22px; align-items:flex-start;}
.page-hero .p-icon{width:60px; height:60px; border-radius:16px; background:var(--green-900); color:var(--gold-500); display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0;}
.page-hero h1{font-size:clamp(28px,4vw,42px); line-height:1.12; margin-bottom:14px;}
.page-hero p{font-size:16.5px; line-height:1.65; color:var(--text-muted); max-width:600px; margin-bottom:26px;}
.page-hero .hero-ctas{margin-top:0;}
@media (max-width:640px){ .page-hero-grid{grid-template-columns:1fr;} }

.feature-list{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:14px 32px;}
.feature-list li{list-style:none; display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--text-muted); line-height:1.6;}
.feature-list li i{color:var(--green-700); font-size:18px; margin-top:2px; flex-shrink:0;}
@media (max-width:640px){ .feature-list{grid-template-columns:1fr;} }

.mini-faq{max-width:820px; margin:0 auto;}
.mini-faq .mf-item{border-bottom:1px solid var(--border-color); padding:18px 0;}
.mini-faq .mf-item h4{font-size:15px; margin-bottom:6px;}
.mini-faq .mf-item p{font-size:14px; color:var(--text-muted); line-height:1.65;}

.related-row{max-width:1180px; margin:0 auto; display:flex; gap:16px; flex-wrap:wrap;}
.related-row a{flex:1 1 200px; display:flex; align-items:center; justify-content:space-between; gap:10px; background:var(--bg-page); border:1px solid var(--border-color); border-radius:12px; padding:16px 18px; text-decoration:none; color:var(--text-primary); font-size:14px; font-weight:600; transition:transform .2s ease, border-color .2s ease;}
.related-row a:hover{transform:translateY(-2px); border-color:var(--gold-500);}
.related-row a i{color:var(--gold-500); font-size:16px;}

/* utility */
.sr-only{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0);}