:root {
  --dark: #1a1a2e;
  --accent: #e63946;
  --mid: #2d2d44;
  --light-bg: #f7f7f9;
  --text: #222;
  --muted: #555;
  --border: #e0e0e8;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: #fff;
  line-height: 1.75;
  font-size: 17px;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 72px 24px 64px;
  text-align: center;
}

.hero .label {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: normal;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 18px;
  color: #ccc;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-block;
}

/* ── REASSURANCE BAR ── */
.reassurance {
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.reassurance span::before {
  content: '✓  ';
}

/* ── CONTENT WRAPPER ── */
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── INTRO ── */
.intro {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.intro h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.3;
}

.intro p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── TAILORED CALLOUT ── */
.tailored-callout {
  background: var(--dark);
  color: #fff;
  padding: 52px 24px;
  text-align: center;
  margin: 0;
}

.tailored-callout .inner {
  max-width: 680px;
  margin: 0 auto;
}

.tailored-callout .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tailored-callout h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.3;
}

.tailored-callout p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

/* ── WHAT TO EXPECT SECTIONS ── */
.expect-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.expect-section:last-of-type {
  border-bottom: none;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-marker .phase {
  background: var(--dark);
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  white-space: nowrap;
}

.section-marker .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.expect-section h2 {
  font-size: 26px;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.expect-section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.expect-section ul {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 16px;
}

.expect-section ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* ── DETAIL CARDS ── */
.detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.detail-card {
  border: 1px solid var(--border);
  padding: 24px;
}

.detail-card .card-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.detail-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── CONCERN BOXES ── */
.concerns {
  background: var(--light-bg);
  padding: 48px 24px;
  margin: 48px 0;
}

.concerns .content-wrap {
  padding: 0;
}

.concerns h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 32px;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.concern-card {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 24px;
}

.concern-card .q {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.concern-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── STEPS ── */
.steps-section {
  padding: 56px 0;
}

.steps-section h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 8px;
}

.steps-section .sub {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 16px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 21px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-body p {
  color: var(--muted);
  margin-bottom: 12px;
}

.step-body ul {
  margin: 12px 0 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.step-body ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

.step-tag {
  display: inline-block;
  background: var(--light-bg);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* ── TIMELINE VISUAL ── */
.timeline-bar {
  background: var(--dark);
  color: #fff;
  padding: 56px 24px;
  margin: 0;
}

.timeline-bar .content-wrap {
  padding: 0;
}

.timeline-bar h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 8px;
}

.timeline-bar .sub {
  color: #aaa;
  margin-bottom: 40px;
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
}

.tl-item {
  background: var(--mid);
  padding: 24px 20px;
}

.tl-item .period {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.tl-item .tl-title {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tl-item .tl-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

/* ── DATA SECTION ── */
.data-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.data-section h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 12px;
}

.data-section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.data-section ul {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 16px;
}

.data-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  margin: 40px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  font-style: normal;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-top: 12px;
}

/* ── SUPPORT GRID ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 28px;
}

.support-item {
  background: var(--light-bg);
  padding: 24px;
}

.support-item .s-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.support-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── HARDWARE ── */
.hardware-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.hardware-section h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 12px;
}

.hardware-section p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── SUPPORT SECTION ── */
.support-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.support-section h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 12px;
}

.support-section p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── CTA FOOTER ── */
.cta-footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}

.cta-footer h2 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.cta-footer p {
  color: #bbb;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-footer .contact-details {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #aaa;
  margin-top: 24px;
}

.cta-footer .contact-details a {
  color: #fff;
  text-decoration: none;
}

/* ── RELATED LINKS ── */
.related {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.related h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

.related-links a:hover {
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .step {
    grid-template-columns: 1fr;
  }
  .step-num {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .reassurance {
    gap: 16px;
  }
}