/* A1 Accounting – Global CSS v4 */

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font-body); color:var(--body); background:var(--white); overflow-x:hidden; line-height:1.6; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,textarea,select { font-family:inherit; }

/* LOADER */
#site-loader {
  position:fixed; inset:0; background:var(--white);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  z-index:9999; transition:opacity .5s ease, visibility .5s ease;
}
#site-loader.done { opacity:0; visibility:hidden; pointer-events:none; }
#site-loader img { width:160px; margin-bottom:1.75rem; animation:loaderPulse 1.5s ease-in-out infinite; }
.loader-track { width:140px; height:3px; background:var(--border); border-radius:3px; overflow:hidden; }
.loader-fill { height:100%; background:var(--grad-sky); border-radius:3px; animation:loaderFill 1.6s var(--ease-out) forwards; }
@keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes loaderFill { from{width:0} to{width:100%} }

/* SCROLL PROGRESS */
#scroll-bar { position:fixed; top:0; left:0; height:3px; background:var(--grad-sky); z-index:9998; width:0%; transition:width .1s linear; }

/* NAV */
.nav {
  position:fixed; top:0; left:0; right:0; height:var(--nav-h);
  z-index:900; transition:background .3s, box-shadow .3s, height .3s;
  background:transparent;
}
.nav.scrolled {
  background:var(--white);
  box-shadow:0 1px 0 var(--border), var(--shadow-sm);
  height:64px;
}
.nav-wrap { max-width:var(--container); margin:0 auto; padding:0 1.5rem; height:100%; display:flex; align-items:center; justify-content:space-between; }
/* ============================================================
   LOGO — uses logo-white-bg.png (white background version)
   Looks clean on dark hero, dark footer, and white nav after scroll
   ============================================================ */
.nav-logo img {
  height: 48px;
  width: auto;
  transition: height .3s;
  border-radius: 6px;
}
.nav.scrolled .nav-logo img {
  height: 42px;
}
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-link {
  padding:.5rem .875rem; font-size:.875rem; font-weight:500;
  color:rgba(255,255,255,.85); border-radius:var(--r-lg);
  transition:color .2s, background .2s;
  display:flex; align-items:center; gap:.25rem; white-space:nowrap;
}
.nav.scrolled .nav-link { color:var(--dark); }
.nav-link:hover { background:rgba(255,255,255,.12); color:#fff; }
.nav.scrolled .nav-link:hover { background:var(--sky-bg); color:var(--teal); }
.nav-link svg { width:10px; height:10px; opacity:.6; transition:transform .2s; }
.nav-item:hover .nav-link svg { transform:rotate(180deg); }
.nav-cta-btn {
  background:var(--sky) !important; color:#fff !important;
  padding:.5rem 1.25rem !important; border-radius:var(--r-pill) !important;
  font-weight:600 !important; margin-left:.5rem;
  transition:background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta-btn:hover { background:var(--teal) !important; transform:translateY(-1px) !important; box-shadow:0 4px 16px rgba(26,92,122,.3) !important; }
.nav-item { position:relative; }
.nav-dropdown {
  position:absolute; top:calc(100% + 8px); left:50%;
  transform:translateX(-50%) translateY(6px);
  background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl);
  box-shadow:var(--shadow-xl); min-width:230px; padding:.375rem 0;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:all .2s var(--ease-out);
}
.nav-item:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); pointer-events:all; }
.nav-dropdown::before { content:''; position:absolute; top:-5px; left:50%; transform:translateX(-50%) rotate(45deg); width:10px; height:10px; background:var(--white); border-left:1px solid var(--border); border-top:1px solid var(--border); }
.nav-dd-link { display:flex; align-items:center; gap:.75rem; padding:.6rem 1.25rem; font-size:.875rem; font-weight:500; color:var(--dark); transition:background .15s, color .15s, padding-left .2s; }
.nav-dd-link:hover { background:var(--sky-bg); color:var(--teal); padding-left:1.5rem; }
.nav-dd-dot { width:5px; height:5px; border-radius:50%; background:var(--border); flex-shrink:0; transition:background .15s; }
.nav-dd-link:hover .nav-dd-dot { background:var(--sky); }
.nav-divider { height:1px; background:var(--border); margin:.25rem 0; }
.hamburger { display:none; flex-direction:column; gap:5px; padding:.5rem; z-index:901; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all .3s; }
.nav.scrolled .hamburger span { background:var(--dark); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
@media (max-width:1000px) {
  .hamburger { display:flex; }
  .nav-links { position:fixed; inset:0; background:var(--white); flex-direction:column; align-items:flex-start; padding:90px 1.5rem 2rem; transform:translateX(100%); transition:transform .35s var(--ease-out); overflow-y:auto; gap:0; }
  .nav-links.open { transform:translateX(0); }
  .nav-item { width:100%; }
  .nav-link { color:var(--dark) !important; font-size:1.05rem; padding:.875rem .5rem; width:100%; border-bottom:1px solid var(--border); border-radius:0; }
  .nav-link:hover { background:var(--sky-bg) !important; color:var(--teal) !important; }
  .nav-cta-btn { margin:1rem 0 0; width:100%; justify-content:center; border-radius:var(--r-pill) !important; border-bottom:none !important; }
  .nav-dropdown { position:static; transform:none !important; box-shadow:none; border:none; background:var(--sky-bg); border-radius:var(--r-lg); padding:.25rem 0; max-height:0; overflow:hidden; opacity:0; visibility:visible; transition:max-height .3s ease, opacity .3s ease; margin:0 0 .5rem; }
  .nav-dropdown::before { display:none; }
  .nav-item.mob-open .nav-dropdown { max-height:500px; opacity:1; }
  .nav-dd-link { color:var(--dark); }
}

/* LAYOUT */
.container { max-width:var(--container); margin:0 auto; padding:0 1.5rem; }
@media (max-width:768px) { .container { padding:0 1rem; } }
.section { padding:5rem 0; }
@media (max-width:768px) { .section { padding:3.5rem 0; } }

/* PAGE HERO */
.page-hero { background:var(--grad-hero); padding:calc(var(--nav-h) + 3.5rem) 0 3.5rem; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(33,150,196,.1); top:-100px; right:-80px; pointer-events:none; }
.page-hero .container { position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:.5rem; font-size:.8rem; color:rgba(255,255,255,.45); margin-bottom:1rem; }
.breadcrumb a { color:rgba(255,255,255,.65); transition:color .2s; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb-sep { color:rgba(255,255,255,.25); }
.page-hero-title { font-family:var(--font-head); font-size:clamp(2rem,4.5vw,3.25rem); font-weight:800; color:#fff; line-height:1.15; margin-bottom:1rem; letter-spacing:-.02em; }
.page-hero-title span { color:#7dd3f0; }
.page-hero-sub { font-size:1.05rem; color:rgba(255,255,255,.65); max-width:560px; line-height:1.75; }

/* SECTION HEADER */
.sec-tag { display:inline-flex; align-items:center; gap:.5rem; font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--teal); background:var(--sky-bg); padding:.3rem .875rem; border-radius:var(--r-pill); margin-bottom:1.25rem; border:1px solid rgba(33,150,196,.15); }
.sec-title { font-family:var(--font-head); font-size:clamp(1.75rem,3.5vw,2.6rem); font-weight:800; color:var(--dark); line-height:1.2; letter-spacing:-.02em; margin-bottom:1rem; }
.sec-title span { color:var(--sky); }
.sec-sub { font-size:1.05rem; color:var(--muted); line-height:1.8; max-width:560px; }
.sec-hdr { margin-bottom:3.5rem; }
.sec-hdr.center { text-align:center; }
.sec-hdr.center .sec-sub { margin:0 auto; }

/* BUTTONS */
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.75rem 1.75rem; font-family:var(--font-body); font-size:.9rem; font-weight:600; border-radius:var(--r-pill); border:2px solid transparent; transition:all .25s var(--ease-out); cursor:pointer; white-space:nowrap; }
.btn-primary { background:var(--teal); color:#fff; border-color:var(--teal); }
.btn-primary:hover { background:var(--teal-dark); border-color:var(--teal-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(26,92,122,.25); }
.btn-sky { background:var(--sky); color:#fff; border-color:var(--sky); }
.btn-sky:hover { background:var(--teal-mid); border-color:var(--teal-mid); transform:translateY(-2px); box-shadow:0 8px 24px rgba(33,150,196,.3); }
.btn-outline { background:transparent; color:var(--teal); border-color:var(--border); }
.btn-outline:hover { background:var(--sky-bg); border-color:var(--sky); color:var(--teal); }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.8); }
.btn-lg { padding:.9rem 2.25rem; font-size:.95rem; }
.btn-sm { padding:.5rem 1.25rem; font-size:.8rem; }
.btn svg { width:16px; height:16px; flex-shrink:0; }

/* SERVICE CARD */
.service-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:2rem 1.75rem; transition:all .3s var(--ease-out); position:relative; overflow:hidden; }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-xl); border-color:rgba(33,150,196,.25); }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-sky); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease-out); }
.service-card:hover::before { transform:scaleX(1); }
.svc-icon { width:52px; height:52px; border-radius:var(--r-lg); background:var(--sky-bg); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; transition:background .3s; }
.svc-icon svg { width:24px; height:24px; stroke:var(--sky); fill:none; stroke-width:1.75; }
.service-card:hover .svc-icon { background:var(--teal); }
.service-card:hover .svc-icon svg { stroke:#fff; }
.svc-title { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:var(--dark); margin-bottom:.625rem; }
.svc-desc { font-size:.875rem; color:var(--muted); line-height:1.75; margin-bottom:1.25rem; }
.svc-link { font-size:.85rem; font-weight:600; color:var(--sky); display:inline-flex; align-items:center; gap:.375rem; transition:gap .2s, color .2s; }
.svc-link:hover { gap:.625rem; color:var(--teal); }
.svc-link svg { width:14px; height:14px; }

/* TESTIMONIAL CARD */
.testi-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:2rem; }
.testi-stars { color:#f59e0b; font-size:.9rem; letter-spacing:1px; margin-bottom:1rem; }
.testi-text { font-size:.9rem; color:var(--body); line-height:1.8; margin-bottom:1.5rem; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:.75rem; }
.testi-avatar { width:40px; height:40px; border-radius:50%; background:var(--grad-brand); color:#fff; font-size:.8rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testi-name { font-weight:700; font-size:.875rem; color:var(--dark); }
.testi-role { font-size:.775rem; color:var(--muted); }

/* ACCORDION */
.accordion-item { border-bottom:1px solid var(--border); }
.accordion-item:first-child { border-top:1px solid var(--border); }
.acc-header { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.25rem 0; text-align:left; font-size:.95rem; font-weight:600; color:var(--dark); cursor:pointer; background:none; border:none; font-family:var(--font-body); transition:color .2s; }
.acc-header:hover { color:var(--teal); }
.acc-icon { width:28px; height:28px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .3s; }
.acc-icon svg { width:12px; height:12px; stroke:var(--muted); stroke-width:2; transition:transform .3s; }
.accordion-item.open .acc-icon { background:var(--teal); border-color:var(--teal); }
.accordion-item.open .acc-icon svg { stroke:#fff; transform:rotate(180deg); }
.acc-body { max-height:0; overflow:hidden; transition:max-height .4s var(--ease-out), padding .4s; }
.acc-body.open { max-height:400px; padding-bottom:1.25rem; }
.acc-body-inner { font-size:.9rem; color:var(--muted); line-height:1.8; }

/* STEPS */
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; }
.steps-grid::before { content:''; position:absolute; top:22px; left:calc(12.5% + 1rem); right:calc(12.5% + 1rem); height:1.5px; background:linear-gradient(90deg, var(--border), var(--sky) 50%, var(--border)); }
@media (max-width:768px) { .steps-grid { grid-template-columns:1fr 1fr; } .steps-grid::before { display:none; } }
@media (max-width:480px) { .steps-grid { grid-template-columns:1fr; } }
.step-item { text-align:center; }
.step-num { width:44px; height:44px; border-radius:50%; background:var(--teal); color:#fff; font-size:.85rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 1.25rem; position:relative; z-index:1; }
.step-title { font-weight:700; color:var(--dark); font-size:.95rem; margin-bottom:.375rem; }
.step-desc { font-size:.85rem; color:var(--muted); line-height:1.7; }

/* SIDEBAR */
.sidebar-panel { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:1.5rem; margin-bottom:1.25rem; }
.sidebar-panel-title { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:var(--dark); padding-bottom:1rem; margin-bottom:1rem; border-bottom:1px solid var(--border); }
.sidebar-link { display:flex; align-items:center; justify-content:space-between; padding:.625rem .75rem; border-radius:var(--r-md); font-size:.875rem; font-weight:500; color:var(--body); transition:all .2s; margin-bottom:2px; }
.sidebar-link:hover { background:var(--sky-bg); color:var(--teal); padding-left:1rem; }
.sidebar-link svg { width:14px; height:14px; stroke:var(--border); }
.sidebar-link:hover svg { stroke:var(--sky); }

/* FORM */
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:600px) { .form-row { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:.375rem; margin-bottom:1rem; }
.form-label { font-size:.85rem; font-weight:600; color:var(--dark); }
.form-required { color:var(--error); }
.form-input,.form-select,.form-textarea { width:100%; padding:.75rem 1rem; border:1.5px solid var(--border); border-radius:var(--r-lg); font-size:.95rem; color:var(--dark); background:var(--white); transition:border-color .2s, box-shadow .2s; outline:none; -webkit-appearance:none; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--sky); box-shadow:0 0 0 3px rgba(33,150,196,.12); }
.form-input.error { border-color:var(--error); }
.form-err { font-size:.78rem; color:var(--error); }
.form-textarea { resize:vertical; min-height:130px; }

/* FLOAT BUTTONS */
.float-actions { position:fixed; right:1.5rem; bottom:1.5rem; display:flex; flex-direction:column; gap:.75rem; z-index:800; }
.float-btn { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg); transition:transform .25s var(--ease-spring), box-shadow .25s; cursor:pointer; position:relative; }
.float-btn:hover { transform:scale(1.12); box-shadow:var(--shadow-xl); }
.float-btn svg { width:20px; height:20px; }
.float-btn-label { position:absolute; right:calc(100% + 10px); background:var(--dark); color:#fff; font-size:.75rem; font-weight:600; padding:5px 10px; border-radius:var(--r-pill); white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .2s, transform .2s; transform:translateX(6px); }
.float-btn:hover .float-btn-label { opacity:1; transform:translateX(0); }
.float-wa { background:#25d366; color:#fff; }
.float-ph { background:var(--teal); color:#fff; }
.float-top { background:var(--dark); color:#fff; opacity:0; pointer-events:none; transition:opacity .3s; }
.float-top.visible { opacity:1; pointer-events:all; }

/* STATS BAR */
.stats-bar { background:var(--grad-brand); padding:3rem 0; }
.stats-bar-grid { display:grid; grid-template-columns:repeat(4,1fr); }
@media (max-width:768px) { .stats-bar-grid { grid-template-columns:repeat(2,1fr); } }
.stat-block { text-align:center; padding:1.5rem 1rem; position:relative; }
.stat-block+.stat-block::before { content:''; position:absolute; left:0; top:20%; bottom:20%; width:1px; background:rgba(255,255,255,.12); }
@media (max-width:768px) { .stat-block:nth-child(2n+1)::before { display:none; } }
.stat-num { font-family:var(--font-head); font-size:clamp(2rem,4vw,2.75rem); font-weight:800; color:#fff; line-height:1; margin-bottom:.375rem; letter-spacing:-.02em; }
.stat-num span { color:#7dd3f0; }
.stat-lbl { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); }

/* CTA BAND */
.cta-band { background:var(--grad-sky); padding:4.5rem 0; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; top:-80px; right:-80px; width:400px; height:400px; border-radius:50%; background:rgba(255,255,255,.07); }
.cta-band::after { content:''; position:absolute; bottom:-60px; left:-40px; width:300px; height:300px; border-radius:50%; background:rgba(0,0,0,.05); }
.cta-band-inner { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
@media (max-width:768px) { .cta-band-inner { flex-direction:column; text-align:center; } }
.cta-band-title { font-family:var(--font-head); font-size:clamp(1.5rem,3vw,2.1rem); font-weight:800; color:#fff; margin-bottom:.375rem; letter-spacing:-.02em; }
.cta-band-sub { color:rgba(255,255,255,.8); font-size:.9rem; }
.cta-band-btns { display:flex; gap:.875rem; flex-shrink:0; flex-wrap:wrap; }
@media (max-width:768px) { .cta-band-btns { justify-content:center; } }

/* FOOTER */
.footer { background:var(--ink); color:rgba(255,255,255,.6); }
.footer-main { padding:5rem 0 4rem; display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:3rem; border-bottom:1px solid rgba(255,255,255,.06); }
@media (max-width:1000px) { .footer-main { grid-template-columns:1fr 1fr; gap:2rem; } }
@media (max-width:600px) { .footer-main { grid-template-columns:1fr; } }
.footer-logo img {
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: 6px;
}
.footer-about { font-size:.875rem; line-height:1.8; max-width:280px; }
.footer-socials { display:flex; gap:.75rem; margin-top:1.5rem; }
.footer-social-btn { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.5); transition:all .2s; }
.footer-social-btn:hover { background:var(--sky); border-color:var(--sky); color:#fff; }
.footer-social-btn svg { width:15px; height:15px; }
.footer-col-title { font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.9); margin-bottom:1.25rem; }
.footer-links { display:flex; flex-direction:column; gap:.625rem; }
.footer-link { font-size:.875rem; color:rgba(255,255,255,.45); transition:color .2s, padding-left .2s; }
.footer-link:hover { color:rgba(255,255,255,.9); padding-left:.375rem; }
.footer-contact-row { display:flex; gap:.75rem; align-items:flex-start; margin-bottom:.875rem; }
.footer-contact-icon { color:var(--sky-light); margin-top:2px; flex-shrink:0; }
.footer-contact-icon svg { width:14px; height:14px; stroke:currentColor; fill:none; }
.footer-contact-text { font-size:.85rem; color:rgba(255,255,255,.55); line-height:1.6; }
.footer-contact-text a { color:rgba(255,255,255,.55); transition:color .2s; }
.footer-contact-text a:hover { color:#fff; }
.footer-bottom { padding:1.5rem 0; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.footer-copy { font-size:.78rem; color:rgba(255,255,255,.3); }
.footer-copy span { color:rgba(255,255,255,.5); }
.footer-dev {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  margin-top: .2rem;
}
.footer-dev a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-dev a:hover {
  color: rgba(255,255,255,.8);
  text-decoration: underline;
}
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a { font-size:.78rem; color:rgba(255,255,255,.3); transition:color .2s; }
.footer-legal a:hover { color:rgba(255,255,255,.7); }
@media (max-width:600px) { .footer-bottom { flex-direction:column; text-align:center; } }

/* REVEAL ANIMATIONS */
[data-reveal] { opacity:0; transform:translateY(20px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-reveal].revealed { opacity:1; transform:none; }
[data-reveal="left"] { transform:translateX(-20px); }
[data-reveal="left"].revealed { transform:none; }
[data-reveal="right"] { transform:translateX(20px); }
[data-reveal="right"].revealed { transform:none; }
[data-delay="1"] { transition-delay:.1s; }
[data-delay="2"] { transition-delay:.2s; }
[data-delay="3"] { transition-delay:.3s; }
[data-delay="4"] { transition-delay:.4s; }
[data-delay="5"] { transition-delay:.5s; }

/* UTILITIES */
.bg-off { background:var(--off); }
.bg-light { background:var(--light); }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
@media (max-width:900px) { .grid-2 { grid-template-columns:1fr; } .grid-3 { grid-template-columns:1fr 1fr; } .grid-4 { grid-template-columns:1fr 1fr; } }
@media (max-width:600px) { .grid-3,.grid-4 { grid-template-columns:1fr; } }

/* ============================================================
   MEGA NAV
   ============================================================ */
.nav-has-mega { position: static; }
.nav-mega {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: all .25s var(--ease-out);
  z-index: 899;
}
.nav-has-mega:hover .nav-mega {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.nav.scrolled .nav-mega { top: 64px; }
.nav-mega-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.nav-mega-col {
  padding: 0 1.5rem 0 0;
  border-right: 1px solid var(--border);
}
.nav-mega-col:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.nav-mega-col:first-child { padding-left: 0; }
.nav-mega-col:not(:first-child):not(:last-child) { padding-left: 1.5rem; }
.nav-mega-heading {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem; padding-bottom: .875rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: .9rem; font-weight: 800; color: var(--dark);
}
.nav-mega-heading-ico {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-mega-heading-ico svg { width: 17px; height: 17px; }
.nav-mega-link {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .5rem .625rem; border-radius: var(--r-md);
  text-decoration: none; transition: background .15s;
  margin-bottom: 2px;
}
.nav-mega-link:hover { background: var(--sky-bg); }
.nav-mega-link > svg { width: 15px; height: 15px; stroke: var(--muted); flex-shrink: 0; margin-top: 2px; }
.nav-mega-link:hover > svg { stroke: var(--teal); }
.nav-mega-link span { display: flex; flex-direction: column; gap: 1px; }
.nav-mega-link span { font-size: .85rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.nav-mega-link:hover span { color: var(--teal); }
.nav-mega-link small { font-size: .75rem; font-weight: 400; color: var(--muted); line-height: 1.3; }
@media (max-width: 1000px) {
  .nav-mega { display: none; }
}

/* ============================================================
   HERO v2 — LIGHT BACKGROUND
   ============================================================ */
.hero-light {
  background: var(--white);
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  position: relative; overflow: hidden;
}
.hero-light::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, #eaf6fc 0%, #d4eef8 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-l-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  min-height: calc(100vh - var(--nav-h) - 7rem);
}
@media (max-width: 960px) {
  .hero-light::before { width: 100%; clip-path: none; opacity: .4; }
  .hero-l-inner { grid-template-columns: 1fr; min-height: auto; gap: 3rem; }
}
.hero-l-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sky-bg); border: 1px solid rgba(33,150,196,.2);
  color: var(--teal); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .875rem; border-radius: var(--r-pill); margin-bottom: 1.5rem;
}
.hero-l-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }
.hero-l-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; color: var(--dark); line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 1.5rem;
}
.hero-l-h1 span { color: var(--sky); }
.hero-l-sub {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.8; max-width: 500px; margin-bottom: 2.5rem;
}
.hero-l-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-l-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-l-trust-item {
  display: flex; align-items: center; gap: .625rem;
  font-size: .82rem; font-weight: 600; color: var(--body);
}
.hero-l-trust-ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sky-bg); border: 1px solid rgba(33,150,196,.15);
  display: flex; align-items: center; justify-content: center;
}
.hero-l-trust-ico svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; }
.hero-l-trust-item strong { display: block; color: var(--dark); font-size: .875rem; }

/* Hero right panel */
.hero-l-right { position: relative; }
.hero-l-card {
  background: var(--white);
  border: 1.5px solid var(--border); border-radius: 20px;
  padding: 2rem; box-shadow: var(--shadow-xl);
}
.hero-l-card-head {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.25rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-l-card-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
}
.hero-l-card-ico svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5; }
.hero-l-card-lbl { font-size: .75rem; color: var(--muted); margin-bottom: 2px; }
.hero-l-card-title { font-weight: 700; color: var(--dark); font-size: .95rem; }
.hero-l-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.hero-l-metric {
  background: var(--sky-bg); border: 1px solid rgba(33,150,196,.12);
  border-radius: 12px; padding: 1rem;
}
.metric-num {
  font-family: var(--font-head); font-size: 1.75rem; font-weight: 800;
  color: var(--teal); line-height: 1; letter-spacing: -.02em; margin-bottom: 3px;
}
.metric-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.hero-l-badge {
  display: flex; align-items: center; gap: .75rem;
  background: var(--sky-bg); border: 1px solid rgba(33,150,196,.15);
  border-radius: 12px; padding: .875rem 1rem;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: pulse 2s infinite; flex-shrink: 0; }
.hero-l-badge-text { font-size: .82rem; color: var(--body); }
.hero-l-badge-text strong { display: block; font-size: .875rem; color: var(--dark); margin-bottom: 1px; }
/* Floating credential chips */
.hero-cred {
  position: absolute; left: -1.5rem; top: 2.5rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-pill); padding: .5rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-md); font-size: .78rem; font-weight: 700; color: var(--dark);
  white-space: nowrap;
}
.hero-cred svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
.hero-cred-2 {
  position: absolute; right: -1rem; bottom: 3rem;
  background: var(--teal); border-radius: var(--r-pill); padding: .5rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-md); font-size: .78rem; font-weight: 700; color: #fff;
  white-space: nowrap;
}
.hero-cred-2 svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; flex-shrink: 0; }
@media (max-width: 1100px) { .hero-cred, .hero-cred-2 { display: none; } }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,.2)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,.04)} }

/* Nav light mode override (since hero is now white, nav needs dark text from start) */
.nav-light .nav-link { color: var(--dark) !important; }
.nav-light .nav-cta-btn { color: #fff !important; }
.nav-light .hamburger span { background: var(--dark) !important; }

