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

:root {
  --blue: #34A5DA;
  --blue-light: rgba(52,165,218,0.12);
  --blue-mid: rgba(52,165,218,0.3);
  --text: #ffffff;
  --text-secondary: #838787;
  --text-tertiary: #5a5e5e;
  --bg: #222222;
  --bg-secondary: #1a1a1a;
  --bg-card: #2a2a2a;
  --border: rgba(255,255,255,0.08);
  --border-mid: rgba(255,255,255,0.15);
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: #111;
  line-height: 1.6;
}

.page {
  max-width: 900px;
  margin: 2rem auto;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg-secondary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo { font-size: 16px; font-weight: 700; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 18px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-secondary); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

.hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 0.5px solid var(--border);
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border: 0.5px solid var(--blue-mid);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 1.75rem;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero h1 { font-size: 40px; font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.65; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 0.75rem; }
.hero-microcopy { font-size: 13px; color: var(--text-tertiary); font-weight: 500; margin-bottom: 0; }

.btn-primary,
.btn-secondary,
.btn-ghost,
.inline-cta-btn {
  text-decoration: none;
  display: inline-block;
  border-radius: var(--radius-md);
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}
.btn-primary {
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary,
.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 13px 26px;
  border: 0.5px solid var(--border-mid);
  background: transparent;
}
.btn-secondary:hover,
.btn-ghost:hover { color: var(--text); }

.built-for {
  padding: 1rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg-secondary);
}
.built-for-label { font-size: 13px; color: var(--text-tertiary); font-weight: 500; }

section { padding: 3rem; border-bottom: 0.5px solid var(--border); }
section.alt { background: var(--bg-secondary); }
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 14px;
}
.section-header { margin-bottom: 1.75rem; }
.section-header h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.section-header p { font-size: 15px; color: var(--text-secondary); max-width: 560px; }

.answer-box,
.preview-box {
  border: 0.5px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.answer-box { padding: 1.5rem 1.75rem; }
.answer-box p,
.preview-box-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.answer-box strong,
.preview-box-body strong { color: var(--text); }

.problem-grid,
.deliverables,
.objections { display: grid; gap: 12px; }
.problem-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.deliverables { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin-bottom: 1.5rem; }
.objections { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.problem-card,
.deliverable,
.obj-card,
.sample-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.problem-card.accent { border-color: var(--blue-mid); background: var(--blue-light); }
.problem-icon { font-size: 18px; margin-bottom: 10px; }
.problem-card h3,
.deliverable h4,
.obj-card h3,
.sample-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.problem-card p,
.deliverable p,
.obj-card p,
.sample-card p,
.sample-card li { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.sample-card ul { padding-left: 1rem; margin-top: 8px; }
.problem-card.accent h3 { color: var(--blue); }
.problem-card.accent p { color: rgba(52,165,218,0.75); }

.process-visual { display: flex; margin-top: 1.75rem; border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.process-before,
.process-after { flex: 1; padding: 1.25rem; }
.process-before { background: var(--bg-card); }
.process-after { background: var(--blue-light); }
.process-divider {
  width: 44px;
  background: var(--bg);
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-tertiary);
}
.process-before h4,
.process-after h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.process-before h4 { color: var(--text-tertiary); }
.process-after h4 { color: var(--blue); }
.process-item { font-size: 13px; padding: 6px 0; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 9px; color: var(--text-secondary); }
.process-item:last-child { border-bottom: none; }
.process-after .process-item { color: var(--blue); border-color: var(--blue-mid); }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: #c0544a; }
.dot-blue { background: var(--blue); }

.steps { display: flex; }
.step { flex: 1; padding: 1.25rem; border: 0.5px solid var(--border); border-right: none; background: var(--bg-card); }
.step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.step:last-child { border-right: 0.5px solid var(--border); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.step-num { font-size: 10px; font-weight: 700; color: var(--blue); margin-bottom: 10px; letter-spacing: 0.08em; }
.step h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.step .step-note { font-size: 11px; color: var(--text-tertiary); margin-top: 8px; font-style: italic; }

.preview-box-header { background: var(--blue-light); padding: 12px 18px; border-bottom: 0.5px solid var(--blue-mid); display: flex; align-items: center; gap: 10px; }
.preview-box-header span { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; }
.preview-box-body { background: var(--bg-card); padding: 1.5rem 1.75rem; }
.preview-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.preview-tag { font-size: 12px; font-weight: 500; color: var(--blue); background: var(--blue-light); border: 0.5px solid var(--blue-mid); border-radius: 20px; padding: 3px 12px; }

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 1.1rem 1.25rem; background: var(--bg-card); cursor: pointer; }
.faq-item:hover { border-color: var(--border-mid); }
.faq-q { font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-chevron { transition: transform 0.2s; color: var(--text-tertiary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.cta-band { padding: 4rem 3rem; text-align: center; background: var(--bg-secondary); }
.cta-band h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.cta-band p { font-size: 15px; color: var(--text-secondary); margin: 0 auto 2rem; max-width: 560px; }
.cta-band .hero-microcopy { margin-top: 1rem; margin-bottom: 0; }

footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  background: var(--bg-secondary);
  border-top: 0.5px solid var(--border);
}
footer p { margin: 0.15rem 0; }
.footer-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 0.75rem; }
footer a { color: var(--text-secondary); text-decoration: none; }
footer a:hover { color: var(--text); }

@media (max-width: 640px) {
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero h1 { font-size: 28px; }
  section { padding: 2.5rem 1.5rem; }
  .steps { flex-direction: column; }
  .step { border-right: 0.5px solid var(--border); border-bottom: none; }
  .step:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .step:last-child { border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .process-visual { flex-direction: column; }
  .process-divider { width: 100%; height: 36px; border-left: none; border-right: none; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
  .cta-band { padding: 3rem 1.5rem; }
}
