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

:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --blue: #1a56db;
  --blue-light: #3b82f6;
  --blue-pale: #eff6ff;
  --accent: #f59e0b;
  --orange: #e05520;
  --green: #10b981;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 1.5rem; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .dot { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--gray-100); color: var(--navy); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 7px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
  white-space: nowrap !important;
}
.nav-cta:hover { background: #1648c0 !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.lang-toggle { display: flex; gap: 2px; margin-left: 0.5rem; }
.lang-btn { background: transparent; border: 1px solid var(--gray-200); color: var(--gray-500); font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 4px; cursor: pointer; transition: all 0.15s; letter-spacing: 0.5px; }
.lang-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 998;
  padding: 2rem 5%;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav a.cta {
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  border-bottom: none;
  margin-top: 0.5rem;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: #1648c0; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-orange:hover { background: #c44418; transform: translateY(-1px); }

/* ─── SECTION BASE ─── */
section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── SERVICE HERO ─── */
.service-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2044 60%, #112354 100%);
  color: var(--white);
  padding: 3.5rem 5% 4.5rem;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.service-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(224,85,32,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.breadcrumb:hover { color: rgba(255,255,255,0.85); }
.breadcrumb svg { width: 14px; height: 14px; }
.service-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,86,219,0.3);
  border: 1px solid rgba(59,130,246,0.4);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.service-hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.service-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 1.1rem;
}
.service-hero h1 span { color: var(--accent); }
.service-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 2rem;
}
.hero-panel-icon {
  width: 64px; height: 64px;
  background: rgba(26,86,219,0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-panel-icon svg { width: 42px; height: 42px; }
.hero-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
}
.hero-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(16,185,129,0.25);
  color: #4ade80;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-panel-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1.25rem 0;
}
.hero-panel-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}
.hero-panel-price-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.hero-panel-price-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}

/* ─── FEATURES GRID ─── */
.features { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: var(--blue-pale);
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── WHO IT'S FOR ─── */
.audience { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.audience-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.audience-visual::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(26,86,219,0.28) 0%, transparent 70%);
  border-radius: 50%;
}
.audience-visual-inner { position: relative; z-index: 1; }
.audience-visual h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.75rem; }
.audience-visual p { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 1.5rem; }
.audience-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.audience-type {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.audience-type::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}
.audience-content .section-title { text-align: left; }
.audience-content .section-subtitle { text-align: left; margin: 0 0 1.75rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.benefit-num {
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.benefit-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.benefit-item p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ─── PRICING ─── */
.pricing { background: var(--gray-50); }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card.featured {
  border-color: var(--blue);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.pricing-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-amount span { font-size: 1rem; font-weight: 500; color: var(--gray-400); vertical-align: top; line-height: 2.4; }
.pricing-period {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--gray-700);
}
.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  border: none;
}
.pricing-cta.primary { background: var(--blue); color: var(--white); }
.pricing-cta.primary:hover { background: #1648c0; }
.pricing-cta.secondary { background: var(--gray-100); color: var(--navy); }
.pricing-cta.secondary:hover { background: var(--gray-200); }

/* ─── PROCESS ─── */
.sp-process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.process-step h3 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #0d2a5e);
  color: var(--white);
  padding: 4rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.25) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.55);
  padding: 3rem 5% 1.5rem;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.footer-logo-text span { color: var(--blue-light); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.83rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .lang-toggle { margin-left: auto; margin-right: 0.75rem; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .audience-types { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
