/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --orange: #ffa800;
  --orange-light: #ffbd3d;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --gradient: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(255,168,0,.08) 0%, rgba(236,72,153,.08) 100%);
  --glow-orange: rgba(255, 168, 0, 0.35);
  --glow-pink: rgba(236, 72, 153, 0.35);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   GRADIENT TEXT
   =========================== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   GLOW CARD
   =========================== */
.glow-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all .3s ease;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity .3s ease;
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: var(--gradient);
  opacity: 0;
  filter: blur(16px);
  z-index: -2;
  transition: opacity .3s ease;
}

.glow-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card:hover::after {
  opacity: 0.4;
}

/* Inner bg so gradient border shows through */
.glow-card > *:first-child {
  position: relative;
}

.glow-card {
  overflow: hidden;
}

.glow-card:hover {
  background: var(--white);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  font-family: var(--font);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,168,0,.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255,168,0,.45);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--gray-200);
  color: var(--gray-800);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-ghost {
  color: var(--gray-600);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--gray-900);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: all .3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gray-900);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
}

.mobile-menu a {
  padding: 8px 0;
  font-weight: 500;
  color: var(--gray-700);
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,168,0,.1) 0%, rgba(236,72,153,.05) 50%, transparent 80%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 20px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid rgba(255,168,0,.15);
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--gray-400);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* MOCKUP */
.hero-mockup {
  max-width: 960px;
  margin: 80px auto 0;
  perspective: 1000px;
}

.mockup-window {
  background: var(--gray-900);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255,168,0,.15),
    0 25px 50px -12px rgba(0,0,0,.25),
    0 0 80px rgba(255,168,0,.08),
    0 0 80px rgba(236,72,153,.05);
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg); }
  50% { transform: translateY(-8px) rotateX(0deg); }
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--gray-800);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
}

.mockup-content {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 180px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 12px;
}

.mockup-nav-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
  transition: all .2s;
}

.mockup-nav-item.active {
  background: rgba(255,168,0,.15);
  color: var(--orange);
}

.mockup-main {
  flex: 1;
  padding: 24px;
}

.mockup-greeting {
  margin-bottom: 24px;
}

.mockup-greeting-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.mockup-greeting-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 4px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mockup-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.mockup-card.blue { border-color: rgba(59,130,246,.3); }
.mockup-card.green { border-color: rgba(16,185,129,.3); }
.mockup-card.orange { border-color: rgba(255,168,0,.3); }

.mockup-card-icon { font-size: 20px; margin-bottom: 8px; }
.mockup-card-title { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }
.mockup-card-value { font-size: 18px; font-weight: 700; color: var(--white); margin: 4px 0; }
.mockup-card-sub { font-size: 12px; color: var(--gray-500); }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.trust-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: .5;
}

.trust-logo {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  padding: 6px 16px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(255,168,0,.12);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gray-900);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 16px auto 0;
}

/* ===========================
   PROBLEM SECTION
   =========================== */
.problem-section {
  padding: 100px 0 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.problem-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.problem-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.solution-arrow {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.arrow-line {
  flex: 1;
  max-width: 160px;
  height: 2px;
  background: var(--gradient);
  opacity: .3;
}

.arrow-text {
  font-size: 24px;
  font-weight: 800;
}

/* ===========================
   FEATURES
   =========================== */
.features-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px;
}

.feature-card.featured {
  border-color: rgba(255,168,0,.3);
  background: linear-gradient(145deg, rgba(255,168,0,.03) 0%, rgba(236,72,153,.03) 100%);
}

.feature-card.featured::before {
  opacity: 0.6;
}

.feature-card.featured::after {
  opacity: 0.2;
}

.feature-badge {
  display: inline-flex;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section {
  padding: 100px 0;
}

.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  padding: 40px 32px;
  text-align: center;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.step-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===========================
   PRICING
   =========================== */
.pricing-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color .2s;
}

.toggle-label.active {
  color: var(--gray-900);
}

.save-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius-full);
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  padding: 3px;
  transition: background .3s;
  position: relative;
}

.toggle-switch.active {
  background: var(--orange);
}

.toggle-knob {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .3s;
  box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(22px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--orange);
  position: relative;
}

.pricing-card.popular::before {
  opacity: 1 !important;
}

.pricing-card.popular::after {
  opacity: 0.25 !important;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

.pricing-price {
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.price-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -1px;
}

.price-period {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--gray-600);
}

.pricing-features li.excluded {
  color: var(--gray-300);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
}

.testimonial-stars {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===========================
   COMPARISON TABLE
   =========================== */
.comparison-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
}

.comparison-table thead tr {
  background: var(--gray-900);
}

.comparison-table th {
  color: var(--gray-400);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.comparison-table th.highlight {
  color: var(--orange);
}

.comparison-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table tbody tr:hover {
  background: var(--gray-50);
}

.comparison-table td {
  color: var(--gray-500);
}

.comparison-table td.highlight {
  color: var(--gray-800);
  font-weight: 600;
}

/* ===========================
   FAQ
   =========================== */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .3s;
}

.faq-item.open {
  border-color: rgba(255,168,0,.3);
  box-shadow: 0 0 20px rgba(255,168,0,.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: all .2s;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  font-size: 22px;
  color: var(--gray-400);
  transition: transform .3s;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===========================
   CTA
   =========================== */
.cta-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.cta-card {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.glow-card-lg {
  position: relative;
}

.glow-card-lg::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: var(--gradient);
  opacity: .5;
  z-index: -1;
}

.glow-card-lg::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 10px);
  background: var(--gradient);
  opacity: .15;
  filter: blur(30px);
  z-index: -2;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.cta-card p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 80px 0 32px;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 18px;
  transition: opacity .2s;
}

.footer-social a:hover {
  opacity: .7;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-cards {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 48px 24px;
  }
}
