/* ── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --coral:    #FF6969;
  --coral-d:  #e85555;
  --coral-bg: rgba(255,105,105,.08);
  --teal:     #00BFA5;
  --teal-bg:  rgba(0,191,165,.08);
  --violet:   #6C63FF;
  --violet-bg:rgba(108,99,255,.08);
  --amber:    #FF9800;
  --amber-bg: rgba(255,152,0,.08);
  --bg:       #F7F8FC;
  --surface:  #FFFFFF;
  --border:   #DFE0EB;
  --text:     #1a1a2e;
  --muted:    #6B7280;
  --nav-h:    64px;
  --r:        12px;
  --r-lg:     20px;
  --shadow:   0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:0 8px 40px rgba(0,0,0,.12);
}

/* ── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.center-text { text-align: center; }

/* ── TYPE UTILITIES ──────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-bg);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.section-sub.center-text { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 9px;
  transition: all .2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  gap: 8px;
}
.btn-coral  { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,105,105,.4); }
.btn-outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral-bg); }
.btn-ghost  { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-muted  { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-muted:hover { background: var(--bg); border-color: #c8c9d4; }
.btn-white  { background: #fff; color: var(--coral); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.btn-lg     { padding: 15px 34px; font-size: 16px; border-radius: 10px; }
.btn-sm     { padding: 8px 18px; font-size: 13px; }
.btn-full   { width: 100%; margin-top: 28px; padding: 14px; border-radius: 9px; font-size: 15px; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-img { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 7px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
  gap: 2px;
}
.nav-mobile a {
  padding: 11px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border: none; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background:
    radial-gradient(ellipse 55% 65% at 80% 45%, rgba(255,105,105,.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 0% 95%, rgba(108,99,255,.04) 0%, transparent 50%),
    #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
/* very faint dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero::after { display: none; }

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  letter-spacing: .01em;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,105,105,.2);
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.hero-english {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-sub {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; align-items: center; }
.hero-note { font-size: 12px; color: #9CA3AF; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 19px; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: 11.5px; color: var(--muted); }
.stat-sep { width: 1px; height: 28px; background: var(--border); }

/* ── PHONE MOCKUP ────────────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow { display: none; }
.phone-mockup {
  width: 268px;
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.07),
    0 4px 8px rgba(0,0,0,.05),
    0 16px 40px rgba(0,0,0,.10),
    0 40px 80px rgba(0,0,0,.08);
  position: relative;
  z-index: 1;
  transform: perspective(1400px) rotateY(-8deg) rotateX(2deg);
  transition: transform .4s ease;
}
.phone-mockup:hover {
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}
.phone-bar {
  width: 80px; height: 5px;
  background: #e2e2e2;
  border-radius: 100px;
  margin: 0 auto 14px;
}
.phone-screen { display: flex; flex-direction: column; gap: 11px; }
.mock-header { display: flex; justify-content: space-between; align-items: center; }
.mock-header-left { display: flex; align-items: center; gap: 7px; }
.mock-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.mock-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); }
.mock-notif { font-size: 16px; }
.mock-overview-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-card {
  border-radius: 10px;
  padding: 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mock-card.coral { background: linear-gradient(135deg, #FF6969 0%, #FF9A9A 100%); }
.mock-card.teal  { background: linear-gradient(135deg, #00BFA5 0%, #00D4BB 100%); }
.mock-card-icon { font-size: 14px; margin-bottom: 2px; }
.mock-card-num   { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.mock-card-label { font-size: 10px; color: rgba(255,255,255,.8); font-weight: 500; }
.mock-due-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,105,105,.08);
  border: 1px solid rgba(255,105,105,.2);
  border-radius: 8px;
  padding: 8px 10px;
}
.mock-due-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.mock-due-amount { font-size: 13px; font-weight: 700; color: var(--coral); }
.mock-section-title { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}
.mock-row.last { border: none; padding-bottom: 0; }
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av-coral  { background: var(--coral); }
.av-teal   { background: var(--teal); }
.av-violet { background: var(--violet); }
.mock-info { flex: 1; min-width: 0; }
.mock-name { font-size: 11px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-room { font-size: 9px; color: var(--muted); }
.mock-amount { font-size: 11px; font-weight: 700; flex-shrink: 0; }
.mock-amount.paid { color: #10B981; }
.mock-amount.due  { color: var(--coral); }

/* ── FEATURES ────────────────────────────────────────────────────────── */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-left-width: 4px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card.accent-coral  { border-left-color: var(--coral); }
.feature-card.accent-teal   { border-left-color: var(--teal); }
.feature-card.accent-violet { border-left-color: var(--violet); }
.feature-card.accent-amber  { border-left-color: var(--amber); }
.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 14px;
}
.coral-bg  { background: var(--coral-bg); }
.teal-bg   { background: var(--teal-bg); }
.violet-bg { background: var(--violet-bg); }
.amber-bg  { background: var(--amber-bg); }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ────────────────────────────────────────────────────── */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-section .section-label,
.how-section .section-title { display: block; text-align: center; }
.steps-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--coral);
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step-connector { flex-shrink: 0; opacity: .6; }

/* ── SECURITY ────────────────────────────────────────────────────────── */
.security-section { background: var(--bg); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.security-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  transition: box-shadow .2s, transform .2s;
}
.security-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.security-icon { font-size: 30px; margin-bottom: 14px; }
.security-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.security-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.security-trust-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.trust-icon { font-size: 16px; }

/* ── PRICING ─────────────────────────────────────────────────────────── */
.pricing-section { background: var(--surface); border-top: 1px solid var(--border); }
.pricing-section .section-label { display: block; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--surface);
  border: 2px solid var(--coral);
  transform: scale(1.03);
  box-shadow: 0 8px 48px rgba(255,105,105,.2);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 16px;
}
.plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 6px;
  line-height: 1;
}
.plan-rupee {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}
.plan-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.plan-period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: 5px;
}
.plan-period.one-time { font-size: 13px; }
.plan-annual {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.plan-save {
  display: inline-block;
  background: rgba(16,185,129,.12);
  color: #059669;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
}
.plan-divider { height: 1px; background: var(--border); margin: 18px 0; }
.plan-features { display: flex; flex-direction: column; gap: 11px; }
.plan-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.check {
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

/* ── COMPARE TABLE ───────────────────────────────────────────────────── */
.compare-strip {
  margin-top: 52px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
}
.compare-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.compare-table { display: flex; flex-direction: column; gap: 6px; }
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  align-items: center;
}
.compare-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.compare-highlight { background: var(--coral-bg); font-weight: 700; color: var(--text); }
.compare-yes { color: #10B981; font-weight: 700; }
.compare-no  { color: #9CA3AF; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-section .section-label { display: block; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--muted); }

/* ── CTA BAND ────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #FF6969 0%, #c94a4a 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 36px; }
.cta-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ── CONTACT ─────────────────────────────────────────────────────────── */
.contact-section { background: var(--surface); border-top: 1px solid var(--border); }
.contact-section .section-label { display: block; text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon { font-size: 34px; margin-bottom: 4px; }
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-value { font-size: 15px; font-weight: 600; color: var(--coral); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.footer-logo { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.footer-links { display: flex; gap: 6px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  padding: 5px 10px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.footer-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); margin-left: auto; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 56px 24px 60px;
    gap: 0;
    text-align: center;
  }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; border-top-color: var(--border); }
  .hero-visual { display: none; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }

  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .security-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; max-width: 340px; margin: 48px auto 0; }

  .steps-row { flex-direction: column; max-width: 340px; margin: 40px auto 0; }
  .step-connector { transform: rotate(90deg); }

  .compare-row { grid-template-columns: 2fr 1fr; }
  .compare-row > :last-child { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy  { margin-left: 0; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .security-grid  { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-sep { width: 48px; height: 1px; }
  .compare-strip { padding: 20px 16px; }
  .security-trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}
