/* ═══════════════════════════════════════════════════════════
   FLOWLANE — Design System
   Palette: Volcanic Glass + Warm Orange
   Typography: Clash Display (via fallback) + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts fallback for Clash Display ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Syne:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Colors */
  --c-bg:          #111111;
  --c-bg-2:        #181818;
  --c-bg-3:        #1f1f1f;
  --c-surface:     #242424;
  --c-surface-2:   #2e2e2e;
  --c-border:      rgba(255,255,255,0.08);
  --c-border-2:    rgba(255,255,255,0.14);

  --c-orange:      #FF6B2B;
  --c-orange-light:#FFB088;
  --c-orange-glow: rgba(255,107,43,0.18);
  --c-orange-glow2:rgba(255,107,43,0.08);

  --c-purple:      #7B68EE;
  --c-green:       #4CAF50;

  --c-text:        #F0EDE8;
  --c-text-2:      #A8A29E;
  --c-text-3:      #6B6560;

  /* Typography */
  --font-display: 'Syne', 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
em { font-style: italic; color: var(--c-orange); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #ff7d42;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,43,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  color: var(--c-text-2);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--c-text); background: var(--c-surface); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--c-border-2);
  border-radius: var(--r-full);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}
.btn-outline:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  transition: color 0.2s;
}
.btn-ghost-light:hover { color: #fff; }

.btn-large { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--c-orange-glow);
  color: var(--c-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,107,43,0.25);
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--c-text-2);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(17,17,17,0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.3s;
}
.nav-header.scrolled {
  background: rgba(17,17,17,0.95);
  border-bottom-color: var(--c-border-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
}
.nav-links a {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-2);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--c-text); background: var(--c-surface); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-2);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--c-text); background: var(--c-surface); }
.nav-mobile .btn-primary,
.nav-mobile .btn-outline { margin-top: 0.25rem; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.mesh-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.35) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.mesh-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,104,238,0.2) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.mesh-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,176,136,0.15) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 10s ease-in-out infinite;
}
.mesh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 30px) scale(1.05); }
  66%       { transform: translate(20px, -20px) scale(0.97); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(50px, -40px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-30px, 20px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text-2);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0.1); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--c-bg);
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: 0.85rem;
  color: var(--c-text-2);
}
.hero-social-proof strong { color: var(--c-text); }

/* Hero visual — UI mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.ui-card--main {
  width: 100%;
  max-width: 380px;
  padding: 0;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.ui-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-3);
}
.ui-dots { display: flex; gap: 5px; }
.ui-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-surface-2);
}
.ui-dots span:nth-child(1) { background: #FF5F57; }
.ui-dots span:nth-child(2) { background: #FFBD2E; }
.ui-dots span:nth-child(3) { background: #28CA41; }
.ui-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-2);
  margin-left: 0.25rem;
}

.ui-flow {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text);
  transition: border-color 0.2s;
}
.flow-node:hover { border-color: var(--c-border-2); }
.flow-node-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.flow-connector {
  position: relative;
  display: flex;
  justify-content: center;
  height: 28px;
  align-items: center;
}
.flow-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--c-border-2), var(--c-border));
}
.flow-pulse {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--c-orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-orange);
  animation: flowPulse 2s ease-in-out infinite;
}
.flow-pulse--delay  { animation-delay: 0.6s; }
.flow-pulse--delay2 { animation-delay: 1.2s; }
@keyframes flowPulse {
  0%   { transform: translateY(-10px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

.ui-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.2rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg-3);
  font-size: 0.75rem;
  color: var(--c-text-3);
}
.status-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
}
.status-badge--live {
  background: rgba(76,175,80,0.15);
  color: #4CAF50;
  border: 1px solid rgba(76,175,80,0.3);
}

/* Floating stat cards */
.ui-card--stat {
  position: absolute;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-lg);
  min-width: 130px;
  text-align: center;
}
.ui-card--stat1 {
  top: -20px;
  right: -30px;
  animation: cardFloat 7s ease-in-out infinite 1s;
}
.ui-card--stat2 {
  bottom: 20px;
  left: -30px;
  animation: cardFloat 8s ease-in-out infinite 0.5s;
}
.stat-icon { font-size: 1.3rem; margin-bottom: 0.25rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--c-text-3);
  margin-top: 0.2rem;
}

/* Hero logos */
.hero-logos {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-border);
  text-align: center;
}
.logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 1.25rem;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
}
.logo-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-3);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.logo-item:hover { color: var(--c-text-2); }

/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
.features {
  padding: var(--space-3xl) 0;
  background: var(--c-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,43,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.feature-card-visual {
  background: var(--c-bg-3);
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--c-border);
}
.feature-card-body {
  padding: 2rem 2rem 2rem 0;
}
.feature-card--large .feature-icon { margin-bottom: 1rem; }

.feature-illustration--builder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ill-node {
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-md);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--c-border-2);
}
.ill-node--a { background: rgba(255,107,43,0.12); color: var(--c-orange); border-color: rgba(255,107,43,0.3); }
.ill-node--b { background: rgba(123,104,238,0.12); color: var(--c-purple); border-color: rgba(123,104,238,0.3); }
.ill-node--c { background: rgba(76,175,80,0.12); color: var(--c-green); border-color: rgba(76,175,80,0.3); }
.ill-arrow { color: var(--c-text-3); font-size: 1.1rem; }

.feature-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 1.1rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-orange);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.feature-link:hover { text-decoration: underline; }
.feature-link--light { color: rgba(255,255,255,0.85); }
.feature-link--light:hover { color: #fff; }

.feature-card--accent {
  background: linear-gradient(135deg, var(--c-orange) 0%, #e85a1e 100%);
  border-color: transparent;
}
.feature-card--accent h3 { color: #fff; }
.feature-card--accent p { color: rgba(255,255,255,0.8); }
.feature-card--accent .feature-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}
.feature-card--accent::before { display: none; }
.feature-card--accent:hover { box-shadow: 0 16px 48px rgba(255,107,43,0.35); }

/* ════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════ */
.stats-band {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-xl) 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--c-text-3);
  margin-top: 0.4rem;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--c-bg);
  overflow: hidden;
}

.carousel-wrapper { position: relative; }
.carousel {
  overflow: hidden;
  border-radius: var(--r-xl);
}
.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 800;
  color: var(--c-orange);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  color: var(--c-orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: var(--c-text);
  font-style: italic;
  max-width: 700px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border-2);
}
.testimonial-author strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--c-text-3);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.carousel-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text-2);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.carousel-btn:hover {
  background: var(--c-surface-2);
  border-color: var(--c-border-2);
  color: var(--c-text);
  transform: scale(1.08);
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-surface-2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--c-orange);
  width: 24px;
  border-radius: var(--r-full);
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing {
  padding: var(--space-3xl) 0;
  background: var(--c-bg-2);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: var(--space-xl);
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.toggle-save {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  background: rgba(76,175,80,0.15);
  color: var(--c-green);
  border-radius: var(--r-full);
  border: 1px solid rgba(76,175,80,0.3);
}
.toggle-switch {
  width: 44px; height: 24px;
  background: var(--c-surface-2);
  border-radius: var(--r-full);
  border: 1px solid var(--c-border-2);
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
}
.toggle-switch[aria-checked="true"] { background: var(--c-orange); border-color: var(--c-orange); }
.toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch[aria-checked="true"] .toggle-thumb { transform: translateX(20px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pricing-card--featured {
  border-color: var(--c-orange);
  background: linear-gradient(160deg, rgba(255,107,43,0.06) 0%, var(--c-surface) 50%);
  box-shadow: 0 0 0 1px rgba(255,107,43,0.2), 0 24px 60px rgba(255,107,43,0.1);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,107,43,0.3), 0 28px 70px rgba(255,107,43,0.15);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-card-header { margin-bottom: 1.5rem; }
.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.pricing-card-header p {
  font-size: 0.85rem;
  color: var(--c-text-2);
  line-height: 1.6;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text-2);
  align-self: flex-start;
  margin-top: 0.4rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: all 0.3s var(--ease-out);
}
.price-period {
  font-size: 0.85rem;
  color: var(--c-text-3);
  margin-left: 0.1rem;
}
.pricing-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--c-text-2);
}
.check {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-green);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.check--muted { color: var(--c-text-3); }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--c-text-3);
}

/* ════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,43,0.2) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.cta-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,104,238,0.15) 0%, transparent 70%);
  bottom: -50px; right: 10%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--c-text-2);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: var(--space-xl);
}
.footer-brand .nav-logo {
  margin-bottom: 0.85rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--c-text-3);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text-3);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--c-text);
  border-color: var(--c-border-2);
  background: var(--c-surface-2);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--c-text-3);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--c-border);
  font-size: 0.8rem;
  color: var(--c-text-3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--large {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile
════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-xl: 3rem;
  }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero {
    padding-top: calc(var(--nav-h) + 3rem);
    min-height: auto;
  }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-visual { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .feature-card-visual { display: none; }
  .feature-card-body { padding: 1.75rem; }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-divider { display: none; }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}