/* =====================================================
   FORTUNEMAKERS — GLOBAL STYLES
   ===================================================== */

:root {
  --navy:      #020b23;
  --gold:      #e8b92de3;
  --gold-dark: #c29f3e;
  --gold-lt:   #fdf3d0;
  --white:     #ffffff;
  --cream:     #f8f6f0;
  --muted:     rgba(0,15,60,.65);
  --line:      rgba(0,15,60,.08);
  --shadow:    0 24px 60px -20px rgba(0,15,60,.28);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

/* ---- Typography helpers ---- */
.display, h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -.02em;
}

/* ---- Layout ---- */
.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

/* ---- Skip link ---- */
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  padding: 10px 16px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 14px; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announcement {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.announcement .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ann-copy { display: flex; align-items: center; gap: 10px; }
.ann-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(225,180,45,.18); color: var(--gold);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}
.ann-pill svg { width: 12px; height: 12px; }
.ann-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.8); font-weight: 600;
  transition: color .2s;
}
.ann-link:hover { color: var(--gold); }
.ann-link svg { width: 14px; height: 14px; }

/* =====================================================
   NAVBAR
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: 72px; background: var(--white);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 16px 40px -28px rgba(0,15,60,.22);
}
.navbar {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 900; color: var(--navy);
  letter-spacing: -.02em;
}
.brand-name span { color: var(--gold); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  position: relative;
  font-size: 14px; font-weight: 600;
  color: rgba(0,15,60,.72);
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 800;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #001a6e; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: transparent;
  color: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 13px 28px;
  border: 2px solid transparent; border-radius: 999px;
  font-size: 15px; font-weight: 800; white-space: nowrap;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 16px 32px -16px rgba(225,180,45,.8);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #001a6e; }

.btn-outline {
  border-color: var(--navy); color: var(--navy); background: transparent;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-white {
  border-color: rgba(255,255,255,.35); color: #fff; background: transparent;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }

.btn-whatsapp { background: #10b981; color: #fff; }
.btn-whatsapp:hover { background: #059669; }

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: rgba(255,255,255,.4);
  pointer-events: none;
  animation: ripple-anim .55s ease-out forwards;
}
@keyframes ripple-anim {
  to { transform: translate(-50%,-50%) scale(8); opacity: 0; }
}

/* =====================================================
   SECTIONS (shared)
   ===================================================== */
.section { padding: 96px 0; }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-navy   { background: var(--navy); color: #fff; }

.kicker {
  font-size: 12px; font-weight: 900;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title { font-size: clamp(36px,4vw,54px); font-weight: 900; line-height: 1.06; }
.section-title span { color: var(--gold); }
.section-sub {
  margin-top: 16px; max-width: 520px;
  color: var(--muted); font-size: 16px; line-height: 1.6;
}

/* dot-grid overlay */
.dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.dot-grid-dark {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,15,60,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 110px;
  background: var(--navy); color: #fff;
}
.page-hero .dot-grid { opacity: .5; }
.page-hero .blob {
  position: absolute; border-radius: 50%;
  filter: blur(40px); pointer-events: none;
}
.blob-gold {
  width: 320px; height: 320px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(225,180,45,.3), transparent 70%);
}
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.5); font-size: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 {
  font-size: clamp(38px,5vw,64px); font-weight: 900; line-height: 1.05;
  max-width: 820px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero .lead {
  margin-top: 22px; max-width: 640px;
  color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.6;
}

/* =====================================================
   HERO (home)
   ===================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: 64px 0 80px;
  background: var(--white);
}
.hero .dot-grid-dark { z-index: 0; }
.hero .container { position: relative; z-index: 1; }

.hero-badges {
  display: flex; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--gold-lt); color: var(--navy);
  font-size: 13px; font-weight: 800;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.hero-badge.tag-agency {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.hero-badge .ring {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--navy);
  box-shadow: inset 0 0 0 3px var(--gold-lt), inset 0 0 0 5px var(--navy);
}

.hero h1 {
  text-align: center;
  font-size: clamp(48px,5.5vw,96px);
  font-weight: 900; line-height: .98;
  color: var(--navy);
}
.hero h1 span { display: block; color: var(--gold); margin-top: 8px; }

.hero-lead {
  text-align: center; max-width: 800px; margin: 30px auto 0;
  font-size: 19px; line-height: 1.55; color: var(--muted);
}
.hero-lead strong { color: var(--gold); }

.hero-actions {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 42px;
}
.hero-actions .btn-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  padding: 4px 10px; border-radius: 999px;
  background: var(--navy); color: var(--gold);
  font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,15,60,.15);
}.btn-consultation{
    position:relative;
    padding:18px 36px;
    overflow:visible;
}
/* Dashboard mockup */
.dashboard-wrap {
  position: relative;
  max-width: 1020px; margin: 80px auto 0;
}
.blob-layer {
  position: absolute; inset: -40px; pointer-events: none; z-index: 0;
}
.blob-gold-sm {
  position: absolute; width: 280px; height: 280px;
  left: -40px; top: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,180,45,.24), transparent 70%);
  filter: blur(36px);
}
.blob-navy-sm {
  position: absolute; width: 300px; height: 300px;
  right: -40px; bottom: -50px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,15,60,.32), transparent 70%);
  filter: blur(36px);
}
.browser-frame {
  position: relative; z-index: 1;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.22);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 16px;
  background: var(--cream); border-bottom: 1px solid rgba(0,0,0,.06);
}
.b-dot { width: 11px; height: 11px; border-radius: 50%; }
.b-dot.r { background: #f87171; }
.b-dot.y { background: #fbbf24; }
.b-dot.g { background: #34d399; }
.browser-addr {
  flex: 1; max-width: 420px; height: 26px;
  margin: 0 auto; border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06); background: #fff;
  display: grid; place-items: center;
  color: rgba(0,15,60,.55); font-size: 11px; font-weight: 700;
}

/* Dashboard layout */
.dash {
  display: grid; grid-template-columns: 200px 1fr;
  min-height: 360px; background: var(--cream);
}
.dash-sidebar {
  background: var(--navy); color: rgba(255,255,255,.9);
  padding: 18px 14px; display: flex; flex-direction: column; gap: 4px;
}
.dash-logo {
  display: flex; align-items: center; gap: 8px;
  margin: 0 6px 14px; font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 900;
}
.dash-logo-mark {
  width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(225,180,45,.18); color: var(--gold);
}
.dash-logo-mark svg { width: 14px; height: 14px; }
.dash-nav {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,.65);
}
.dash-nav svg { width: 15px; height: 15px; flex-shrink: 0; }
.dash-nav.active { background: var(--gold); color: var(--navy); }

.dash-main { padding: 22px; }
.dash-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.dash-head h4 { font-size: 17px; font-weight: 900; color: var(--navy); }
.dash-head p { font-size: 11px; color: var(--muted); margin-top: 2px; }
.search-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06); background: #fff;
  font-size: 11px; color: var(--muted);
}
.search-pill svg { width: 12px; height: 12px; }

.metric-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-top: 24px;
}
.metric {
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.05); border-radius: 10px; background: #fff;
}
.metric .m-label {
  font-size: 10px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(0,15,60,.5);
}
.metric .m-val {
  font-family: 'Manrope', sans-serif;
  font-size: 30px; font-weight: 900; line-height: 1;
  color: var(--navy); margin-top: 6px;
}
.metric .m-val.gold { color: var(--gold-dark); }
.metric .m-sub { font-size: 11px; margin-top: 5px; color: var(--muted); }
.metric .m-sub.up { color: var(--gold-dark); }
.metric .m-sub svg { width: 11px; height: 11px; }

.chart-card {
  margin-top: 16px; padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.05); border-radius: 10px; background: #fff;
}
.chart-head { display: flex; justify-content: space-between; margin-bottom: 8px; }
.chart-head strong { font-size: 12px; color: var(--navy); }
.chart-head span { font-size: 10px; color: var(--muted); }
.chart-card svg { width: 100%; height: 78px; display: block; }

/* Hero stats */
.hero-stats {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-top: 36px;
  color: var(--muted); font-size: 14px;
}
.hero-stats .sep { color: rgba(0,15,60,.2); }
.stat strong {
  font-family: 'Manrope', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--navy);
}

/* Market cards */
.market-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; margin-top: 36px;
  max-width: 900px; margin-inline: auto;
}
.market-card {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,.06); border-radius: 12px; background: #fff;
}
.market-card .m-check { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.market-card .m-check svg { width: 20px; height: 20px; }
.market-card strong { display: block; font-size: 14px; }
.market-card span { display: block; font-size: 12px; color: var(--muted); }
.market-card em {
  margin-left: auto; flex-shrink: 0;
  font-size: 10px; font-style: normal; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-dark);
}

/* Partner logos */
.partner-on {
  margin-top: 38px; text-align: center;
  max-width: 900px; margin-inline: auto;
}
.partner-on p {
  font-size: 11px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(0,15,60,.45); margin-bottom: 14px;
}
.partner-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.partner-logos img {
  height: 70px; object-fit: contain;

}
.partner-logos img:hover { opacity: 1; filter: none; }

/* =====================================================
   FEATURE CARDS (home)
   ===================================================== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.feature-card {
  display: block; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: var(--cream);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225,180,45,.3);
  box-shadow: 0 24px 56px -18px rgba(225,180,45,.18);
}
.feature-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s;
}
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,15,60,.72), rgba(0,15,60,.12), transparent);
}
.feature-img-top {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
}
.f-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
}
.f-label svg { width: 12px; height: 12px; }
.f-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: grid; place-items: center;
  transition: background .2s;
}
.f-arrow svg { width: 15px; height: 15px; }
.feature-card:hover .f-arrow { background: var(--gold); }
.f-index {
  position: absolute; left: 18px; bottom: 14px; z-index: 1;
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
}
.feature-body { padding: 26px; }
.feature-body h3 { font-size: 22px; font-weight: 900; line-height: 1.18; }
.feature-body p { margin-top: 11px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.f-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 14px; font-weight: 800;
  color: var(--navy); transition: color .2s;
}
.f-link svg { width: 14px; height: 14px; }
.feature-card:hover .f-link { color: var(--gold); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  position: relative; overflow: hidden;
  padding: 96px 0; text-align: center; color: #fff;
}
.cta-band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  
}
.cta-band .dot-grid { z-index: 1; opacity: .3; }
.cta-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(36px,5vw,60px); font-weight: 900; line-height: 1.06;
}
.cta-content h2 span { color: var(--gold); }
.cta-content p { margin: 22px auto 0; max-width: 660px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.6; }
.cta-actions {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 36px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  position: relative; overflow: hidden;
  padding: 80px 0 32px; background: var(--navy); color: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: 5fr 3fr 2fr 2fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  margin-top: 16px; max-width: 360px;
  color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7;
}
.footer-brand-logos{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:24px;
    flex-wrap:wrap;
}

.footer-brand-logos img{
    height:32px;
    width:auto;
    object-fit:contain;
    opacity:.85;
    transition:.3s ease;
}

.footer-brand-logos img:hover{
    opacity:1;
    transform:translateY(-2px);
}
.footer .brand-name{
    color:var(--gold);
}
.footer-col h3 {
  font-size: 11px; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  color: rgba(255,255,255,.7); font-size: 14px;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 28px; color: rgba(255,255,255,.4); font-size: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }

.footer-social{
    display:flex;
    align-items:center;
    gap:24px;
    margin-top:24px;
}

.footer-social a{
    color:var(--gold);
    transition:all .3s ease;
}

.footer-social a svg{
    width:20px;
    height:20px;
    stroke-width:2;
}

.footer-social a:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
}
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(16,185,129,.45);
  animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(1.75); opacity: 0; }
}
.wa-core {
  position: relative; width: 54px; height: 54px;
  border-radius: 50%; background: #10b981; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 20px 40px -12px rgba(16,185,129,.55);
}
.wa-core svg { width: 26px; height: 26px; }
.wa-tip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  padding: 7px 12px; border-radius: 999px;
  background: #fff; color: var(--navy);
  font-size: 12px; font-weight: 800; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,15,60,.14);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: start;
}
.about-media { position: sticky; top: 110px; }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute;
  left: -14px; top: -14px; z-index: -1;
  width: 88px; height: 88px; border-radius: 14px;
  background: var(--gold);
}
.about-img-wrap img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow);
}
.about-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 28px;
}
.about-stat strong {
  font-family: 'Manrope', sans-serif;
  font-size: 56px; font-weight: 900; line-height: 1;
  color: var(--navy);
}
.about-stat p { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }

.about-copy h2 { font-size: clamp(36px,4vw,52px); font-weight: 900; line-height: 1.06; }
.about-copy h2 span { color: var(--gold); }
.about-copy > p { margin-top: 22px; font-size: 17px; line-height: 1.65; color: var(--muted); }

.pillar-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 28px; margin-top: 36px;
}
.pillar { display: flex; gap: 11px; }
.pillar-check {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: 2px;
  border-radius: 50%; background: var(--gold-lt); color: var(--gold);
  display: grid; place-items: center;
}
.pillar-check svg { width: 14px; height: 14px; }
.pillar h3 { font-size: 16px; font-weight: 900; }
.pillar p { margin-top: 5px; font-size: 13px; line-height: 1.6; color: var(--muted); }

.about-section{
    position:relative;
    overflow:hidden;
}

.about-bg{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:space-between;
    pointer-events:none;
    z-index:0;
}

.bg-column{
    width:32%;
    display:flex;
    flex-direction:column;
    gap:40px;
    opacity:.12;
}

.bg-column img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    filter:blur(.3px);
}

.left{
    animation:scrollUp 28s linear infinite;
}

.center{
    animation:scrollDown 34s linear infinite;
}

.right{
    animation:scrollUp 30s linear infinite;
}

@keyframes scrollUp{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-45%);
    }

}

@keyframes scrollDown{

    from{
        transform:translateY(-45%);
    }

    to{
        transform:translateY(0);
    }

}

/* =====================================================
   SERVICES
   ===================================================== */
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  margin-bottom: 44px;
}
.section-header .section-sub { margin-top: 0; }

.service-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.service-card {
  padding: 26px; border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06); background: #fff;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 20px;
}
.icon-box {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-lt); color: var(--gold);
  display: grid; place-items: center;
}
.icon-box svg { width: 22px; height: 22px; }
.tag-pill {
  padding: 4px 10px; border-radius: 999px;
  background: var(--cream); color: var(--muted);
  font-size: 10px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
}
.service-card h3 { font-size: 18px; font-weight: 900; }
.service-card p { margin-top: 10px; font-size: 13px; line-height: 1.62; color: var(--muted); }

/* How it works steps */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.step-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  transition: border-color .2s;
}
.step-card:hover { border-color: rgba(225,180,45,.45); }
.step-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 46px; font-weight: 900; line-height: 1;
  color: var(--gold);
}
.step-card svg { width: 16px; height: 16px; color: rgba(255,255,255,.5); }
.step-card h3 { font-size: 18px; font-weight: 900; color: #fff; }
.step-card p { margin-top: 10px; font-size: 13px; line-height: 1.62; color: rgba(255,255,255,.65); }

/* =====================================================
   PRODUCTS
   ===================================================== */
.catalog-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; margin-bottom: 36px;
}
.filters {
  display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px;
}
.filter-pill {
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.1); background: #fff;
  font-size: 13px; font-weight: 800; color: var(--navy);
  transition: background .2s, color .2s, border-color .2s;
}
.filter-pill .count {
  margin-left: 7px; font-size: 11px; color: rgba(0,15,60,.4);
}
.filter-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.filter-pill.active .count { color: var(--gold); }

.cat-banner {
  position: relative; overflow: hidden;
  height: 210px; border-radius: 14px; margin-bottom: 28px;
}
.cat-banner img { width: 100%; height: 100%; object-fit: cover; }
.cat-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,15,60,.85), rgba(0,15,60,.4), transparent);
}
.cat-banner-text {
  position: absolute; left: 36px; top: 50%; z-index: 1;
  transform: translateY(-50%);
}
.cat-banner-text p {
  font-size: 11px; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px;
}
.cat-banner-text h3 { font-size: 38px; font-weight: 900; color: #fff; }

.product-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.product-card {
  padding: 18px; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06); background: #fff;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -12px rgba(0,15,60,.14); }
.product-card-head {
  display: flex; justify-content: space-between; margin-bottom: 14px;
}
.product-card h3 {
  font-size: 14px; font-weight: 900; line-height: 1.35;
  min-height: 38px;
}
.price { display: flex; align-items: baseline; gap: 3px; margin-top: 12px; }
.price strong { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 900; }
.price span { font-size: 12px; color: var(--muted); }
.badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.badge { padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 800; }
.badge-gold    { color: #92400e; background: var(--gold-lt); }
.badge-rose    { color: #be123c; background: #ffe4e6; }
.badge-green   { color: #065f46; background: #d1fae5; }
.badge-slate   { color: #475569; background: #f1f5f9; }
.badge-orange  { color: #c2410c; background: #ffedd5; }
.badge-indigo  { color: #4338ca; background: #e0e7ff; }
.badge-purple  { color: #7e22ce; background: #f3e8ff; }
.badge-pink    { color: #be185d; background: #fce7f3; }
.badge-dark    { color: var(--gold); background: var(--navy); }
.catalog-note  { margin-top: 28px; text-align: center; font-size: 12px; font-style: italic; color: var(--muted); }

/* =====================================================
   EDUCATION
   ===================================================== */
.edu-layout {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 56px; align-items: start; margin-bottom: 60px;
}
.edu-img {
  position: relative; overflow: hidden;
  height: 280px; border-radius: 14px;
}
.edu-img img { width: 100%; height: 100%; object-fit: cover; }
.edu-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,15,60,.85), transparent);
}
.edu-img-caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 1; color: #fff;
}
.edu-img-caption h3 { font-size: 20px; font-weight: 900; }
.edu-img-caption p { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }

.edu-features {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.edu-card {
  padding: 22px; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06); background: #fff;
  transition: transform .25s, box-shadow .25s;
}
.edu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.edu-card h3 { font-size: 16px; font-weight: 900; margin-top: 12px; }
.edu-card p { margin-top: 8px; font-size: 13px; line-height: 1.6; color: var(--muted); }

.modules-table {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.07); margin-top: 44px;
}
.modules-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; background: var(--navy); color: #fff;
}
.modules-head h3 { font-size: 17px; font-weight: 900; }
.modules-head span { font-size: 11px; color: var(--gold); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.module-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 28px; border-top: 1px solid rgba(0,0,0,.06);
  background: #fff; transition: background .2s;
}
.module-row:hover { background: var(--cream); }
.module-row-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.module-num {
  width: 36px; flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--gold);
}
.module-info strong { display: block; font-weight: 900; font-size: 15px; }
.module-info span { display: block; font-size: 13px; color: var(--muted); margin-top: 1px; }
.level-badge {
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.level-beginner     { color: var(--navy); background: var(--gold-lt); }
.level-intermediate { color: var(--navy); background: rgba(0,15,60,.08); }
.level-advanced     { color: #92400e; background: var(--gold-lt); }
.level-pro          { color: var(--gold); background: var(--navy); }

/* =====================================================
   WHY US
   ===================================================== */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(0,0,0,.07);
  border-radius: 22px; overflow: hidden;
}
.why-card { padding: 38px; background: #fff; transition: background .2s; }
.why-card:hover { background: var(--cream); }
.why-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.why-num {
  font-family: 'Manrope', sans-serif;
  font-size: 68px; font-weight: 900; line-height: .8; color: var(--gold);
}
.why-rule { width: 36px; height: 1px; margin-top: 28px; background: rgba(0,15,60,.14); }
.why-card h3 { font-size: 19px; font-weight: 900; }
.why-card p { margin-top: 10px; font-size: 13px; line-height: 1.62; color: var(--muted); }

/* Testimonials */
.testimonials-intro { text-align: center; margin-bottom: 52px; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.testimonial-card {
  padding: 26px; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06); background: #fff;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 15px; height: 15px; color: var(--gold); fill: var(--gold); }
.testimonial-card blockquote {
  flex: 1; font-size: 14px; line-height: 1.65;
  color: rgba(0,15,60,.8); font-style: normal;
}
.t-author {
  display: flex; align-items: center; gap: 11px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-lt); color: var(--navy);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(225,180,45,.2);
}
.t-author strong { display: block; font-size: 14px; }
.t-author span   { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 44px;
}
.contact-form-wrap {
  padding: 36px; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.07); background: var(--cream);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: block; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 11px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid rgba(0,15,60,.12); border-radius: 10px;
  background: #fff; color: var(--navy);
  font-size: 14px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: none; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(225,180,45,.15);
}
.form-submit { margin-top: 24px; width: 100%; }
.secure-note {
  display: flex; align-items: center; gap: 7px;
  margin-top: 16px; font-size: 12px; color: var(--muted);
}
.secure-note svg { width: 13px; height: 13px; flex-shrink: 0; }
.form-status { margin-top: 12px; font-size: 13px; font-weight: 700; min-height: 20px; }
.form-status.success { color: var(--gold-dark); }
.form-status.error   { color: #dc2626; }

.contact-panel { display: flex; flex-direction: column; gap: 18px; }
.info-panel {
  padding: 28px; border-radius: 14px;
  background: var(--navy); color: #fff;
}
.info-block + .info-block { margin-top: 18px; }
.info-block { display: flex; gap: 14px; }
.info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px; background: rgba(255,255,255,.1);
  color: var(--gold); display: grid; place-items: center;
}
.info-icon svg { width: 17px; height: 17px; }
.info-text small {
  display: block; font-size: 10px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.info-text p { margin-top: 4px; font-size: 13px; line-height: 1.55; }
.map-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
}
.map-card iframe { width: 100%; height: 230px; border: 0; display: block; }
.map-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; background: var(--cream);
  font-size: 13px; font-weight: 800; color: var(--navy);
  transition: background .2s;
}
.map-link:hover { background: var(--gold-lt); }
.map-link svg { width: 14px; height: 14px; }

/* =====================================================
   404
   ===================================================== */
.not-found {
  min-height: 80vh;
  display: grid; place-items: center;
  text-align: center; padding: 80px 20px;
}
.not-found-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(80px,12vw,120px);
  font-weight: 900; color: var(--gold); line-height: 1;
}
.not-found h1 { font-size: 38px; font-weight: 900; margin-top: 14px; }
.not-found p { margin-top: 12px; max-width: 420px; color: var(--muted); }
.not-found .btn { margin-top: 28px; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}
@keyframes marqueeRev {
  from { transform: translate3d(-50%,0,0); }
  to   { transform: translate3d(0,0,0); }
}

.reveal {
  opacity: 0; transform: translateY(22px);
}
.reveal.visible {
  animation: revealUp .55s ease forwards;
}
.reveal.d1.visible { animation-delay: .06s; }
.reveal.d2.visible { animation-delay: .14s; }
.reveal.d3.visible { animation-delay: .22s; }

.page-in { animation: pageIn .35s ease both; }

/* Marquee strips (page hero) */
.marquee-bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; gap: 24px;
  pointer-events: none; overflow: hidden;
}

.marquee-strip {
  display: flex; width: max-content;
  gap: 52px; align-items: center; opacity: .35;
  animation: marquee 48s linear infinite;
}
.marquee-strip.rev { animation-name: marqueeRev; opacity: .15; }
.marquee-strip img {
  height: 70px; object-fit: contain;
 
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed; top: 116px; left: 0; right: 0; z-index: 49;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 18px 22px;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(0,15,60,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 10px; font-size: 16px; border-radius: 8px; }
  .nav-links a:hover, .nav-links a.active { background: var(--cream); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .feature-grid,
  .service-grid, .steps-grid,
  .why-grid, .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .edu-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-media { position: static; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .market-grid  { grid-template-columns: 1fr 1fr; }
  .metric-grid  { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1280px); }
  .section { padding: 72px 0; }
  .cta-band { padding: 72px 0; }
  .page-hero { padding: 60px 0 80px; }

  .ann-link { display: none; }
  .brand-name { display: none; }
  .nav-cta { display: none; }

  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: clamp(38px,12vw,62px); }
  .hero-lead { font-size: 16px; }
  .dashboard-wrap { margin-top: 52px; }
  .dash { grid-template-columns: 68px 1fr; }
  .dash-logo span:last-child,
  .dash-nav span { display: none; }
  .dash-logo { justify-content: center; margin-bottom: 12px; }
  .dash-nav { justify-content: center; }
  .search-pill { display: none; }
  .hero-stats .sep { display: none; }

  .feature-grid, .service-grid, .steps-grid,
  .why-grid, .testimonial-grid,
  .product-grid, .pillar-grid,
  .edu-features, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .catalog-head   { flex-direction: column; align-items: flex-start; }

  .about-img-wrap img { height: 300px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat strong { font-size: 44px; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .wa-tip { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(36px,11vw,54px); }
  .product-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; max-width: 320px; }
  .cta-actions .btn { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
/* =====================================================
   ABOUT PAGE — SCROLLING IMAGE BACKGROUND
   ===================================================== */
.about-section { padding-top: 96px; padding-bottom: 96px; }
 
.about-img-scroll-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
 
.about-img-track {
  display: flex;
  
  height: 100%;
  width: max-content;
  animation: imgScrollBg 36s linear infinite;
  will-change: transform;
}
 
@keyframes imgScrollBg {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
 
.about-img-tile {
  width: 400px;
  flex-shrink: 0;
  height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: grayscale(.4);
}
 
.about-img-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  #fff 4%, transparent 22%, transparent 78%, #fff 96%),
    linear-gradient(to bottom, #fff 0%, transparent 18%, transparent 82%, #fff 100%);
}
 
/* Pause scroll if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .about-img-track { animation: none; }
}
 
/* =====================================================
   BRANCHES PAGE
   ===================================================== */
.branches-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
 
.branch-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.branch-status-tag.operating {
  background: rgba(16,185,129,.1);
  color: #065f46;
}
.branch-status-tag.upcoming {
  background: rgba(225,180,45,.15);
  color: #92400e;
}
 
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.operating-dot {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: pulseGreen 1.8s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(16,185,129,.1); }
}
.upcoming-dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(225,180,45,.25);
}
 
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
 
.branch-card {
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.07);
  background: var(--cream);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px -20px rgba(0,15,60,.18);
  border-color: rgba(225,180,45,.3);
}
.branch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.branch-num {
  font-family: 'Manrope', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,15,60,.08);
}
.branch-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-lt);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.branch-icon svg { width: 26px; height: 26px; }
 
.branch-card h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}
.branch-state {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
}
.branch-card address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0,15,60,.72);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 22px;
}
.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  width: fit-content;
  margin-top: auto;
  transition: background .2s, transform .2s;
}
.branch-phone:hover { background: #001a6e; transform: translateY(-1px); }
.branch-phone svg { width: 15px; height: 15px; }
 
/* Upcoming grid */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.upcoming-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.upcoming-card:hover { background: rgba(255,255,255,.1); border-color: rgba(225,180,45,.35); }
.upcoming-dot-sm {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(225,180,45,.2);
}
.upcoming-more { opacity: .6; font-size: 15px; }
 
/* =====================================================
   TEAM PAGE
   ===================================================== */
 
/* Slide-in animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
.team-slide-left,
.team-slide-right {
  opacity: 0;
}
.team-slide-left.team-card-visible {
  animation: slideInLeft .65s cubic-bezier(.22,1,.36,1) forwards;
}
.team-slide-right.team-card-visible {
  animation: slideInRight .65s cubic-bezier(.22,1,.36,1) forwards;
}
 
.team-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
 
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 40px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.07);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s;
}
.team-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.team-card:hover { box-shadow: 0 20px 60px -20px rgba(0,15,60,.16); }
 
.team-card-avatar {
  flex-shrink: 0;
  position: relative;
  width: 100px;
}
.team-avatar-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c99d20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 32px -10px rgba(225,180,45,.55);
}
.team-avatar-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(225,180,45,.18);
  z-index: 0;
  filter: blur(8px);
}
 
.team-card-body { flex: 1; min-width: 0; }
 
.team-card-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-lt);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card-role-tag svg { width: 13px; height: 13px; flex-shrink: 0; }
 
.team-card h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
}
.team-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
 
.team-card-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px 0;
}
 
.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-card-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,15,60,.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
 
/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -20px rgba(0,15,60,.14); }
.mv-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-lt);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.mv-icon svg { width: 26px; height: 26px; }
.mv-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.mv-card h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}
.mv-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}
 
/* =====================================================
   RESPONSIVE — new pages
   ===================================================== */
@media (max-width: 1024px) {
  .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 760px) {
  .branch-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; gap: 22px; padding: 28px; }
  .team-card-avatar { width: auto; }
  .team-avatar-circle { width: 80px; height: 80px; font-size: 22px; }
  .team-avatar-glow { inset: -6px; }
  .team-card h2 { font-size: 22px; }
  .mv-grid { grid-template-columns: 1fr; }
  .upcoming-grid { grid-template-columns: 1fr 1fr; }
  .about-img-tile { width: 180px; }
}
 
@media (max-width: 480px) {
  .upcoming-grid { grid-template-columns: 1fr; }
}
 
@media (prefers-reduced-motion: reduce) {
  .team-slide-left,
  .team-slide-right { opacity: 1; animation: none; }
}
