/* t1: Classic Service — split hero, card grids, alternating backgrounds */

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}
.main-nav a:hover {
  color: var(--primary);
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary:hover {
  opacity: 0.9;
}

/* Hero — split layout */
.hero {
  background: var(--bg);
  padding: 4rem 1.5rem;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.hero-price {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  color: #666;
  margin-bottom: 1.5rem;
}
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.graphic-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  opacity: 0.15;
}

/* Alternating section backgrounds */
.alt-bg {
  background: color-mix(in srgb, var(--primary) 5%, var(--bg));
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section-inner h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--ink);
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
}
.feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Pricing card */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}
.pricing-card-header {
  background: var(--primary);
  color: var(--bg);
  padding: 1.5rem;
}
.price-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
}
.price-period {
  font-size: 1.1rem;
}
.pricing-features {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  text-align: left;
}
.pricing-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}
.pricing-features li::before {
  content: "\2713 ";
  color: var(--primary);
  font-weight: 700;
}
.pricing-card .btn-primary {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-info {
  padding-top: 2.5rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0 0 1.5rem;
}
.footer-nav a {
  color: var(--bg);
  text-decoration: none;
  opacity: 0.85;
}
.footer-nav a:hover { opacity: 1; }
.footer-contact { margin-bottom: 1rem; opacity: 0.8; }
.footer-contact p { margin: 0.2rem 0; }
.footer-legal { font-size: 0.85rem; opacity: 0.7; margin-top: 1.5rem; }
.footer-legal p { margin: 0.3rem 0; }

/* Content section */
.content-section { padding: 2rem 0; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-graphic { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .header-cta { font-size: 0.85rem; padding: 0.5rem 1rem; }
}

/* 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; }
}
