/* 1PX Theme — main.css | v3.0.0 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@300;400;500&family=Fraunces:ital,opsz,wght@0,9..144,300;1,9..144,300&display=swap');

/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg:            #07070F;
  --bg2:           #0D0C1A;
  --bg3:           #13112A;
  --indigo:        #1E1B4B;
  --violet:        #5B21B6;
  --purple:        #818CF8;
  --purple-light:  #C4B5FD;
  --white:         #F5F4FF;
  --muted:         #6B6A8A;
  --border:        rgba(129,140,248,0.12);
  --border-bright: rgba(129,140,248,0.30);
  --f:             'Plus Jakarta Sans', sans-serif;
  --fm:            'DM Mono', monospace;
  --fs:            'Fraunces', serif;
  --max:           1200px;
  --pad:           clamp(20px, 5vw, 56px);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--white); font-family: var(--f); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled { background: rgba(7,7,15,0.90); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: var(--border); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-icon { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg,#1E1B4B,#5B21B6); display: flex; align-items: center; justify-content: center; }
.nav-icon svg { width: 17px; height: 17px; }
.nav-wordmark { font-weight: 800; font-size: 17px; letter-spacing: -0.4px; }
.nav-wordmark em { color: var(--purple); font-style: normal; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-family: var(--fm); font-size: 11px; color: var(--muted); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }

.nav-cta { font-family: var(--fm); font-size: 11px; padding: 9px 18px; border-radius: 8px; border: 1px solid var(--border-bright); background: transparent; color: var(--purple-light); text-decoration: none; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: rgba(129,140,248,0.1); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--muted); margin: 5px 0; transition: all 0.2s; border-radius: 2px; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: clamp(100px,15vh,140px) var(--pad) clamp(60px,8vh,80px);
  position: relative; overflow: hidden;
}
.hero::after { content: ''; position: absolute; width: min(800px,100vw); height: min(800px,100vw); background: radial-gradient(circle,rgba(91,33,182,0.18) 0%,transparent 65%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(129,140,248,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(129,140,248,0.04) 1px,transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%,black 30%,transparent 100%); }

.badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px 6px 8px; border-radius: 100px; border: 1px solid var(--border-bright); background: rgba(129,140,248,0.06); font-family: var(--fm); font-size: 11px; color: var(--purple-light); letter-spacing: 0.05em; margin-bottom: 36px; position: relative; z-index: 2; animation: fadeUp 0.8s ease both; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); animation: pulse 2s ease infinite; flex-shrink: 0; }

h1 { font-weight: 800; font-size: clamp(36px, 7vw, 88px); line-height: 1.01; letter-spacing: clamp(-1px,-0.03em,-2px); position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.1s both; max-width: 920px; }
h1 em { font-style: italic; font-family: var(--fs); font-weight: 300; color: var(--purple-light); }

.hero-sub { font-family: var(--fm); font-size: clamp(13px,1.8vw,15px); color: var(--muted); line-height: 1.75; max-width: 540px; margin: 24px auto 0; position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.2s both; }

.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 44px; position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.3s both; flex-wrap: wrap; justify-content: center; }

.hero-stats { margin-top: 64px; display: flex; align-items: center; gap: clamp(20px,4vw,40px); position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.4s both; flex-wrap: wrap; justify-content: center; }
.hero-stat { display: flex; align-items: center; gap: 8px; }
.hero-stat-num { font-weight: 800; font-size: clamp(18px,2.5vw,22px); color: var(--white); letter-spacing: -1px; }
.hero-stat-num em { color: var(--purple); font-style: normal; }
.hero-stat-label { font-family: var(--fm); font-size: 11px; color: var(--muted); }
.hero-stat-divider { width: 1px; height: 24px; background: var(--border); }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn-primary { padding: clamp(12px,2vw,15px) clamp(20px,3vw,32px); border-radius: 10px; background: linear-gradient(135deg,#4F46E5,#7C3AED); color: #fff; font-family: var(--f); font-weight: 700; font-size: clamp(13px,1.5vw,14px); border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 6px 28px rgba(91,33,182,0.35); display: inline-block; -webkit-tap-highlight-color: transparent; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost { padding: clamp(12px,2vw,15px) clamp(16px,2.5vw,24px); border-radius: 10px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-family: var(--fm); font-size: clamp(11px,1.2vw,12px); cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-block; -webkit-tap-highlight-color: transparent; }
.btn-ghost:hover { border-color: var(--border-bright); color: var(--white); }

/* ═══════════════════════════════════
   SECTIONS
═══════════════════════════════════ */
.section { padding: clamp(80px,10vh,120px) var(--pad); max-width: var(--max); margin: 0 auto; }
.section-label { font-family: var(--fm); font-size: 11px; color: var(--purple); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-weight: 800; font-size: clamp(26px,4vw,48px); letter-spacing: clamp(-0.5px,-0.03em,-1.5px); line-height: 1.05; }
.section-title em { font-style: italic; font-family: var(--fs); font-weight: 300; color: var(--purple-light); }

/* ═══════════════════════════════════
   PROBLEM GRID
═══════════════════════════════════ */
.problem-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 56px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.problem-card { padding: clamp(24px,3vw,40px); background: var(--bg2); }
.problem-card:nth-child(1),.problem-card:nth-child(2) { border-bottom: 1px solid var(--border); }
.problem-card:nth-child(2),.problem-card:nth-child(4) { border-left: 1px solid var(--border); }
.problem-icon { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg3); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 17px; }
.problem-card h3 { font-weight: 700; font-size: clamp(14px,1.8vw,17px); letter-spacing: -0.3px; margin-bottom: 10px; }
.problem-card p { font-family: var(--fm); font-size: clamp(12px,1.4vw,13px); color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════
   STEPS
═══════════════════════════════════ */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 80px; right: 80px; height: 1px; background: linear-gradient(90deg,transparent,var(--border-bright),transparent); }
.step { padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg2); transition: border-color 0.3s, transform 0.3s; }
.step:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#1E1B4B,#5B21B6); border: 1px solid var(--border-bright); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: 12px; font-weight: 500; color: var(--purple-light); margin-bottom: 20px; }
.step h3 { font-weight: 700; font-size: clamp(14px,1.8vw,17px); letter-spacing: -0.3px; margin-bottom: 10px; }
.step p { font-family: var(--fm); font-size: clamp(11px,1.3vw,12px); color: var(--muted); line-height: 1.8; }
.step-time { display: inline-block; margin-top: 14px; font-family: var(--fm); font-size: 10px; color: var(--purple); letter-spacing: 0.1em; border: 1px solid rgba(129,140,248,0.2); padding: 3px 10px; border-radius: 100px; background: rgba(129,140,248,0.05); }

/* ═══════════════════════════════════
   FEATURES
═══════════════════════════════════ */
.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 2px; }
.feature-item { padding: 22px 26px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg2); transition: border-color 0.2s, background 0.2s; cursor: default; }
.feature-item:hover,.feature-item.active { border-color: var(--border-bright); background: var(--bg3); }
.feature-head { display: flex; align-items: center; gap: 12px; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background 0.2s; }
.feature-item:hover .feature-dot,.feature-item.active .feature-dot { background: var(--purple); }
.feature-item h3 { font-weight: 700; font-size: clamp(13px,1.5vw,14px); letter-spacing: -0.2px; }
.feature-item p { font-family: var(--fm); font-size: clamp(11px,1.3vw,12px); color: var(--muted); line-height: 1.8; margin-top: 10px; padding-left: 20px; }
.feature-visual { position: sticky; top: 88px; border: 1px solid var(--border); border-radius: 20px; background: var(--bg2); overflow: hidden; }
.mock { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.mock-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.mock-title { font-weight: 700; font-size: 12px; }
.mock-status { display: flex; align-items: center; gap: 5px; font-family: var(--fm); font-size: 10px; color: #4ADE80; }
.mock-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #4ADE80; animation: pulse 2s ease infinite; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mock-stat { padding: 11px; background: var(--bg3); border-radius: 8px; border: 1px solid var(--border); }
.mock-stat-val { font-weight: 700; font-size: 18px; letter-spacing: -1px; }
.mock-stat-label { font-family: var(--fm); font-size: 9px; color: var(--muted); margin-top: 3px; }
.mock-chart { height: 66px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg3); overflow: hidden; }
.mock-chart svg { width: 100%; height: 100%; }
.mock-events { display: flex; flex-direction: column; gap: 5px; }
.mock-event { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; background: var(--bg3); border-radius: 7px; border: 1px solid var(--border); }
.mock-event-left { display: flex; align-items: center; gap: 7px; min-width: 0; }
.mock-tag { font-family: var(--fm); font-size: 9px; color: var(--purple-light); background: rgba(129,140,248,0.1); border: 1px solid rgba(129,140,248,0.2); padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.mock-event-name { font-family: var(--fm); font-size: 10px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ADE80; flex-shrink: 0; }

/* ═══════════════════════════════════
   PRICING
═══════════════════════════════════ */
.pricing-wrap { padding: clamp(80px,10vh,120px) var(--pad); max-width: var(--max); margin: 0 auto; text-align: center; }
.pricing-card { max-width: 560px; margin: 56px auto 0; border: 1px solid var(--border-bright); border-radius: 24px; background: var(--bg3); overflow: hidden; text-align: left; }
.pricing-top { padding: clamp(32px,4vw,52px) clamp(32px,4vw,52px) 0; }
.pricing-badge { display: inline-block; font-family: var(--fm); font-size: 9px; letter-spacing: 0.15em; color: var(--purple-light); background: rgba(129,140,248,0.12); border: 1px solid rgba(129,140,248,0.25); padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; text-transform: uppercase; }
.pricing-name { font-weight: 800; font-size: clamp(18px,2.5vw,22px); letter-spacing: -0.5px; margin-bottom: 10px; }
.pricing-desc { font-family: var(--fm); font-size: clamp(12px,1.3vw,13px); color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.pricing-currency { font-family: var(--fm); font-size: 18px; color: var(--muted); }
.pricing-amount { font-weight: 800; font-size: clamp(52px,7vw,68px); letter-spacing: -3px; color: var(--white); line-height: 1; }
.pricing-cents { font-weight: 800; font-size: clamp(24px,3vw,34px); letter-spacing: -1px; color: var(--white); align-self: flex-start; margin-top: 10px; }
.pricing-period { font-family: var(--fm); font-size: 13px; color: var(--muted); margin-left: 4px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
.pricing-features li { font-family: var(--fm); font-size: clamp(12px,1.3vw,13px); color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.pricing-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background: rgba(129,140,248,0.15) url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23818CF8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center; border: 1px solid rgba(129,140,248,0.3); }
.pricing-bottom { padding: clamp(28px,3.5vw,40px) clamp(32px,4vw,52px) clamp(36px,4vw,52px); }
.pricing-cta { display: block; text-align: center; padding: 16px; border-radius: 12px; background: linear-gradient(135deg,#4F46E5,#7C3AED); color: #fff; font-family: var(--f); font-weight: 700; font-size: clamp(13px,1.6vw,15px); text-decoration: none; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 6px 24px rgba(91,33,182,0.35); -webkit-tap-highlight-color: transparent; }
.pricing-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-cta:active { transform: scale(0.99); }
.pricing-note { text-align: center; margin-top: 12px; font-family: var(--fm); font-size: 11px; color: var(--muted); }
.currency-row { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.currency-pill { font-family: var(--fm); font-size: 11px; color: var(--muted); background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 56px; }
.proof-card { padding: clamp(24px,3vw,32px); border: 1px solid var(--border); border-radius: 16px; background: var(--bg2); transition: border-color 0.3s; }
.proof-card:hover { border-color: var(--border-bright); }
.proof-quote { font-family: var(--fs); font-style: italic; font-weight: 300; font-size: clamp(14px,1.8vw,16px); color: var(--white); line-height: 1.65; margin-bottom: 22px; }
.proof-author { display: flex; align-items: center; gap: 10px; }
.proof-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#1E1B4B,#5B21B6); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; color: var(--purple-light); flex-shrink: 0; }
.proof-name { font-weight: 700; font-size: 13px; }
.proof-role { font-family: var(--fm); font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-list { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--bg2); overflow: hidden; }
.faq-toggle { width: 100%; background: none; border: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; -webkit-tap-highlight-color: transparent; }
.faq-q { font-weight: 600; font-size: clamp(13px,1.6vw,15px); color: var(--white); letter-spacing: -0.1px; font-family: var(--f); }
.faq-chevron { font-size: 11px; color: var(--muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 200px; }
.faq-a { padding: 0 24px 20px; font-family: var(--fm); font-size: clamp(12px,1.3vw,13px); color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }

/* ═══════════════════════════════════
   CTA
═══════════════════════════════════ */
.cta-wrap { padding: 0 var(--pad) clamp(100px,12vh,160px); max-width: var(--max); margin: 0 auto; }
.cta-box { padding: clamp(48px,7vw,88px) clamp(32px,6vw,80px); border-radius: 24px; border: 1px solid var(--border-bright); background: linear-gradient(135deg,rgba(30,27,75,0.6),rgba(91,33,182,0.2)); text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(91,33,182,0.15) 0%,transparent 60%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-box h2 { font-weight: 800; font-size: clamp(26px,4.5vw,52px); letter-spacing: clamp(-1px,-0.03em,-2px); line-height: 1.1; margin-bottom: 14px; position: relative; z-index: 2; }
.cta-box h2 em { font-style: italic; font-family: var(--fs); font-weight: 300; color: var(--purple-light); }
.cta-box > p { font-family: var(--fm); font-size: clamp(12px,1.4vw,14px); color: var(--muted); margin-bottom: 40px; position: relative; z-index: 2; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; z-index: 2; flex-wrap: wrap; }
.cta-note { font-family: var(--fm); font-size: 12px; color: var(--muted); margin-top: 20px; position: relative; z-index: 2; }
.cta-note a { color: var(--purple-light); text-decoration: none; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 36px var(--pad); display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-icon { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg,#1E1B4B,#5B21B6); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-icon svg { width: 12px; height: 12px; }
.footer-copy { font-family: var(--fm); font-size: 11px; color: var(--muted); }
.footer-email { font-family: var(--fm); font-size: 10px; color: var(--muted); margin-top: 2px; opacity: 0.6; }
.footer-email a { color: inherit; text-decoration: none; }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: var(--fm); font-size: 11px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   MOBILE — ≤768px
═══════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 57px; left: 0; right: 0; background: rgba(7,7,15,0.97); backdrop-filter: blur(20px); padding: 16px 0; border-bottom: 1px solid var(--border); z-index: 190; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px var(--pad); font-size: 13px; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding-top: clamp(90px,14vh,110px); }
  h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat { flex-direction: column; align-items: center; text-align: center; gap: 3px; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card:nth-child(1),.problem-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .problem-card:nth-child(2),.problem-card:nth-child(4) { border-left: none; }
  .problem-card:not(:last-child) { border-bottom: 1px solid var(--border); }

  /* Steps */
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  /* Features */
  .features-layout { grid-template-columns: 1fr; }
  .feature-visual { position: relative; top: auto; }

  /* Testimonials */
  .proof-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-top, .pricing-bottom { padding-left: clamp(24px,5vw,40px); padding-right: clamp(24px,5vw,40px); }

  /* CTA */
  .cta-box { padding: 48px 28px; }

  /* Footer */
  footer { flex-direction: column; gap: 20px; }
  .footer-links { gap: 16px; }
}

/* ═══════════════════════════════════
   MOBILE — ≤480px
═══════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-ghost { width: 100%; text-align: center; }
  .proof-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   TABLET — 769–1024px
═══════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .feature-visual { position: relative; top: auto; }
}

/* ═══════════════════════════════════
   TOUCH / ACCESSIBILITY
═══════════════════════════════════ */
@media (hover: none) {
  .step:hover { transform: none; }
  .btn-primary:hover { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; }
}