/* styles.css */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FFFFFF;
  --bg-gray: #F3F3F3;
  --bg-dark: #111113;

  --red: #EF3124;
  --red-hover: #D42B1F;
  --red-dim: rgba(239, 49, 36, 0.06);
  --red-glow: rgba(239, 49, 36, 0.2);
  --red-border: rgba(239, 49, 36, 0.15);

  --ink: #000000;
  --sub: #6B6B6B;
  --muted: #9E9E9E;
  --line: #E8E8E8;

  --green: #2DC36A;

  --glass-light: rgba(255,255,255,0.55);
  --glass-light-border: rgba(255,255,255,0.75);
  --glass-dark: rgba(255,255,255,0.05);
  --glass-dark-border: rgba(255,255,255,0.08);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);

  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-pill: 999px;

  --font: 'Inter', -apple-system, system-ui, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Page-level ambient red glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 49, 36, 0.03), transparent 60%);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* Shared animations */
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.06); }
  66% { transform: translate(-15px, 15px) scale(0.94); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes dotAn {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}

/* Noise texture (reusable) */
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section spacing */
.section-light { padding: 48px 0; }
.section-dark-banner {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: 56px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

/* Shared button styles */
.btn-red-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px var(--red-glow);
  text-decoration: none;
}
.btn-red-pill:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(239, 49, 36, 0.35);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-pill:hover { border-color: var(--ink); }

.btn-black-pill {
  padding: 10px 24px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-black-pill:hover { background: #333; transform: translateY(-1px); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 2px 12px var(--red-glow);
}
.nav-logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.nav-cats {
  display: flex;
  gap: 28px;
}
.nav-cats a {
  font-size: 14px;
  font-weight: 600;
  color: var(--sub);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-cats a:hover { color: var(--ink); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ HERO ============ */
.hero-banner {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 49, 36, 0.15), transparent 65%);
  filter: blur(60px);
  animation: orbDrift 15s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -25%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 65%);
  filter: blur(50px);
  animation: orbDrift 15s ease-in-out infinite -7s;
}

/* USP dark-blue variant */
.dark-blue {
  background: #0D1117;
}
.hero-orb-blue-1 {
  top: -20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 120, 220, 0.14), transparent 65%);
  filter: blur(70px);
  animation: orbDrift 18s ease-in-out infinite;
}
.hero-orb-blue-2 {
  bottom: -15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(100, 160, 255, 0.08), transparent 65%);
  filter: blur(60px);
  animation: orbDrift 18s ease-in-out infinite -9s;
}

/* Monetization dark-warm variant */
.dark-warm {
  background: #15120F;
}
.hero-orb-warm-1 {
  top: -15%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(239, 160, 50, 0.1), transparent 65%);
  filter: blur(70px);
  animation: orbDrift 20s ease-in-out infinite;
}
.hero-orb-warm-2 {
  bottom: -10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 49, 36, 0.06), transparent 65%);
  filter: blur(60px);
  animation: orbDrift 20s ease-in-out infinite -10s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 5; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(45, 195, 106, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  max-width: 380px;
}

/* Hero right / demo card */
.hero-right { position: relative; z-index: 5; }
.hero-demo {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: var(--glass-dark);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
.hd-top {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-top-l { display: flex; align-items: center; gap: 7px; }
.hd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(45, 195, 106, 0.5);
}
.hd-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hd-ref {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  padding: 3px 10px;
  background: rgba(239, 49, 36, 0.1);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.hd-body { padding: 18px 20px; }
.hd-sit {
  padding: 14px 16px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.02);
  border-radius: var(--r-md);
  border-left: 2px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.hd-sit-l {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.18);
  margin-bottom: 6px;
}
.hd-sit-t { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.45); }
.hd-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hd-dots-inner { display: flex; gap: 4px; }
.hd-dots-inner i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  animation: dotAn 1.2s infinite;
}
.hd-dots-inner i:nth-child(2) { animation-delay: 0.2s; }
.hd-dots-inner i:nth-child(3) { animation-delay: 0.4s; }
.hd-dots-text { font-size: 11px; color: rgba(255,255,255,0.18); }
.hd-resp {
  padding: 16px;
  backdrop-filter: blur(12px);
  background: rgba(239, 49, 36, 0.06);
  border-radius: var(--r-md);
  border-left: 2px solid var(--red);
}
.hd-resp-head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.hd-resp-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
}
.hd-resp-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hd-resp-text { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.hd-resp-text strong { font-weight: 700; color: var(--red); }

/* ============ STATS ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px 0 48px;
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-glass);
  transition: all 0.25s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}
.stat-val {
  font-size: 34px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ============ PRODUCTS ============ */
.products { padding: 0 0 48px; }
.products-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.products-title { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
.products-link { font-size: 14px; font-weight: 600; color: var(--red); text-decoration: none; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-card {
  backdrop-filter: blur(12px);
  background: rgba(243, 243, 243, 0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: all 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.7);
  background: rgba(243, 243, 243, 0.8);
}
.pc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.pc-icon-blue { background: rgba(41, 121, 255, 0.08); border: 1px solid rgba(41, 121, 255, 0.12); }
.pc-icon-red { background: var(--red-dim); border: 1px solid var(--red-border); }
.pc-icon-green { background: rgba(45, 195, 106, 0.08); border: 1px solid rgba(45, 195, 106, 0.12); }
.pc-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.2; }
.pc-desc { font-size: 14px; color: var(--sub); line-height: 1.5; flex-grow: 1; }
.pc-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.pc-number-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ============ SITUATIONS ============ */
.situations { padding: 0 0 48px; }
.situations-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.situations-title { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
.sit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sit-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-gray);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.sit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sit-card-thumb {
  height: 200px;
  background: var(--bg-dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sit-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}
.sit-card-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  z-index: 2;
  transition: all 0.25s;
}
.sit-card:hover .sit-card-play {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}
.sit-card-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sit-card-body { padding: 20px; }
.sit-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.sit-card-desc { font-size: 13px; color: var(--sub); line-height: 1.45; }

/* ============ USP BANNER ============ */
.usp-title { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.1; }
.usp-subtitle { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 36px; max-width: 500px; line-height: 1.6; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.usp-item {
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  transition: all 0.3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.usp-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.usp-item-icon { font-size: 24px; margin-bottom: 14px; }
.usp-item-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.25; }
.usp-item-text { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ============ MARKET ============ */
.section-header { margin-bottom: 36px; }
.section-title { font-size: 32px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.1; }
.section-desc { font-size: 16px; color: var(--sub); line-height: 1.6; max-width: 560px; }
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.market-card {
  backdrop-filter: blur(12px); background: rgba(243,243,243,0.6); border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--r-xl); padding: 32px 28px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7); transition: all 0.3s;
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.7); }
.market-card-icon { font-size: 42px; margin-bottom: 16px; }
.market-card-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.market-card-text { font-size: 14px; color: var(--sub); line-height: 1.5; }

/* ============ MONETIZATION ============ */
.money-steps { display: flex; align-items: flex-start; gap: 16px; }
.money-step {
  flex: 1; padding: 24px; backdrop-filter: blur(16px); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.money-step-num { font-size: 28px; font-weight: 900; color: var(--red); opacity: 0.6; margin-bottom: 12px; }
.money-step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.money-step-text { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.money-step-arrow { color: rgba(255,255,255,0.15); font-size: 24px; padding-top: 40px; flex-shrink: 0; }

/* ============ PLATFORMS ============ */
.platforms-section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.platform-card {
  text-align: center;
  padding: 32px 20px;
  backdrop-filter: blur(12px);
  background: rgba(243, 243, 243, 0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.7);
}
.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.platform-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.platform-desc {
  font-size: 13px;
  color: var(--muted);
}

/* ============ TEAM ============ */
.team-section { text-align: center; padding: 56px 0; border-top: 1px solid var(--line); }
.team-badge {
  display: inline-block; padding: 5px 14px; background: var(--bg-gray); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; color: var(--sub); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px;
}
.team-title { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.team-desc { font-size: 16px; color: var(--sub); line-height: 1.6; max-width: 520px; margin: 0 auto; }

/* ============ PARTNER + CONTACT (merged) ============ */
.partner-contact-section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.partner-header {
  text-align: center;
  margin-bottom: 48px;
}
.cta-title { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.2; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-subtitle { font-size: 15px; color: var(--sub); line-height: 1.7; max-width: 520px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-title { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.contact-desc { font-size: 16px; color: var(--sub); line-height: 1.6; margin-bottom: 24px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.contact-link:hover { color: var(--red); }
.contact-link-icon {
  flex-shrink: 0;
  color: var(--sub);
  transition: color 0.15s;
}
.contact-link:hover .contact-link-icon { color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-input {
  padding: 14px 18px;
  background: var(--bg-gray);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 16px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left { display: flex; align-items: center; gap: 24px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--sub); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--ink); }

.lang-toggle {
  padding: 6px 16px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--ink); color: var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .nav-cats { display: none; }
  .hero-banner { grid-template-columns: 1fr; padding: 40px 32px; min-height: auto; }
  .hero-right { margin-top: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .sit-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .money-steps { flex-direction: column; }
  .money-step-arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-left { flex-direction: column; }
  .section-dark-banner { margin-bottom: 24px; }
  .section-light { padding: 32px 0; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero-banner { padding: 32px 24px; }
  .hero-title { font-size: 32px; }
  .section-dark-banner { padding: 40px 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-val { font-size: 28px; }
  .usp-grid { grid-template-columns: 1fr; }
  .section-title, .usp-title, .cta-title { font-size: 26px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
}
