/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --lila: #7C5CBF; --lila-light: #9B7DD4; --lila-xlight: #EDE8F8; --lila-dark: #5B3F9A;
  --turquoise: #0ABFB8; --turquoise-light: #3DD9D3; --turquoise-xlight: #E0FAF9;
  --amber: #F59E0B; --amber-xlight: #FFFBEB;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB; --gray-400: #9CA3AF;
  --gray-600: #4B5563; --gray-700: #374151; --gray-800: #1F2937; --gray-900: #111827;
  --font-body: 'Raleway', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-lila: 0 8px 32px rgba(124,92,191,.22);
  --radius-btn: 10px;
  --radius-md: 14px; --radius-lg: 22px; --radius-xl: 32px;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--gray-800); background: #fff; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--lila); color: white; border: none;
  padding: 15px 34px; border-radius: var(--radius-btn); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer; transition: background 0.35s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(124,92,191,.28); font-family: var(--font-body);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--lila-dark); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(124,92,191,.42); }

/* ── SECTION SHARED ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--turquoise); margin-bottom: 18px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--turquoise); border-radius: 2px; }
.section-h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); font-weight: 700; line-height: 1.12; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.01em; }
.section-sub { font-size: 17px; color: var(--gray-600); max-width: 540px; line-height: 1.7; margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(.22,.68,0,1), transform 0.65s cubic-bezier(.22,.68,0,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(1.3); } }
@keyframes scrollLogos { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes floatY { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } }
@keyframes floatYSlow { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-24px) rotate(6deg); } }
@keyframes orbDrift { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.06); } 66% { transform: translate(-20px,15px) scale(0.95); } 100% { transform: translate(0,0) scale(1); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes countUp { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-32px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(32px); } to { opacity:1; transform:translateX(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 14px; left: 0; right: 0;
  width: 100%; height: 52px;
  background: rgba(255,255,255,0.04) padding-box,
              linear-gradient(90deg, rgba(124,92,191,0.55), rgba(10,191,184,0.45), rgba(245,158,11,0.3), rgba(124,92,191,0.55)) border-box;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(2px);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: none; border-right: none;
  border-radius: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; z-index: 200;
  box-shadow: none;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.05) padding-box,
              linear-gradient(90deg, rgba(124,92,191,0.7), rgba(10,191,184,0.6), rgba(245,158,11,0.4), rgba(124,92,191,0.7)) border-box;
  box-shadow: 0 4px 18px rgba(124,92,191,0.1);
}
.nav-logo {
  font-family: 'Paytone One', sans-serif; font-size: 19px; color: #5B3F9A;
  text-decoration: none; line-height: 1; white-space: nowrap; flex-shrink: 1; min-width: 0;
  display: flex; align-items: center; gap: 7px;
}
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-link { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: #4B5563; background: none; border: none; cursor: pointer; font-family: inherit; padding: 4px 0; transition: color 0.25s ease; white-space: nowrap; text-decoration: none; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--lila); border-radius: 2px; transition: width 0.32s cubic-bezier(.22,.68,0,1); }
.nav-link:hover { color: #7C5CBF; }
.nav-link:hover::after { width: 100%; }
/* Shared base — both buttons are physically identical */
.nav-cta, .nav-login {
  padding: 9px 20px; border-radius: var(--radius-btn);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  border: 1.5px solid #7C5CBF; cursor: pointer; font-family: inherit;
  white-space: nowrap; text-decoration: none;
  display: inline-flex; align-items: center; line-height: 1;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
              transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease;
}
/* Fill variant */
.nav-cta { background: #7C5CBF; color: white; }
.nav-cta:hover { background: #5B3F9A; border-color: #5B3F9A; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,92,191,.35); }
/* Outline variant */
.nav-login { background: transparent; color: #7C5CBF; }
.nav-login:hover { background: #7C5CBF; color: white; transform: translateY(-1px); }

/* Mobile nav */
.mobile-right { display: none; align-items: center; gap: 10px; }
.hamburger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #1F2937; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open .bar-top { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar-mid { opacity: 0; }
.hamburger.open .bar-bot { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; top: 78px; left: 16px; right: 16px;
  background: white; border-radius: 18px; border: 1px solid #E5E7EB;
  box-shadow: 0 12px 40px rgba(0,0,0,.15); z-index: 199;
  padding: 20px; display: flex; flex-direction: column; gap: 8px;
  animation: slideDown 0.2s ease;
}
.drawer.hidden { display: none; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px) } to { opacity:1; transform:translateY(0) } }
.drawer-links { display: flex; flex-direction: column; }
.drawer-links button, .drawer-links a { background: none; border: none; text-align: left; padding: 14px 8px; font-size: 16px; font-weight: 500; color: #1F2937; cursor: pointer; font-family: inherit; border-bottom: 1px solid #F3F4F6; transition: color 0.2s; text-decoration: none; display: block; }
.drawer-links button:last-child, .drawer-links a:last-child { border-bottom: none; }
.drawer-links button:hover, .drawer-links a:hover { color: #7C5CBF; }
.drawer-login { margin-top: 8px; background: #7C5CBF; color: white; border: 1.5px solid #7C5CBF; padding: 14px; border-radius: var(--radius-btn); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; font-family: inherit; transition: background 0.3s ease, transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease; text-decoration: none; display: block; text-align: center; }
.drawer-login:hover { background: #5B3F9A; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,92,191,.35); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(124,92,191,0.08); border: 1.5px solid rgba(124,92,191,0.18);
  border-radius: 8px; padding: 6px 11px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: #5B3F9A; cursor: pointer; font-family: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(124,92,191,0.15); border-color: rgba(124,92,191,0.4); transform: translateY(-1px); }
.lang-chevron { transition: transform 0.2s; flex-shrink: 0; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid #E5E7EB;
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.14);
  list-style: none; padding: 6px; min-width: 148px;
  z-index: 300;
  opacity: 0; transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lang-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  width: 100%; text-align: left;
  background: none; border: none; padding: 9px 12px;
  font-size: 13px; font-weight: 500; color: #374151;
  cursor: pointer; font-family: inherit; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.lang-option:hover { background: rgba(124,92,191,0.08); color: #5B3F9A; }
.lang-option.active { background: rgba(124,92,191,0.1); color: #5B3F9A; font-weight: 700; }

/* Mobile lang switcher (shown in mobile-right, before hamburger) */
.lang-switcher-mobile { display: none; }
.lang-btn-mobile {
  padding: 5px 9px; font-size: 11px;
  background: rgba(124,92,191,0.08); border: 1.5px solid rgba(124,92,191,0.18);
  border-radius: 7px; gap: 3px;
}
.lang-dropdown-mobile {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid #E5E7EB;
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
  list-style: none; padding: 4px; min-width: 90px;
  z-index: 300;
  opacity: 0; transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lang-dropdown-mobile.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-right { display: flex; }
  .lang-switcher-mobile { display: block; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 24px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(125% 125% at 50% 10%, #fff 40%, #7c3aed 100%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 180px 180px; }
.hero > *:not(.hero-bg):not(.hero-orb) { position: relative; z-index: 1; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(40px,6.5vw,82px); line-height: 1.08; color: #111827; max-width: 840px; margin: 0 auto 24px; font-weight: 700; letter-spacing: -0.02em; animation: fadeUp 0.8s ease forwards 0.4s; opacity: 0; }
.hero-accent { background: linear-gradient(135deg, #7c3aed 0%, #0ABFB8 60%, #F59E0B 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; }
.hero-sub { font-size: clamp(16px,2vw,19px); color: #4B5563; max-width: 560px; margin: 0 auto 44px; line-height: 1.7; animation: fadeUp 0.8s ease forwards 0.6s; opacity: 0; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease forwards 0.8s; opacity: 0; }
.hero-qr-wrap { display: flex; justify-content: center; margin-top: 40px; animation: fadeUp 0.8s ease forwards 1s; opacity: 0; }
.hero-qr { width: 234px; height: 234px; object-fit: contain; filter: drop-shadow(0 12px 32px rgba(124,58,237,0.25)); }

/* Hero floating orbs */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%); top: -80px; right: -120px; animation: orbDrift 12s ease-in-out infinite; }
.hero-orb-2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(10,191,184,0.15) 0%, transparent 70%); bottom: 60px; left: -60px; animation: orbDrift 16s ease-in-out infinite reverse; }
.hero-orb-3 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%); top: 30%; right: 8%; animation: orbDrift 10s ease-in-out infinite 3s; }
.btn-secondary-hero { background: transparent; color: #5B3F9A; border: 1.5px solid rgba(124,58,237,0.35); padding: 15px 34px; border-radius: var(--radius-btn); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: color 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); position: relative; overflow: hidden; }
.btn-secondary-hero::before { content: ''; position: absolute; inset: 0; background: rgba(124,58,237,0.07); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(.22,.68,0,1); border-radius: inherit; }
.btn-secondary-hero:hover::before { transform: scaleX(1); }
.btn-secondary-hero:hover { border-color: rgba(124,58,237,0.6); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(124,58,237,.12); }

/* ── LOGO BAR ── */
.logo-bar { padding: 48px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); overflow: hidden; }
.logo-bar-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.logo-track-wrap { overflow: hidden; }
.logo-track { display: flex; gap: 56px; align-items: center; animation: scrollLogos 28s linear infinite; width: max-content; }
.logo-item { font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--gray-400); white-space: nowrap; letter-spacing: 0.04em; display: flex; align-items: center; gap: 10px; }
.logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--turquoise); opacity: 0.5; flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 0; background: linear-gradient(150deg, #F7F3FF 0%, #EDF9F8 100%); }
.steps-grid { display: flex; flex-direction: column; gap: 64px; max-width: 860px; margin: 0 auto; }
.step-card { display: grid; grid-template-columns: 140px 1fr; gap: 56px; align-items: center; background: none; border: none; padding: 0; }
.step-card:nth-child(even) { grid-template-columns: 1fr 140px; }
.step-card:nth-child(even) .step-visual { order: 2; }
.step-card:nth-child(even) .step-body { order: 1; }
.step-visual { display: flex; justify-content: center; }
.step-num { width: 96px; height: 96px; color: white; border-radius: 28px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; font-style: italic; box-shadow: 0 16px 40px rgba(0,0,0,0.15); transition: transform 0.3s cubic-bezier(.22,.68,0,1.2); }
.step-card:hover .step-num { transform: scale(1.1) rotate(-4deg); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
.step-body { background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: var(--radius-lg); padding: 32px 36px; box-shadow: 0 4px 24px rgba(124,92,191,0.07); transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(.22,.68,0,1.2); }
.step-card:hover .step-body { box-shadow: 0 12px 40px rgba(124,92,191,0.12); transform: translateY(-4px); }
.step-h { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; line-height: 1.2; }
.step-p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ── FEATURES ── */
.features-section { padding: 100px 0; background: #0D0D14; position: relative; overflow: hidden; }
.features-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(124,92,191,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 80% 70%, rgba(10,191,184,0.08) 0%, transparent 60%); }
.features-section .section-label { color: var(--turquoise); }
.features-section .section-label::before { background: var(--turquoise); }
.features-section .section-h2 { color: #F8F6FF; }
.features-section .section-sub { color: rgba(255,255,255,0.55); }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; position: relative; z-index: 1; }
.feature-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease; }
.feature-card:hover { transform: translateY(-10px) scale(1.012); box-shadow: 0 24px 64px rgba(124,92,191,.28), 0 0 0 1px rgba(124,92,191,.15); border-color: rgba(124,92,191,0.45); background: rgba(255,255,255,0.09); }
.feature-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.fi-lila { background: rgba(124,92,191,0.2); }
.fi-turq { background: rgba(10,191,184,0.15); }
.fi-amber { background: rgba(245,158,11,0.15); }
.feature-h { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.92); margin-bottom: 10px; line-height: 1.2; }
.feature-p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.feature-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.feature-list li::before { content: ''; width: 8px; height: 8px; background: var(--turquoise); border-radius: 50%; flex-shrink: 0; }
.qr-showcase { background: rgba(0,0,0,0.4); border-radius: var(--radius-md); padding: 28px; position: relative; overflow: hidden; min-height: 260px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.08); }
.qr-showcase-bg { position: absolute; inset: 0; opacity: 0.2; background: radial-gradient(circle at 30% 50%,#7C5CBF 0%,transparent 60%),radial-gradient(circle at 80% 20%,#0ABFB8 0%,transparent 50%); }
.qr-code-box { background: white; border-radius: 16px; padding: 20px; position: relative; z-index: 1; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.qr-code-label { font-size: 10px; font-weight: 700; color: var(--lila-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 10px; }

/* ── STATS ── */
.stats-section { padding: 80px 0; background: var(--lila); position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top left,rgba(255,255,255,.08) 0%,transparent 60%),radial-gradient(ellipse at bottom right,rgba(10,191,184,.15) 0%,transparent 60%); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 32px 20px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Raleway', sans-serif; font-size: clamp(36px,5vw,56px); font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; display: block; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500; }

/* ── VIDEO DEMO ── */
/* ── SHOWCASE CAROUSEL ───────────────────────────────────────── */
.showcase-section { padding: 100px 0; background: #0F0A1E; }
.showcase-section .section-label { color: var(--turquoise); }
.showcase-section .section-label::before { background: var(--turquoise); }
.showcase-section .section-h2 { color: white; }
.showcase-section .section-sub { color: rgba(255,255,255,0.7); }

/* arrows live outside the stage — give wrap horizontal padding */
.carousel-wrap { position: relative; padding: 0 64px; }

.carousel-stage { overflow: hidden; border-radius: 10px; }

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* Every slide is the same 16/9 container */
.carousel-slide { flex: 0 0 100%; width: 100%; }

/* Landscape: image fills the full 16/9 slot */
.slide-landscape {
  width: 100%; aspect-ratio: 16/9; display: block; object-fit: cover;
  background: linear-gradient(135deg,#ede8f8 0%,#e8f3fb 100%);
}

/* Portrait: 16/9 container — image wider, top-aligned so bottom clips naturally */
.slide-portrait-wrap {
  aspect-ratio: 16/9; display: flex; justify-content: center; align-items: flex-start;
  background: #100c20; overflow: hidden;
}
.slide-portrait {
  width: 42%; height: 100%; display: block;
  object-fit: cover; object-position: top center;
  background: linear-gradient(180deg,#ede8f8 0%,#e8f3fb 100%);
}
/* Mobile/tablet portrait: show 9/10 of the portrait image */
@media (max-width: 900px) and (orientation: portrait) {
  .slide-portrait-wrap { aspect-ratio: 9/16; }
  .slide-portrait { width: 88%; height: auto; max-height: unset; }

  /* Landscape screenshots: give the slide a portrait container and center the image */
  .carousel-slide:has(.slide-landscape) {
    aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#ede8f8 0%,#e8f3fb 100%);
    overflow: hidden;
  }
  .slide-landscape {
    width: 100%; aspect-ratio: 16/9; object-fit: cover; align-self: center;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  .slide-portrait { width: 92%; }
}

/* Caption row */
.carousel-caption {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 0 0;
}
.carousel-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; background: rgba(124,92,191,0.18);
  color: #b89af0; flex-shrink: 0;
}
.carousel-caption-text { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 400; flex: 1; line-height: 1.45; }
.carousel-counter { font-size: 13px; color: rgba(255,255,255,0.3); flex-shrink: 0; font-variant-numeric: tabular-nums; }

/* Arrows — no circle, bold chevron, positioned outside the stage */
.carousel-nav-btn {
  position: absolute; top: 0;
  height: calc(100% * 9 / (9 + 16 * 0.001)); /* visually center to image */
  width: 64px; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: color 0.2s; z-index: 10; padding: 0;
}
.carousel-nav-btn:hover { color: white; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Dots */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; padding: 0; transition: all 0.3s; flex-shrink: 0;
}
.carousel-dot.active { background: #7C5CBF; width: 26px; border-radius: 4px; }

/* ── ADVANTAGES ── */
.advantages-section { padding: 100px 0; background: linear-gradient(150deg, #EDF9F8 0%, #F7F3FF 100%); }
.advantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.advantage-card { padding: 28px; background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: var(--radius-lg); box-shadow: 0 4px 16px rgba(124,92,191,0.06); transition: box-shadow 0.4s cubic-bezier(.22,.68,0,1.2), transform 0.4s cubic-bezier(.22,.68,0,1.2), border-color 0.3s ease, background 0.3s ease; }
.advantage-card:hover { box-shadow: 0 20px 48px rgba(124,92,191,.14); transform: translateY(-10px) scale(1.015); border-color: rgba(124,92,191,0.25); background: rgba(255,255,255,0.85); }
.advantage-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.advantage-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.advantage-body { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── DEMO CTA ── */
.demo-section { padding: 100px 24px; background: linear-gradient(150deg, #F7F3FF 0%, #EDF9F8 100%); border-top: 1px solid rgba(124,92,191,0.08); }
.demo-box { max-width: 840px; margin: 0 auto; background: rgba(255,255,255,0.72); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.92); border-radius: var(--radius-xl); padding: 60px; text-align: center; box-shadow: 0 20px 60px rgba(124,92,191,0.1), 0 4px 16px rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.demo-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lila), var(--turquoise), var(--amber)); }
.demo-h { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--gray-900); margin-bottom: 14px; line-height: 1.15; }
.demo-p { font-size: 17px; color: var(--gray-600); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.demo-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 20px; flex-wrap: nowrap; position: relative; }
.demo-form .btn-primary { flex-shrink: 0; white-space: nowrap; }
.demo-input { flex: 1 1 auto; min-width: 0; padding: 14px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-btn); font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; color: var(--gray-800); letter-spacing: 0.02em; }
.demo-input:focus { border-color: var(--lila); box-shadow: 0 0 0 3px rgba(124,92,191,.1); }
.demo-trust { font-size: 13px; color: var(--gray-400); display: flex; align-items: center; justify-content: center; gap: 6px; }
.demo-input--error { border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,.12) !important; }
.demo-error { position: absolute; top: calc(100% + 8px); left: 0; z-index: 5; display: none; max-width: 100%; padding: 9px 14px; font-size: 13px; line-height: 1.4; font-weight: 500; color: #b42318; background: #fff5f5; border: 1px solid #fecaca; border-radius: 10px; box-shadow: 0 8px 24px rgba(180,35,24,0.12); text-align: left; opacity: 0; transform: translateY(-4px); transition: opacity .18s ease, transform .18s ease; }
.demo-error.is-visible { display: block; opacity: 1; transform: translateY(0); }
.demo-error::before { content: ''; position: absolute; top: -5px; left: 22px; width: 9px; height: 9px; background: #fff5f5; border-left: 1px solid #fecaca; border-top: 1px solid #fecaca; transform: rotate(45deg); }

/* ── FOOTER ── */
.footer { background: #111827; color: rgba(255,255,255,0.7); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: 'Paytone One', sans-serif; font-size: 21px; color: white; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; text-decoration: none; cursor: pointer; background: none; border: none; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links button, .footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; text-align: left; text-decoration: none; transition: color 0.2s; }
.footer-links button:hover, .footer-links a:hover { color: #0ABFB8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(.22,.68,0,1.2); }
.social-btn:hover { border-color: #0ABFB8; color: #0ABFB8; background: rgba(10,191,184,0.1); transform: translateY(-2px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--lila-xlight); padding: 100px 0 52px; border-bottom: 1px solid rgba(124,92,191,0.12); }
.page-hero-title { font-family: 'Raleway', sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; line-height: 1.15; }
.page-hero-sub { font-size: 17px; color: var(--gray-600); max-width: 580px; line-height: 1.7; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; align-items: start; }
.pricing-card { border: 1.5px solid var(--gray-200); border-radius: 20px; overflow: hidden; position: relative; transition: box-shadow 0.28s cubic-bezier(.22,.68,0,1.2), transform 0.28s cubic-bezier(.22,.68,0,1.2); }
.pricing-card:hover { box-shadow: 0 24px 56px rgba(124,92,191,.18); transform: translateY(-10px) scale(1.02); }
.pricing-card.popular { border-color: var(--lila); box-shadow: var(--shadow-lila); }
.pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--lila); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 0 0 12px 12px; white-space: nowrap; }
.pricing-top { padding: 32px 28px 24px; background: white; }
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px; }
.plan-price { font-family: 'Raleway', sans-serif; font-size: 44px; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 10px; }
.plan-period { font-size: 16px; font-weight: 500; color: var(--gray-400); }
.plan-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
.plan-cta { width: 100%; padding: 13px; border-radius: var(--radius-btn); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; font-family: inherit; transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease; position: relative; overflow: hidden; }
.plan-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.55s ease; }
.plan-cta:hover::before { transform: translateX(100%); }
.plan-cta:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.pricing-section { padding: 20px 28px; background: white; }
.pricing-advantages { padding: 20px 28px; }
.pricing-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); line-height: 1.4; }
.plan-check { flex-shrink: 0; margin-top: 1px; }
.pricing-note { text-align: center; font-size: 14px; color: var(--gray-400); }

/* ── ABOUT ── */
.story-section { padding: 80px 0; background: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-body { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.story-img { width: 100%; border-radius: 20px; object-fit: cover; height: 360px; }
.values-section { padding: 80px 0; background: var(--lila-xlight); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: white; border-radius: 20px; padding: 36px 32px; border: 1.5px solid rgba(124,92,191,0.1); }
.value-accent { width: 36px; height: 4px; border-radius: 2px; margin-bottom: 20px; }
.value-title { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.value-body { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.info-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 28px; }
.info-item { margin-bottom: 22px; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.info-value { font-size: 15px; color: var(--gray-700); text-decoration: none; display: block; }
a.info-value:hover { color: var(--lila); }
.social-row { display: flex; gap: 16px; margin-top: 32px; }
.social-link { font-size: 14px; font-weight: 600; color: var(--lila); text-decoration: none; }
.social-link:hover { color: var(--lila-dark); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-field input, .form-field textarea { padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 12px; font-size: 15px; font-family: inherit; color: var(--gray-800); outline: none; resize: vertical; transition: border-color 0.2s; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--lila); }
.form-submit { background: var(--lila); color: white; border: none; padding: 14px; border-radius: var(--radius-btn); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; font-family: inherit; transition: background 0.3s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease; position: relative; overflow: hidden; }
.form-submit::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.55s ease; }
.form-submit:hover::before { transform: translateX(100%); }
.form-submit:hover { background: var(--lila-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,92,191,.35); }
.form-submit:hover { background: var(--lila-dark); }
.form-success { text-align: center; padding: 60px 40px; border: 1.5px solid var(--gray-200); border-radius: 20px; display: none; }
.form-success.visible { display: block; }
.success-icon { width: 56px; height: 56px; background: var(--turquoise); color: white; border-radius: 50%; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--gray-600); }

/* ── LEGAL PAGES ── */
.legal-content { padding: 72px 0 100px; background: white; }
.legal-content h2 { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 700; color: var(--gray-900); margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 700; color: var(--gray-900); margin: 24px 0 8px; }
.legal-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--lila); text-decoration: underline; }
.legal-updated { font-size: 13px; color: var(--gray-400); margin-bottom: 36px; }

/* ── DEEP FEATURES ── */
.deep-section { padding: 100px 0; background: linear-gradient(160deg,#f7f3ff 0%,#f0f9f9 100%); }
.df-spotlights { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.df-spotlight {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid rgba(124,92,191,0.1);
  box-shadow: 0 4px 24px rgba(124,92,191,0.07);
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.df-spotlight:hover { box-shadow: 0 16px 48px rgba(124,92,191,0.13); transform: translateY(-4px); }
.df-spotlight-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px; display: inline-flex; align-items: center; gap: 6px;
}
.df-spotlight-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.df-spotlight-h { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; line-height: 1.25; }
.df-spotlight-p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.df-spotlight-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.df-spotlight-list li { font-size: 14px; color: var(--gray-700); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.df-spot-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

.df-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.df-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid rgba(124,92,191,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.df-card:hover { box-shadow: 0 12px 36px rgba(124,92,191,0.12); transform: translateY(-4px); }
.df-card-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.df-card-h { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.df-card-p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.df-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.df-pill { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.03em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .advantages-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; }
  .hero-h1 { font-size: clamp(32px, 8vw, 52px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions a, .hero-actions button { width: 100%; max-width: 320px; justify-content: center; }
  .hero-qr { width: 182px; height: 182px; }
  .logo-bar { padding: 32px 0; }
  .how-section { padding: 64px 0; }
  .steps-grid { gap: 40px; }
  .step-card { grid-template-columns: 1fr !important; gap: 20px; }
  .step-card:nth-child(even) .step-visual { order: 0; }
  .step-card:nth-child(even) .step-body { order: 0; }
  .step-visual { justify-content: flex-start; }
  .features-section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .qr-showcase { min-height: 200px; }
  .stats-section { padding: 52px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item { border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); padding: 24px 12px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .deep-section { padding: 64px 0; }
  .df-spotlights { grid-template-columns: 1fr; }
  .df-grid { grid-template-columns: 1fr; }
  .showcase-section { padding: 64px 0; }
  .carousel-wrap { padding: 0 44px; }
  .carousel-nav-btn { width: 44px; }
  .carousel-caption { flex-wrap: wrap; gap: 8px; }
  .carousel-counter { display: none; }
  .advantages-section { padding: 64px 0; }
  .demo-section { padding: 64px 20px; }
  .demo-box { padding: 36px 24px; border-radius: 20px; }
  .demo-h { font-size: 26px; }
  .demo-form { flex-direction: column; }
  .demo-input { min-width: unset; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-col:first-child { grid-column: span 2; }
  .page-hero { padding: 80px 0 36px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .df-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .advantages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .logo-track { gap: 36px; }
  .logo-item { font-size: 13px; }
  .step-num { width: 80px; height: 80px; font-size: 24px; }
  .feature-card { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner .footer-col:first-child { grid-column: span 1; }
  .carousel-wrap { padding: 0 32px; }
  .carousel-nav-btn { width: 32px; }
  .carousel-caption-text { font-size: 13px; }
}
