:root {
  --yellow: #FCAF18;
  --yellow-deep: #E89A00;
  --black: #121315;
  --grey: #666666;
  --subtle: #999999;
  --divider: #D7D7D7;
  --bg-cream: #FBF8F2;
  --white: #FFFFFF;
  --shadow: 0 30px 60px -20px rgba(18,19,21,0.18);
  --shadow-soft: 0 10px 30px -10px rgba(18,19,21,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3.2px;
  color: var(--black);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--yellow);
}
.eyebrow.on-yellow::before { background: var(--black); }
.eyebrow.on-dark { color: var(--yellow); }
.eyebrow.on-dark::before { background: var(--yellow); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============== BUTTON (signature element) =============== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.28px;
  background: var(--yellow);
  color: var(--white);
  padding: 0 6px 0 35px;
  height: 57px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  flex-shrink: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
.btn:hover { background: var(--black); }
.btn-sf-icon {
  width: 63px;
  height: 63px;
  object-fit: contain;
}
.btn:hover .btn-icon { transform: rotate(0deg); }
.btn:hover .btn-sf-icon { filter: invert(1); }

.btn--white {
  background: var(--white);
  color: var(--black);
}
.btn--white:hover { background: var(--black); color: var(--white); }
.btn--white .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  flex-shrink: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding-right: 30px;
  padding-left: 30px;
}
.btn--outline:hover { border-color: var(--yellow); background: var(--yellow); }

/* =============== UTILITY BAR =============== */
.utility-bar {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 14px 24px;
  max-width: 1480px;
  margin: 0 auto;
}
.util-item { display: inline-flex; align-items: center; gap: 12px; color: var(--grey); }
.util-icon {
  width: 32px; height: 32px;
  background: var(--yellow);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.util-social {
  display: flex; gap: 14px;
  border-left: 1px solid var(--divider);
  padding-left: 24px;
  margin-left: 8px;
}
.util-social a {
  color: var(--black);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.util-social a:hover { color: var(--yellow); }

/* =============== HEADER =============== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--divider);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 18px 32px;
  max-width: 1480px;
  margin: 0 auto;
  gap: 40px;
}
.logo { flex-shrink: 0; }
.logo img { height: 64px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-nav a {
  color: var(--black);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a.has-arrow::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  margin-left: 6px;
  color: var(--subtle);
}

.book-online {
  background: var(--yellow);
  color: var(--white);
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.3s;
}
.book-online:hover { background: var(--black); color: var(--white); }
.book-online i {
  font-size: 18px;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}
.book-online:hover i { transform: rotate(0); }

.menu-toggle {
  display: none;
  background: none; border: none; font-size: 28px;
  color: var(--black); cursor: pointer;
}

/* =============== HERO =============== */
.hero {
  position: relative;
  background: url('/images/hero-full.jpg') center/cover no-repeat;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 640px;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 40px;
  position: relative;
}
.hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.hero-content .eyebrow { color: var(--black); }
.hero-content .eyebrow::before { background: var(--black); }

.hero-intro {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.hero h1 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .stack { display: block; }
.hero h1 .white { color: var(--white); }

.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: var(--black);
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
.hero-tagline u { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-phone i { color: var(--white); background: var(--black); width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; }

.price-badge {
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 40px;
  width: 200px;
  height: 200px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  z-index: 3;
  border: 4px dashed var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
}
.price-badge--mobile { display: none; }
.price-badge .label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-badge .amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.price-badge .per {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
/* =============== BENEFITS STRIP =============== */
.benefits {
  background: var(--bg-cream);
  padding: 80px 0;
  position: relative;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.benefit-icon {
  width: 80px; height: 80px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}
.benefit:hover .benefit-icon { transform: scale(1.08); }
.benefit h4 {
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.benefit p {
  font-size: 14px;
  color: var(--grey);
}

/* =============== PROBLEM / STATS =============== */
.problem {
  background: var(--black);
  padding: 100px 0;
  color: var(--white);
  text-align: center;
}
.problem h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  max-width: 880px;
  margin: 0 auto 24px;
  letter-spacing: -0.5px;
}
.problem h2 em { color: var(--yellow); font-style: normal; }
.problem .lead {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 32px;
  text-align: left;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.stat:hover { border-color: var(--yellow); background: rgba(252,175,24,0.05); }
.stat .num {
  font-family: 'DM Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.stat .num small { font-size: 28px; vertical-align: top; margin-right: 4px; }
.stat .desc {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.5;
}

/* =============== PLANS =============== */
.plans {
  padding: 120px 0 100px;
  background: var(--white);
  position: relative;
}
.plans-header {
  text-align: center;
  margin-bottom: 70px;
}
.plans-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.plans-header h2 em { font-style: normal; color: var(--yellow); }
.plans-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
}

.billing-toggle {
  display: inline-flex;
  background: var(--bg-cream);
  padding: 6px;
  margin-top: 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.billing-toggle button {
  background: transparent;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  color: var(--grey);
  transition: all 0.2s;
  font: inherit;
}
.billing-toggle button.active {
  background: var(--black);
  color: var(--white);
}
.billing-toggle .save {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 11px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.plan {
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  background: var(--black);
  color: var(--white);
  border: none;
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}
.plan--featured:hover { transform: translateY(-18px); }
.plan--featured h3, .plan--featured .price-amount { color: var(--white); }
.plan--featured .feature-list li { color: rgba(255,255,255,0.85); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.plan-title-with-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  text-align: left;
}
.tier-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
}
.plan h3 {
  font-size: 38px;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.plan-tagline {
  font-size: 14px;
  color: var(--subtle);
  margin-bottom: 28px;
  min-height: 42px;
}
.plan--featured .plan-tagline { color: rgba(255,255,255,0.6); }

.price-block { margin-bottom: 32px; }
.price-amount {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--black);
  letter-spacing: -2px;
}
.price-amount .currency { font-size: 28px; vertical-align: top; }
.price-period {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--subtle);
  margin-left: 4px;
}
.price-annual {
  display: block;
  font-size: 13px;
  color: var(--subtle);
  margin-top: 8px;
}
.plan--featured .price-period,
.plan--featured .price-annual { color: rgba(255,255,255,0.6); }

.feature-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.plan--featured .feature-list li { border-bottom-color: rgba(255,255,255,0.08); }
.feature-list li:last-child { border-bottom: none; }
.feature-list i {
  color: var(--yellow);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.plan .btn { align-self: flex-start; width: 100%; padding-left: 28px; }

/* =============== SEPTIC ADD-ON =============== */
.addon {
  background: var(--bg-cream);
  padding: 60px 0;
}
.addon-card {
  background: var(--white);
  border-left: 6px solid var(--yellow);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.addon-icon {
  width: 72px; height: 72px;
  background: var(--black);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.addon-content .label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 6px;
  display: block;
}
.addon-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.addon-content p {
  font-size: 15px;
  color: var(--grey);
}
.addon-price {
  text-align: right;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}
.addon-price small {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--subtle);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

/* =============== HOW IT WORKS =============== */
.how {
  padding: 110px 0;
  background: var(--white);
}
.how-header { text-align: center; margin-bottom: 70px; }
.how-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.5px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--yellow) 0, var(--yellow) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 100px; height: 100px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 28px;
  border: 8px solid var(--white);
  box-shadow: 0 0 0 2px var(--yellow);
}
.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.step p { font-size: 15px; max-width: 280px; margin: 0 auto; }

/* =============== TRUST =============== */
.trust {
  background: var(--bg-cream);
  padding: 110px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.trust-content p { margin-bottom: 20px; font-size: 17px; }
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
}
.trust-pill i { color: var(--yellow); }
.trust-image {
  position: relative;
  background: var(--yellow);
  padding: 24px;
}
.trust-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #ddd;
}
.trust-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--black);
  z-index: -1;
}

/* =============== FAQ =============== */
.faq {
  padding: 110px 0;
  background: var(--white);
}
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header h2 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.5px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--yellow); }
.faq-question i {
  width: 32px; height: 32px;
  background: var(--bg-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 24px;
  font-size: 12px;
  color: var(--black);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: var(--yellow);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 16px;
  color: var(--grey);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 0 28px; }

/* =============== ENROLLMENT FORM =============== */
.enroll {
  background: var(--black);
  padding: 110px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.enroll::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.08;
}
.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.enroll h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.enroll h2 em { color: var(--yellow); font-style: normal; }
.enroll-lead {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 32px;
}
.enroll-phone-block {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  margin-top: 32px;
}
.enroll-phone-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.enroll-phone-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.enroll-form {
  background: var(--white);
  padding: 44px;
  color: var(--black);
}
.enroll-form-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--black);
}
.enroll-form-sub {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--black);
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--divider);
  background: var(--bg-cream);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--black);
  border-radius: 0;
  outline: none;
  transition: border 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--yellow);
  background: var(--white);
}
.enroll-form .btn { width: 100%; margin-top: 8px; }
.form-note {
  font-size: 12px;
  color: var(--subtle);
  margin-top: 14px;
  text-align: center;
}

/* =============== FOOTER =============== */
.footer-cta {
  background: #1a1b1d;
  padding: 70px 0;
  color: var(--white);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-cta h3 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer-cta p { color: rgba(255,255,255,0.65); }
.footer-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--yellow); }
.footer-logo img { height: 120px; width: auto; max-width: 100%; margin-bottom: 24px; }
.footer-about p { line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--yellow); margin-top: 4px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-bottom-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  flex: 1;
  justify-content: center;
}
.footer-bottom-contact i { color: var(--yellow); margin-right: 6px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 63px;
  height: 63px;
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }

/* =============== RESPONSIVE =============== */
@media (max-width: 1300px) {
  .hero-content { padding: 80px 40px 80px 60px; }
}
@media (max-width: 1100px) {
  .hero-inner { flex-direction: column; align-items: flex-start; padding: 60px 32px; gap: 24px; }
  .hero { background-position: 30% center; }
  .price-badge {
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 40px;
  width: 200px;
  height: 200px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  z-index: 3;
  border: 4px dashed var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
}
  .price-badge .amount { font-size: 44px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; max-width: 500px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 500px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .how-grid { grid-template-columns: 1fr; gap: 50px; }
  .how-grid::before { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .enroll-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .addon-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; text-align: center; }
  .addon-icon { margin: 0 auto; }
  .addon-price { text-align: center; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .utility-bar { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .header-inner { padding: 14px 20px; }
  .logo img { height: 48px; }
  .book-online { padding: 14px 18px; font-size: 12px; }
  .book-online span { display: none; }
  /* Hero mobile: house image with yellow panel on left */
  .hero {
    background: url('/images/hero-home.jpg') right center / cover no-repeat;
    min-height: 500px;
  }
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    gap: 0;
    min-height: 500px;
  }
  .hero-content {
    background: var(--yellow);
    flex: 0 0 52%;
    max-width: 52%;
    padding: 36px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-intro { font-size: 11px; letter-spacing: 1.5px; font-weight: 600; }
  .hero h1 { font-size: 30px; }
  .hero-tagline { font-size: 17px; margin-bottom: 20px; }
  .price-badge--desktop { display: none; }
  .price-badge--mobile { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-phone { justify-content: flex-start; padding: 6px 0; font-size: 14px; }
  .btn { height: 46px; font-size: 12px; padding: 0 6px 0 18px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .stat .num { font-size: 44px; }
  .enroll-form { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile graphic replaces hero + benefits — must be last to win */
  .hero-mobile-only { display: block !important; }
  .hero { display: none !important; }
  .benefits { display: none !important; }
}

/* === Hero mobile graphic (shown only on mobile) === */
.hero-mobile-only {
  display: none;
}
.hero-mobile-only img {
  width: 100%;
  display: block;
}

/* === Hero background image (local asset) === */
.hero-image {
  background-image: url('../images/hero-home.jpg');
  background-size: cover;
  background-position: center right;
}
