/* ============================================================
   GCCA — Gulf Center Consultancy & Audit
   Premium redesign · gccaglobal.com
   ============================================================ */

:root {
  --navy-950: #061524;
  --navy-900: #081B2E;
  --navy-800: #0B2A47;
  --blue-800: #0E4076;
  --blue-700: #0F4C8A;
  --blue-600: #1E73C8;
  --blue-500: #2E86DE;
  --blue-200: #A8CDEF;
  --blue-100: #DCEBFA;
  --blue-50:  #F2F8FD;
  --gold:     #B8912F;
  --gold-deep:#9A762A;
  --gold-soft:#E6CB7C;
  --champagne:#F2E5C4;
  --paper:    #F3F8FD;
  --ink:      #12263A;
  --muted:    #5A6B7C;
  --line:     #E5E9EF;
  --white:    #FFFFFF;
  --wa:       #25D366;
  --radius:   16px;
  --radius-lg:24px;
  --shadow-sm: 0 2px 10px rgba(8, 27, 46, .06);
  --shadow-md: 0 12px 34px rgba(8, 27, 46, .10);
  --shadow-lg: 0 24px 60px rgba(8, 27, 46, .16);
  --font-head: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.22;
  letter-spacing: -.015em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* Consistent vertical rhythm between sections */
section { padding: 104px 0; }
section.tight { padding: 64px 0; }
@media (max-width: 760px) {
  section { padding: 64px 0; }
  section.tight { padding: 44px 0; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-700); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700)); border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--blue-200); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 14px; }
@media (max-width: 760px) { .section-head { margin-bottom: 36px; } }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold, .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 45%, var(--blue-800) 100%);
  box-shadow: 0 10px 26px rgba(30, 115, 200, .38), inset 0 1px 0 rgba(255,255,255,.22);
  letter-spacing: .01em;
}
.btn-gold:hover, .btn-primary:hover { color: #fff; box-shadow: 0 14px 32px rgba(30, 115, 200, .5), inset 0 1px 0 rgba(255,255,255,.22); }

.btn-light {
  color: var(--navy-900); background: #fff;
  box-shadow: 0 10px 26px rgba(6, 21, 36, .35);
}
.btn-light:hover { color: var(--blue-700); background: var(--blue-50); }

.btn-wa {
  color: #fff;
  background: linear-gradient(135deg, #2BE070, #1CA84F);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}
.btn-wa:hover { color: #fff; }

.btn-outline {
  color: var(--navy-800); background: transparent;
  border: 1.5px solid rgba(11, 42, 71, .25);
}
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-50); }

.btn-outline-light {
  color: #fff; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover { color: #fff; background: rgba(255,255,255,.14); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950); color: #B8CCE0;
  font-size: .82rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #D7E6F4; }
.topbar a:hover { color: #fff; }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; }
.topbar svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 6px; color: #7FB6EA; }
@media (max-width: 760px) { .topbar .tb-hide { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand svg { height: 46px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a, .nav .drop > button {
  font-family: var(--font-head); font-size: .92rem; font-weight: 600;
  color: var(--navy-800); padding: 10px 14px; border-radius: 10px;
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.nav > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--blue-500); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav > a:hover::after, .nav > a.active::after { transform: scaleX(1); }
.nav > a:hover, .nav .drop > button:hover { color: var(--blue-600); }
.nav > a.active { color: var(--blue-600); }

.drop { position: relative; }
.drop > button svg { width: 12px; height: 12px; transition: transform .2s; }
.drop.open > button svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 300px; background: #fff; border-radius: 14px;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s ease;
}
.drop.open .drop-menu, .drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: block; padding: 11px 14px; border-radius: 10px;
  color: var(--navy-800); font-weight: 600; font-size: .92rem; font-family: var(--font-head);
}
.drop-menu a span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.drop-menu a:hover { background: var(--blue-50); color: var(--blue-700); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 22px; font-size: .88rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; color: var(--navy-800);
}
.nav-toggle svg { width: 26px; height: 26px; }

.nav-cta { display: none; }

@media (max-width: 1080px) {
  /* backdrop-filter would make the header the containing block for the
     fixed menu panel, breaking it — use a solid header on mobile instead */
  .site-header { backdrop-filter: none; background: #fff; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 90px 26px 32px; gap: 4px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s ease, visibility .3s; z-index: 999;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav > a, .nav .drop > button { width: 100%; justify-content: space-between; padding: 14px 12px; font-size: 1rem; }
  .nav > a::after { display: none; }
  .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; display: none; padding: 0 0 0 12px; min-width: 0; }
  .drop.open .drop-menu { display: block; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 1001; }
  .nav-toggle .ic-close { display: none; }
  .nav-toggle[aria-expanded="true"] .ic-open { display: none; }
  .nav-toggle[aria-expanded="true"] .ic-close { display: block; }
  .nav-cta { display: grid; gap: 12px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
  .nav-cta .btn { width: 100%; }
}

/* Very small screens: header CTA moves inside the menu */
@media (max-width: 600px) {
  .header-cta .btn-gold { display: none; }
  .brand svg { height: 38px; }
  .header-inner { padding: 12px 0; }
}

/* ---------- Hero (light, premium) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 460px at 90% -5%, rgba(30,115,200,.16), transparent 62%),
    radial-gradient(640px 420px at -5% 105%, rgba(46,134,222,.10), transparent 58%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
  color: var(--muted); padding: 88px 0 104px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(11,42,71,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.hero h1 { color: var(--navy-900); margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue-500), var(--blue-700) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { max-width: 540px; font-size: 1.08rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cta-note { margin-top: 14px; font-size: .82rem; color: var(--muted); }
.hero-proof {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  color: var(--muted); font-size: .87rem; font-weight: 500; max-width: 540px;
}
.hero-proof b { color: var(--navy-800); font-weight: 600; }
.hero-proof .dotsep { color: var(--blue-200); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; font-family: var(--font-head);
  color: var(--navy-800); background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 9px 16px; border-radius: 999px;
}
.chip svg { width: 14px; height: 14px; color: var(--blue-600); }

.hero-visual { position: relative; }
.hero-visual::after {
  content: ""; position: absolute; left: -34px; bottom: 44px; z-index: -1;
  width: 150px; height: 150px;
  background-image: radial-gradient(var(--blue-200) 2px, transparent 2px);
  background-size: 18px 18px; opacity: .55;
}
.hero-visual .frame {
  position: relative; overflow: hidden;
  border-radius: 200px 200px 28px 28px;
  border: 10px solid #fff; box-shadow: var(--shadow-lg);
}
.hero-visual .frame img { width: 100%; height: 500px; object-fit: cover; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-visual .frame img { animation: heroZoom 22s ease-in-out infinite alternate; }
}
.hero-card {
  position: absolute; left: -36px; bottom: -26px;
  background: #fff; color: var(--navy-900); border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-card .num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  background: linear-gradient(120deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-card .lbl { font-size: .8rem; color: var(--muted); line-height: 1.35; }
.hero-card2 {
  position: absolute; right: -22px; top: 54%;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 13px 18px;
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--navy-900);
}
.hero-card2 .ic {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100)); color: var(--blue-700);
}
.hero-card2 .ic svg { width: 18px; height: 18px; }
.hero-card2 span small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); }

@media (max-width: 980px) {
  .hero { padding: 64px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .hero-visual .frame img { height: 400px; }
  .hero-card { left: 8px; bottom: -24px; padding: 14px 18px; }
  .hero-card2 { right: -6px; top: 10%; }
  .hero-visual::before { right: -20px; top: -30px; width: 130px; height: 130px; border-width: 12px; }
}

/* ---------- Page hero (inner pages — light) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 380px at 92% -10%, rgba(30,115,200,.15), transparent 62%),
    radial-gradient(520px 340px at -5% 110%, rgba(46,134,222,.09), transparent 58%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
  color: var(--muted); padding: 72px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(11,42,71,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--navy-900); max-width: 820px; }
.page-hero p { max-width: 680px; margin-top: 16px; font-size: 1.05rem; }
.page-hero .crumbs { font-size: .82rem; margin-bottom: 18px; color: var(--blue-700); font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; }
.page-hero .crumbs a { color: var(--navy-800); }
.page-hero .crumbs a:hover { color: var(--blue-600); }
.page-hero .crumbs span { margin: 0 8px; color: #B9C4CF; }
.page-hero .hero-actions { margin-top: 28px; }

/* ---------- Stats (dark showcase panel) ---------- */
.stats-band { background: var(--white); padding: 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; overflow: hidden;
  background:
    radial-gradient(520px 260px at 12% 0%, rgba(46,134,222,.35), transparent 60%),
    radial-gradient(460px 240px at 88% 100%, rgba(30,115,200,.28), transparent 60%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 55%, var(--blue-800));
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px rgba(6, 21, 36, .30);
  transform: translateY(-52px); margin-bottom: -52px; z-index: 5;
}
.stats-grid::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(120deg, black, transparent 70%);
}
.stat {
  display: flex; align-items: center; gap: 16px;
  padding: 38px 30px; border-right: 1px solid rgba(255,255,255,.10);
  position: relative; z-index: 1;
}
.stat:last-child { border-right: 0; }
.stat .s-ic {
  flex: none; width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #7FB6EA; transition: transform .3s ease, background .3s ease;
}
.stat .s-ic svg { width: 24px; height: 24px; }
.stat:hover .s-ic { transform: scale(1.1); background: rgba(255,255,255,.14); }
.stat .num {
  font-family: var(--font-head); font-weight: 700; line-height: 1.15;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: #fff;
}
.stat .num .plus { color: #7FB6EA; }
.stat .lbl { color: #9FBBD6; font-size: .84rem; margin-top: 2px; }
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 28px 22px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 560px) {
  .stat { flex-direction: column; text-align: center; gap: 10px; padding: 24px 14px; }
}

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card .icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-700);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s ease, color .35s ease;
}
.card:hover .icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, var(--blue-100), #CFE4F7);
  color: var(--blue-700);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card .card-link {
  margin-top: 20px; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600);
}
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }

.card.dark {
  background: linear-gradient(150deg, var(--navy-900), var(--blue-800));
  border: 0; color: #C9DCEF;
}
.card.dark h3 { color: #fff; }
.card.dark p { color: #B8CCE0; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  transition: transform .55s ease, box-shadow .55s ease;
}
.split-media:hover img { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.split-media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border-radius: var(--radius-lg); z-index: -1;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
}
.split.reverse .split-media::before { inset: 24px 24px -24px -24px; }
.split-body h2 { margin-bottom: 18px; }
.split-body p { color: var(--muted); margin-bottom: 14px; }
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: 320px; }
}

.ticks { list-style: none; margin: 22px 0 8px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.ticks li svg { width: 20px; height: 20px; flex: none; color: var(--blue-600); margin-top: 3px; }
.ticks li span b { font-family: var(--font-head); font-weight: 600; }
.ticks li span small { display: block; color: var(--muted); font-weight: 400; font-size: .9rem; }

/* ---------- Alt band ---------- */
.band { background: linear-gradient(180deg, var(--paper) 0%, #F1F3F6 100%); }
.band-dark {
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(30,115,200,.28), transparent 55%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #B8CCE0;
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .section-head p { color: #9FBBD6; }

/* ---------- Updates + blog preview ---------- */
.updates-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: start; }
@media (max-width: 940px) { .updates-grid { grid-template-columns: 1fr; } }

.updates-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.updates-panel .panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-800));
}
.updates-panel .panel-head h3 { color: #fff; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.updates-panel .panel-head h3 svg { width: 18px; height: 18px; color: var(--blue-200); }
.updates-panel .panel-head .live {
  font-size: .68rem; letter-spacing: .14em; font-weight: 700; color: var(--navy-900);
  background: var(--blue-100); border-radius: 999px; padding: 4px 12px; font-family: var(--font-head);
}
.update-item { display: flex; gap: 16px; padding: 18px 26px; border-bottom: 1px solid var(--line); }
.update-item:last-child { border-bottom: 0; }
.update-item .u-date {
  flex: none; width: 58px; text-align: center; font-family: var(--font-head);
  background: var(--blue-50); border: 1px solid var(--line); border-radius: 12px; padding: 8px 4px; height: fit-content;
}
.update-item .u-date b { display: block; font-size: 1.15rem; color: var(--blue-700); line-height: 1.1; }
.update-item .u-date span { font-size: .68rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.update-item .u-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 4px; font-family: var(--font-head);
}
.update-item h4 { font-size: .98rem; font-weight: 600; }
.update-item h4 a { color: var(--navy-900); }
.update-item h4 a:hover { color: var(--blue-600); }
.update-item p { font-size: .87rem; color: var(--muted); margin-top: 4px; }

.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .thumb .cat {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: rgba(8,27,46,.82); color: #fff; backdrop-filter: blur(4px);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; font-family: var(--font-head);
}
.post-card .body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.post-card h3 { font-size: 1.08rem; line-height: 1.4; }
.post-card h3 a { color: var(--navy-900); }
.post-card h3 a:hover { color: var(--blue-600); }
.post-card p { color: var(--muted); font-size: .9rem; margin-top: 10px; flex: 1; }
.post-card .card-link { margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; display: inline-flex; gap: 8px; align-items: center; }
.post-card .card-link svg { width: 15px; height: 15px; flex: none; }
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 660px) { .post-list { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.testi-track { overflow: hidden; border-radius: var(--radius-lg); }
.testi-slides { display: flex; transition: transform .5s ease; }
.testi {
  flex: 0 0 100%; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 44px 48px; text-align: center;
}
.testi .stars { color: #E8A93C; display: flex; gap: 4px; justify-content: center; margin-bottom: 18px; }
.testi .stars svg { width: 18px; height: 18px; }
.testi blockquote { font-size: 1.16rem; color: var(--navy-800); font-weight: 500; line-height: 1.7; font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.testi .who { margin-top: 22px; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.testi .who span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .84rem; color: var(--muted); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy-800); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.testi-nav button:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.testi-nav button svg { width: 18px; height: 18px; }
@media (max-width: 660px) { .testi { padding: 32px 24px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: border-color .2s;
}
.faq.open { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 26px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy-900);
}
.faq button .fx {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s, color .25s;
}
.faq.open button .fx { transform: rotate(45deg); background: var(--blue-600); color: #fff; }
.faq .fa { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq .fa p { padding: 0 26px 22px; color: var(--muted); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(46,134,222,.30), transparent 60%),
    linear-gradient(135deg, var(--blue-800), var(--navy-900));
  color: #C9DCEF; padding: 64px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; max-width: 520px; }
.cta-band p { max-width: 520px; margin-top: 12px; color: #9FBBD6; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) { .cta-band { padding: 44px 30px; } }

/* ---------- Service detail ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 980px) { .service-layout { grid-template-columns: 1fr; } }
.service-body h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--muted); margin-bottom: 14px; }
.service-body img { border-radius: var(--radius-lg); margin: 10px 0 20px; box-shadow: var(--shadow-sm); width: 100%; height: 380px; object-fit: cover; }

.side-panel { position: sticky; top: 110px; display: grid; gap: 22px; }
.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 1.02rem; margin-bottom: 16px; }
.side-card .side-links { display: grid; gap: 4px; }
.side-card .side-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px; border-radius: 10px; color: var(--navy-800);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
}
.side-card .side-links a:hover, .side-card .side-links a.active { background: var(--blue-50); color: var(--blue-700); }
.side-card .side-links a svg { width: 14px; height: 14px; }
.side-card.dark {
  background: linear-gradient(150deg, var(--navy-900), var(--blue-800));
  border: 0; color: #C9DCEF; text-align: center;
}
.side-card.dark h3 { color: #fff; }
.side-card.dark p { font-size: .9rem; color: #9FBBD6; margin-bottom: 18px; }
.side-card.dark .btn { width: 100%; }
.side-card.dark .btn + .btn { margin-top: 10px; }

/* ---------- Feature rows ---------- */
.feature-row {
  display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row .fnum {
  flex: none; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100)); color: var(--blue-700);
}
.feature-row h3 { margin-bottom: 6px; font-size: 1.1rem; }
.feature-row p { color: var(--muted); font-size: .95rem; }

/* ---------- Blog article ---------- */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: .88rem; margin-bottom: 26px; flex-wrap: wrap; }
.article-meta .cat { background: var(--blue-50); color: var(--blue-700); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; font-family: var(--font-head); }
.article-cover { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 40px; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.article-body h3 { margin: 28px 0 10px; }
.article-body p { color: #33475B; margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; color: #33475B; }
.article-body li { margin-bottom: 8px; }
.article-body .note {
  background: var(--blue-50); border-left: 4px solid var(--blue-600);
  border-radius: 0 14px 14px 0; padding: 18px 22px; margin: 26px 0; font-size: .93rem; color: var(--navy-800);
}
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 12px 16px; text-align: left; }
.article-body th { background: var(--blue-50); font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 18px; }
.info-tile {
  display: flex; gap: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px 26px; align-items: flex-start;
}
.info-tile .icon {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100)); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
}
.info-tile .icon svg { width: 22px; height: 22px; }
.info-tile h3 { font-size: .98rem; margin-bottom: 4px; }
.info-tile p, .info-tile a { font-size: .92rem; color: var(--muted); }
.info-tile a:hover { color: var(--blue-600); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; margin-bottom: 8px; color: var(--navy-900); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--blue-50); transition: border-color .2s, background .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.form-alert { border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; font-size: .92rem; display: none; }
.form-alert.ok { display: block; background: #E8F8EE; color: #14713C; border: 1px solid #B9E6C9; }
.form-alert.err { display: block; background: #FDEEEE; color: #A32020; border: 1px solid #F2C4C4; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ---------- Locations ---------- */
.loc-card .addr { color: var(--muted); font-size: .92rem; margin: 6px 0 14px; }
.loc-card .loc-meta { display: grid; gap: 8px; font-size: .9rem; margin-bottom: 6px; }
.loc-card .loc-meta a, .loc-card .loc-meta span { display: flex; gap: 10px; align-items: center; color: var(--ink); }
.loc-card .loc-meta svg { width: 16px; height: 16px; color: var(--blue-600); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #8FA9C2; font-size: .92rem; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 44px; padding: 70px 0 50px;
}
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer .brand svg { height: 44px; }
.footer-blurb { margin: 20px 0; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: #C9DCEF; border: 1px solid rgba(255,255,255,.1); transition: all .2s;
}
.footer-social a:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.footer-social svg { width: 17px; height: 17px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 20px; letter-spacing: .02em; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { color: #8FA9C2; transition: color .2s ease, padding-left .25s ease; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact { list-style: none; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: #7FB6EA; }
.footer-contact a { color: #C9DCEF; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem;
}
.footer-bottom a { color: #8FA9C2; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #2BE070, #1CA84F);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6); animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Reveal & entrance animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .page-hero .crumbs { animation: fadeUp .7s .05s both; }
  .hero h1, .page-hero h1 { animation: fadeUp .8s .12s both; }
  .hero p, .page-hero p { animation: fadeUp .8s .22s both; }
  .hero .hero-actions, .page-hero .hero-actions { animation: fadeUp .8s .32s both; }
  .hero .hero-trust { animation: fadeUp .8s .42s both; }
  .hero-visual { animation: fadeUp .9s .3s both; }
  .hero-card { animation: floaty 5.5s ease-in-out 1.4s infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile centering (premium symmetric layout on phones) ---------- */
@media (max-width: 760px) {
  .hero, .page-hero { text-align: center; }
  .hero p, .page-hero p { margin-inline: auto; }
  .hero-actions, .hero-trust, .hero-proof, .cta-band .cta-actions { justify-content: center; }
  .hero-proof { margin-inline: auto; }
  .hero-card { left: 50%; transform: translateX(-50%); }
  @keyframes floaty {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-9px); }
  }
  .section-head { text-align: center; margin-inline: auto; }
  .split-body { text-align: center; }
  .split-body .ticks { text-align: left; max-width: 460px; margin-inline: auto; }
  .card { text-align: center; }
  .card .icon { margin-inline: auto; }
  .card .card-link { justify-content: center; }
  .cta-band { text-align: center; justify-content: center; }
  .cta-band h2, .cta-band p { margin-inline: auto; }
  .loc-card .loc-meta a, .loc-card .loc-meta span { justify-content: center; }
  .testi-wrap { text-align: center; }
}
@media (max-width: 620px) {
  .footer-top { text-align: center; }
  .site-footer .brand { justify-content: center; width: 100%; }
  .footer-blurb { margin-inline: auto; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- 404 ---------- */
.err-page { text-align: center; padding: 120px 0; }
.err-page .code {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(5rem, 14vw, 9rem);
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.err-page p { color: var(--muted); margin: 18px auto 30px; max-width: 420px; }
