/* ============================================
   LaunchCraft — Premium Landing Page Styles
   ============================================ */

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

:root {
  /* Colors */
  --bg:            #0a0a0f;
  --bg-2:          #0f0f1a;
  --bg-3:          #141422;
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(255,255,255,0.18);
  --text:          #e8e8f0;
  --text-muted:    #8888a8;
  --text-faint:    #44445a;
  --accent:        #7c6af7;
  --accent-2:      #5b4fe8;
  --accent-glow:   rgba(124, 106, 247, 0.35);
  --accent-light:  #a89cf9;
  --green:         #22c55e;
  --green-bg:      rgba(34,197,94,0.12);
  --yellow:        #f59e0b;
  --yellow-bg:     rgba(245,158,11,0.12);

  /* Typography */
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:          'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-gap:   100px;
  --container:     1160px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Transitions */
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --trans:         0.25s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Container ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--trans);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow), 0 4px 20px rgba(124,106,247,0.3);
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow), 0 8px 30px rgba(124,106,247,0.4);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 12px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Gradient Text ─────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #a89cf9 0%, #7c6af7 40%, #5d9cf9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Shared ────────────────────────── */
.section {
  padding: var(--section-gap) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(124,106,247,0.12);
  border: 1px solid rgba(124,106,247,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section__header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Nav ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}

.nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-mark {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px #f59e0b88);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans);
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--trans);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  background: rgba(10,10,15,0.98);
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a:not(.btn) {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 0;
}

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 80%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 700px; height: 700px;
  background: rgba(124,106,247,0.18);
  top: -200px; left: -100px;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: rgba(93,156,249,0.12);
  top: 100px; right: -100px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
}

.badge--pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-bg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--green-bg); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero__headline {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.hero__sub {
  max-width: 560px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 32px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.proof-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.proof-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Guarantee Badge — Floating */
.guarantee-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 14px;
  padding: 14px 20px;
  color: var(--yellow);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.guarantee-badge__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.guarantee-badge__inner div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.guarantee-badge__inner strong { font-weight: 800; font-size: 1rem; }

/* ── How It Works ──────────────────────────── */
.how-it-works {
  background: var(--bg-2);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color var(--trans), transform var(--trans);
}
.step:hover {
  border-color: rgba(124,106,247,0.4);
  transform: translateY(-4px);
}

.step__number {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.step__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.step h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── What You Get ──────────────────────────── */
.what-you-get { background: var(--bg); }

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

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.feature-card:hover {
  border-color: rgba(124,106,247,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,106,247,0.08);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Pricing ───────────────────────────────── */
.pricing {
  background: var(--bg-2);
  position: relative;
}
.pricing::before, .pricing::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.pricing::before { top: 0; }
.pricing::after { bottom: 0; }

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-3);
  border: 1px solid rgba(124,106,247,0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124,106,247,0.1), 0 40px 80px rgba(0,0,0,0.4);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card__left {
  padding: 52px 48px;
  background: linear-gradient(135deg, rgba(124,106,247,0.08) 0%, transparent 60%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
  width: fit-content;
}

.pricing-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-card__guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-card__guarantee svg { color: var(--green); flex-shrink: 0; }

.pricing-card__right {
  padding: 52px 48px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-compare {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-compare strong { color: var(--text); }

/* ── Trust ─────────────────────────────────── */
.trust {
  background: var(--bg);
  padding: 80px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--trans);
}
.trust-item:hover { border-color: var(--border-hover); }

.trust-icon {
  font-size: 1rem;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.trust-item blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.trust-item cite {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

/* ── FAQ ───────────────────────────────────── */
.faq { background: var(--bg-2); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  padding: 24px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--trans), color var(--trans);
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-faint);
  transition: transform var(--trans), color var(--trans);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item summary:hover {
  background: rgba(255,255,255,0.03);
  color: var(--accent-light);
}

.faq-item p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Order / Form ──────────────────────────── */
.order {
  background: var(--bg);
  position: relative;
}
.order::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.order-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label-hint {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.required { color: var(--accent-light); }

.form-group input,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,106,247,0.15);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

/* Checkbox */
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 0; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--border-hover);
  border-radius: 5px;
  margin-top: 2px;
  background: var(--bg-3);
  transition: all var(--trans);
  position: relative;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: -8px;
}

.btn-loading { display: none; }

/* Success / Error States */
.form-success {
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon { font-size: 3.5rem; }
.form-success h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.form-success p { font-size: 1rem; color: var(--text-muted); max-width: 420px; line-height: 1.7; }
.success-sub { font-size: 0.85rem !important; }

.form-error-msg {
  padding: 20px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.9rem;
  color: #fca5a5;
}
.form-error-msg a { color: var(--accent-light); text-decoration: underline; }

/* Sidebar */
.order-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-card--dark {
  background: rgba(124,106,247,0.06);
  border-color: rgba(124,106,247,0.2);
}

.sidebar-card__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 20px;
}
.sidebar-card__badge svg { flex-shrink: 0; }

.sidebar-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-checklist li {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.sidebar-checklist li { color: var(--text); }

.sidebar-question {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.sidebar-card--dark p:not(.sidebar-question) {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sidebar-slots {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  justify-content: center;
  padding: 12px;
}

.slot-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(245,158,11,0.6);
  animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 4px rgba(245,158,11,0.6); }
  50% { box-shadow: 0 0 12px rgba(245,158,11,0.3); }
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-wrapper {
    grid-template-columns: 1fr;
  }
  .order-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 100px 0 64px; }
  .hero__headline { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__proof { flex-wrap: wrap; justify-content: center; padding: 12px 20px; }
  .proof-item { padding: 0 16px; }
  .guarantee-badge {
    bottom: 16px;
    right: 16px;
    padding: 10px 14px;
  }
  .guarantee-badge__inner { font-size: 0.8rem; }

  .steps { grid-template-columns: 1fr; }
  .step__connector { display: none; }

  .features-grid { grid-template-columns: 1fr; }

  .pricing-card { grid-template-columns: 1fr; }
  .pricing-card__left { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .pricing-card__right { padding: 36px 28px; }
  .price-amount { font-size: 3rem; }

  .trust-strip { grid-template-columns: 1fr; }

  .order-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .hero__proof { gap: 0; border-radius: var(--radius-lg); padding: 16px; }
  .proof-divider { display: none; }
  .guarantee-badge { display: none; }
}
