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

:root {
  --navy:       #0D1B35;
  --navy-mid:   #162440;
  --navy-light: #1e3057;
  --gold:       #D4A843;
  --gold-dark:  #b8902e;
  --gold-light: #f0c96a;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray-100:   #F1F3F7;
  --gray-200:   #E2E6EF;
  --gray-500:   #6B7A99;
  --gray-700:   #3A4560;
  --text:       #1A2340;
  --text-light: #4A5875;
  --green:      #2ECC71;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(13,27,53,0.10);
  --shadow-lg:  0 8px 40px rgba(13,27,53,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
p { margin-bottom: 0; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary   { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline   { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-gold      { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,168,67,0.35); }

.btn-gold-outline, .btn-outline-gold {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-gold-outline:hover, .btn-outline-gold:hover {
  background: var(--gold); color: var(--navy);
}

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-block { display: block; text-align: center; width: 100%; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo-sm { font-size: 18px; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-ctas .btn { padding: 9px 18px; font-size: 14px; }
.nav-ctas .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.nav-ctas .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; margin-left: auto; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 12px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a { color: rgba(255,255,255,0.8); font-size: 15px; }
.nav-mobile.open { display: flex; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0 88px;
}
.hero-grid-overlay {
  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: 48px 48px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.badge {
  display: inline-block;
  background: rgba(212,168,67,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-sub strong { color: var(--white); }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.2px;
}

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.divider { opacity: 0.4; }

/* ─── SECTIONS ───────────────────────────────────────── */
.section { padding: 80px 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: var(--navy); color: var(--white); }
.section-mid   { background: var(--gray-100); }
.section-gold  { background: var(--gold); color: var(--navy); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.dark { color: var(--navy-light); }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: var(--white);
}
.section-title.dark { color: var(--text); }
.section-title.centered { text-align: center; color: var(--text); }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
  max-width: 640px;
  margin-bottom: 40px;
}
.section-sub.dark { color: var(--text-light); }
.section-sub.centered { text-align: center; margin: 0 auto 48px; color: var(--text-light); }

/* ─── PROBLEM GRID ───────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.problem-icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.problem-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* ─── DELIVERABLES ───────────────────────────────────── */
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.deliverable {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
}
.check {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.deliverable strong { display: block; font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.deliverable p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.5; }

/* ─── PRICING ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  background: var(--white);
  color: var(--text);
  border-color: var(--gold);
  border-width: 2px;
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 8px; }
.pricing-card--featured .pricing-tier { color: var(--navy); }
.pricing-price { font-size: 40px; font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 4px; }
.pricing-card--featured .pricing-price { color: var(--text); }
.pricing-desc { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.4; }
.pricing-card--featured .pricing-desc { color: var(--text-light); }

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before { content: "✓"; color: var(--gold); font-weight: 700; font-size: 12px; }
.pricing-card--featured .pricing-features li { color: var(--text-light); border-bottom-color: var(--gray-200); }
.pricing-card--featured .pricing-features li::before { color: var(--navy); }

.pricing-context {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.pricing-context strong { color: rgba(255,255,255,0.85); }

/* ─── BRIEF SECTION ──────────────────────────────────── */
.brief-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.brief-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.brief-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}
.check-dark {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.brief-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}
.brief-price { font-size: 42px; font-weight: 800; color: var(--text); letter-spacing: -1px; }
.brief-price span { font-size: 18px; font-weight: 500; color: var(--text-light); }
.brief-price-note { font-size: 14px; color: var(--text-light); }

/* ─── BRIEF PREVIEW CARD ─────────────────────────────── */
.brief-preview-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.brief-preview-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brief-preview-logo { font-size: 16px; font-weight: 800; color: var(--white); }
.brief-preview-logo span { color: var(--gold); }
.brief-preview-date { font-size: 12px; color: rgba(255,255,255,0.55); }
.brief-preview-title {
  padding: 16px 20px 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
}
.brief-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.brief-item-agency { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.brief-item-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.brief-item-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.tag { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.tag-setaside { background: #EBF4FF; color: #1E5FAD; }
.tag-value    { background: #ECFDF5; color: #0A6640; }
.tag-due      { background: #FFF8EC; color: #9A5A00; }
.brief-item-note { font-size: 13px; color: var(--text-light); line-height: 1.5; font-style: italic; }

.brief-item--blur { position: relative; }
.brief-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.92) 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  cursor: pointer;
}
.brief-preview-footer {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  background: var(--gray-100);
  font-style: italic;
}

/* ─── HOW IT WORKS / STEPS ───────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.step-arrow { font-size: 28px; color: var(--gold); align-self: center; flex-shrink: 0; padding: 0 4px; margin-top: -8px; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-content strong { color: var(--white); }
.about-cred { display: flex; flex-direction: column; gap: 16px; }
.cred-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cred-icon { font-size: 24px; flex-shrink: 0; }
.cred-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cred-desc { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.5; }

/* ─── FINAL CTA ──────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  color: var(--navy);
}
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.cta-card {
  flex: 1;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.cta-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cta-card p { font-size: 14px; color: rgba(13,27,53,0.70); margin-bottom: 20px; line-height: 1.6; }
.cta-divider {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  padding: 0 24px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 10px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.80); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.50); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}
.footer-bottom a { color: rgba(255,255,255,0.50); }
.footer-bottom a:hover { color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .problem-grid    { grid-template-columns: 1fr; gap: 16px; }
  .deliverables    { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .brief-layout    { grid-template-columns: 1fr; gap: 40px; }
  .about-layout    { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }
  .steps           { flex-direction: column; align-items: center; }
  .step-arrow      { transform: rotate(90deg); }
  .cta-grid        { flex-direction: column; gap: 16px; }
  .nav-links       { display: none; }
  .nav-ctas        { display: none; }
  .nav-toggle      { display: block; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .brief-pricing-row { flex-direction: column; gap: 4px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-inner { gap: 8px; font-size: 12px; }
}

/* ─── FORM PAGES ─────────────────────────────────────── */
.form-page {
  min-height: 100vh;
  background: var(--off-white);
  padding: 80px 0;
}
.form-page-hero {
  background: var(--navy);
  padding: 56px 0;
  margin-bottom: 48px;
}
.form-page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; margin-bottom: 12px; }
.form-page-hero p  { font-size: 17px; color: rgba(255,255,255,0.68); max-width: 560px; line-height: 1.65; }

.form-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-card .subtitle { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,53,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tier-option { position: relative; }
.tier-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.tier-label {
  display: block;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.tier-option input:checked + .tier-label {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.tier-label-name { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.tier-label-price { display: block; font-size: 20px; font-weight: 800; }
.tier-label-desc { display: block; font-size: 11px; opacity: 0.7; margin-top: 2px; line-height: 1.3; }

.form-note {
  font-size: 13px;
  color: var(--text-light);
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.submit-area { text-align: center; padding-top: 8px; }
.submit-area .btn { padding: 16px 48px; font-size: 16px; }
.submit-note { font-size: 13px; color: var(--text-light); margin-top: 10px; }

/* ─── BRIEF SUBSCRIBE PAGE ───────────────────────────── */
.subscribe-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.subscribe-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.subscribe-feature .icon { font-size: 22px; flex-shrink: 0; }
.subscribe-feature strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.subscribe-feature p { font-size: 13px; color: var(--text-light); line-height: 1.4; }
