/* ============================================================
   EPlan Landing Page — landing.css
   ============================================================ */

:root {
  --accent:       #047857;
  --accent-light: #10b981;
  --accent-soft:  #d1fae5;
  --accent-dark:  #064e3b;
  --ink:          #0f172a;
  --ink-mid:      #1e293b;
  --muted:        #64748b;
  --muted-light:  #94a3b8;
  --border:       #e2e8f0;
  --surface:      #f8fafc;
  --white:        #ffffff;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.05);
  --shadow-md:  0 4px 16px rgba(15,23,42,.1),  0 2px 6px rgba(15,23,42,.06);
  --shadow-lg:  0 20px 60px rgba(15,23,42,.14), 0 8px 24px rgba(15,23,42,.08);
  --shadow-xl:  0 32px 80px rgba(15,23,42,.18), 0 12px 32px rgba(15,23,42,.1);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 100px;
  scroll-margin-top: 128px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 18px rgba(4,120,87,.32);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--accent-soft);
  box-shadow: 0 2px 10px rgba(4,120,87,.14);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border-color: transparent;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--accent);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--accent-soft);
  box-shadow: 0 4px 18px rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.btn-lg svg { width: 18px; height: 18px; }

.btn-block {
  width: 100%;
  display: flex;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon { width: 32px; height: 32px; }
.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--ink);
  background: var(--surface);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(248,250,252,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.nav-language-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 56px;
  height: 34px;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav-language-btn:hover,
.nav-language-btn:focus-visible {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.nav-language-btn.is-active {
  color: var(--accent-dark);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(4,120,87,.18);
}

.nav-language-btn:active {
  transform: translateY(1px);
}

.nav-language-flag {
  font-size: 14px;
  line-height: 1;
}

.nav-language-code {
  line-height: 1;
}

.nav-language-switcher-mobile {
  align-self: flex-start;
  margin: 8px 0 4px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile[hidden] {
  display: none;
}
.nav-mobile-link {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
}
.nav-mobile-link:hover { background: var(--surface); }
.nav-mobile-cta { margin-top: 8px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(6,78,59,.08), rgba(209,250,229,.42) 42%, rgba(248,250,252,.94) 100%),
    radial-gradient(circle at 50% 8%, rgba(245,158,11,.08), transparent 32%),
    #f7fbf8;
  padding-top: 80px;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-blob-1 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, #bbf7d0 0%, #34d399 48%, transparent 100%);
}
.hero-blob-2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, #fef3c7 0%, #a7f3d0 55%, transparent 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(4,120,87,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(4,120,87,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(4,120,87,.09);
  border: 1px solid rgba(4,120,87,.22);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp .65s .08s ease both;
}
.hero-headline-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeUp .65s .16s ease both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .65s .24s ease both;
}

.hero-footnote {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-light);
  animation: fadeUp .65s .3s ease both;
}

/* Hero editor preview */
.hero-preview-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  animation: fadeUp .7s .35s ease both;
}

.hero-preview {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15,23,42,.06);
  overflow: hidden;
  max-width: 960px;
  margin-inline: auto;
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}
.preview-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.preview-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  flex: 1;
  text-align: center;
}
.preview-tools {
  display: flex;
  gap: 6px;
}
.preview-tool-pill {
  padding: 3px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--muted);
}
.preview-tool-pill.active {
  background: var(--accent-soft);
  border-color: rgba(4,120,87,.32);
  color: var(--accent);
  font-weight: 600;
}

.preview-body {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #edf6ef;
}
.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.preview-body::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, transparent 68%, rgba(247,251,248,.92) 100%),
    linear-gradient(180deg, transparent 0%, transparent 74%, rgba(6,78,59,.08) 100%);
}
.preview-live-badge,
.preview-stat-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.preview-live-badge {
  left: 20px;
  bottom: 20px;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 100px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226,232,240,.82);
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}
.preview-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 5px rgba(16,185,129,.16);
}
.preview-stat-card {
  right: 22px;
  bottom: 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(6,78,59,.92);
  color: var(--white);
}
.preview-stat-value {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}
.preview-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.76);
}

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar {
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 0 20px;
}
.trust-item svg { width: 16px; height: 16px; opacity: .65; }
.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Section header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Features ─────────────────────────────────────────────── */
.features {
  background: var(--surface);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #cbd5e1;
}
.feature-card-large {
  grid-column: span 1;
  background: linear-gradient(145deg, var(--white) 60%, #ecfdf5);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-icon-blue    { background: #d1fae5; color: #047857; }
.feature-icon-indigo  { background: #ccfbf1; color: #0f766e; }
.feature-icon-violet  { background: #ecfccb; color: #4d7c0f; }
.feature-icon-sky     { background: #fef3c7; color: #b45309; }
.feature-icon-emerald { background: #d1fae5; color: #059669; }
.feature-icon-rose    { background: #dcfce7; color: #15803d; }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.feature-pill {
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

/* ── How it works ─────────────────────────────────────────── */
.how { background: var(--white); }

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 220px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(4,120,87,.25);
  flex-shrink: 0;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.step-arrow {
  padding: 0 20px;
  color: var(--muted-light);
  flex-shrink: 0;
  padding-bottom: 56px;
}
.step-arrow svg { width: 40px; height: 16px; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing {
  background: linear-gradient(180deg, var(--surface) 0%, #ecfdf5 100%);
  padding-block: 80px;
}

.pricing .section-header {
  margin-bottom: 44px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pricing-card-guest {
  background: linear-gradient(145deg, var(--white) 62%, #f8fafc);
}
.pricing-card-pro {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.pricing-card-pro:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(4,120,87,.32);
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-card-pro .pricing-plan { color: var(--accent); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0 4px;
}
.pricing-amount {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
.pricing-currency {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.pricing-feature svg { width: 18px; height: 18px; flex-shrink: 0; }
.pricing-feature-no { color: var(--muted-light); }

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(245,158,11,.22), transparent 32%),
    linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 52%, #10b981 100%);
  position: relative;
  overflow: hidden;
  padding-block: 100px;
}
.cta-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding-block: 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo .nav-logo-text { color: var(--white); font-size: 17px; }
.footer-copy {
  font-size: 13px;
  color: #475569;
  margin-left: auto;
}
.footer-nav {
  display: flex;
  gap: 16px;
}
.footer-link {
  font-size: 13px;
  color: #64748b;
  transition: color var(--transition);
}
.footer-link:hover { color: #94a3b8; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: 48px; }
  .hero-cta .btn-outline { display: none; }

  .section { padding-block: 64px; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-large {
    grid-column: span 1;
  }

  .steps {
    flex-direction: column;
    align-items: stretch;
  }
  .step { max-width: 100%; text-align: left; flex-direction: row; align-items: flex-start; gap: 20px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
  .step-arrow { display: none; }

  .pricing-cards { grid-template-columns: 1fr; }

  .trust-sep { display: none; }
  .trust-bar-inner { gap: 12px; }
  .trust-item { padding: 0 8px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 480px) {
  .preview-sidebar { display: none; }
  .preview-tools { display: none; }
}
