/* ── AppTrack.In — Shared Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;700;800;900&family=Instrument+Sans:ital,wght@0,400;0,500;1,400&display=swap');

/* ── VARIABLES ── */
:root {
  --black:       #08080c;
  --off-black:   #0f0f16;
  --card:        #13131c;
  --border:      rgba(255,255,255,0.08);
  --border2:     rgba(255,255,255,0.14);
  --text:        #eeeef5;
  --muted:       #7b7b99;
  --muted2:      #a8a8c0;
  --blue:        #4f8ef7;
  --blue-dim:    rgba(79,142,247,0.12);
  --green:       #3ecf8e;
  --green-dim:   rgba(62,207,142,0.12);
  --red:         #f75f5f;
  --red-dim:     rgba(247,95,95,0.12);
  --amber:       #f7b94f;
  --amber-dim:   rgba(247,185,79,0.12);
  --purple:      #9b6ef7;
  --purple-dim:  rgba(155,110,247,0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* GRAIN OVERLAY */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 64px;
  background: rgba(8,8,12,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900; font-size: 20px; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
}
.logo-icon {
  width: 32px; height: 32px; background: var(--blue);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted2); font-size: 14px; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ── BUTTONS ── */
.btn-nav-ghost, .btn-ghost {
  background: transparent; border: 1px solid var(--border2);
  color: var(--muted2); padding: 7px 18px; border-radius: 8px;
  font-size: 14px; font-family: 'Instrument Sans', sans-serif;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: color .2s, border-color .2s;
}
.btn-nav-ghost:hover, .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.btn-nav-cta, .btn-cta {
  background: var(--blue); color: #fff; border: none;
  padding: 8px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  font-family: 'Instrument Sans', sans-serif;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: opacity .2s, transform .2s;
}
.btn-nav-cta:hover, .btn-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary {
  background: var(--blue); color: #fff; border: none;
  padding: 14px 30px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  font-family: 'Instrument Sans', sans-serif;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: all .2s;
  box-shadow: 0 0 0 1px rgba(79,142,247,0.5), 0 8px 32px rgba(79,142,247,0.25);
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(79,142,247,0.5), 0 16px 48px rgba(79,142,247,0.35); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-glow-1 {
  position: absolute; width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(79,142,247,0.13) 0%, transparent 70%);
  top: 20%; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(62,207,142,0.07) 0%, transparent 70%);
  bottom: 10%; right: 5%; pointer-events: none;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 6px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 100px; font-size: 13px; color: var(--muted2);
  margin-bottom: 32px;
  animation: riseUp .6s ease both;
}
.hero-chip-pill {
  background: var(--green); color: #05180d;
  padding: 2px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.hero h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900; font-size: clamp(48px, 8vw, 96px);
  line-height: 1.0; letter-spacing: -3px; margin-bottom: 28px;
  animation: riseUp .6s .1s ease both;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero h1 .line2 { display: block; color: var(--muted); }
.hero-sub {
  max-width: 500px; font-size: 18px; color: var(--muted2);
  line-height: 1.7; margin-bottom: 44px;
  animation: riseUp .6s .2s ease both;
}
.hero-actions {
  display: flex; gap: 12px; align-items: center;
  animation: riseUp .6s .3s ease both;
}

/* ── METRICS ── */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 960px; margin: 64px auto 0;
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--off-black);
  animation: riseUp .6s .4s ease both;
}
.metric-item {
  padding: 28px 24px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.metric-item:last-child { border-right: none; }
.metric-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.metric-item.m-blue::before  { background: var(--blue); }
.metric-item.m-green::before { background: var(--green); }
.metric-item.m-purple::before{ background: var(--purple); }
.metric-item.m-red::before   { background: var(--red); }
.metric-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.metric-val { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 36px; line-height: 1; margin-bottom: 6px; }
.metric-val.blue   { color: var(--blue); }
.metric-val.green  { color: var(--green); }
.metric-val.purple { color: var(--purple); }
.metric-val.red    { color: var(--red); }
.metric-sub { font-size: 12px; color: var(--muted); }

/* ── SECTION COMMONS ── */
.section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 20px;
}
.section-tag span { width: 18px; height: 1px; background: var(--blue); display: inline-block; }
.section-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px;
}
.section-sub { font-size: 17px; color: var(--muted2); max-width: 500px; line-height: 1.7; margin-bottom: 64px; }

/* ── DASHBOARD PREVIEW ── */
.preview-wrap { max-width: 1100px; margin: 0 auto; padding: 0 60px 100px; }
.preview-frame {
  border: 1px solid var(--border2); border-radius: 20px; overflow: hidden;
  background: var(--off-black);
  box-shadow: 0 60px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
}
.preview-bar {
  background: var(--card); padding: 14px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.pbar-dots { display: flex; gap: 7px; }
.pbar-dot { width: 12px; height: 12px; border-radius: 50%; }
.pd-r { background: #f75f5f; } .pd-y { background: #f7b94f; } .pd-g { background: #3ecf8e; }
.pbar-url {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 7px;
  padding: 5px 14px; font-size: 12px; color: var(--muted); text-align: center; margin: 0 14px;
}
.preview-inner { display: grid; grid-template-columns: 190px 1fr; min-height: 400px; }
.p-sidebar { background: #0c0c14; border-right: 1px solid var(--border); padding: 18px 0; }
.ps-head {
  padding: 0 16px 16px;
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.ps-head-dot { width: 22px; height: 22px; border-radius: 6px; background: var(--blue); display: block; }
.ps-grp { padding: 0 10px; margin-bottom: 14px; }
.ps-grp-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; padding: 0 8px; }
.ps-item { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 7px; font-size: 12px; color: var(--muted2); margin-bottom: 2px; cursor: pointer; }
.ps-item.active { background: var(--blue-dim); color: var(--blue); }
.ps-item:hover:not(.active) { background: rgba(255,255,255,0.04); }
.ps-dot2 { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .5; }
.p-main { padding: 22px; }
.pm-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.pm-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 20px; }
.pm-date { font-size: 11px; color: var(--muted); margin-top: 2px; }
.pm-badge { background: var(--green-dim); color: var(--green); font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 100px; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; position: relative; overflow: hidden; }
.kpi::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.kpi.kb::after { background: var(--blue); }
.kpi.kg::after { background: var(--green); }
.kpi.kp::after { background: var(--purple); }
.kpi.kr::after { background: var(--red); }
.kpi-l { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.kpi-v { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 22px; }
.kv-b { color: var(--blue); } .kv-g { color: var(--green); } .kv-p { color: var(--purple); } .kv-r { color: var(--red); }
.kpi-s { font-size: 9px; color: var(--muted); margin-top: 2px; }
.charts-row { display: grid; grid-template-columns: 1fr 150px; gap: 10px; }
.chart-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.chart-title { font-size: 11px; font-weight: 500; margin-bottom: 10px; }

/* ── FEATURES ── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.feat-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--off-black); transition: background .25s;
}
.feat-card:nth-child(3n) { border-right: none; }
.feat-card:nth-last-child(-n+3) { border-bottom: none; }
.feat-card:hover { background: var(--card); }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; }
.fi-b { background: var(--blue-dim); }   .fi-g { background: var(--green-dim); }
.fi-r { background: var(--red-dim); }    .fi-p { background: var(--purple-dim); }
.fi-a { background: var(--amber-dim); }  .fi-t { background: rgba(20,184,166,0.12); }
.feat-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--muted2); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.step { background: var(--off-black); padding: 40px 36px; border: 1px solid var(--border); position: relative; }
.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child  { border-radius: 0 16px 16px 0; }
.step-num { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 64px; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: 20px; letter-spacing: -2px; }
.step-icon { font-size: 28px; margin-bottom: 14px; }
.step-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted2); line-height: 1.7; }
.step-connector {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; background: var(--card);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; z-index: 2; color: var(--muted);
}
.step:last-child .step-connector { display: none; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; }
.pricing-card {
  background: var(--off-black); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.pricing-card.hot {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(79,142,247,0.07), var(--off-black));
  box-shadow: 0 0 0 1px rgba(79,142,247,0.25);
}
.hot-badge { display: inline-block; background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 12px; border-radius: 100px; margin-bottom: 16px; }
.p-name { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 26px; margin-bottom: 10px; letter-spacing: -0.5px; }
.p-desc { font-size: 14px; color: var(--muted2); line-height: 1.6; margin-bottom: 28px; min-height: 56px; }
.p-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 6px; }
.p-amount { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 52px; line-height: 1; letter-spacing: -2px; }
.p-unit { font-size: 14px; color: var(--muted); }
.p-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.p-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.p-feats { list-style: none; margin-bottom: 32px; flex: 1; }
.p-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted2); margin-bottom: 11px; line-height: 1.5; }
.p-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--green); font-size: 10px; font-weight: 700; }
.p-btn { width: 100%; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 500; font-family: 'Instrument Sans', sans-serif; cursor: pointer; transition: all .2s; border: none; text-decoration: none; display: block; text-align: center; }
.p-btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--text); }
.p-btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.p-btn-fill { background: var(--blue); color: #fff; box-shadow: 0 0 30px rgba(79,142,247,0.3); }
.p-btn-fill:hover { opacity: .88; transform: translateY(-2px); }
.p-btn-dark { background: var(--text); color: var(--black); }
.p-btn-dark:hover { opacity: .85; transform: translateY(-2px); }

/* ── SAVE STRIP ── */
.save-strip { max-width: 1200px; margin: 24px auto 0; padding: 0 60px; display: flex; align-items: center; justify-content: center; }
.save-pill { background: var(--green-dim); border: 1px solid rgba(62,207,142,0.25); color: var(--green); font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: 100px; }
.save-pill strong { font-weight: 700; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--off-black); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testi-stars { color: var(--amber); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--muted2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.ta-b { background: var(--blue-dim);   color: var(--blue); }
.ta-g { background: var(--green-dim);  color: var(--green); }
.ta-p { background: var(--purple-dim); color: var(--purple); }
.testi-name { font-size: 14px; font-weight: 500; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 17px;
  text-align: left; padding: 22px 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 22px; color: var(--muted); transition: transform .25s, color .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-a { font-size: 15px; color: var(--muted2); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ── CTA ── */
.cta-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 60px 120px; }
.cta-card {
  border: 1px solid rgba(79,142,247,0.2); border-radius: 24px; padding: 90px 60px;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(79,142,247,0.07) 0%, transparent 60%);
}
.cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(79,142,247,0.1) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: clamp(32px, 5vw, 56px); letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 16px; position: relative; }
.cta-sub { font-size: 18px; color: var(--muted2); margin-bottom: 40px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; position: relative; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 40px 60px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; }
.footer-links { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-links a { color: var(--muted2); font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-links a.active { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 110px 40px 100px; }
.legal-badge { display: inline-block; background: var(--blue-dim); color: var(--blue); font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; margin-bottom: 20px; }
.legal-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 42px; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 12px; }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-body h2 { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 20px; margin: 40px 0 12px; }
.legal-body h3 { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 16px; margin: 24px 0 8px; color: var(--muted2); }
.legal-body p { font-size: 15px; color: var(--muted2); line-height: 1.8; margin-bottom: 16px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { font-size: 15px; color: var(--muted2); line-height: 1.8; margin-bottom: 8px; }
.legal-body a { color: var(--blue); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-highlight { background: var(--card); border: 1px solid var(--border2); border-left: 3px solid var(--blue); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; }
.legal-highlight p { margin: 0; font-size: 14px; }

/* ── ANIMATIONS ── */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 60px 20px; }
  .preview-wrap { padding: 0 20px 60px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:first-child, .step:last-child { border-radius: 0; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .preview-inner { grid-template-columns: 1fr; }
  .p-sidebar { display: none; }
  .cta-wrap { padding: 40px 20px 80px; }
  .cta-card { padding: 60px 24px; }
  .save-strip { padding: 0 20px; }
  footer { padding: 32px 20px; }
  .footer-links { gap: 16px; }
  .legal-wrap { padding: 90px 20px 60px; }
  .legal-title { font-size: 30px; }
}