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

:root {
  --ink:        #090B12;
  --ink-2:      #3A3D52;
  --ink-3:      #787C96;
  --surface:    #F4F5F9;
  --white:      #FFFFFF;
  --blue:       #2A52E0;
  --blue-dark:  #1A3BB5;
  --blue-soft:  rgba(42,82,224,0.07);
  --blue-mid:   rgba(42,82,224,0.14);
  --border:     rgba(9,11,18,0.08);
  --border-md:  rgba(9,11,18,0.13);
  --dark:       #07080F;
  --dark-2:     #0D0F1D;
  --dark-line:  rgba(255,255,255,0.06);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 22px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.93); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); padding: 0 6vw; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark span { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text-top { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; }
.logo-text-bottom { font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600; color: var(--ink-3); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--ink-2); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-btn { background: var(--blue); color: #fff !important; padding: 9px 20px; border-radius: var(--r-md); font-weight: 500; font-size: 14px !important; transition: background .2s !important; }
.nav-btn:hover { background: var(--blue-dark) !important; }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 80px 6vw 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(42,82,224,0.16) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: 680px; position: relative; }
.page-hero .eyebrow { color: #8AA4FF; margin-bottom: 12px; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 500px; }

/* SECTIONS */
section { padding: 80px 6vw; }
.s-inner { max-width: 960px; margin: 0 auto; }
.eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.s-h2 { font-family: 'Sora', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--ink); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 12px; }
.s-sub { font-size: 16px; color: var(--ink-3); line-height: 1.7; max-width: 500px; margin-bottom: 48px; }
.surface { background: var(--surface); }
.dark-sec { background: var(--dark); }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; }
.card-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--blue-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; }
.card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--ink-3); line-height: 1.65; }

/* BUTTONS */
.btn-blue { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; padding: 13px 26px; border-radius: var(--r-md); font-size: 15px; font-weight: 500; text-decoration: none; transition: background .2s, transform .15s; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); padding: 13px 22px; border-radius: var(--r-md); border: 1px solid var(--blue); font-size: 15px; text-decoration: none; transition: background .2s; }
.btn-outline:hover { background: var(--blue-soft); }

/* CTA SECTION */
.cta-sec { background: var(--dark); padding: 80px 6vw; position: relative; overflow: hidden; text-align: center; }
.cta-sec::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: radial-gradient(ellipse, rgba(42,82,224,0.14) 0%, transparent 65%); pointer-events: none; }
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; }
.cta-sec .eyebrow { color: #8AA4FF; }
.cta-sec h2 { font-family: 'Sora', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: #fff; letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; }
.cta-sec p { font-size: 15px; color: rgba(255,255,255,0.42); line-height: 1.68; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); padding: 13px 22px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,0.11); font-size: 15px; text-decoration: none; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.8); }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid var(--dark-line); padding: 30px 6vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.f-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.f-logo-mark { width: 32px; height: 32px; border-radius: 50%; background: rgba(42,82,224,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-logo-mark span { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 800; color: #8AA4FF; letter-spacing: -0.5px; }
.f-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.f-logo-top { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); }
.f-logo-bottom { font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.18); letter-spacing: 1.5px; text-transform: uppercase; }
.f-links { display: flex; gap: 22px; }
.f-links a { font-size: 13px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,0.5); }
.f-copy { font-size: 12px; color: rgba(255,255,255,0.16); }

/* WHATSAPP */
.wa-btn { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 999; transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.1); }

/* MOBILE */
@media (max-width: 768px) {
  section { padding: 56px 5vw; }
  nav { padding: 0 5vw; }
  .nav-links { display: none; }
  .card-grid { grid-template-columns: 1fr; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: #0D0F1D;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; flex: 1; min-width: 200px; }
.cookie-text a { color: #5B80FF; text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: #2A52E0; color: #fff; border: none;
  padding: 9px 20px; border-radius: 8px; font-size: 13px;
  font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.cookie-accept:hover { background: #1A3BB5; }
.cookie-close {
  background: transparent; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 16px; border-radius: 8px; font-size: 13px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: color .2s;
}
.cookie-close:hover { color: rgba(255,255,255,0.65); }

/* LANGUAGE SWITCHER */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-3); text-decoration: none;
  border: 1px solid var(--border-md); border-radius: var(--r-sm);
  padding: 5px 10px; transition: border-color .2s, color .2s;
}
.lang-switch:hover { border-color: var(--blue); color: var(--blue); }
.lang-switch svg { width: 14px; height: 14px; }

/* STATS BAR */
.stats-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-line);
  padding: 36px 6vw;
}
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-top: 8px; line-height: 1.4;
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}

/* TESTIMONIALS */
.testimonials { background: var(--white); }
.testi-grid {
  margin-top: 48px; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 26px;
}
.testi-quote {
  font-size: 15px; color: var(--ink-2); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-mid); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.testi-avatar svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }
.testi-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
