/* ============================================
   MAILCRAFT — HOMEPAGE STYLES
   Palette: Blackish-grey & Whitish-grey matte
   Effects: Glassmorphism · Neomorphism · Shimmer
   ============================================ */

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

:root {
  /* Core palette */
  --bg-base:        #0e0e10;
  --bg-surface:     #141416;
  --bg-elevated:    #1a1a1e;
  --bg-card:        #1e1e22;
  --bg-card-hover:  #232328;

  /* Borders */
  --border-subtle:  rgba(255,255,255,0.06);
  --border-mid:     rgba(255,255,255,0.10);
  --border-strong:  rgba(255,255,255,0.16);

  /* Text */
  --text-primary:   #f0f0f2;
  --text-secondary: #a0a0b0;
  --text-muted:     #606070;

  /* Accent */
  --accent-1:       #b8b8d0;   /* pale lilac-grey */
  --accent-2:       #8888aa;   /* medium purple-grey */
  --accent-glow:    rgba(160,160,200,0.18);

  /* Premium gold */
  --gold-soft:      #f2d27a;

  /* Status colours */
  --clr-blue:       #5b8dee;
  --clr-green:      #4ecb8d;
  --clr-purple:     #9b72ef;
  --clr-orange:     #e88e4e;
  --clr-pink:       #e87cbe;
  --clr-teal:       #4ecbcb;

  /* Neo-shadow helpers */
  --shadow-raise:   6px 6px 16px rgba(0,0,0,0.55), -4px -4px 12px rgba(255,255,255,0.025);
  --shadow-inset:   inset 4px 4px 10px rgba(0,0,0,0.6), inset -3px -3px 8px rgba(255,255,255,0.025);
  --shadow-float:   0 20px 60px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.4);

  /* Glass */
  --glass-bg:       rgba(255,255,255,0.04);
  --glass-border:   rgba(255,255,255,0.09);
  --glass-blur:     16px;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', -apple-system, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.12;
  animation: orbDrift 18s ease-in-out infinite alternate;
}
.orb-1 { width:600px; height:600px; background:radial-gradient(circle,#7c7c cc,transparent); top:-200px; left:-200px; }
.orb-2 { width:500px; height:500px; background:radial-gradient(circle,#4c4c88,transparent); top:50%; right:-150px; animation-delay:-6s; }
.orb-3 { width:400px; height:400px; background:radial-gradient(circle,#2a2a60,transparent); bottom:-100px; left:40%; animation-delay:-12s; }
@keyframes orbDrift { 0%{transform:translate(0,0) scale(1);} 100%{transform:translate(60px,40px) scale(1.1);} }

.grain-overlay {
  position: absolute; inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: 20px;
}

/* ===== NEOMORPHISM CARD ===== */
.neo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  box-shadow: var(--shadow-raise);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.neo-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), -4px -4px 12px rgba(255,255,255,0.03);
}

/* ===== NEO CIRCLE ===== */
.neo-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-card);
  box-shadow: var(--shadow-raise);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.9rem; color: var(--accent-1);
  border: 1px solid var(--border-mid);
  flex-shrink: 0;
}

/* ===== SHIMMER EFFECTS ===== */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-badge {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.14) 50%,
    rgba(255,255,255,0.06) 75%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  border: 1px solid var(--border-mid);
}
.shimmer-text {
  background: linear-gradient(90deg,
    var(--text-primary) 20%,
    var(--accent-1) 50%,
    var(--text-primary) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}
.title-gradient {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-1) 50%, var(--text-secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  height: 72px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(14,14,16,0.7);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(14,14,16,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; margin-right: auto;
}
.logo-icon {
  font-size: 1.4rem; color: var(--accent-1);
  filter: drop-shadow(0 0 8px rgba(185,185,220,0.5));
}
.logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.3rem; color: var(--text-primary);
  letter-spacing: -.02em;
}
.logo-accent { color: var(--accent-1); }

.nav-links {
  display: flex; gap: 0.25rem; list-style: none;
}
.nav-link {
  text-decoration: none; color: var(--text-secondary);
  font-size: 0.9rem; padding: 0.45rem 0.9rem; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; gap: 0.75rem; align-items: center; }

.btn-ghost {
  text-decoration: none; color: var(--text-secondary);
  font-size: 0.875rem; padding: 0.5rem 1rem; border-radius: 10px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-mid); background: rgba(255,255,255,0.04); }

.btn-primary {
  text-decoration: none; color: var(--text-primary);
  font-size: 0.875rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; gap: 6px;
  transition: all 0.25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1240px; margin: 0 auto;
  padding: 6rem 2rem 4rem;
  gap: 4rem;
}
.hero-container { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.45rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 8px var(--clr-green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px var(--clr-green); }
  50%      { box-shadow: 0 0 14px var(--clr-green); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  color: var(--text-primary);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 32px rgba(0,0,0,0.4);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.btn-hero-primary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 14px 40px rgba(0,0,0,0.5);
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.85rem 1.4rem; border-radius: 14px;
  border: 1px solid var(--border-subtle);
  transition: all 0.25s;
}
.btn-hero-ghost:hover { color: var(--text-primary); border-color: var(--border-mid); background: rgba(255,255,255,0.04); }

/* Social proof */
.hero-social-proof { display: flex; align-items: center; gap: 1rem; }
.avatar-stack { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--bg-base);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--accent-1);
  margin-left: -10px; box-shadow: var(--shadow-raise);
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #1e2a3a; } .av2 { background: #2a1e3a; }
.av3 { background: #1e3a2a; } .av4 { background: #3a2a1e; }
.av5 { background: var(--bg-elevated); font-size: 0.65rem; }
.proof-text { font-size: 0.85rem; color: var(--text-secondary); }
.proof-count { font-weight: 700; color: var(--text-primary); }
.stars { color: #e8c84e; font-size: 0.75rem; margin-top: 2px; letter-spacing: 1px; }

/* ===== HERO VISUAL / MOCKUP ===== */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.mockup-wrapper { position: relative; width: 100%; max-width: 500px; }

.mockup-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(140,140,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-card {
  position: relative; padding: 1.25rem;
  border-radius: 20px;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px) rotate(-0.5deg); }
  50%      { transform: translateY(-12px) rotate(0.5deg); }
}

/* Card top bar */
.card-top-bar {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.bar-dots { display: flex; gap: 6px; }
.dot {
  width: 11px; height: 11px; border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }
.bar-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-left: auto; }

/* Stats row */
.stats-row { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.stat-item {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 0.75rem;
}
.stat-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-blue   { background: rgba(91,141,238,0.15); color: var(--clr-blue); }
.stat-green  { background: rgba(78,203,141,0.15); color: var(--clr-green); }
.stat-purple { background: rgba(155,114,239,0.15); color: var(--clr-purple); }

.stat-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.stat-value { font-size: 1rem; font-weight: 700; color: var(--text-primary); }

/* Mini chart */
.mini-chart { margin-bottom: 1.25rem; }
.chart-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.6rem; font-weight: 500; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 55px; }
.bar-wrap { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.chart-bar {
  width: 100%; height: var(--h);
  background: rgba(255,255,255,0.08);
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255,255,255,0.06);
  transition: height 1s var(--ease);
}
.chart-bar.active { background: rgba(160,160,200,0.3); border-color: rgba(160,160,200,0.4); }

/* Campaign list */
.campaign-list { display: flex; flex-direction: column; gap: 0.6rem; }
.campaign-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.025); border-radius: 10px;
  border: 1px solid var(--border-subtle);
}
.campaign-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-active { background: var(--clr-green); box-shadow: 0 0 6px var(--clr-green); }
.dot-draft  { background: var(--text-muted); }
.campaign-info { flex: 1; }
.campaign-name { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }
.campaign-meta { display: block; font-size: 0.68rem; color: var(--text-muted); }
.campaign-badge {
  font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.55rem;
  border-radius: 6px; white-space: nowrap;
}
.badge-success { background: rgba(78,203,141,0.15); color: var(--clr-green); border: 1px solid rgba(78,203,141,0.25); }
.badge-draft   { background: rgba(255,255,255,0.04); color: var(--text-muted); border: 1px solid var(--border-subtle); }

/* Floating pill cards */
.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 0.7rem 1rem; border-radius: 14px;
  box-shadow: var(--shadow-float);
  animation: floatPill 5s ease-in-out infinite;
}
.fc-1 { bottom: -20px; left: -50px; animation-delay: 0s; }
.fc-2 { top: 20px;    right: -50px; animation-delay: -1.8s; }
.fc-3 { bottom: 80px; right: -60px; animation-delay: -3.2s; }
@keyframes floatPill {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.fc-icon { font-size: 1.4rem; }
.fc-title { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.fc-sub   { font-size: 0.68rem; color: var(--text-muted); }

/* ===== LOGOS SECTION ===== */
.logos-section {
  position: relative; z-index: 1;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.logos-label {
  text-align: center; font-size: 0.8rem;
  color: var(--text-muted); margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.logos-track { overflow: hidden; width: 100%; }
.logos-scroll {
  display: flex; gap: 4rem; width: max-content;
  animation: scrollLogos 20s linear infinite;
}
.logo-item {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--text-muted);
  letter-spacing: -0.02em; white-space: nowrap;
  transition: color 0.3s;
}
.logo-item:hover { color: var(--text-secondary); }
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTION SHARED ===== */
.section-container {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 2rem;
}
.section-header {
  text-align: center; margin-bottom: 4rem;
}
.section-pill {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-mid);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto;
}

/* ===== FEATURES GRID ===== */
.features { background: var(--bg-base); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.feature-large { grid-column: span 1; }
.feature-card {
  padding: 1.75rem;
  transition-delay: var(--delay, 0s);
}
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.ficon-blue   { background: rgba(91,141,238,0.12); color: var(--clr-blue); border: 1px solid rgba(91,141,238,0.2); }
.ficon-green  { background: rgba(78,203,141,0.12); color: var(--clr-green); border: 1px solid rgba(78,203,141,0.2); }
.ficon-purple { background: rgba(155,114,239,0.12); color: var(--clr-purple); border: 1px solid rgba(155,114,239,0.2); }
.ficon-orange { background: rgba(232,142,78,0.12); color: var(--clr-orange); border: 1px solid rgba(232,142,78,0.2); }
.ficon-pink   { background: rgba(232,124,190,0.12); color: var(--clr-pink); border: 1px solid rgba(232,124,190,0.2); }
.ficon-teal   { background: rgba(78,203,203,0.12); color: var(--clr-teal); border: 1px solid rgba(78,203,203,0.2); }

.feature-title {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-primary);
}
.feature-desc {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 1rem;
}
.feature-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.06em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.65rem; border-radius: 6px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.steps-container {
  position: relative; display: flex; flex-direction: column; gap: 2rem;
  max-width: 760px; margin: 0 auto;
}
.steps-line {
  position: absolute; left: 30px; top: 30px;
  width: 1px; bottom: 30px;
  background: linear-gradient(to bottom, var(--border-subtle), var(--border-mid), var(--border-subtle));
}
.step-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  animation-delay: var(--delay, 0s);
  position: relative; z-index: 1;
}
.step-reverse { flex-direction: row-reverse; }
.step-content {
  flex: 1; padding: 1.5rem;
  transition: transform 0.3s var(--ease);
}
.step-content:hover { transform: translateX(4px); }
.step-reverse .step-content:hover { transform: translateX(-4px); }
.step-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.step-title {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-primary);
}
.step-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== PRICING ===== */
.pricing { background: var(--bg-base); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 760px; margin: 0 auto 2rem;
}
.pricing-card {
  padding: 2rem; position: relative; overflow: hidden;
  transition-delay: var(--delay, 0s);
}
.pricing-featured {
  border-color: var(--border-strong);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(40,40,55,1) 100%);
}
.pricing-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(160,160,220,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.plan-popular-badge {
  display: inline-flex; font-size: 0.72rem; font-weight: 700;
  color: var(--accent-1); padding: 0.25rem 0.75rem; border-radius: 100px;
  margin-bottom: 1rem; letter-spacing: 0.05em;
}
.plan-name {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.5rem;
}
.plan-price {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 2.8rem; color: var(--text-primary);
  letter-spacing: -0.04em; margin-bottom: 0.75rem;
}
.plan-per { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.plan-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }
.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 2rem;
}
.plan-features li { font-size: 0.875rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.check { color: var(--clr-green); font-weight: 700; font-size: 0.9rem; }
.cross { color: var(--text-muted); font-size: 0.9rem; }
.plan-btn {
  display: block; text-align: center; font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem; border-radius: 12px;
  text-decoration: none; transition: all 0.25s;
}
.plan-btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text-secondary);
  border: 1px solid var(--border-mid);
}
.plan-btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.plan-btn-primary {
  background: rgba(255,255,255,0.12); color: var(--text-primary);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.plan-btn-primary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.16);
}
.pricing-note {
  text-align: center; font-size: 0.82rem; color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.testi-card { padding: 1.75rem; transition-delay: var(--delay, 0s); }
.testi-card:hover { border-color: var(--border-mid); }
.testi-stars { color: #e8c84e; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  font-style: italic; margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--accent-1);
  box-shadow: var(--shadow-raise);
}
.testi-name { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }
.testi-role { font-size: 0.775rem; color: var(--text-muted); }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative; z-index: 1;
  padding: 6rem 2rem;
  display: flex; justify-content: center;
}
.cta-container {
  position: relative; overflow: hidden;
  max-width: 720px; width: 100%;
  padding: 4rem 3rem; text-align: center;
  border-radius: 28px;
}
.cta-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(160,160,220,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem; color: var(--text-secondary);
  margin-bottom: 2.5rem; line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.footer-container {
  max-width: 1200px; margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: flex; gap: 4rem;
}
.footer-brand { max-width: 240px; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }
.footer-links {
  display: flex; gap: 4rem; flex: 1; justify-content: flex-end;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-heading {
  font-size: 0.8rem; font-weight: 700; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.875rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  text-align: center; font-size: 0.78rem; color: var(--text-muted);
  padding: 1.5rem 2rem; border-top: 1px solid var(--border-subtle);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-container { align-items: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .steps-line { display: none; }
  .step-item, .step-reverse { flex-direction: column; }
  .footer-container { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; }
  .cta-container { padding: 2.5rem 1.5rem; }
}
