/* ============ RESET / BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: #1a1a1a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ============ HEADER ============ */
.site-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-bar {
  height: 3px;
  background: linear-gradient(90deg, #c8372d, #e04a3f, #c8372d);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.active { color: #fff; }
.site-nav .nav-cta {
  background: #c8372d;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.site-nav .nav-cta:hover { background: #e04a3f; color: #fff; }

/* ============ BRAND ============ */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand-icon {
  width: 40px; height: 40px;
  background: #c8372d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
}
.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-top: -2px;
}

/* ============ HERO ============ */
.hero {
  background: #1a1a1a;
  color: #fff;
  padding: 72px 24px 88px;
  position: relative;
  overflow: hidden;
}
.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, #c8372d22 60%, #c8372d44 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  background: #c8372d;
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 3px;
}
.hero h1 {
  font-size: clamp(34px, 7vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  max-width: 720px;
  color: #fff;
}
.hero .h1-red {
  color: #e04a3f;
  margin-bottom: 28px;
}
.hero-copy {
  font-size: 18px;
  line-height: 1.6;
  color: #bbb;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  border: 2px solid transparent;
}
.btn-primary {
  background: #c8372d;
  color: #fff;
}
.btn-primary:hover {
  background: #e04a3f;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #444;
}
.btn-ghost:hover {
  border-color: #fff;
}

/* ============ HERO STATS ============ */
.stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #e04a3f;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: #999;
  margin-top: 6px;
  line-height: 1.3;
}

/* ============ SECTIONS ============ */
.section {
  padding: 72px 24px;
}
.section-alt {
  background: #f7f7f7;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c8372d;
  font-weight: 700;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.12;
  color: #1a1a1a;
  max-width: 780px;
}
.section-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.6;
}
.accent-red { color: #c8372d; }

/* ============ PROSE ============ */
.prose {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 700px;
  margin-bottom: 20px;
}
.prose-lg {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  max-width: 700px;
  margin-bottom: 16px;
}
.prose-callout {
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  border-left: 4px solid #c8372d;
  padding: 18px 22px;
  max-width: 700px;
  margin-top: 24px;
  border-radius: 4px;
}

/* ============ PILLARS ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillars-4 {
  grid-template-columns: repeat(2, 1fr);
}
.pillar {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px;
  transition: all 0.15s;
}
.section-alt .pillar {
  background: #fff;
}
.pillar:hover {
  border-color: #c8372d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.pillar-num {
  font-size: 13px;
  font-weight: 800;
  color: #c8372d;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.pillar h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.25;
}
.pillar p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}
.pillar-why {
  font-size: 14px !important;
  color: #666 !important;
  padding-top: 10px;
  border-top: 1px dashed #e5e5e5;
  margin-bottom: 0 !important;
}
.pillar-link {
  color: #c8372d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.pillar-link:hover {
  color: #e04a3f;
}

/* ============ TIERS ============ */
.tiers {
  display: grid;
  gap: 14px;
  max-width: 820px;
}
.tier {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #c8372d;
  border-radius: 8px;
  padding: 20px 22px;
}
.tier-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tier-tag {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: #444;
}
.section-alt .tier-tag {
  background: #fafafa;
}

/* ============ DETAILS GRID ============ */
.details-grid {
  display: grid;
  gap: 0;
  max-width: 640px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 8px 24px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  gap: 20px;
}
.detail-row:last-child {
  border-bottom: none;
}
.detail-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  min-width: 130px;
  flex-shrink: 0;
}
.detail-value {
  font-size: 15px;
  color: #333;
  text-align: right;
  line-height: 1.4;
}

/* ============ QUALIFY GRID ============ */
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
}
.qualify-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
}
.qualify-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.qualify-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-name {
  font-size: 13px;
  color: #888;
}
.testimonial-name strong {
  color: #c8372d;
  font-weight: 700;
}

/* ============ INCLUDED LIST ============ */
.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 820px;
}
.included-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
}

/* ============ FAQ ============ */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: #c8372d;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 22px 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ============ CTA ============ */
.cta {
  background: #c8372d;
  padding: 72px 24px;
  text-align: center;
}
.cta-inner {
  max-width: 520px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: none;
}
.cta-desc {
  font-size: 16px;
  color: #ffccc8;
  margin-bottom: 28px;
  line-height: 1.5;
}
.form-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.form-fields input, .form-fields select {
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid #ffffff44;
  border-radius: 6px;
  background: rgba(0,0,0,0.15);
  color: #fff;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.form-fields input::placeholder { color: #ffccc8; }
.form-fields select { appearance: none; color: #ffccc8; }
.form-fields input:focus, .form-fields select:focus { border-color: #fff; }
.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s;
  text-decoration: none;
  display: block;
}
.submit-btn:hover { transform: scale(1.02); }
.submit-btn.btn-inline {
  display: inline-block;
  width: auto;
  padding: 16px 36px;
}
.cta-fine {
  font-size: 12px;
  color: #ffccc8;
  margin-top: 14px;
  line-height: 1.4;
}
.confirmation {
  max-width: 400px;
  margin: 0 auto;
  display: none;
}
.confirmation.show { display: block; }
.form-container.hidden { display: none; }
.check-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.confirmation h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.confirmation p {
  font-size: 16px;
  color: #ffccc8;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.footer {
  background: #1a1a1a;
  color: #999;
  padding: 48px 24px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 36px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-tag {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  max-width: 280px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.footer-cols h4 {
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.15s;
}
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #333;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #777;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillars-4 { grid-template-columns: 1fr; }
  .qualify-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .header-inner { padding: 12px 20px; }
  .hero { padding: 56px 20px 64px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 56px 20px; }
  .stats { gap: 24px; }
  .stat-num { font-size: 26px; }
  .details-grid { padding: 8px 18px; }
  .detail-label { min-width: 100px; font-size: 11px; }
  .detail-value { font-size: 14px; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
