@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  --primary-orange: #E28A1F;
  --primary-orange-dark: #C77A18;
  --soft-peach: #F08A6B;
  --warm-orange: #F4A261;
  --warm-beige: #E9D8C7;
  --off-white: #F7F3EE;
  --dark-text: #2B2B2B;
  --muted-text: #7A7A7A;
  --glow-pink: #FF7AA2;
  --soft-violet: #C084FC;
  --light-cyan: #7ED7C1;
  --gradient-main: linear-gradient(135deg, #F08A6B 0%, #F4A261 100%);
  --gradient-ai: radial-gradient(circle at 30% 20%, rgba(255,122,162,0.25) 0%, transparent 40%),
                  radial-gradient(circle at 80% 10%, rgba(126,215,193,0.2) 0%, transparent 40%),
                  linear-gradient(135deg, #F08A6B, #F4A261);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark-text);
  background-color: var(--warm-beige);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(233, 216, 199, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(226, 138, 31, 0.08);
}

/* Header over dark hero */
.site-header:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.75);
}

.site-header:not(.scrolled) .nav-links a:hover {
  color: #fff;
}

.site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.site-header:not(.scrolled) .logo img {
  filter: brightness(10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.site-header:not(.scrolled) .logo-text {
  color: #fff;
}

.footer-brand .logo-text {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--primary-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(226, 138, 31, 0.3);
}

.btn-primary:hover {
  background: var(--primary-orange-dark);
  box-shadow: 0 6px 30px rgba(226, 138, 31, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-text);
  border: 2px solid rgba(43, 43, 43, 0.15);
}

.btn-secondary:hover {
  border-color: var(--primary-orange);
  background: rgba(226, 138, 31, 0.06);
  color: var(--primary-orange);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary-orange);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 60px;
  background: #1a1215;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(240,138,107,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(192,132,252,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(126,215,193,0.08) 0%, transparent 60%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 122, 162, 0.12);
  top: -10%;
  left: -5%;
  animation: hero-float 12s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(126, 215, 193, 0.1);
  bottom: -10%;
  right: 10%;
  animation: hero-float 15s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 350px;
  height: 350px;
  background: rgba(192, 132, 252, 0.08);
  top: 30%;
  right: 30%;
  animation: hero-float 10s ease-in-out infinite 3s;
}

@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.08); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(25px, 10px) scale(1.04); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(226, 138, 31, 0.3); }
  50% { box-shadow: 0 0 40px rgba(226, 138, 31, 0.5); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.6s ease-out both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 8px rgba(226,138,31,0.6);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(226,138,31,0.6); }
  50% { box-shadow: 0 0 16px rgba(226,138,31,0.9), 0 0 32px rgba(226,138,31,0.3); }
}

.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  color: #fff;
  margin-bottom: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-line {
  display: block;
}

.hero-line-1 {
  animation: fadeUp 0.6s ease-out 0.15s both;
  color: rgba(255,255,255,0.65);
}

.hero-line-2 {
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero h1 .highlight {
  position: relative;
  display: inline;
  background: linear-gradient(135deg, var(--soft-peach), var(--warm-orange), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
  animation: fadeUp 0.6s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease-out 0.75s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--soft-peach), var(--primary-orange));
  color: #fff;
  box-shadow: 0 4px 24px rgba(226, 138, 31, 0.35), 0 0 60px rgba(240,138,107,0.12);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-orange), var(--soft-peach));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
  box-shadow: 0 6px 36px rgba(226, 138, 31, 0.5), 0 0 80px rgba(240,138,107,0.18);
  transform: translateY(-2px);
}

.btn-hero-primary:hover::before {
  opacity: 1;
}

.btn-hero-primary svg,
.btn-hero-primary span {
  position: relative;
  z-index: 1;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeUp 0.6s ease-out 0.9s both;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.hero-metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

/* Hero Right — Orbit Diagram */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-node-diagram {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-connections line {
  animation: dash-flow 3s linear infinite;
}

@keyframes dash-flow {
  to { stroke-dashoffset: -16; }
}

.hero-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-peach), var(--primary-orange));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 10;
  box-shadow:
    0 0 40px rgba(226,138,31,0.35),
    0 0 80px rgba(240,138,107,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: center-pulse 3s ease-in-out infinite;
}

@keyframes center-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(226,138,31,0.35), 0 0 80px rgba(240,138,107,0.15); }
  50% { box-shadow: 0 0 60px rgba(226,138,31,0.5), 0 0 120px rgba(240,138,107,0.25); }
}

.hero-center-node svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.hero-center-node span {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.hero-orbit-1 {
  inset: 30px;
  border: 1px solid rgba(255,255,255,0.05);
  animation: orbit-rotate 30s linear infinite;
}

.hero-orbit-2 {
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.03);
  animation: orbit-rotate 45s linear infinite reverse;
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-sat {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.hero-sat:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: scale(1.15);
}

.hero-sat span {
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-orbit-1 .hero-sat-1 { top: -26px; left: 50%; transform: translateX(-50%); }
.hero-orbit-1 .hero-sat-2 { bottom: -26px; left: 14%; transform: translateX(-50%); }
.hero-orbit-1 .hero-sat-3 { bottom: -26px; right: 14%; transform: translateX(50%); }

.hero-orbit-2 .hero-sat-4 { top: -26px; right: 20%; }
.hero-orbit-2 .hero-sat-5 { bottom: -26px; left: 50%; transform: translateX(-50%); }
.hero-orbit-2 .hero-sat-6 { top: 50%; left: -26px; transform: translateY(-50%); }

.hero-orbit-1 .hero-sat-1:hover,
.hero-orbit-1 .hero-sat-2:hover,
.hero-orbit-1 .hero-sat-3:hover { animation: none; }

.hero-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(226,138,31,0.15);
  pointer-events: none;
  animation: pulse-expand 4s ease-out infinite;
}

.hero-pulse-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.hero-pulse-ring-2 { width: 100px; height: 100px; animation-delay: 1.3s; }
.hero-pulse-ring-3 { width: 100px; height: 100px; animation-delay: 2.6s; }

@keyframes pulse-expand {
  0% { width: 100px; height: 100px; opacity: 0.6; border-color: rgba(226,138,31,0.3); }
  100% { width: 400px; height: 400px; opacity: 0; border-color: rgba(226,138,31,0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 24px;
  height: 24px;
  color: rgba(255,255,255,0.2);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-orange);
  margin-bottom: 16px;
}

.section-label svg {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--dark-text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ===== PROBLEM SECTION (Split layout) ===== */
.problem-section {
  background: var(--off-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-left .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.problem-left .section-subtitle {
  margin-bottom: 32px;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.problem-right {
  position: relative;
}

.problem-visual {
  position: relative;
  background: var(--gradient-ai);
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.problem-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192,132,252,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.problem-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
}

.problem-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.problem-icon svg {
  width: 20px;
  height: 20px;
}

.problem-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.problem-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--warm-beige);
  overflow: hidden;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary-orange), transparent);
  transform: translateX(-50%);
}

.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.how-step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--primary-orange);
  border-radius: 50%;
  border: 4px solid var(--warm-beige);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(226, 138, 31, 0.2);
}

.how-step:nth-child(even) .step-content {
  order: 2;
}

.how-step:nth-child(even) .step-visual {
  order: 1;
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.step-content p {
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.8;
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-icon-box {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--off-white);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.step-icon-box:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.step-icon-box svg {
  width: 64px;
  height: 64px;
  color: var(--primary-orange);
}

.step-icon-box::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: var(--gradient-main);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-icon-box:hover::after {
  opacity: 1;
}

/* ===== CAPABILITIES (Cards 2x2) ===== */
.capabilities-section {
  background: var(--off-white);
  position: relative;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 138, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.capability-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 138, 31, 0.05);
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(240, 138, 107, 0.12), rgba(244, 162, 97, 0.12));
}

.capability-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-orange);
}

.capability-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.capability-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== BENEFITS (Asymmetric) ===== */
.benefits-section {
  background: var(--gradient-ai);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,132,252,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-header {
  margin-bottom: 64px;
}

.benefits-header .section-title,
.benefits-header .section-label {
  color: #fff;
}

.benefits-header .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.4s ease;
  color: #fff;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}

.benefit-number {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
}

.benefits-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

/* ===== WHO IT'S FOR (Split) ===== */
.audience-section {
  background: var(--warm-beige);
}

.audience-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

.audience-left {
  position: relative;
}

.audience-left .section-subtitle {
  margin-bottom: 32px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-text);
  border: 1px solid rgba(226, 138, 31, 0.1);
  transition: all 0.3s ease;
}

.audience-tag:hover {
  border-color: var(--primary-orange);
  background: rgba(226, 138, 31, 0.06);
}

.audience-tag svg {
  width: 16px;
  height: 16px;
  color: var(--primary-orange);
}

.audience-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(226, 138, 31, 0.05);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.audience-card:nth-child(2) {
  transform: translateY(20px);
}

.audience-card:nth-child(2):hover {
  transform: translateY(16px);
}

.audience-card:nth-child(4) {
  transform: translateY(20px);
}

.audience-card:nth-child(4):hover {
  transform: translateY(16px);
}

.audience-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(240, 138, 107, 0.15), rgba(244, 162, 97, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
}

.audience-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
}

/* ===== FUTURE / VISION ===== */
.vision-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(126,215,193,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-left {
  position: relative;
}

.vision-left .section-subtitle {
  margin-bottom: 28px;
}

.vision-text-secondary {
  color: var(--muted-text);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 36px;
}

.vision-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-graphic {
  width: 360px;
  height: 360px;
  position: relative;
}

.vision-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.vision-ring-1 {
  inset: 0;
  border-color: rgba(226, 138, 31, 0.2);
  animation-delay: 0s;
}

.vision-ring-2 {
  inset: 30px;
  border-color: rgba(240, 138, 107, 0.25);
  animation-delay: 0.5s;
}

.vision-ring-3 {
  inset: 60px;
  border-color: rgba(244, 162, 97, 0.3);
  animation-delay: 1s;
}

.vision-center {
  position: absolute;
  inset: 90px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(226, 138, 31, 0.25);
}

.vision-center svg {
  width: 60px;
  height: 60px;
  color: #fff;
}

.vision-features {
  position: absolute;
  inset: 0;
}

.vision-feature-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.vision-feature-dot:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-hover);
}

.vision-feature-dot svg {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
}

.vision-feature-dot:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.vision-feature-dot:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.vision-feature-dot:nth-child(3) { bottom: 5%; left: 50%; transform: translateX(-50%); }
.vision-feature-dot:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

.vision-feature-dot:nth-child(1):hover { transform: translateX(-50%) scale(1.2); }
.vision-feature-dot:nth-child(2):hover { transform: translateY(-50%) scale(1.2); }
.vision-feature-dot:nth-child(3):hover { transform: translateX(-50%) scale(1.2); }
.vision-feature-dot:nth-child(4):hover { transform: translateY(-50%) scale(1.2); }

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--warm-beige);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--muted-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
}

.contact-detail span {
  font-size: 0.95rem;
  color: var(--dark-text);
}

.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 138, 31, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(226, 138, 31, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b5b5b5;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-text);
  color: #fff;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 32px;
  filter: brightness(10);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
}

.footer-social a:hover svg {
  color: #fff;
}

.footer-column h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.footer-column ul a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== PAGE SPECIFIC ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-ai);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 0;
}

.page-content .container {
  max-width: 900px;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--dark-text);
}

.prose h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.prose h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.prose p {
  margin-bottom: 20px;
  color: var(--muted-text);
}

.prose ul, .prose ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
  color: var(--muted-text);
}

.prose strong {
  color: var(--dark-text);
}

/* Blog */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(226, 138, 31, 0.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-banner {
  height: 220px;
  background: var(--gradient-ai);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-banner svg {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.4);
}

.blog-card-body {
  padding: 36px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-tag {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-orange);
  background: rgba(226, 138, 31, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.blog-card-body h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.blog-card-body p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-orange);
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 138, 31, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  background: var(--gradient-ai);
  color: #fff;
  border: none;
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--primary-orange);
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary-orange);
}

.pricing-card.featured .pricing-features li svg {
  color: #fff;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.pricing-card.featured .btn-primary {
  background: #fff;
  color: var(--primary-orange);
}

.pricing-card.featured .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.support-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 138, 31, 0.06);
  transition: all 0.4s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.support-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(240, 138, 107, 0.12), rgba(244, 162, 97, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.support-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
}

.support-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.support-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 138, 31, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    max-width: 520px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .problem-grid,
  .vision-content,
  .audience-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }

  .how-step {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }

  .how-step::before {
    display: none;
  }

  .how-step:nth-child(even) .step-content {
    order: 1;
  }

  .how-step:nth-child(even) .step-visual {
    order: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .vision-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-metrics {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-metric-value {
    font-size: 1.2rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 216, 199, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .capabilities-grid,
  .benefits-grid,
  .audience-right,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .audience-card:nth-child(2),
  .audience-card:nth-child(4) {
    transform: none;
  }

  .audience-card:nth-child(2):hover,
  .audience-card:nth-child(4):hover {
    transform: translateY(-4px);
  }

  .problem-stats {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .blog-card-banner {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .problem-stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-metrics {
    gap: 12px;
  }

  .hero-metric-divider {
    display: none;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
