.offer-page { padding-top: 56px; }

/* ═══ COMPACT HERO ═══ */
.offer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
  flex-wrap: wrap;
}

.offer-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.offer-hero-text h1 em { font-style: italic; color: var(--accent); }

.offer-hero-text p {
  color: var(--fg-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.offer-back {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.offer-back:hover { color: var(--fg); }

/* ═══ OFFER NOTE ═══ */
.offer-note {
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-alt);
}

.offer-note-label {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(77, 122, 255, 0.12);
  padding: 0.2rem 0.5rem;
  flex-shrink: 0;
}

.offer-note a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.offer-note a:hover { opacity: 0.7; }

/* ═══ TIERS ═══ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.tier {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.tier:last-child { border-right: none; }
.tier:hover { background: var(--bg-alt); }

.tier-head {
  padding: 2.5rem 2.5rem 1.5rem;
}

.tier-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}

.tier-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.tier-oneliner {
  color: var(--fg-secondary);
  font-size: 0.85rem;
  line-height: 1.45;
}

.tier-price {
  padding: 1rem 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tier-price-value {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.tier-price-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-top: 0.15rem;
}

.tier-cta-wrap {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.tier-cta {
  display: block;
  width: 100%;
  padding: 0.9rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
}

.tier-cta:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.tier-features {
  padding: 1.5rem 2.5rem 2.5rem;
  flex: 1;
}

.tier-features-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.tf {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.45;
}

.tf:last-child { border-bottom: none; }

.tf .ic {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 12px;
}

.tf.off { opacity: 0.3; }
.tf.off .ic { color: var(--fg-muted); }

/* ─── Featured tier ─── */
.tier.featured { background: #2a2a30; color: var(--fg); }
.tier.featured:hover { background: #303038; }
.tier.featured .tier-label { color: var(--fg-muted); }
.tier.featured .tier-name { color: var(--fg); }
.tier.featured .tier-oneliner { color: var(--fg-secondary); }
.tier.featured .tier-price { border-color: var(--border); }
.tier.featured .tier-price-value { color: var(--fg); }
.tier.featured .tier-price-note { color: var(--fg-muted); }
.tier.featured .tier-cta-wrap { border-color: var(--border); }
.tier.featured .tier-cta { background: var(--accent); color: white; border-color: var(--accent); }
.tier.featured .tier-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.tier.featured .tier-features-label { color: var(--fg-muted); }
.tier.featured .tf { color: var(--fg-secondary); border-bottom-color: var(--border); }
.tier.featured .tf .ic { color: var(--accent); }
.tier.featured .tf.off { opacity: 0.25; }

.featured-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.6rem;
}

.tier.featured .featured-badge {
  background: var(--accent);
  color: white;
}

.tier:not(.featured) .featured-badge { display: none; }

/* ═══ COMPARISON ═══ */
.comparison {
  border-bottom: 1px solid var(--border);
  padding: 3rem;
}

.comparison h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th,
.comp-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}

.comp-table thead th {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  border-bottom: 2px solid var(--border);
}

.comp-table thead th:first-child { color: var(--fg); }
.comp-table tbody td:first-child { color: var(--fg); font-weight: 500; }
.comp-table tbody td { color: var(--fg-secondary); }

.cc { color: var(--accent); font-family: var(--mono); font-weight: 600; }
.cd { color: var(--fg-muted); opacity: 0.4; }

/* ═══ BOTTOM CTA ═══ */
.bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.bottom-cta-left {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border);
}

.bottom-cta-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.bottom-cta-left h2 em { font-style: italic; color: var(--accent); }

.bottom-cta-left p {
  color: var(--fg-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 380px;
}

.bottom-cta-right {
  background: #2a2a30;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.bottom-cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bottom-cta-email {
  font-family: var(--mono);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--fg);
  text-decoration: none;
  border-bottom: 2px solid var(--fg-muted);
  padding-bottom: 0.3rem;
  transition: border-color 0.2s;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.bottom-cta-email:hover { border-color: var(--accent); }

.bottom-cta-phone {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

.bottom-cta-phone:hover { color: var(--fg-secondary); }

/* ═══ FAQ ═══ */
.faq-strip {
  border-bottom: 1px solid var(--border);
}

.faq-strip-header {
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.faq-cell {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-cell:nth-child(3n) { border-right: none; }
.faq-cell:nth-child(n+4) { border-bottom: none; }

.faq-cell h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.faq-cell p {
  color: var(--fg-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--border); }
  .tier:last-child { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .faq-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .faq-cell:nth-child(2n) { border-right: none; }
  .faq-cell { border-bottom: 1px solid var(--border); }
  .faq-cell:nth-last-child(-n+2) { border-bottom: none; }
  .bottom-cta { grid-template-columns: 1fr; }
  .bottom-cta-left { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .offer-hero { padding: 2rem 1.2rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .offer-hero-text h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .offer-hero-text p { font-size: 0.82rem; }
  .offer-note { padding: 0.9rem 1.2rem; font-size: 0.65rem; flex-wrap: wrap; }

  .tier-strip { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tier-tab { min-width: 90px; font-size: 0.65rem; padding: 1rem; }

  .tier-head, .tier-price, .tier-cta-wrap, .tier-features { padding-left: 1.2rem; padding-right: 1.2rem; }
  .tier-head { padding-top: 2rem; padding-bottom: 1.2rem; }
  .tier-name { font-size: 1.6rem; }
  .tier-oneliner { font-size: 0.8rem; }
  .tier-cta { padding: 0.85rem; font-size: 0.72rem; }
  .tf { font-size: 0.8rem; }

  .comparison { padding: 2rem 1.2rem; }
  .comparison h2 { font-size: 1.3rem; }
  .comp-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comp-table th, .comp-table td { padding: 0.6rem 0.8rem; font-size: 0.75rem; white-space: nowrap; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 1.2rem; }
  .faq-cell:last-child { border-bottom: none; }
  .faq-cell h3 { font-size: 0.82rem; }
  .faq-cell p { font-size: 0.78rem; }
  .faq-strip-header { padding: 1.2rem; font-size: 0.62rem; }

  .bottom-cta-left, .bottom-cta-right { padding: 2.5rem 1.2rem; }
  .bottom-cta-left h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .bottom-cta-left p { font-size: 0.85rem; }

  .bottom-cta-left .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
