*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #6c47ff;
  --brand-light: #a78bfa;
  --brand-bg: #f8f7ff;
  --brand-text: #1a1a2e;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --badge-bg: #ede9ff;
  --border: #e5e7eb;
  --dark: #0f0a1e;
  --dark-2: #1a1030;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: var(--card-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 60px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108,71,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav-logo-name { font-size: 17px; font-weight: 800; color: var(--brand-text); letter-spacing: -0.5px; }
.nav-logo-name span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--brand-text); }
.btn-nav { background: var(--brand) !important; color: #fff !important; padding: 7px 16px; border-radius: 8px; font-weight: 600 !important; }
.btn-nav:hover { background: #5a38e8 !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 100px 5vw 60px;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(160deg, #fdfcff 0%, #f3eeff 40%, #eee8ff 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,71,255,0.18) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,71,255,0.1); color: var(--brand);
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 99px;
  border: 1px solid rgba(108,71,255,0.2); margin-bottom: 28px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 { font-size: clamp(42px, 5.5vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 20px; color: var(--brand-text); }
.hero-gradient { background: linear-gradient(135deg, var(--brand), var(--brand-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 17px; color: var(--muted); max-width: 440px; line-height: 1.7; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social-proof {}
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 22px; font-weight: 800; color: var(--brand-text); letter-spacing: -1px; }
.stat-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* ─── APP WINDOW (hero) ─── */
.app-window {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(108,71,255,0.22), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(108,71,255,0.15);
  background: #fff;
}
.app-window-bar {
  background: #f5f4ff; border-bottom: 1px solid #ede9ff;
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }
.app-window-title { font-size: 11px; color: var(--muted); margin-left: 8px; font-weight: 500; }
.app-window-body { display: grid; grid-template-columns: 170px 1fr; min-height: 260px; }
.app-sidebar { background: #faf9ff; border-right: 1px solid #ede9ff; padding: 12px 10px; }
.app-sidebar-section { margin-bottom: 14px; }
.app-sidebar-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.app-preset-item { display: flex; align-items: center; gap: 7px; padding: 5px 6px; border-radius: 6px; cursor: default; }
.app-preset-active { background: var(--badge-bg); }
.app-preset-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.app-preset-name { font-size: 11px; font-weight: 600; color: var(--brand-text); }
.app-preset-sub { font-size: 9px; color: var(--muted); }
.app-control-label { font-size: 10px; color: var(--muted); }
.app-slider { height: 4px; background: #e5e7eb; border-radius: 2px; position: relative; margin: 6px 0; }
.app-slider-fill { position: absolute; left: 0; top: 0; height: 4px; width: 45%; background: #f97316; border-radius: 2px; }
.app-slider-thumb { position: absolute; left: 45%; top: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; border-radius: 50%; background: #f97316; }
.app-select-mock { background: #fff; border: 1px solid #d1d5db; border-radius: 5px; padding: 4px 7px; font-size: 10px; color: var(--brand-text); }
.app-canvas { padding: 10px; }
.app-canvas-hint { font-size: 10px; color: var(--muted); margin-bottom: 8px; }
.app-canvas-area { display: flex; gap: 10px; align-items: flex-start; flex-wrap: wrap; }
.app-botton { display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; }
.app-botton-inner { display: flex; align-items: center; justify-content: center; position: relative; }
.app-botton-circle { width: 58px; height: 58px; border-radius: 50%; background: #e8d5c4; font-size: 26px; overflow: hidden; position: relative; }
.app-cut-ring { position: absolute; border: 1.5px dashed #39ff14; pointer-events: none; }
.app-cut-ring-circle { inset: 5px; border-radius: 50%; }
.app-botton-label { font-size: 8px; color: var(--muted); text-align: center; white-space: nowrap; }
.app-qr-frame { display: flex; flex-direction: column; align-items: center; gap: 4px; border: 1px solid #e5e7eb; border-radius: 6px; padding: 6px; background: #fff; }
.app-copy-link { background: #1d9a8a; color: #fff; border-radius: 3px; padding: 2px 6px; font-size: 8px; font-weight: 600; white-space: nowrap; }
.app-botton-hex { width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; position: relative; }
.app-cut-ring-hex { inset: 5px; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); border: none; outline: 1.5px dashed #39ff14; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--brand); color: #fff; border: none; border-radius: 10px;
  padding: 13px 26px; font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(108,71,255,0.35); transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none; display: inline-block; letter-spacing: -0.2px;
}
.btn-primary:hover { background: #5a38e8; box-shadow: 0 6px 28px rgba(108,71,255,0.45); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: rgba(108,71,255,0.06); color: var(--brand); border: 1.5px solid rgba(108,71,255,0.2);
  border-radius: 10px; padding: 13px 26px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.15s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: rgba(108,71,255,0.1); border-color: var(--brand); }
.btn-form {
  width: 100%; height: 52px; background: var(--brand); color: #fff; border: none;
  border-radius: 10px; font: inherit; font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(108,71,255,0.4); transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
}
.btn-form:hover { background: #5a38e8; }
.btn-form:active { transform: scale(0.98); }

/* ─── FEATURE SECTIONS ─── */
.feature-section { padding: 100px 5vw; background: #fff; }
.feature-section-alt { background: var(--brand-bg); }
.feature-section-dark { background: var(--dark); }

.feature-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 80px; align-items: center;
}
.feature-left { grid-template-columns: 1.1fr 1fr; }
.feature-right { grid-template-columns: 1fr 1.1fr; }

.feature-pill {
  display: inline-block; background: var(--badge-bg); color: var(--brand);
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px;
}
.feature-pill-light { background: rgba(167,139,250,0.2); color: var(--brand-light); }
.feature-heading {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 18px; color: var(--brand-text);
}
.feature-desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; max-width: 420px; }
.feature-desc-light { color: rgba(255,255,255,0.65); }
.feature-text-light .feature-heading { color: #fff; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { font-size: 15px; color: #374151; display: flex; align-items: center; gap: 10px; }
.feature-list-light li { color: rgba(255,255,255,0.8); }
.feat-check { color: var(--brand); font-weight: 700; font-size: 14px; flex-shrink: 0; }

/* ─── APP FRAMES (feature sections) ─── */
.feature-app-frame {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(108,71,255,0.16), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(108,71,255,0.12);
}
.feature-app-frame-light { background: #fff; }
.feature-app-frame-purple { background: #faf8ff; }
.feature-app-frame-dark { background: #1a1030; border-color: rgba(167,139,250,0.2); }

/* MOCKUP: Canvas — app window layout */
.fmock-canvas-wrap { padding: 0 !important; display: flex; flex-direction: column; overflow: hidden; }
.fmock-app-bar { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; border-bottom: 1px solid #e5e7eb; background: #f9fafb; flex-shrink: 0; }
.fmock-app-tab-row { display: flex; }
.fmock-app-tab { font-size: 10px; font-weight: 700; color: var(--brand); padding: 3px 10px; border-radius: 4px; background: #ede9ff; }
.fmock-app-bar-right { display: flex; align-items: center; gap: 5px; }
.fmock-icon-btn { font-size: 12px; width: 20px; height: 20px; border-radius: 4px; border: 1px solid #e5e7eb; background: #fff; cursor: default; display: flex; align-items: center; justify-content: center; color: #374151; font-family: inherit; }
.fmock-zoom-val { font-size: 9px; color: #6b7280; min-width: 26px; text-align: center; }
.fmock-bar-sep { width: 1px; height: 14px; background: #e5e7eb; }
.fmock-btn-danger-sm { font-size: 9px; color: #dc2626; border-color: #fecaca; background: #fef2f2; width: auto; padding: 0 7px; }
.fmock-app-body { display: flex; flex: 1; min-height: 0; }
.fmock-sidebar { width: 86px; border-right: 1px solid #e5e7eb; padding: 9px 6px; display: flex; flex-direction: column; gap: 4px; background: #fafafa; flex-shrink: 0; }
.fmock-sidebar-title { font-size: 8px; text-transform: uppercase; letter-spacing: 0.06em; color: #9ca3af; font-weight: 700; margin-bottom: 3px; }
.fmock-size-card { display: flex; align-items: center; gap: 5px; padding: 4px 5px; border-radius: 5px; cursor: default; border: 1px solid transparent; }
.fmock-size-active { border-color: var(--brand); background: #f5f3ff; }
.fmock-size-name { font-size: 9px; font-weight: 600; color: #374151; line-height: 1.2; }
.fmock-size-mm { font-size: 8px; color: #9ca3af; }
.fmock-add-btn { margin-top: auto; font-size: 9px; font-weight: 700; color: var(--brand); background: #ede9ff; border: none; border-radius: 5px; padding: 5px; cursor: default; font-family: inherit; }
.fmock-canvas-area { flex: 1; background: #d1d5db; display: flex; align-items: center; justify-content: center; padding: 10px; overflow: hidden; min-width: 0; }
.fmock-paper { background: #fff; width: 210px; height: 296px; box-shadow: 0 2px 10px rgba(0,0,0,0.15); position: relative; flex-shrink: 0; border: 1px solid #c4c9d4; }
.fmock-cb { position: absolute; cursor: default; }
.fmock-cb-selected { outline: 1.5px solid #6c47ff; outline-offset: 2px; }
.fmock-cb-inner { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.fmock-cb-circle { border-radius: 50%; overflow: hidden; }
.fmock-cb-heart { clip-path: polygon(50% 0%, 100% 35%, 100% 65%, 50% 100%, 0% 65%, 0% 35%); border-radius: 4px; }
.fmock-cb-emoji { font-size: 22px; position: relative; z-index: 1; }
.fmock-cb-cut { position: absolute; pointer-events: none; border: 1px dashed #39ff14; }
.fmock-cb-cut-circle { inset: 5px; border-radius: 50%; }
.fmock-handle { position: absolute; width: 6px; height: 6px; background: #fff; border: 1.5px solid #6c47ff; border-radius: 1px; }
.fmock-h-tl { top: -4px; left: -4px; }
.fmock-h-tr { top: -4px; right: -4px; }
.fmock-h-bl { bottom: -4px; left: -4px; }
.fmock-h-br { bottom: -4px; right: -4px; }
.fmock-props { width: 68px; border-left: 1px solid #e5e7eb; padding: 9px 6px; background: #fafafa; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.fmock-props-title { font-size: 8px; text-transform: uppercase; letter-spacing: 0.06em; color: #9ca3af; font-weight: 700; margin-bottom: 3px; }
.fmock-prop-row { display: flex; justify-content: space-between; align-items: center; }
.fmock-prop-lbl { font-size: 9px; color: #9ca3af; }
.fmock-prop-val { font-size: 9px; font-weight: 600; color: #374151; }
.fmock-prop-sep { height: 1px; background: #e5e7eb; margin: 3px 0; }
.fmock-prop-btn { font-size: 9px; font-weight: 600; color: #374151; background: #fff; border: 1px solid #e5e7eb; border-radius: 4px; padding: 4px 3px; cursor: default; font-family: inherit; text-align: center; }
.fmock-prop-btn-del { color: #dc2626; border-color: #fecaca; background: #fef2f2; margin-top: 2px; }
.fmock-status-bar { display: flex; justify-content: space-between; align-items: center; padding: 4px 10px; border-top: 1px solid #e5e7eb; background: #f9fafb; font-size: 8px; color: #9ca3af; flex-shrink: 0; }
.fmock-status-save { color: #10b981; font-weight: 700; }

/* MOCKUP: Presets */
.fmock-presets { padding: 16px; }
.fmock-section-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--brand-text); }
.fmock-form { background: #f3f0ff; border-radius: 8px; padding: 10px; margin-bottom: 12px; }
.fmock-input-row { display: flex; gap: 6px; margin-bottom: 6px; }
.fmock-input { flex: 1; background: #fff; border: 1px solid #d1d5db; border-radius: 5px; padding: 5px 8px; font-size: 10px; color: var(--brand-text); }
.fmock-input-placeholder { color: #9ca3af; }
.fmock-input-half { flex: 0 0 auto; width: 80px; }
.fmock-select { flex: 1; background: #fff; border: 1px solid #d1d5db; border-radius: 5px; padding: 5px 8px; font-size: 10px; color: var(--brand-text); }
.fmock-step-label { font-size: 8px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 6px 0 3px; }
.fmock-save-btn { background: #1d9a8a; color: #fff; border-radius: 5px; padding: 6px; text-align: center; font-size: 10px; font-weight: 700; margin-top: 6px; }
.fmock-preset-list { display: flex; flex-direction: column; gap: 5px; }
.fmock-preset-row { background: #fff; border: 1px solid #e5e7eb; border-radius: 7px; padding: 7px 9px; display: flex; align-items: center; gap: 8px; }
.fmock-preset-highlight { border-color: var(--brand); background: #faf8ff; }
.fmock-preset-shape { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fmock-shape-circle { width: 18px; height: 18px; border-radius: 50%; background: var(--badge-bg); border: 1.5px solid var(--brand); }
.fmock-shape-rect { width: 22px; height: 14px; border-radius: 2px; background: var(--badge-bg); border: 1.5px solid var(--brand); }
.fmock-preset-info { flex: 1; }
.fmock-preset-info strong { font-size: 11px; color: var(--brand-text); }
.fmock-preset-meta { font-size: 9px; color: var(--muted); }
.fmock-preset-btns { display: flex; gap: 3px; }
.fmock-btn-add, .fmock-btn-edit, .fmock-btn-del { width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.fmock-btn-add { background: #1d9a8a; color: #fff; }
.fmock-btn-edit { background: #f3f4f6; color: #6b7280; }
.fmock-btn-del { background: #fee2e2; color: #ef4444; }

/* MOCKUP: QR section */
.fmock-qr-section { padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fmock-qr-card-big { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; width: 100%; }
.fmock-qr-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.fmock-qr-name { font-size: 12px; font-weight: 700; color: #fff; }
.fmock-qr-hint { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.fmock-copy-full { width: 100%; background: var(--brand); color: #fff; border: none; border-radius: 7px; padding: 8px; font-size: 11px; font-weight: 700; cursor: pointer; font-family: inherit; }
.fmock-arrow-down { font-size: 20px; color: rgba(167,139,250,0.6); }
.fmock-upload-preview { width: 100%; display: flex; justify-content: center; }
.fmock-phone-frame { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; width: 160px; }
.fmock-phone-header { background: rgba(255,255,255,0.04); height: 24px; display: flex; align-items: center; justify-content: center; }
.fmock-phone-dot { width: 40px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.fmock-phone-body { padding: 14px 12px; }
.fmock-upload-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 3px; text-align: center; }
.fmock-upload-sub { font-size: 9px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 12px; }
.fmock-upload-zone { border: 1.5px dashed rgba(167,139,250,0.4); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fmock-upload-icon { font-size: 22px; }
.fmock-upload-label { font-size: 9px; color: rgba(255,255,255,0.5); text-align: center; }

/* MOCKUP: Cut guide */
.fmock-cut-showcase { padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fmock-cut-label-row { display: flex; gap: 8px; }
.fmock-cut-chip { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 99px; }
.fmock-chip-gray { background: #f3f4f6; color: #374151; }
.fmock-chip-green { background: rgba(57,255,20,0.12); color: #15803d; border: 1px solid rgba(57,255,20,0.3); }
.fmock-cut-big { display: flex; align-items: center; justify-content: center; padding: 12px 0; }
.fmock-cut-outer { width: 130px; height: 130px; border-radius: 50%; background: linear-gradient(135deg, #e8d5c4, #d4c4b4); border: 2px solid #c4b4a4; display: flex; align-items: center; justify-content: center; position: relative; font-size: 56px; }
.fmock-cut-photo-big { position: relative; z-index: 1; }
.fmock-cut-green-big { position: absolute; inset: 10px; border-radius: 50%; border: 2px dashed #39ff14; box-shadow: 0 0 8px rgba(57,255,20,0.3); }
.fmock-cut-legend { display: flex; flex-direction: column; gap: 6px; align-self: stretch; }
.fmock-legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #374151; }
.fmock-legend-line { width: 24px; height: 2px; border-radius: 1px; flex-shrink: 0; }
.fmock-legend-purple { background: var(--brand); }
.fmock-legend-green { background: #39ff14; }
.fmock-cut-note { font-size: 11px; color: var(--muted); text-align: center; background: #f9fafb; border-radius: 6px; padding: 8px 12px; border: 1px solid #e5e7eb; }

/* Shape demos */
.feature-shapes-demo { display: flex; gap: 20px; align-items: flex-end; margin-top: 28px; flex-wrap: wrap; }
.fshape-item { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); font-weight: 500; }
.fshape { display: flex; align-items: center; justify-content: center; position: relative; }
.fshape-circle { width: 52px; height: 52px; border-radius: 50%; background: var(--badge-bg); border: 2px solid var(--brand); position: relative; }
.fshape-cut-circle { position: absolute; inset: 7px; border-radius: 50%; border: 1.5px dashed #39ff14; }
.fshape-rect { width: 60px; height: 42px; border-radius: 4px; background: var(--badge-bg); border: 2px solid var(--brand); position: relative; }
.fshape-cut-rect { position: absolute; inset: 7px; border-radius: 2px; border: 1.5px dashed #39ff14; }
.fshape-hex, .fshape-heart { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }

/* ─── PRICING ─── */
.pricing-section { padding: 100px 5vw; background: var(--brand-bg); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 480px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; max-width: 700px; }
.price-card { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid var(--border); }
.price-card.featured { border: 2px solid var(--brand); box-shadow: 0 8px 40px rgba(108,71,255,0.15); }
.price-badge { display: inline-block; background: var(--badge-bg); color: var(--brand); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-bottom: 16px; }
.price-badge.soon { background: #f3f4f6; color: var(--muted); }
.price-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.price-amount { font-size: 44px; font-weight: 900; color: var(--brand); letter-spacing: -2px; line-height: 1; }
.price-amount.dimmed { color: var(--muted); }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.price-original { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-bottom: 24px; }
.price-features { list-style: none; margin: 0 0 28px; padding: 0; }
.price-features li { font-size: 14px; padding: 6px 0; color: #374151; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #f9fafb; }
.price-features li::before { content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.price-features li.dim::before { content: "—"; color: var(--muted); }
.price-features li.dim { color: var(--muted); }
.dimmed-card { opacity: 0.65; }

/* ─── FORM ─── */
.form-section { padding: 100px 5vw; background: linear-gradient(135deg, #0f0a1e 0%, #1e1050 50%, #0f0a1e 100%); }
.signup-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px; margin-top: 48px; max-width: 620px; backdrop-filter: blur(8px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.form-field input, .form-field select { width: 100%; height: 46px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 0 14px; color: #fff; font: inherit; font-size: 14px; outline: none; transition: border-color 0.15s; }
.form-field input::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus, .form-field select:focus { border-color: var(--brand-light); background: rgba(255,255,255,0.1); }
.form-field select option { background: #1a1a2e; color: #fff; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success .checkmark { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ─── FOOTER ─── */
.footer { padding: 28px 5vw; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: #fff; }
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo-name { font-size: 15px; font-weight: 800; color: var(--brand-text); }
.footer-logo-name span { color: var(--brand); }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-link { font-size: 13px; color: var(--brand); text-decoration: none; font-weight: 600; }
.footer-link:hover { text-decoration: underline; }

/* ─── ANIMATIONS ─── */
.feature-mockup-col, .feature-text-col, .hero-text, .hero-mockup {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.feature-left .feature-mockup-col { transform: translateX(-32px); }
.feature-right .feature-mockup-col { transform: translateX(32px); }
.feature-left .feature-text-col { transform: translateX(32px); transition-delay: 0.1s; }
.feature-right .feature-text-col { transform: translateX(-32px); transition-delay: 0.1s; }
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-in.visible, .feature-mockup-col.visible, .feature-text-col.visible, .hero-text.visible, .hero-mockup.visible {
  opacity: 1; transform: translate(0, 0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .feature-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .feature-right .feature-mockup-col { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links a:not(.btn-nav) { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
