:root {
  --bg:          #f4f6fb;
  --bg-2:        #eaedf5;
  --bg-card:     #ffffff;
  --bg-dark:     #0a0f1e;
  --bg-dark-2:   #0f1628;
  --bg-dark-3:   #162038;
  --teal:        #3b82f6;
  --teal-deep:   #1d4ed8;
  --teal-light:  #93c5fd;
  --teal-pale:   #eff6ff;
  --teal-dim:    rgba(59,130,246,.12);
  --teal-glow:   rgba(59,130,246,.22);
  --indigo:      #f97316;
  --indigo-deep: #ea580c;
  --indigo-pale: #fff7ed;
  --indigo-dim:  rgba(249,115,22,.12);
  --rose:        #f59e0b;
  --rose-pale:   #fffbeb;
  --rose-dim:    rgba(245,158,11,.12);
  --amber:       #0ea5e9;
  --amber-pale:  #f0f9ff;
  --text:        #0a0f1e;
  --text-2:      #1e2d4d;
  --text-3:      #5a6a85;
  --text-4:      #8fa3c0;
  --text-inv:    #f0f5ff;
  --border:      rgba(0,0,0,.07);
  --border-2:    rgba(0,0,0,.13);
  --border-teal: rgba(59,130,246,.3);
  --font-h:      serif;
  --font-b:      sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow:    0 2px 12px rgba(10,15,30,.06), 0 1px 3px rgba(10,15,30,.04);
  --shadow-md: 0 8px 32px rgba(10,15,30,.1),  0 2px 8px rgba(10,15,30,.06);
  --shadow-lg: 0 24px 64px rgba(10,15,30,.14),0 4px 16px rgba(10,15,30,.08);
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.34,1.56,.64,1);
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); font-weight: 400; line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit }
ul { list-style: none }

.w { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2 }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: .875rem; font-weight: 600;
  letter-spacing: .01em; transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.15); opacity: 0; transition: opacity .25s; border-radius: inherit; }
.btn:hover::after { opacity: 1 }
.btn-primary { background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 100%); color: #fff; box-shadow: 0 4px 20px rgba(234,88,12,.32); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(234,88,12,.5); transform: translateY(-2px) }
.btn-secondary { background: var(--bg-card); color: var(--text-2); border: 1.5px solid var(--border-2); box-shadow: var(--shadow); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md) }
.btn-indigo { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%); color: #fff; box-shadow: 0 4px 20px rgba(29,78,216,.3); }
.btn-indigo:hover { box-shadow: 0 8px 32px rgba(29,78,216,.45); transform: translateY(-2px) }
.btn-ghost { background: transparent; color: var(--text-3); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--border-2); color: var(--text-2) }
.btn-lg { padding: 15px 38px; font-size: .95rem }
.btn-xl { padding: 18px 48px; font-size: 1rem; border-radius: 100px }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(244,246,251,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 24px rgba(10,15,30,.07);
  height: 72px;
}
.nav.scrolled { height: 62px; }
.nav .w { height: 100%; display: flex; align-items: center; max-width: 1200px; width: 100%; }
.nav-row { display: flex; align-items: center; width: 100%; height: 100%; gap: 0; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 1.25rem; font-weight: 600; color: var(--text); letter-spacing: -.01em; flex-shrink: 0; margin-right: 32px; }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--indigo-deep), var(--indigo)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-b); font-size: .85rem; font-weight: 800; box-shadow: 0 4px 12px rgba(234,88,12,.38); }
.logo em { font-style: italic; color: var(--indigo-deep); }
.logo-img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; height: 100%; }
.nav-links > li { display: flex; align-items: center; height: 100%; position: relative; }
.nav-links > li > a { display: flex; align-items: center; height: 100%; padding: 0 10px; font-size: .82rem; font-weight: 500; color: var(--text-3); transition: color .25s; white-space: nowrap; line-height: 1; }
.nav-links > li > a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: 16px; }
.nav-right .btn { padding: 9px 16px; font-size: .78rem; }
.nav-badge-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-live-badge { display: inline-flex; align-items: center; gap: 4px; padding: 2px 7px; border-radius: 100px; background: var(--indigo-deep); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: .3 } }
.dropdown > a::after { content: "▾"; font-size: .6rem; margin-left: 4px; opacity: .5; display: inline-block; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-md); padding: 6px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s var(--ease); z-index: 1000; pointer-events: none; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-menu li { height: auto; position: relative; display: block; }
.dropdown-menu li a { display: block; height: auto; padding: 10px 16px; font-size: .8rem; font-weight: 400; color: var(--text-2); transition: all .2s ease; line-height: 1.4; }
.dropdown-menu li a:hover { background: var(--indigo-pale); color: var(--indigo-deep); }
.submenu-dropdown { position: absolute; top: 0; left: 100%; min-width: 220px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-md); padding: 6px 0; opacity: 0; visibility: hidden; transform: translateX(8px); transition: all .25s var(--ease); z-index: 1001; pointer-events: none; }
.dropdown-menu li:hover .submenu-dropdown { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }
.submenu > a::after { content: "▸"; float: right; font-size: .6rem; opacity: .5; margin-top: 2px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0 }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
.nav-mobile-drawer { display: none; flex-direction: column; gap: 4px; padding: 16px 0 20px; border-top: 1px solid var(--border); background: rgba(244,246,251,.99); backdrop-filter: blur(20px); position: relative; z-index: 901; }
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px }
.nav-mobile-links a { padding: 11px 8px; font-size: .9rem; font-weight: 500; color: var(--text-2); border-radius: 8px; transition: background .2s, color .2s; }
.nav-mobile-links a:hover { background: var(--indigo-pale); color: var(--indigo-deep) }
.nav-mobile-btns { display: flex; flex-direction: column; gap: 8px }

section { padding: 100px 0; position: relative; z-index: 2 }
.sec-tag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px; background: var(--indigo-dim); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 14px; }
.sec-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo) }
.sec-h { font-family: var(--font-h); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; line-height: 1.1; letter-spacing: -.02em; color: var(--text); }
.sec-h strong { font-weight: 700 }
.sec-h em { font-style: italic; background: linear-gradient(135deg, var(--teal-deep), var(--indigo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sec-sub { font-size: .95rem; color: var(--text-3); line-height: 1.8; margin-top: 12px; max-width: 560px }

.stats-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-top: 1px solid #e0eaff;
  border-bottom: 1px solid #ffe4cc;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(59,130,246,.08), transparent),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(249,115,22,.08), transparent);
  pointer-events: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: none;
}
.stats-section .sec-tag {
  background: rgba(59,130,246,.1);
  color: #1d4ed8;
}
.stats-section .sec-tag .sec-tag-dot {
  background: #3b82f6;
}
.stats-section .sec-h {
  color: #1e293b;
}
.stats-section .sec-sub {
  color: #64748b;
}
.stat-cell {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1.5px solid #e0eaff;
  box-shadow: 0 4px 20px rgba(59,130,246,.07);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #f97316);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.stat-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59,130,246,.12);
  border-color: #bfdbfe;
}
.stat-cell:hover::before {
  transform: scaleX(1);
}
.stat-n {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, #1d4ed8, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.stat-l {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.why-card { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--border); padding: 28px 24px; box-shadow: var(--shadow); transition: all .35s var(--ease); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transition: transform .35s var(--ease); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--indigo) }
.why-card:hover::before { transform: scaleX(1) }
.wc-i::before { background: linear-gradient(90deg, var(--indigo-deep), var(--indigo)) }
.wc-t::before { background: linear-gradient(90deg, var(--teal-deep), var(--teal)) }
.wc-g::before { background: linear-gradient(90deg, #059669, #34d399) }
.why-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.wi-i { background: var(--indigo-dim) }
.wi-t { background: var(--teal-dim) }
.wi-g { background: rgba(5,150,105,.1) }
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px }
.why-card p  { font-size: .83rem; color: var(--text-3); line-height: 1.7 }

.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px }
.tcard { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--border); padding: 28px 24px; box-shadow: var(--shadow); transition: all .35s var(--ease); position: relative; overflow: hidden; }
.tcard::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-deep), var(--indigo)); transform: scaleX(0); transition: transform .35s var(--ease); }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--indigo) }
.tcard:hover::after { transform: scaleX(1) }
.tcard-q { font-size: 3rem; line-height: .8; color: #bfdbfe; font-family: Georgia,serif; margin-bottom: 12px }
.tcard-stars { font-size: .8rem; color: var(--rose); letter-spacing: 2px; margin-bottom: 12px }
.tcard-text { font-family: var(--font-h); font-style: italic; font-size: .95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.tcard-div { height: 1px; background: var(--border); margin-bottom: 16px }
.tcard-author { display: flex; align-items: center; gap: 12px }
.tcard-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: .87rem; font-weight: 700; color: var(--text); margin-bottom: 1px }
.tcard-role { font-size: .72rem; color: var(--text-4) }

.cta-section { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; z-index: 2; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 70% at 20% 50%, rgba(59,130,246,.07), transparent), radial-gradient(ellipse 45% 60% at 80% 50%, rgba(249,115,22,.08), transparent); pointer-events: none; }
.cta-box { text-align: center; padding: 80px 60px; position: relative; z-index: 1; border-radius: var(--radius-xl); background: #fff; border: 1.5px solid var(--border); box-shadow: var(--shadow-lg); }
.cta-box::before,.cta-box::after { content: ''; position: absolute; width: 24px; height: 24px; border-color: rgba(249,115,22,.4); border-style: solid; }
.cta-box::before { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0 }
.cta-box::after  { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0 }
.cta-h { font-family: var(--font-h); font-size: clamp(2.4rem,4.5vw,4rem); font-weight: 300; line-height: 1.08; letter-spacing: -.02em; color: var(--text); margin-bottom: 16px; }
.cta-h em { font-style: italic; background: linear-gradient(135deg, var(--teal-deep), var(--indigo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-h strong { font-weight: 700; }
.cta-p { font-size: 1rem; color: var(--text-3); line-height: 1.8; max-width: 520px; margin: 0 auto 40px }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap }

footer { background: #fff; border-top: 1px solid var(--border); padding: 64px 0 36px; position: relative; z-index: 2; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--indigo)); }
.foot-grid { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.foot-brand p { font-size: .83rem; color: var(--text-3); margin-top: 12px; line-height: 1.75; }
.foot-soc { display: flex; gap: 8px; margin-top: 16px; }
.fsoc { width: 34px; height: 34px; border-radius: 9px; background: var(--bg); border: 1.5px solid var(--border-2); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--text-3); cursor: pointer; transition: all .25s var(--ease); }
.fsoc:hover { background: var(--indigo-pale); border-color: rgba(249,115,22,.35); color: var(--indigo-deep); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249,115,22,.15); }
.foot-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.foot-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--indigo); border-radius: 2px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { font-size: .83rem; color: var(--text-3); transition: color .2s, padding-left .2s; display: inline-flex; align-items: center; gap: 0; }
.foot-col ul a:hover { color: var(--indigo-deep); padding-left: 4px; }
.foot-btm { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: .73rem; color: var(--text-4); flex-wrap: wrap; gap: 12px; }
.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--text-4); transition: color .2s; }
.foot-links a:hover { color: var(--indigo-deep); }

.whatsapp-float { position: fixed; bottom: 40px; right: 20px; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; font-size: 28px; box-shadow: 0 4px 15px rgba(0,0,0,.3); z-index: 10500; animation: bounce 2.5s infinite; display: flex; align-items: center; justify-content: center; }
@keyframes bounce { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: blobFloat 12s ease-in-out infinite; }
.blob-1 { width: 500px; height: 500px; top: -150px; right: -100px; background: rgba(59,130,246,.13); animation-delay: 0s }
.blob-2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: rgba(249,115,22,.1); animation-delay: -5s }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1) } 33% { transform: translate(20px,-30px) scale(1.04) } 66% { transform: translate(-15px,20px) scale(.97) } }

.co-pill { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); font-size: .82rem; font-weight: 500; color: var(--text-3); white-space: nowrap; transition: all .25s; }
.co-pill:hover { border-color: rgba(249,115,22,.35); color: var(--indigo-deep); background: var(--indigo-pale) }
.co-icon { width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; color: #fff; flex-shrink: 0; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr }
  .stats-row { grid-template-columns: 1fr 1fr }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px }
  .nav-links { gap: 2px }
  .nav-links > li > a { padding: 0 7px; font-size: .78rem }
}
@media (max-width: 768px) {
  .nav-links { display: none }
  .nav-right { display: none }
  .nav-hamburger { display: flex }
  .why-grid { grid-template-columns: 1fr }
  .tgrid { grid-template-columns: 1fr }
  .cta-box { padding: 48px 24px }
  .foot-grid { grid-template-columns: 1fr }
  .foot-btm { flex-direction: column; text-align: center }
  .foot-links { justify-content: center }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
}
.hero {
  min-height: 100vh;
  padding: 152px 0 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #e8f0fe 0%, #f4f6fb 45%, #fff7ed 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 460px;
  gap: 72px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 100px;
  background: #fff; border: 1.5px solid rgba(249,115,22,.3);
  box-shadow: var(--shadow);
  font-size: .78rem; font-weight: 600; color: var(--indigo-deep);
  margin-bottom: 24px;
}
.badge-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--indigo-dim); display: flex; align-items: center; justify-content: center; font-size: .7rem; }
.hero-h { font-family: var(--font-h); font-size: clamp(3rem,5.5vw,5rem); font-weight: 300; line-height: 1.05; letter-spacing: -.025em; color: var(--text); margin-bottom: 22px; }
.hero-h strong { font-weight: 700; display: block }
.hero-h em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--teal-deep) 0%, var(--indigo) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; font-weight: 400; color: var(--text-3); line-height: 1.8; max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.proof-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap }
.proof-chip { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); font-size: .78rem; font-weight: 500; color: var(--text-2); }

.hero-card { background: #fff; border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.hero-card-top { height: 4px; background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--indigo)); background-size: 200%; animation: gradShift 4s ease infinite; }
@keyframes gradShift { 0% { background-position: 0% } 100% { background-position: 200% } }
.hc-body { padding: 28px 26px }
.hc-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 10px; }
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); animation: blink 2s infinite }
.hc-title { font-family: var(--font-h); font-size: 1.4rem; font-weight: 600; line-height: 1.25; color: var(--text); margin-bottom: 4px; }
.hc-sub { font-size: .83rem; color: var(--text-3); margin-bottom: 20px; line-height: 1.55 }

.hc-course-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.hc-course-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); transition: all .2s; }
.hc-course-item:hover { background: var(--indigo-pale); border-color: rgba(249,115,22,.25); }
.hc-ci-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.hc-ci-blue   { background: var(--teal-dim); color: var(--teal-deep) }
.hc-ci-orange { background: var(--indigo-dim); color: var(--indigo-deep) }
.hc-ci-teal   { background: rgba(13,148,136,.1); color: #0D9488 }
.hc-ci-purple { background: rgba(139,92,246,.1); color: #7C3AED }
.hc-ci-green  { background: rgba(5,150,105,.1); color: #059669 }
.hc-ci-rose   { background: var(--rose-dim); color: #B45309 }
.hc-ci-name { font-size: .84rem; font-weight: 600; color: var(--text); }
.hc-ci-meta { font-size: .72rem; color: var(--text-4); }
.hc-contact { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--border); }
.hc-contact-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-3); }
.hc-contact-item i { color: var(--teal-deep); font-size: .78rem; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual-wrap { position: relative; }
.about-big-num { font-family: var(--font-h); font-size: 9rem; font-weight: 700; line-height: 1; color: var(--teal-pale); letter-spacing: -4px; user-select: none; }
.about-big-num span { color: var(--teal-deep); }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: -20px; }
.about-stat-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.about-stat-card .asn { font-family: var(--font-h); font-size: 2rem; font-weight: 600; line-height: 1; margin-bottom: 4px; background: linear-gradient(135deg, var(--teal-deep), var(--indigo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-card .asl { font-size: .76rem; color: var(--text-4); font-weight: 500; }
.about-text-col p { font-size: .95rem; color: var(--text-3); line-height: 1.8; margin-bottom: 16px; }
.about-vals { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.av-row { display: flex; align-items: flex-start; gap: 14px; }
.av-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--indigo-dim); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--indigo-deep); flex-shrink: 0; margin-top: 2px; }
.av-t { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 3px; }
.av-d { font-size: .82rem; color: var(--text-3); line-height: 1.6; }

.courses-section { background: var(--bg); }
.br-courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.br-cc { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: all .35s var(--ease); }
.br-cc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transition: transform .35s var(--ease); }
.br-cc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--indigo); }
.br-cc:hover::before { transform: scaleX(1); }
.br-cc.c-t::before { background: linear-gradient(90deg, var(--teal-deep), var(--teal)) }
.br-cc.c-o::before { background: linear-gradient(90deg, var(--indigo-deep), var(--indigo)) }
.br-cc.c-g::before { background: linear-gradient(90deg, #059669, #34d399) }
.br-cc-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 16px; }
.br-cc-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.br-cc-desc { font-size: .82rem; color: var(--text-3); line-height: 1.65; margin-bottom: 16px; }
.br-cc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.br-tag { font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.br-tag-t { background: var(--teal-dim); color: var(--teal-deep) }
.br-tag-o { background: var(--indigo-dim); color: var(--indigo-deep) }
.br-tag-g { background: rgba(5,150,105,.1); color: #059669 }

.course-info-strip { display: flex; gap: 0; margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.cis-item { flex: 1; background: #fff; padding: 22px 20px; text-align: center; border-right: 1px solid var(--border); }
.cis-item:last-child { border-right: none; }
.cis-icon { font-size: 1.3rem; margin-bottom: 8px; display: block; }
.cis-val { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cis-lbl { font-size: .72rem; color: var(--text-4); font-weight: 500; }

.highlights-section { background: #fff; }
.hl-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 48px; }
.hl-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 18px; text-align: center; transition: all .3s var(--ease); }
.hl-card:hover { background: #fff; border-color: var(--indigo); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.hl-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin: 0 auto 14px; background: var(--indigo-dim); color: var(--indigo-deep); }
.hl-card:nth-child(even) .hl-icon { background: var(--teal-dim); color: var(--teal-deep); }
.hl-title { font-weight: 700; font-size: .88rem; color: var(--text); }

.companies-wrap { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.companies-label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-4); margin-bottom: 20px; }
.companies-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); transition: all .25s; }
.contact-item:hover { border-color: var(--indigo); box-shadow: var(--shadow-md); }
.ci-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--teal-dim); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.ci-ico.orange { background: var(--indigo-dim); color: var(--indigo-deep); }
.ci-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-4); margin-bottom: 4px; }
.ci-val { font-weight: 600; font-size: .92rem; color: var(--text); }
.qr-box { margin-top: 8px; padding: 22px; text-align: center; background: var(--teal-pale); border-radius: var(--radius); border: 2px dashed var(--border-teal); }
.qr-icon { width: 80px; height: 80px; background: #fff; border-radius: 10px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--teal-deep); box-shadow: var(--shadow); }
.qr-box p { font-size: .78rem; color: var(--teal-deep); font-weight: 600; }

.contact-form-box { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-md); }
.contact-form-box h3 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.contact-form-box > p { font-size: .84rem; color: var(--text-3); margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fl { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-4); margin-bottom: 6px; }
.fi, .fsel { width: 100%; padding: 11px 14px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-b); font-size: .88rem; color: var(--text); outline: none; transition: all .25s; appearance: none; }
.fi::placeholder { color: var(--text-4) }
.fi:focus, .fsel:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-dim); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .br-courses-grid { grid-template-columns: 1fr 1fr; }
  .hl-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .br-courses-grid { grid-template-columns: 1fr; }
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .course-info-strip { flex-direction: column; }
  .cis-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cis-item:last-child { border-bottom: none; }
  .whatsapp-float { bottom: 20px !important; right: 15px !important; width: 50px !important; height: 50px !important; font-size: 24px !important; }
}