/* ═══════════════════════════════════════════════════════
   NEXKRED DESIGN SYSTEM v2 — "Clear Capital"
   Premium Light · Teal · Motion-first
   Sora (display) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════ */
:root {
  --teal:        #00A896;
  --teal-dark:   #00766A;
  --teal-deep:   #045D54;
  --teal-light:  #E6FBF8;
  --teal-mid:    #CCF5EF;
  --navy:        #0B1F3A;
  --navy-mid:    #1C3558;
  --gold:        #C8992A;
  --white:       #FFFFFF;
  --mist:        #F6F9FA;
  --gray-100:    #E8ECF0;
  --gray-300:    #BDC6D0;
  --gray-500:    #7A8A9A;
  --text:        #0B1F3A;
  --text-mid:    #3D4F61;
  --text-muted:  #7A8A9A;
  --border:      #E4EAEF;
  --shadow-sm:   0 1px 4px rgba(11,31,58,.06);
  --shadow:      0 6px 28px rgba(11,31,58,.09);
  --shadow-lg:   0 24px 64px -12px rgba(11,31,58,.16);
  --r:           12px;
  --r-lg:        18px;
  --r-xl:        28px;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --grad-text:   linear-gradient(94deg, #00A896 10%, #00766A 55%, #0B1F3A 110%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
::selection { background: var(--teal-mid); }

/* ─── UTILITIES ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section--mist { background: var(--mist); }
.section--teal-light { background: linear-gradient(180deg, var(--teal-light), #fff); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; }

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-desc { font-size: 17.5px; color: var(--text-mid); line-height: 1.75; max-width: 560px; }
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s, border-color .28s, color .28s;
  will-change: transform;
}
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 6px 20px rgba(0,168,150,.32); }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,168,150,.38); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11,31,58,.28); }
.btn--outline { background: rgba(255,255,255,.7); color: var(--navy); border: 1.5px solid var(--border); backdrop-filter: blur(6px); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); }
.btn--lg { padding: 17px 38px; font-size: 16px; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}
#navbar.scrolled { background: rgba(255,255,255,.92); border-color: var(--border); box-shadow: 0 4px 24px rgba(11,31,58,.07); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 24px; max-width: 1180px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 21px; height: 21px; }
.logo-wordmark { display: flex; flex-direction: column; }
.logo-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; line-height: 1; }
.logo-name span { color: var(--teal); }
.logo-tagline { font-size: 8.5px; color: var(--text-muted); letter-spacing: 1.6px; text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-mid); padding: 8px 14px; border-radius: 100px; transition: color .18s, background .18s; }
.nav-links a:hover { color: var(--teal-dark); background: var(--teal-light); }
.nav-links a.active { color: var(--teal-dark); background: var(--teal-light); }
.nav-cta { margin-left: 10px; padding: 11px 24px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: .3s; }

.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 999;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: none; flex-direction: column; padding: 12px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 8px; font-weight: 600; font-size: 16px; color: var(--text-mid); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:last-child { border: none; }

/* ─── HERO (full-screen) ─── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 70px; overflow: hidden;
  background: linear-gradient(180deg, #FBFEFE 0%, #F2FAF9 60%, #ffffff 100%);
}
.aurora { position: absolute; inset: 0; pointer-events: none; }
.aurora .orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(0,168,150,.28), transparent 65%); top: -160px; right: -120px; animation: drift1 26s ease-in-out infinite alternate; }
.orb-2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(11,31,58,.10), transparent 65%); bottom: -180px; left: -140px; animation: drift2 32s ease-in-out infinite alternate; }
.orb-3 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(200,153,42,.14), transparent 65%); top: 32%; left: 38%; animation: drift3 38s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(-90px, 70px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(80px, -60px) scale(1.08); } }
@keyframes drift3 { to { transform: translate(-60px, -80px) scale(1.15); } }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(11,31,58,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 78%);
}

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 24px; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--teal-deep);
  background: rgba(255,255,255,.8); border: 1px solid var(--teal-mid);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: relative; }
.hero-badge .pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1.6px solid var(--teal); animation: pulseRing 2.2s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-desc { font-size: 18.5px; color: var(--text-mid); line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 38px; }
.hero-stat-num { font-family: 'Sora', sans-serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.02em; color: var(--navy); white-space: nowrap; }
.hero-stat-num span:last-child { color: var(--teal); }
.hero-stat-label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); letter-spacing: .4px; text-transform: uppercase; margin-top: 4px; }

/* Hero right — floating glass cards */
.hero-right { position: relative; min-height: 520px; }
.hcard {
  position: absolute; background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  will-change: transform;
}
.hcard-main { top: 46px; right: 10px; width: 360px; padding: 26px; animation: floatA 7s ease-in-out infinite; }
.hcard-chart { bottom: 34px; left: -6px; width: 300px; padding: 20px 20px 14px; animation: floatB 8.5s ease-in-out infinite; }
.hcard-pill { top: 0; left: 24px; display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 100px; animation: floatB 6.5s ease-in-out infinite; }
@keyframes floatA { 50% { transform: translateY(-14px); } }
@keyframes floatB { 50% { transform: translateY(-9px); } }

.hcard-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hcard-label { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); }
.hcard-status { font-size: 11.5px; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); padding: 5px 13px; border-radius: 100px; }
.hcard-amount { font-family: 'Sora', sans-serif; font-size: 33px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.hcard-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.hcard-row { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--gray-100); font-size: 13.5px; }
.hcard-row-key { color: var(--text-muted); }
.hcard-row-val { font-weight: 700; }
.hcard-row-val.teal { color: var(--teal-dark); }

.hcard-pill-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; color: var(--teal-dark); }
.p-num { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; line-height: 1.1; }
.p-lbl { font-size: 11.5px; color: var(--text-muted); font-weight: 600; }

.hcard-chart .chart-title { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.hcard-chart .chart-big { font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.hcard-chart .chart-big em { font-style: normal; font-size: 12.5px; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); padding: 3px 9px; border-radius: 100px; vertical-align: 3px; margin-left: 6px; }
#growth-path { stroke-dasharray: 640; stroke-dashoffset: 640; }
#hero.loaded #growth-path { animation: drawLine 2.4s .5s var(--ease) forwards; }
#growth-area { opacity: 0; }
#hero.loaded #growth-area { animation: fadeArea 1.2s 2s ease forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 1; } }

.hero-scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--text-muted); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint .wheel { width: 22px; height: 34px; border: 1.6px solid var(--gray-300); border-radius: 12px; position: relative; }
.hero-scroll-hint .wheel::after { content: ''; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px; background: var(--teal); border-radius: 3px; animation: wheelDot 1.8s ease-in-out infinite; }
@keyframes wheelDot { 50% { transform: translateY(9px); opacity: .2; } }

/* ─── TRUST MARQUEE ─── */
.trust { border-block: 1px solid var(--border); background: #fff; padding: 22px 0; overflow: hidden; }
.trust-track { display: flex; gap: 64px; width: max-content; animation: marquee 30s linear infinite; }
.trust:hover .trust-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: var(--gray-500); white-space: nowrap; }
.trust-item svg { color: var(--teal); flex: none; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { position: relative; padding: 168px 0 84px; background: linear-gradient(180deg, #FBFEFE, #F2FAF9 70%, #fff); overflow: hidden; }
.page-hero .hero-grid-bg { -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 20%, transparent 80%); mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 20%, transparent 80%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: var(--text-mid); max-width: 620px; line-height: 1.7; }
.crumb { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 20px; display: inline-flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--teal-dark); }
.crumb span { color: var(--gray-300); }

/* ─── CARDS & GRIDS ─── */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.prod-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-dark)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.prod-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--teal-mid); }
.prod-card:hover::before { transform: scaleX(1); }
.prod-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.prod-name { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.prod-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.prod-badge { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-light); padding: 6px 13px; border-radius: 100px; }

.tab-bar { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; }
.tab { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 600; padding: 12px 28px; border-radius: 100px; border: 1.5px solid var(--border); background: #fff; color: var(--text-mid); cursor: pointer; transition: .25s; }
.tab:hover { border-color: var(--teal); color: var(--teal-dark); }
.tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.prod-panel { display: none; }
.prod-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-card-main { background: linear-gradient(150deg, var(--navy) 0%, #10294a 100%); border-radius: var(--r-xl); padding: 40px 36px; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-card-main::after { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(0,168,150,.35), transparent 65%); top: -130px; right: -110px; filter: blur(10px); }
.about-card-title { font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 700; }
.about-card-sub { font-size: 13px; color: rgba(255,255,255,.55); margin: 4px 0 28px; }
.about-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; position: relative; z-index: 2; }
.about-metric-num { font-family: 'Sora', sans-serif; font-size: 25px; font-weight: 800; color: #7FF5E8; letter-spacing: -0.02em; }
.about-metric-label { font-size: 12.5px; color: rgba(255,255,255,.62); margin-top: 3px; line-height: 1.45; }
.about-visual { position: relative; }
.about-badge { position: absolute; bottom: -26px; right: 22px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 18px 24px; font-size: 12.5px; font-weight: 700; color: var(--text-mid); line-height: 1.35; display: flex; align-items: center; gap: 12px; }
.about-badge .big { font-family: 'Sora', sans-serif; font-size: 33px; font-weight: 800; color: var(--teal); }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 15px; margin: 26px 0 30px; }
.about-points li { position: relative; padding-left: 32px; font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.about-points li::before { content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2300766A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; }
.locs { display: flex; flex-wrap: wrap; gap: 10px; }
.loc { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-mid); background: #fff; border: 1px solid var(--border); padding: 8px 16px; border-radius: 100px; }
.loc .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.loc.hq { border-color: var(--teal); color: var(--teal-deep); background: var(--teal-light); }
.loc.soon { opacity: .55; }
.loc.soon .dot { background: var(--gray-300); }

/* ─── WHY ─── */
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: start; }
.why-items { display: flex; flex-direction: column; gap: 8px; }
.why-item { display: flex; gap: 18px; padding: 20px; border-radius: var(--r-lg); transition: background .3s, transform .3s var(--ease); }
.why-item:hover { background: var(--mist); transform: translateX(6px); }
.why-icon { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; }
.why-item-title { font-family: 'Sora', sans-serif; font-size: 16.5px; font-weight: 700; margin-bottom: 5px; }
.why-item-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.why-visual { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 18px; }
.why-big { background: linear-gradient(140deg, var(--teal) 0%, var(--teal-deep) 100%); border-radius: var(--r-xl); padding: 42px 36px; color: #fff; box-shadow: 0 24px 56px -12px rgba(0,118,106,.45); }
.why-big-num { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; }
.why-big-label { font-size: 14.5px; opacity: .85; margin-top: 10px; font-weight: 600; }
.why-circles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wc { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 20px; transition: transform .3s var(--ease), box-shadow .3s; }
.wc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wc-num { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.wc-num span { color: var(--teal); font-size: 16px; }
.wc-lbl { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.45; }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.team-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.team-card-top { background: linear-gradient(150deg, var(--mist), var(--teal-light)); padding: 34px 28px 26px; text-align: center; }
.team-avatar { width: 78px; height: 78px; border-radius: 50%; background: var(--navy); color: #7FF5E8; font-family: 'Sora', sans-serif; font-size: 25px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 10px 26px rgba(11,31,58,.24); }
.team-name { font-family: 'Sora', sans-serif; font-size: 18.5px; font-weight: 700; }
.team-role { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal-dark); margin-top: 5px; }
.team-body { padding: 24px 28px 28px; }
.team-bio { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.team-li { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--navy); transition: color .2s; }
.team-li:hover { color: var(--teal-dark); }

/* ─── CALCULATOR ─── */
.calc-box { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 46px; max-width: 980px; margin: 0 auto; }
.calc-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; }
.calc-field { margin-bottom: 30px; }
.calc-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--text-mid); margin-bottom: 12px; }
.calc-label strong { font-family: 'Sora', sans-serif; color: var(--navy); font-weight: 700; }
input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px; background: var(--gray-100); outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); box-shadow: 0 3px 10px rgba(0,168,150,.35); cursor: grab; transition: transform .2s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); box-shadow: 0 3px 10px rgba(0,168,150,.35); cursor: grab; }
.calc-num-input { width: 100%; margin-top: 12px; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); transition: border-color .2s, box-shadow .2s; }
.calc-num-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,168,150,.12); }
.calc-result { background: linear-gradient(160deg, var(--navy), #10294a); border-radius: var(--r-lg); padding: 36px 34px; color: #fff; position: relative; overflow: hidden; }
.calc-result::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(0,168,150,.30), transparent 65%); bottom: -110px; right: -90px; }
.cr-label { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.55); }
.cr-emi { font-family: 'Sora', sans-serif; font-size: clamp(34px, 4vw, 46px); font-weight: 800; letter-spacing: -0.02em; color: #7FF5E8; margin: 8px 0 24px; }
.cr-rows { position: relative; z-index: 2; }
.cr-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 14.5px; }
.cr-row span:first-child { color: rgba(255,255,255,.6); }
.cr-row span:last-child { font-weight: 700; }
.cr-note { position: relative; z-index: 2; font-size: 11px; color: rgba(255,255,255,.42); line-height: 1.6; margin-top: 20px; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--teal-mid); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); }
.faq-arrow { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 500; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; font-size: 14.5px; color: var(--text-mid); line-height: 1.75; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.c-info-items { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; }
.c-label { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.c-val { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.55; }
a.c-val:hover { color: var(--teal-dark); }
.c-form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; color: var(--navy);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,168,150,.12); }
.form-submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-size: 15.5px; font-weight: 600; color: #fff;
  background: var(--teal); border: none; border-radius: 100px; padding: 16px;
  cursor: pointer; transition: background .25s, transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 6px 20px rgba(0,168,150,.32);
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }
.form-submit:disabled { opacity: .7; cursor: wait; transform: none; }
#form-status { margin-top: 16px; font-size: 14px; font-weight: 600; }

/* ─── CTA BANNER ─── */
.cta-banner { position: relative; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(140deg, var(--navy) 0%, #123055 55%, var(--teal-deep) 130%); color: #fff; padding: 72px 60px; text-align: center; }
.cta-banner::before { content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(0,168,150,.4), transparent 65%); top: -220px; left: -160px; filter: blur(16px); }
.cta-banner h2 { position: relative; font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-banner p { position: relative; font-size: 17px; color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 34px; }
.cta-banner .btn { position: relative; }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 76px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin: 18px 0 22px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: .25s; }
.fsoc:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.55); padding: 6px 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: #7FF5E8; transform: translateX(4px); }
.footer-disclaimer { font-size: 11.5px; line-height: 1.7; color: rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; margin-bottom: 22px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.42); }

/* ─── FLOATERS ─── */
#wa { position: fixed; bottom: 26px; right: 26px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
#wa:hover { transform: scale(1.1) translateY(-3px); }
#btt { position: fixed; bottom: 96px; right: 33px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .3s; }
#btt.show { opacity: 1; pointer-events: auto; }
#btt:hover { color: var(--teal-dark); transform: translateY(-3px); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; } .reveal-d5 { transition-delay: .4s; }

/* stagger grid children automatically */
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; } .stagger.in > *:nth-child(2) { transition-delay: .13s; }
.stagger.in > *:nth-child(3) { transition-delay: .21s; } .stagger.in > *:nth-child(4) { transition-delay: .29s; }
.stagger.in > *:nth-child(5) { transition-delay: .37s; } .stagger.in > *:nth-child(6) { transition-delay: .45s; }
.stagger.in > *:nth-child(7) { transition-delay: .53s; } .stagger.in > *:nth-child(8) { transition-delay: .61s; }
.stagger.in > *:nth-child(9) { transition-delay: .69s; }

/* hero entrance */
.hero-enter { opacity: 0; transform: translateY(30px); animation: heroUp .9s var(--ease) forwards; }
.he-1 { animation-delay: .1s; } .he-2 { animation-delay: .22s; } .he-3 { animation-delay: .34s; }
.he-4 { animation-delay: .46s; } .he-5 { animation-delay: .58s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ─── FOCUS & MOTION ACCESSIBILITY ─── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(0,168,150,.5); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .stagger > *, .hero-enter { opacity: 1 !important; transform: none !important; }
  #growth-path { stroke-dashoffset: 0 !important; } #growth-area { opacity: 1 !important; }
  .trust-track { animation: none !important; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-right { min-height: 480px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .about-grid, .why-grid, .contact-grid, .calc-grid { grid-template-columns: 1fr; gap: 52px; }
  .why-visual { position: static; }
  .prod-grid, .prod-panel.active, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 118px 0 60px; }
  .hero-scroll-hint { display: none; }
  .hcard-main { width: min(340px, 92%); right: 0; }
  .hcard-chart { width: min(280px, 82%); }
  .prod-grid, .prod-panel.active, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .calc-box { padding: 28px 22px; }
  .c-form { padding: 28px 22px; }
  .cta-banner { padding: 54px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
