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

:root {
  --cream: #faf8f4;
  --cream2: #f3f0ea;
  --cream3: #ebe6db;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --faint: #d6d0c7;
  --blue: #4a9ebe;
  --font-head: "Fraunces", serif;
  --font-body: "Roboto Flex", sans-serif;
  --container: 1400px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

em {
  font-style: italic;
}

strong {
  font-weight: 500;
  color: var(--ink);
}

/* ── LINK LIST GRID ── */
.link-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.link-card {
    background: var(--cream);
    border: 1px solid var(--faint);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    transition:
        border-color 0.2s,
        transform 0.2s;
}

.link-card:hover {
    border-color: var(--blue);
    transform: translateX(4px);
}

.link-card-name {
    font-size: 0.88em;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.4;
}

.link-card-arrow {
    color: var(--blue);
    flex-shrink: 0;
    font-size: 0.8em;
    transition: transform 0.2s;
}

.link-card:hover .link-card-arrow {
    transform: translateX(3px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 60px;
}

.section-label {
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}

/* ── ANALOGY STRIP ── */
.analogy-strip {
  background: var(--ink);
  padding: 64px 60px;
}

.analogy-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.analogy-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cream);
}

.analogy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.analogy-icon {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.analogy-item-title {
  font-weight: 500;
  font-size: 1em;
  color: var(--cream);
  margin-bottom: 6px;
}

.analogy-item-desc {
  font-size: 0.8em;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 300;
  line-height: 1.65;
}

.analogy-item-sub {
  font-size: 0.7em;
  color: var(--blue);
  font-weight: 400;
  margin-top: 6px;
}

/* ── COST BREAKDOWN ── */
#breakdown {
  background: var(--cream);
}

.breakdown-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.breakdown-header {
  max-width: 730px;
  margin-bottom: 2em;
}

.cost-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cost-card {
  background: var(--cream2);
  border: 1px solid var(--faint);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  transition: all 0.2s;
}
.cost-card:hover {
  border: 1px solid var(--blue);
  transform: translateX(4px);
}

.cost-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  flex-shrink: 0;
}

.cost-name {
  font-weight: 500;
  font-size: 1em;
  color: var(--ink);
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

.cost-desc {
  max-width: 800px;
  font-size: 0.85em;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.cost-tag {
  display: inline-block;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 1em;
}
.cost-tag.annual {
  color: var(--blue);
  border: 1px solid var(--blue);
}
.cost-tag.monthly {
  color: var(--ink);
  border: 1px solid var(--ink);
}
.cost-tag.optional {
  color: var(--muted);
  border: 1px solid var(--muted);
}

.cost-price-col {
  text-align: right;
  flex-shrink: 0;
}

.cost-price {
  font-family: var(--font-head);
  font-size: 1.5em;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.cost-price-note {
  font-size: 0.75em;
  color: var(--muted);
  font-weight: 300;
  margin-top: 4px;
}

/* ── TOTAL BAR ── */
.total-bar {
  background: var(--muted);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.total-label {
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.total-desc {
  font-size: 1em;
  color: var(--cream3);
  font-weight: 300;
}

.total-amount {
  text-align: right;
}

.total-range {
  font-family: var(--font-head);
  font-size: 2em;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 1;
}

.total-period {
  font-size: 0.7em;
  color: var(--faint);
  font-weight: 300;
  margin-top: 4px;
}

/* ── PROVIDER TABLE ── */
#providers {
  background: var(--cream2);
}

.providers-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.providers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.provider-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.provider-table-title {
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 4px;
}

.provider-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--faint);
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
}

.provider-table th {
  background: var(--cream3);
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 20px;
  text-align: left;
}

.provider-table td {
  padding: 14px 20px;
  font-size: 0.875em;
  color: var(--ink-soft);
  font-weight: 300;
  border-top: 1px solid var(--faint);
  vertical-align: middle;
}

.provider-table tr:hover td {
  background: var(--cream2);
}

.provider-name {
  color: var(--ink);
}

.provider-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95em;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.provider-badge {
  display: block;
  width: fit-content;
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}
.provider-badge.pick {
  border: 1px solid var(--blue);
  color: var(--blue);
}
.provider-badge.budget {
  color: var(--ink);
  border: 1px solid var(--ink);
}
.provider-badge.free {
  color: var(--muted);
  border: 1px solid var(--muted);
}

.provider-disclaimer {
  font-size: 0.8em;
  text-align: center;
  margin-top: 2em;
  color: var(--muted);
}

/* ── FAQ ── */
#faq {
  background: var(--cream);
}

.faq-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--cream2);
  border: 1px solid var(--faint);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--blue);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9em;
  color: var(--ink);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  transition:
    transform 0.3s,
    background 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--cream);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.875em;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer-inner strong {
  color: var(--ink-soft);
  font-weight: 500;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
 max-width: 150px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.83em;
  color: rgba(250, 248, 244, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 0.78em;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
  }
  .hero {
    padding: 130px 24px 80px;
  }
  section {
    padding: 72px 24px;
  }
  .analogy-strip {
    padding: 48px 24px;
  }
  .analogy-inner {
    grid-template-columns: auto;
    gap: 40px;
  }
  .analogy-cols {
    grid-template-columns: auto;
  }
  .breakdown-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .link-list-grid, .cost-card {
    grid-template-columns: 1fr;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-left {
    position: static;
  }
  .providers-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .provider-tables {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 60px 24px;
  }
  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .total-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
