/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #000000;
  --bg-card: #0e0e0e;
  --bg-card-hover: #141414;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --text: #c1c1c1;
  --text-muted: #747474;
  --text-subtle: #474747;
  --accent: #e1ff00;
  --accent-dim: #a7d129;
  --accent-soft: rgba(225, 255, 0, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(225, 255, 0, 0.055) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(167, 209, 41, 0.04) 0%, transparent 50%),
    #000000;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAV ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--text);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 22px;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: color 0.15s, border-color 0.15s;
}

.nav-cta:hover {
  color: var(--text);
  border-color: var(--text-subtle);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
}

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

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 12px 6px 10px;
  background: rgba(225, 255, 0, 0.07);
  border: 1px solid rgba(225, 255, 0, 0.15);
  border-radius: 100px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #000000;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-primary.btn-large {
  padding: 15px 32px;
  font-size: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: var(--text-subtle);
  color: var(--text);
}

/* ===== MOCKUP ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(225, 255, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mockup-card {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d0d0d;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04), 0 0 60px rgba(225,255,0,0.04);
  position: relative;
  z-index: 1;
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.4);
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.mockup-body {
  display: flex;
  height: 320px;
}

/* Sidebar */
.mockup-sidebar {
  width: 130px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-brand-badge {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #f4bf24;
  color: #111;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-brand-title {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.mockup-brand-sub {
  font-size: 7px;
  color: #555;
  line-height: 1;
  margin-top: 2px;
}

.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  font-size: 10px;
  color: #666;
  border-radius: 8px;
  cursor: default;
}

.mockup-nav-item.active {
  color: #f4bf24;
  background: rgba(244, 191, 36, 0.14);
  box-shadow: inset 0 0 0 1px rgba(244, 191, 36, 0.18);
}

/* Main */
.mockup-main {
  flex: 1;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-page-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.mockup-date-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-date-btn {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #888;
}

.mockup-date-label {
  font-size: 9px;
  font-weight: 600;
  color: #888;
}

/* Timeline */
.mockup-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.mockup-time-slot {
  display: flex;
  gap: 8px;
  align-items: stretch;
  min-height: 46px;
}

.mockup-time {
  font-size: 8px;
  color: #444;
  width: 28px;
  padding-top: 4px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.mockup-slot-content {
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mockup-appt-card {
  border-radius: 10px;
  padding: 8px 10px;
  height: 100%;
  border: 1px solid transparent;
}

.mockup-appt-card.accent {
  background: rgba(244, 191, 36, 0.12);
  border-color: rgba(244, 191, 36, 0.2);
}

.mockup-appt-card.blue {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.18);
}

.mockup-appt-card.purple {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.18);
}

.mockup-appt-name {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.mockup-appt-desc {
  font-size: 9px;
  color: #666;
}

/* ===== STATS ===== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(225,255,0,0.02) 0%, transparent 100%);
}

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

.stat {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 5px 12px 5px 10px;
  background: rgba(225, 255, 0, 0.07);
  border: 1px solid rgba(225, 255, 0, 0.14);
  border-radius: 100px;
}

.section-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PAIN POINTS ===== */
.pain-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pain-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,255,0,0), transparent);
  transition: background 0.3s;
}

.pain-card:hover {
  border-color: rgba(225, 255, 0, 0.15);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(225,255,0,0.06);
}

.pain-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(225,255,0,0.25), transparent);
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-light), var(--accent-dim), var(--border-light));
  align-self: center;
  margin-top: -40px;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(225, 255, 0, 0.15);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Tab Toggle */
.how-tabs input[type="radio"] {
  display: none;
}

.how-tab-labels {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.how-tab-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  width: calc(50% - 5px);
  background: rgba(225, 255, 0, 0.1);
  border: 1px solid rgba(225, 255, 0, 0.2);
  border-radius: 8px;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

#tab-studio:checked ~ .how-tab-labels .how-tab-slider {
  transform: translateX(100%);
}

.how-tab-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.how-tab-label:hover {
  color: var(--text);
}

/* Active label text color */
#tab-solo:checked ~ .how-tab-labels label[for="tab-solo"],
#tab-studio:checked ~ .how-tab-labels label[for="tab-studio"] {
  color: var(--accent);
}

/* Content visibility */
.how-tab-content {
  display: none;
}

#tab-solo:checked ~ #content-solo,
#tab-studio:checked ~ #content-studio {
  display: block;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,255,0,0), transparent);
  transition: background 0.3s;
}

.feature-card:hover {
  border-color: rgba(225, 255, 0, 0.15);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(225,255,0,0.06);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(225,255,0,0.25), transparent);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  color: #ffffff;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FOR WHO ===== */
.for-who {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.plan-card {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.plan-card.featured {
  border-color: rgba(167, 209, 41, 0.35);
  background: linear-gradient(135deg, rgba(59, 73, 34, 0.4) 0%, var(--bg-card) 60%);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(225, 255, 0, 0.2);
}

.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.plan-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.plan-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 73, 34, 0.25) 0%, rgba(14,14,14,0) 60%);
  border: 1px solid rgba(167, 209, 41, 0.2);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(225,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 5px 12px 5px 10px;
  background: rgba(225, 255, 0, 0.07);
  border: 1px solid rgba(225, 255, 0, 0.18);
  border-radius: 100px;
  position: relative;
}

.cta-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-subtle);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-subtle);
}

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

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-subtle);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
}

.legal-container {
  max-width: 740px;
}

.legal-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.legal-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

.legal-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-note {
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(225, 255, 0, 0.05);
  border: 1px solid rgba(225, 255, 0, 0.15);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.legal-note strong {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-connector {
    display: none;
  }

  .nav-link {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 110px 0 70px;
  }

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

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

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

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

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .hero-trust {
    gap: 12px;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .mockup-sidebar {
    display: none;
  }
}
