/* ==========================================================================
   Advanced First Computer Sdn Bhd — Design System
   A-FIRST Blue (#1C6EE0) / Green (#37A93C) / Navy / White · Manrope
   ========================================================================== */

:root {
  /* Brand — A-FIRST blue + green */
  --primary:        #1C6EE0;
  --primary-600:    #1559C4;
  --primary-700:    #0E4AA8;
  --primary-50:     #EAF2FD;
  --primary-100:    #CFE1FA;

  /* Accent green (from logo) */
  --accent:         #37A93C;
  --accent-600:     #2E8F33;
  --accent-700:     #24762A;
  --accent-50:      #EAF6EB;

  /* Ink & greys (navy-tinted) */
  --ink:           #0C1B2E;
  --slate-900:     #0C1B3A;
  --slate-800:     #17315C;
  --heading:       #0E1B33;
  --body:          #47505C;
  --muted:         #7A828E;
  --line:          #E6EAF1;
  --line-soft:     #EEF1F6;

  /* Surfaces */
  --bg:            #FFFFFF;
  --bg-soft:       #F6F8FC;
  --bg-tint:       #F3F8FD;
  --dark:          #0C1B3A;

  /* Feedback */
  --wa:            #25D366;
  --wa-600:        #1EBE5A;

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.08);
  --sh:    0 6px 20px rgba(16,24,40,.08);
  --sh-lg: 0 20px 45px rgba(16,24,40,.14);
  --sh-primary: 0 12px 26px rgba(28,110,224,.28);

  --container: 1180px;
  --gutter: 22px;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--heading); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
p  { color: var(--body); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-dark { background: var(--dark); color: #C9D0DA; position: relative; overflow: hidden; }
.bg-dark .container, .page-hero .container { position: relative; z-index: 1; }
.narrow { max-width: 760px; }

/* Section heading block */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary-600); background: var(--primary-50);
  padding: 7px 14px; border-radius: var(--r-pill);
}
.bg-dark .eyebrow { background: rgba(28,110,224,.14); color: #86E08D; }
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin: 18px 0 14px; }
.sec-head p { font-size: 1.08rem; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: #A7B0BD; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--sh-primary); }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--slate-800); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--heading); border-color: var(--line); box-shadow: var(--sh-sm); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-600); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-600); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled { box-shadow: var(--sh-sm); border-color: var(--line-soft); background: rgba(255,255,255,.94); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 74px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1.02rem; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  box-shadow: var(--sh-primary);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { color: var(--heading); font-size: 1.06rem; letter-spacing: -.02em; }
.brand-text small { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav-drop > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .95rem; color: #313a45;
  transition: color .15s, background .15s;
}
.nav > a:hover, .nav-drop > a:hover, .nav > a.active { color: var(--primary-600); background: var(--primary-50); }
.nav-drop { position: relative; }
.nav-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s;
}
.nav-drop:hover .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: flex; flex-direction: column; padding: 9px 12px; border-radius: 10px; }
.nav-menu a:hover { background: var(--bg-soft); }
.nav-menu a b { font-size: .92rem; color: var(--heading); font-weight: 700; }
.nav-menu a span { font-size: .78rem; color: var(--muted); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--heading); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); padding: clamp(48px,7vw,88px) 0 clamp(56px,8vw,96px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(680px 420px at 88% -8%, rgba(28,110,224,.16), transparent 60%),
    radial-gradient(560px 420px at -6% 108%, rgba(14,17,22,.05), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero h1 { margin: 20px 0 18px; }
.hero h1 .hl { color: var(--primary); }
.hero p.lead { max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; padding-top: 26px; border-top: 1px dashed var(--line); }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-size: 1.7rem; color: var(--heading); font-weight: 800; letter-spacing: -.03em; }
.hero-trust .t span { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 26px;
}
.hero-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.hero-card .sub { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.hero-stack { display: grid; gap: 12px; }
.hero-row { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-soft); transition: transform .2s, box-shadow .2s; }
.hero-row:hover { transform: translateY(-3px); box-shadow: var(--sh); background: #fff; }
.hero-row .ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; color: #fff; }
.hero-row b { display: block; color: var(--heading); font-size: .98rem; }
.hero-row span { font-size: .82rem; color: var(--muted); }
.hero-badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--ink); color: #fff;
  border-radius: var(--r); padding: 14px 18px; box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 12px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 5px rgba(37,211,102,.2); }
.hero-badge b { font-size: .92rem; }
.hero-badge span { font-size: .76rem; color: #9aa3b0; display: block; }

/* ---------- Marquee / logos strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip-inner { display: flex; align-items: center; gap: 14px 40px; flex-wrap: wrap; justify-content: center; padding: 26px 0; }
.strip-inner span { color: var(--muted); font-weight: 700; font-size: .95rem; letter-spacing: .01em; display: inline-flex; align-items: center; gap: 9px; }
.strip-inner .sd { color: var(--accent); }

/* ---------- Icon ---------- */
.svc-ic, .feat-ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--primary-50); color: var(--primary-600);
}
.svc-ic svg, .feat-ic svg { width: 27px; height: 27px; }
.ic-grad { background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: #fff !important; box-shadow: var(--sh-primary); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 22px; }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.card h3 { margin: 20px 0 10px; }
.card p { font-size: .96rem; }
.card .card-list { margin-top: 16px; display: grid; gap: 9px; }
.card .card-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--body); }
.card .card-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.card .card-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; color: var(--primary-600); font-weight: 700; font-size: .93rem; }
.card .card-link svg { width: 17px; height: 17px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }
.card.feature-top::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-700)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.card.feature-top:hover::before { transform: scaleX(1); }

/* Numbered category card */
.cat-num { font-size: .82rem; font-weight: 800; color: var(--primary); letter-spacing: .08em; }

/* ---------- Feature (why choose) ---------- */
.feat { display: flex; gap: 16px; }
.feat .feat-ic { width: 48px; height: 48px; border-radius: 13px; }
.feat h3 { font-size: 1.08rem; margin-bottom: 6px; }
.feat p { font-size: .93rem; }

/* ---------- Split / value ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-50); color: var(--accent-600); display: grid; place-items: center; flex-shrink: 0; }
.check-list li .ck svg { width: 16px; height: 16px; }
.check-list li b { color: var(--heading); font-weight: 700; }
.check-list li p { font-size: .9rem; margin-top: 1px; }

/* Visual panel */
.panel {
  border-radius: var(--r-lg); padding: 34px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--slate-900), #1c2530);
}
.panel::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -80px; top: -80px; background: radial-gradient(circle, rgba(55,169,60,.34), transparent 70%); }
.panel h3 { color: #fff; }
.panel .p-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; position: relative; z-index: 1; }
.panel .p-stat div { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 18px; }
.panel .p-stat b { font-size: 1.8rem; color: #fff; display: block; letter-spacing: -.03em; }
.panel .p-stat span { font-size: .82rem; color: #A7B0BD; }

/* ---------- Industries chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); font-weight: 700; color: var(--heading); font-size: .95rem;
  box-shadow: var(--sh-sm); transition: transform .18s, border-color .18s, color .18s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--primary); color: var(--primary-600); }
.chip svg { width: 19px; height: 19px; color: var(--primary); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat b { font-size: clamp(2rem,4vw,2.8rem); color: var(--primary); font-weight: 800; letter-spacing: -.03em; display: block; }
.stat span { color: #A7B0BD; font-weight: 600; font-size: .92rem; }
.bg-dark .stat b { color: #57C15E; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: s; }
.step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.step .num { width: 40px; height: 40px; border-radius: 11px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: 16px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(38px,6vw,64px); text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 80% 120%, rgba(255,255,255,.18), transparent); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 640px; margin: 14px auto 28px; }
.cta-band .btn-white { background: #fff; color: var(--primary-700); }
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials / trust ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); }
.quote .stars { color: var(--primary); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { color: var(--heading); font-weight: 500; font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--primary-700)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.quote .who b { color: var(--heading); font-size: .95rem; display: block; }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 700; color: var(--heading); cursor: pointer; }
.faq-q .pl { width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px; background: var(--primary-50); color: var(--primary-600); display: grid; place-items: center; transition: transform .25s; font-size: 1.1rem; }
.faq-item.open .faq-q .pl { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; font-size: .95rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(50px,7vw,92px) 0 clamp(40px,6vw,66px); background: var(--dark); color: #fff; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(640px 400px at 85% -20%, rgba(28,110,224,.28), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; max-width: 820px; }
.page-hero p { color: #A7B0BD; max-width: 620px; font-size: 1.1rem; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #8b93a1; }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-50); color: var(--primary-600); display: grid; place-items: center; flex-shrink: 0; }
.info-row b { color: var(--heading); display: block; font-size: .96rem; }
.info-row span, .info-row a { color: var(--body); font-size: .95rem; }
.info-row a:hover { color: var(--primary-600); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: .96rem; color: var(--heading); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,110,224,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); min-height: 260px; display: grid; place-items: center; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #97A0AD; padding: 66px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand-text b { color: #fff; }
.footer p { color: #97A0AD; font-size: .92rem; margin-top: 16px; max-width: 300px; }
.footer h5 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col li { display: block; color: #97A0AD; font-size: .92rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--primary); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; padding: 7px 0; font-size: .92rem; }
.footer-contact li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 22px 0; font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 11px;
  background: var(--wa); color: #fff; padding: 13px 20px 13px 15px; border-radius: var(--r-pill);
  box-shadow: 0 10px 26px rgba(37,211,102,.42); font-weight: 700; font-size: .95rem; transition: transform .2s; }
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .lbl { }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.tag { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--primary-600); background: var(--primary-50); padding: 5px 12px; border-radius: var(--r-pill); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .stats, .steps { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}
/* Nav collapses to a hamburger below 1200px so the full menu never wraps */
@media (max-width: 1200px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0; background: #fff; z-index: 100;
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-lg); padding: 14px var(--gutter) 20px; margin: 0;
  }
  .nav.open > a, .nav.open .nav-drop > a { padding: 13px 12px; font-size: 1rem; white-space: normal; }
  .nav.open .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 12px; min-width: 0; }
}
@media (max-width: 820px) {
  .g-3, .g-2 { grid-template-columns: 1fr; }
  .wa-float .lbl { display: none; }
  .wa-float { padding: 14px; }
}
@media (max-width: 560px) {
  .g-4, .stats, .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
}

/* ==========================================================================
   MOTION LAYER — reveals, marquee, parallax, counters, shine, progress
   ========================================================================== */

/* Smoother, premium reveal easing */
[data-reveal] { transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); transform: translateY(30px); }
[data-reveal].in { transform: none; }

/* Scroll progress bar (injected by JS) */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: linear-gradient(90deg, var(--primary), var(--primary-700));
  transform: scaleX(0); transform-origin: left; transition: transform .1s linear; }

/* Infinite marquee on the capability strip */
.strip { overflow: hidden; }
.strip-inner.is-marquee { flex-wrap: nowrap; justify-content: flex-start; gap: 0; padding: 0;
  animation: af-marquee 34s linear infinite; will-change: transform; }
.strip-inner.is-marquee:hover { animation-play-state: paused; }
.mq-group { display: flex; align-items: center; gap: 40px; padding: 26px 20px; white-space: nowrap; flex-shrink: 0; }
@keyframes af-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Hero parallax targets glide smoothly */
.hero-card, .hero-badge { transition: transform .35s cubic-bezier(.22,1,.36,1); will-change: transform; }

/* Gentle live pulse on the status dot */
.hero-badge .dot { animation: af-pulse 2.4s ease-in-out infinite; }
@keyframes af-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 50% { box-shadow: 0 0 0 7px rgba(37,211,102,0); } }

/* Button liquid-fill uses the yewho motion library — set flood colour per variant */
.btn-primary { --fill: var(--primary-700); }
.btn-dark    { --fill: #05122A; }
.btn-white   { --fill: #DBE6F7; }
.btn-ghost   { --fill: var(--primary-50); }
.cta-band .btn-white { --fill: #DDEBFF; }

/* Card icon subtle spring on hover */
.card:hover .svc-ic { transform: translateY(-2px) scale(1.06); }
.svc-ic { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }

/* Count-up numbers use tabular figures so width doesn't jump */
.stat b, .p-stat b, .hero-trust .t b { font-variant-numeric: tabular-nums; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .strip-inner.is-marquee { animation: none !important; }
}

/* ==========================================================================
   yewho web effects — theme bridge (maps the library's variables to our brand)
   ========================================================================== */
:root {
  --ease:      cubic-bezier(.22,.61,.2,1);
  --disp:      var(--font);
  --red:       var(--primary);      /* library "accent/red" → A-FIRST blue */
  --red-dark:  var(--primary-700);
  --soft:      var(--bg-soft);
  --navy:      #12294A;
  --navy-2:    #1A3866;
}
/* Aurora backdrop tinted to brand (blue + green instead of red) */
.aur i:last-child { background: radial-gradient(circle, rgba(55,169,60,.16) 0%, transparent 62%) !important; }

/* flowing gradient text → brand blue↔green (library default is red) */
:root { --gt-c1: var(--primary); --gt-c2: var(--accent); }
/* hover glow → brand blue (library hardcodes red) */
.md-glow:hover { box-shadow: 0 0 0 4px rgba(28,110,224,.16), 0 12px 34px rgba(28,110,224,.24) !important; }
/* hero typewriter tagline */
.svc-type { color: #9FB6D8; font-weight: 700; font-size: clamp(1rem,1.7vw,1.24rem);
  margin: 18px 0 0; min-height: 1.5em; letter-spacing: -.01em; }
.svc-type .md-type { color: #EAF1FB; }
.svc-type .md-type::after { background: var(--accent); }

/* ---------- Brand logo ---------- */
.brand-logo { height: 44px; width: auto; display: block; }
.footer .brand-logo { height: 40px; background: #fff; padding: 9px 14px; border-radius: 11px; box-sizing: content-box; }
@media (max-width: 820px) { .brand-logo { height: 38px; } }

/* ==========================================================================
   MODERN TECH LAYER 2026 — dark mesh hero · glass · glow · grid · gradient
   (additive; scoped so inner pages stay intact)
   ========================================================================== */

/* Shared background primitives ------------------------------------------- */
.mesh, .grid-lines, .noise { position: absolute; inset: 0; pointer-events: none; }
.mesh { z-index: 0; }
.mesh i { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .8; will-change: transform; }
.mesh i:nth-child(1) { width: 46vw; height: 46vw; left: -8vw; top: -14vw; background: radial-gradient(circle, rgba(28,110,224,.55), transparent 66%); animation: mesh-a 18s ease-in-out infinite; }
.mesh i:nth-child(2) { width: 40vw; height: 40vw; right: -8vw; top: -6vw; background: radial-gradient(circle, rgba(55,169,60,.42), transparent 66%); animation: mesh-b 22s ease-in-out infinite; }
.mesh i:nth-child(3) { width: 38vw; height: 38vw; left: 24vw; bottom: -20vw; background: radial-gradient(circle, rgba(76,155,255,.35), transparent 66%); animation: mesh-c 26s ease-in-out infinite; }
@keyframes mesh-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw,4vw) scale(1.12); } }
@keyframes mesh-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5vw,5vw) scale(1.08); } }
@keyframes mesh-c { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw,-4vw) scale(1.15); } }

.grid-lines { z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, #000 35%, transparent 78%);
}
.noise { z-index: 1; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Monospace "tech" pill / eyebrow ---------------------------------------- */
.pill-tech {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, Consolas, monospace;
  font-size: .76rem; font-weight: 600; letter-spacing: .01em;
  padding: 8px 15px; border-radius: var(--r-pill);
  color: #D3E2FA; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px);
}
.pill-tech .dot { width: 7px; height: 7px; border-radius: 50%; background: #46d95a;
  box-shadow: 0 0 0 4px rgba(55,169,60,.18), 0 0 12px 2px rgba(55,169,60,.7); animation: af-pulse 2.4s ease-in-out infinite; }
.pill-tech.on-light { color: var(--primary-700); background: var(--primary-50); border-color: var(--primary-100); }

/* Animated gradient headline text ---------------------------------------- */
.grad {
  background: linear-gradient(100deg, #5AA2FF 0%, #7CE8AE 45%, #5AA2FF 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  color: transparent; animation: grad-pan 7s linear infinite;
}
@keyframes grad-pan { to { background-position: 220% center; } }

/* Dark mesh hero --------------------------------------------------------- */
.hero-dark { background: #060B18; color: #C4D2E6; }
.hero-dark::before { display: none; }              /* kill the light-hero glow */
.hero-dark .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-dark .container { position: relative; z-index: 2; }
.hero-dark h1 { color: #fff; }
.hero-dark p.lead { color: #A9B7CE; }
.hero-dark .hero-trust { border-top: 1px solid rgba(255,255,255,.12); }
.hero-dark .hero-trust .t b { color: #fff; }
.hero-dark .hero-trust .t span { color: #8CA0BD; }

/* Glass hero card + glow ring */
.hero-dark .hero-visual { position: relative; }
.hero-dark .hero-visual::before { content: ""; position: absolute; inset: -14px; z-index: 0; border-radius: 30px;
  background: linear-gradient(140deg, rgba(76,155,255,.55), rgba(55,169,60,.42)); filter: blur(34px); opacity: .55; }
.hero-dark .hero-card { position: relative; z-index: 1;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 30px 80px -22px rgba(0,0,0,.7);
}
.hero-dark .hero-card h4 { color: #fff; }
.hero-dark .hero-card .sub { color: #8CA0BD; }
.hero-dark .hero-row { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.08); }
.hero-dark .hero-row:hover { background: rgba(255,255,255,.08); box-shadow: none; transform: translateY(-3px); }
.hero-dark .hero-row b { color: #fff; }
.hero-dark .hero-row span { color: #92A3BD; }
.hero-dark .hero-badge { background: rgba(11,18,33,.85); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); }
.hero-dark .hero-badge span { color: #93a3b7; }

/* Glowing primary button on dark */
.hero-dark .btn-primary, .btn-glow { box-shadow: 0 12px 34px -8px rgba(28,110,224,.7), inset 0 0 0 1px rgba(120,180,255,.35); }
.hero-dark .btn-primary:hover, .btn-glow:hover { box-shadow: 0 16px 44px -8px rgba(28,110,224,.85), inset 0 0 0 1px rgba(120,180,255,.5); }
.hero-dark .btn-ghost { background: rgba(255,255,255,.06); color: #EAF1FB; border-color: rgba(255,255,255,.18); box-shadow: none; backdrop-filter: blur(10px); }
.hero-dark .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }

/* Upgrade the shared dark sections (stats band, page-hero, panels) -------- */
.bg-dark, .page-hero { background: #060B18; }
.bg-dark .aur i:first-child { opacity: .9; }
.page-hero::before { background:
  radial-gradient(680px 420px at 84% -22%, rgba(28,110,224,.34), transparent 62%),
  radial-gradient(520px 380px at 8% 120%, rgba(55,169,60,.20), transparent 60%); }

/* Gradient-border glass cards (bento) ------------------------------------ */
.card-glass {
  position: relative; border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(14px); color: #C7D3E6; border-radius: var(--r-lg); overflow: hidden;
}
.card-glass h3 { color: #fff; }
.card-glass p { color: #98A6BE; }
.card-glass::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(90,162,255,.6), transparent 40%, rgba(124,232,174,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; pointer-events: none; }
.card-glass:hover::after { opacity: 1; }

/* Give every service/feature card a soft glow lift ----------------------- */
.card:hover { box-shadow: 0 24px 60px -18px rgba(28,110,224,.28), var(--sh-lg); }
.svc-ic.ic-grad { box-shadow: 0 10px 24px -6px rgba(28,110,224,.5); }

/* Motion for the mesh respects reduced-motion (handled globally below) */
@media (prefers-reduced-motion: reduce) {
  .mesh i { animation: none !important; }
  .grad { animation: none !important; }
}
@media (max-width: 820px) {
  .hero-dark .hero-visual::before { inset: -6px; filter: blur(22px); }
}

/* ==========================================================================
   AMBER GLOBE THEME 2026 — applied site-wide
   Warm amber energy + blue tech, dark premium heroes, glass floating cards.
   ========================================================================== */
:root {
  --amber:      #37C97A;   /* "energy accent" — now brand GREEN */
  --amber-2:    #2FB86C;
  --amber-soft: #6FE3A0;
  --amber-warm: #BFF6DD;
}

/* Amber animated gradient text (site-wide keyword highlight) */
.grad2 {
  background: linear-gradient(100deg, var(--amber-soft), var(--amber-2) 60%, var(--amber-soft));
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  color: transparent; animation: grad-pan 7s linear infinite;
}

/* ---- Globe hero component (Home + Services) ---------------------------- */
.svc-hero { position: relative; overflow: hidden; background: #060B18; color: #C4D2E6;
  padding: clamp(52px,7vw,92px) 0 clamp(66px,9vw,116px); isolation: isolate; }
.svc-hero::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(3,7,15,.55)); }
.svc-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.svc-bg .vig { position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 78% 30%, rgba(28,70,150,.28), transparent 60%),
              radial-gradient(60% 50% at 90% 18%, rgba(55,201,122,.12), transparent 60%); }

.globe-wrap { position: absolute; top: 50%; right: -6%; transform: translateY(-52%);
  width: min(760px,64vw); aspect-ratio: 1; z-index: 1; }
.globe-wrap svg { width: 100%; height: 100%; overflow: visible; }
.globe-wrap .spin { transform-origin: 300px 300px; animation: globe-spin 60s linear infinite; }
@keyframes globe-spin { to { transform: rotate(360deg); } }
.arc-flow { stroke-dasharray: 6 10; animation: dash 3.2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -160; } }

.floor { position: absolute; left: 0; right: 0; bottom: 0; height: 44%; z-index: 1;
  background-image: linear-gradient(rgba(64,132,240,.16) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(64,132,240,.16) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(560px) rotateX(66deg); transform-origin: bottom;
  -webkit-mask-image: radial-gradient(120% 100% at 60% 100%, #000 20%, transparent 72%);
          mask-image: radial-gradient(120% 100% at 60% 100%, #000 20%, transparent 72%);
  opacity: .7; }
.floor-icons { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 2;
  display: flex; gap: clamp(26px,5vw,64px); justify-content: center; }
.floor-icons .fchip { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: #5EC2FF; border: 1px solid rgba(94,194,255,.3); background: rgba(94,194,255,.06);
  box-shadow: 0 0 22px rgba(60,150,255,.28); }
.floor-icons .fchip svg { width: 22px; height: 22px; }

.svc-inner { position: relative; z-index: 4; display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 40px; align-items: center; min-height: clamp(460px,54vw,560px); }
.crumb-x { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: #8CA0BD; font-weight: 600; }
.crumb-x .sv { opacity: .45; } .crumb-x b { color: var(--amber); font-weight: 700; }
.crumb-x a:hover { color: #fff; }
.svc-h1 { color: #fff; font-size: clamp(2.3rem,5.2vw,4rem); line-height: 1.04; letter-spacing: -.03em; margin: 18px 0 0; }
.svc-bar { width: 190px; height: 4px; border-radius: 4px; margin: 22px 0;
  background: linear-gradient(90deg, var(--amber-2), var(--primary)); box-shadow: 0 0 18px rgba(55,201,122,.5); }
.svc-lead { color: #A9B7CE; font-size: clamp(1.02rem,1.5vw,1.18rem); max-width: 520px; }

.tbadges { display: flex; flex-wrap: wrap; gap: 26px 34px; margin-top: 36px; }
.tbadge { display: flex; gap: 13px; align-items: flex-start; max-width: 210px; }
.tbadge .ti { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  color: var(--amber); border: 1.5px solid rgba(55,201,122,.42); background: rgba(55,201,122,.07);
  box-shadow: 0 0 20px rgba(55,201,122,.18); }
.tbadge .ti svg { width: 22px; height: 22px; }
.tbadge b { color: #fff; font-size: .96rem; display: block; margin-bottom: 3px; }
.tbadge p { color: #8FA0B8; font-size: .83rem; line-height: 1.45; }

/* Floating glass cards */
.fcards { position: relative; height: clamp(430px,50vw,540px); }
.fcard { position: absolute; width: min(300px,80%); display: flex; align-items: center; gap: 14px;
  padding: 17px 18px; border-radius: 18px; color: #fff;
  background: linear-gradient(158deg, rgba(24,38,66,.82), rgba(9,16,32,.62));
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 28px 64px -22px rgba(0,0,0,.75);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s; }
.fcard:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.22); box-shadow: 0 34px 74px -20px rgba(0,0,0,.85); }
.fcard .fi { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; }
.fcard .fi svg { width: 26px; height: 26px; }
.fi.amber { color: var(--amber); border: 1px solid rgba(55,201,122,.4); background: rgba(55,201,122,.09); box-shadow: 0 0 20px rgba(55,201,122,.22); }
.fi.blue { color: #4DA6FF; border: 1px solid rgba(77,166,255,.42); background: rgba(77,166,255,.09); box-shadow: 0 0 20px rgba(77,166,255,.22); }
.fcard .ft b { font-size: 1rem; display: block; letter-spacing: -.01em; }
.fcard .ft span { font-size: .82rem; color: #93A3BD; line-height: 1.4; display: block; margin-top: 2px; }
.fcard .chev { margin-left: auto; align-self: center; color: #7C8CA6; flex-shrink: 0; }
.fcard .chev svg { width: 18px; height: 18px; }
.fc-1 { top: 2%;  left: 24%; } .fc-2 { top: 33%; left: 2%; }
.fc-3 { top: 30%; right: 0; } .fc-4 { top: 64%; right: 8%; }

/* Homepage-specific: CTA row + numeric trust stats on the globe hero */
.svc-hero .hero-cta { margin-top: 32px; }
.svc-hero .hero-trust { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 24px; }
.svc-hero .hero-trust .t b { color: #fff; } .svc-hero .hero-trust .t span { color: #8CA0BD; }
.svc-hero .btn-primary { box-shadow: 0 12px 34px -8px rgba(28,110,224,.7), inset 0 0 0 1px rgba(120,180,255,.35); }
.svc-hero .btn-primary:hover { box-shadow: 0 16px 44px -8px rgba(28,110,224,.85), inset 0 0 0 1px rgba(120,180,255,.5); }
.svc-hero .btn-ghost { background: rgba(255,255,255,.06); color: #EAF1FB; border-color: rgba(255,255,255,.18); box-shadow: none; backdrop-filter: blur(10px); }
.svc-hero .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }

/* ---- Inner-page hero upgrade (all pages, via shared .page-hero) -------- */
.page-hero { background: #060B18; }
.page-hero::before { background:
  radial-gradient(700px 440px at 85% -22%, rgba(28,110,224,.32), transparent 60%),
  radial-gradient(440px 320px at 93% 6%, rgba(55,201,122,.16), transparent 60%),
  radial-gradient(480px 380px at 4% 122%, rgba(55,169,60,.16), transparent 60%); }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 32%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 32%, transparent 78%); }
.page-hero .crumb b, .page-hero .crumb .here { color: var(--amber); font-weight: 700; }
.page-hero h1 .grad2 { -webkit-text-fill-color: transparent; }

/* Inner-page banners carry the SAME green globe as Home/Services */
.page-hero { min-height: 330px; display: flex; align-items: center; }
.page-hero .svc-bg { z-index: 0; }
.page-hero .globe-wrap { top: -8%; right: -10%; transform: none; width: min(600px,52vw); }
.page-hero .floor { height: 36%; opacity: .5; }
.page-hero .svc-bg::after { content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, #060B18 30%, rgba(6,11,24,.4) 60%, transparent 84%); }
@media (max-width: 820px) {
  .page-hero { min-height: 260px; }
  .page-hero .globe-wrap { right: -28%; width: 78vw; opacity: .4; }
  .page-hero .svc-bg::after { background: linear-gradient(180deg, rgba(6,11,24,.2), #060B18 82%); }
  .page-hero .floor { display: none; }
}

/* ---- Site-wide amber accents ------------------------------------------ */
.bg-dark .eyebrow { background: rgba(55,201,122,.14); color: var(--amber-soft); }
.strip-inner .sd { color: var(--amber); }
.stat b { color: #5FD98A; }                 /* dark stats band → brand green numbers */
.bg-dark .stat b { color: var(--amber-soft); }
.cta-band { background: linear-gradient(130deg, var(--primary-700) 0%, #123A82 45%, #12603A 130%); }
.cta-band::before { background: radial-gradient(520px 320px at 88% 120%, rgba(55,201,122,.34), transparent 60%); }
.cta-band .btn-white { color: var(--primary-700); }
.panel::after { background: radial-gradient(circle, rgba(55,201,122,.30), transparent 70%) !important; }

/* Responsive — globe hero */
@media (max-width: 980px) {
  .svc-inner { grid-template-columns: 1fr; gap: 14px; }
  .globe-wrap { right: -24%; opacity: .5; }
  .fcards { position: static; height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
  .fcard { position: static; width: auto; }
  .floor-icons { display: none; }
}
@media (max-width: 560px) {
  .fcards { grid-template-columns: 1fr; }
  .tbadges { gap: 20px; }
  .globe-wrap { opacity: .32; }
}
@media (prefers-reduced-motion: reduce) {
  .globe-wrap .spin, .arc-flow, .grad2 { animation: none !important; }
}

/* ==========================================================================
   PERF — freeze continuous animations on small screens (battery/jank)
   Decorative motion only; content & reveals are unaffected.
   ========================================================================== */
@media (max-width: 820px) {
  .globe-wrap .spin, .arc-flow, .mesh i,
  .strip-inner.is-marquee { animation: none !important; }
  .globe-wrap svg { will-change: auto; }
}

/* ==========================================================================
   HEADER TIDY — WhatsApp button removed from the bar (floating one stays),
   slimmer nav that never wraps mid-item.
   ========================================================================== */
.header-cta { display: none; }
.nav-toggle { margin-left: auto; }
.nav > a, .nav-drop > a { white-space: nowrap; padding: 9px 10px; font-size: .92rem; }
/* Nav sits close to the logo instead of being pushed to the far right */
.nav { gap: 2px; margin-left: 24px; margin-right: auto; }

/* ==========================================================================
   "Established" trust badge — dressed-up hero pill (homepage)
   ========================================================================== */
.pill-est { font-family: var(--font); font-weight: 600; gap: 9px; padding: 6px 16px 6px 7px;
  border-color: rgba(124,232,174,.30);
  background: linear-gradient(90deg, rgba(55,169,60,.16), rgba(255,255,255,.05)); color: #D8EADF; }
.pill-est .est-ic { width: 24px; height: 24px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, #37C97A, #2FB86C); color: #fff;
  box-shadow: 0 0 0 3px rgba(55,201,122,.18), 0 2px 8px rgba(55,201,122,.35); }
.pill-est .est-ic svg { width: 13px; height: 13px; }
.pill-est b { color: #8CEBB5; font-weight: 800; letter-spacing: .01em; }
.pill-est .est-sep { width: 1px; height: 13px; background: rgba(255,255,255,.22); display: inline-block; margin: 0 1px; }
.pill-est .est-pin { width: 13px; height: 13px; opacity: .8; color: #9BE7B4; flex-shrink: 0; }
.pill-est .est-yrs { font-size: .72rem; font-weight: 800; color: #06210F; letter-spacing: .01em;
  background: linear-gradient(135deg, #7CE8AE, #37C97A); padding: 3px 9px; border-radius: var(--r-pill); flex-shrink: 0; }

/* ==========================================================================
   Enhancements — service pills (enquiry form) + Google review CTA
   ========================================================================== */
.svc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-pill { cursor: pointer; position: relative; }
.svc-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.svc-pill span { display: inline-block; padding: 9px 15px; border: 1.5px solid var(--line); border-radius: var(--r-pill);
  font-size: .86rem; font-weight: 600; color: var(--body); transition: background .15s, border-color .15s, color .15s; }
.svc-pill span:hover { border-color: var(--primary); color: var(--primary-700); }
.svc-pill input:checked + span { background: var(--primary-50); border-color: var(--primary); color: var(--primary-700); }
.svc-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(28,110,224,.18); }

/* Google review badge / CTA */
.greview { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 10px 20px 10px 12px; box-shadow: var(--sh-sm); font-weight: 700; color: var(--heading); }
.greview .g { width: 24px; height: 24px; flex-shrink: 0; }
.reviews-widget { max-width: 1120px; margin: 0 auto; min-height: 200px; }
.sec-head .sec-sub { color: var(--muted); }
.greview .stars { color: #FBBC05; letter-spacing: 1px; font-size: .95rem; }
.greview small { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; }
