/* t3: Price-Forward — giant pricing hero, comparison table, bold badges */

/* Header */
.pf-header {
  background: var(--ink);
  padding: 0.6rem 1.5rem;
}
.pf-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.pf-logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--bg);
  text-decoration: none;
}
.pf-nav {
  display: flex;
  gap: 1.2rem;
  flex: 1;
}
.pf-nav a {
  color: var(--bg);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.9rem;
}
.pf-nav a:hover { opacity: 1; }
.pf-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.pf-btn:hover { opacity: 0.9; }
.pf-btn-lg { padding: 0.85rem 2.5rem; font-size: 1.15rem; }
.pf-btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* Giant Price Hero */
.price-hero {
  background: var(--primary);
  color: var(--bg);
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  position: relative;
}
.price-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.price-ribbon {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.giant-price {
  margin-bottom: 1rem;
}
.giant-price .dollar {
  font-size: 2.5rem;
  font-weight: 800;
  vertical-align: top;
  line-height: 1;
}
.giant-price .amount {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}
.giant-price .per {
  font-size: 1.5rem;
  opacity: 0.8;
}
.price-hero h1 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.price-hero-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.price-hero-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* Comparison table */
.comparison-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.comparison-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.comparison-table th {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.our-row {
  background: color-mix(in srgb, var(--primary) 8%, var(--bg));
}
.our-row td { font-weight: 600; }
.price-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  padding: 0.15rem 0.6rem;
  border-radius: 3px;
  font-weight: 800;
}
.savings-callout {
  text-align: center;
  font-size: 1.2rem;
  background: color-mix(in srgb, var(--accent) 15%, var(--bg));
  padding: 0.8rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent);
}

/* Features banner */
.features-banner {
  background: color-mix(in srgb, var(--primary) 5%, var(--bg));
  padding: 3rem 1.5rem;
  text-align: center;
}
.features-banner-inner {
  max-width: 800px;
  margin: 0 auto;
}
.features-banner h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.price-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 2rem;
}
.price-features li {
  padding: 0.5rem 0.75rem;
  background: var(--bg);
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}
.badge {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  text-transform: uppercase;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* Content */
.content-wrap { padding: 2rem 1.5rem; }
.content-inner { max-width: 800px; margin: 0 auto; line-height: 1.7; }

/* Contact */
.contact-banner { padding: 3rem 1.5rem; background: var(--bg); }
.contact-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form-col input,
.contact-form-col textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-info-col p { margin: 0.3rem 0; }
.price-reminder {
  margin-top: 1.5rem;
  background: color-mix(in srgb, var(--primary) 10%, var(--bg));
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}
.price-reminder-amount {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Footer */
.pf-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 2rem 1.5rem;
}
.pf-footer-inner { max-width: 1100px; margin: 0 auto; }
.pf-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pf-footer-nav a { color: var(--bg); text-decoration: none; opacity: 0.8; }
.pf-footer-nav a:hover { opacity: 1; }
.pf-footer-contact { opacity: 0.75; margin-bottom: 1rem; }
.pf-footer-contact p { margin: 0.15rem 0; }
.pf-footer-legal { font-size: 0.8rem; opacity: 0.6; }
.pf-footer-copy { font-size: 0.8rem; opacity: 0.5; margin-top: 0.3rem; }

/* Responsive */
@media (max-width: 768px) {
  .pf-nav { display: none; }
  .giant-price .amount { font-size: 5rem; }
  .comparison-table { font-size: 0.85rem; }
  .price-features { grid-template-columns: 1fr; }
  .contact-banner-inner { grid-template-columns: 1fr; }
}

/* Checkout page */
.checkout-wrap { padding: var(--space-xl) 0; }
.checkout-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-md); display: grid; grid-template-columns: 1fr 380px; gap: var(--space-xl); align-items: start; }
.checkout-main h1 { margin-bottom: var(--space-sm); }
.checkout-steps { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid #e5e5e5; }
.checkout-steps .step { color: #999; font-size: 0.9rem; }
.checkout-steps .step.active { color: var(--primary, #333); font-weight: 600; }
.checkout-form h2 { font-size: 1.1rem; margin-bottom: var(--space-md); }
.checkout-form .form-group { margin-bottom: var(--space-md); }
.checkout-form input, .checkout-form select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: var(--radius, 6px); font-size: 1rem; font-family: inherit; }
.checkout-form input:focus, .checkout-form select:focus { outline: none; border-color: var(--primary, #333); box-shadow: 0 0 0 2px rgba(0,0,0,0.05); }
.checkout-submit { width: 100%; padding: 1rem; background: var(--primary, #333); color: #fff; border: none; border-radius: var(--radius, 6px); font-size: 1.1rem; font-weight: 600; cursor: pointer; margin-top: var(--space-sm); }
.checkout-submit:hover { opacity: 0.9; }
.checkout-secure { text-align: center; font-size: 0.85rem; color: #666; margin-top: var(--space-sm); }
.checkout-success { padding: var(--space-lg); background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius, 6px); }
.checkout-success h2 { color: #166534; }
.order-summary { background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--radius, 6px); padding: var(--space-lg); position: sticky; top: var(--space-lg); }
.order-summary h3 { margin-bottom: var(--space-md); }
.order-item { display: flex; justify-content: space-between; padding: var(--space-sm) 0; margin-bottom: var(--space-sm); border-bottom: 1px solid #e5e5e5; }
.order-price { font-weight: 700; font-size: 1.1rem; }
.order-includes { list-style: none; padding: var(--space-sm) 0; }
.order-includes li { padding: 4px 0; font-size: 0.9rem; }
.order-includes li::before { content: "✓ "; color: #16a34a; font-weight: 700; }
.order-total { display: flex; justify-content: space-between; padding-top: var(--space-md); border-top: 1px solid #e5e5e5; margin-top: var(--space-sm); }
.total-price { font-size: 1.3rem; font-weight: 700; color: var(--primary, #333); }
.order-note { font-size: 0.8rem; color: #888; margin-top: var(--space-sm); }
.form-success { padding: var(--space-lg); background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius, 6px); text-align: center; }
.form-success h3 { color: #166534; margin-bottom: var(--space-sm); }
@media (max-width: 768px) {
  .checkout-container { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
