:root {
  --green: #12a630;
  --green-dark: #0d8426;
  --green-soft: #e8f9ec;
  --ink: #050608;
  --ink-2: #101214;
  --muted: #606975;
  --line: #e4e7eb;
  --bg: #f7f8f6;
  --soft: #fafaf8;
  --white: #ffffff;
  --black: #050608;
  --shadow: 0 20px 60px rgba(5, 6, 8, 0.09);
  --shadow-heavy: 0 32px 80px rgba(5, 6, 8, 0.16);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(231, 233, 238, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-weight: 850;
  color: var(--ink);
}

.brand img {
  width: 42px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sign-in {
  color: var(--muted);
  font-weight: 650;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 21px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary,
.nav-button {
  color: white;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(31, 147, 104, 0.22);
}

.button.primary:hover,
.nav-button:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: #d5d8df;
  box-shadow: 0 14px 30px rgba(16, 21, 34, 0.08);
}

.full { width: 100%; }

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-button span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 104px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 46%, rgba(31,147,104,0.12), transparent 24%),
    linear-gradient(180deg, #fbfcfb, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(31,147,104,0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  color: var(--ink);
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

h1 span {
  color: var(--green);
}

h2 {
  color: var(--ink);
  font-size: clamp(2.35rem, 4.5vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

h3 {
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 1.22rem;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.rating-row span {
  color: var(--green);
  letter-spacing: 0.06em;
}

.rating-row p {
  margin: 0;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap > img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-heavy);
}

.status-card {
  position: absolute;
  left: -28px;
  bottom: -26px;
  padding: 16px 20px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 45px rgba(16, 21, 34, 0.14);
  border: 1px solid var(--line);
}

.status-card small,
.status-card strong {
  display: block;
}

.status-card small {
  color: var(--muted);
  margin-bottom: 3px;
}

.section {
  padding: 94px 0;
}

.soft-bg {
  background: #fbfbfa;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p,
.service-card p,
.info-card p,
.price-card p,
.why-copy p,
.faq-grid p,
.form-help,
.payment-status,
.pricing-note {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card,
.service-card,
.price-card,
.booking-form,
.faqs details,
.area-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  font-size: 1.2rem;
}

.ghost-number {
  position: absolute;
  top: 30px;
  right: 28px;
  color: rgba(16, 21, 34, 0.06);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  min-height: 220px;
  padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.price-card:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.pricing-grid {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  padding: 28px;
}

.price-card:nth-child(4),
.price-card:nth-child(5) {
  grid-column: span 1;
}

.price-card.featured {
  border-color: rgba(31,147,104,0.72);
  box-shadow: 0 22px 55px rgba(31,147,104,0.13);
}

.dark-card {
  background: linear-gradient(145deg, #111827, #1f2937);
  color: white;
  border-color: #1f2937;
}

.dark-card h3,
.dark-card .price {
  color: white;
}

.dark-card p,
.dark-card li {
  color: #cbd5e1;
}

.floating-tag {
  position: absolute;
  top: -13px;
  left: 26px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.premium {
  background: var(--green);
}

.price {
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin: 18px 0 12px;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.dark-card .price span {
  color: #cbd5e1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 10px;
}

.pricing-note {
  width: fit-content;
  margin: 28px auto 0;
  font-size: 0.9rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
  align-items: center;
}

.why-image img,
.before-after img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-heavy);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 34px;
  margin-top: 28px;
}

.check-grid span {
  color: var(--ink);
}

.before-after {
  width: min(720px, 100%);
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.faqs {
  display: grid;
  gap: 12px;
}

.faqs details {
  padding: 20px 22px;
}

.faqs summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faqs p {
  margin: 12px 0 0;
}

.final-cta {
  padding-top: 74px;
}

.cta-box {
  text-align: center;
  padding: 58px 28px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--ink), #1f2937);
  color: white;
}

.cta-box h2 {
  color: white;
}

.cta-box p {
  color: #cbd5e1;
  margin-bottom: 26px;
}

.footer {
  padding: 34px 0;
  background: white;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

/* Booking page */
.booking-hero {
  padding: 74px 0 34px;
  background: linear-gradient(180deg, #fbfcfb, #ffffff);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 850;
}

.booking-page-section {
  padding: 30px 0 90px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 34px;
  align-items: start;
}

.booking-form {
  padding: 30px;
}

.form-section {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-label,
.required-mark,
.optional-mark {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.required-mark,
.optional-mark {
  margin: 0 0 0 6px;
  vertical-align: middle;
}

.optional-mark {
  color: var(--muted);
  background: #f1f3f5;
}

.selected-plan-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  margin: 6px 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(31,147,104,0.22);
  background: var(--green-soft);
}

.selected-plan-banner span {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.selected-plan-banner strong {
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31,147,104,0.12);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hidden { display: none !important; }

.checkout-panel {
  position: sticky;
  top: 108px;
  padding: 26px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-heavy);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.checkout-header h3 {
  color: white;
  font-size: 1.6rem;
}

.checkout-header p {
  color: #cbd5e1;
  margin-bottom: 0;
}

.checkout-header img {
  width: 84px;
  height: 60px;
  object-fit: contain;
}

.checkout-panel .step-label {
  color: #8cf0c4;
  background: rgba(31,147,104,0.22);
}

.line-items {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  margin: 20px 0;
}

.line-items div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #cbd5e1;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.line-items div:last-child {
  border-bottom: 0;
}

.line-items strong {
  color: white;
  white-space: nowrap;
}

.total-box {
  padding: 8px 0 18px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
}

.total-row span {
  color: #cbd5e1;
  font-weight: 800;
}

.total-row strong {
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.total-row.monthly strong {
  font-size: 1.5rem;
}

.checkout-panel .button {
  margin-top: 10px;
}

.checkout-panel .button.secondary {
  color: white;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.payment-status {
  color: #cbd5e1;
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.payment-status.good { color: #8cf0c4; }
.payment-status.warn { color: #fbbf24; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1000px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open,
  .nav-actions.open {
    display: flex;
  }

  .hero-grid,
  .why-grid,
  .faq-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    position: static;
  }

  .pricing-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .price-card:nth-child(4),
  .price-card:nth-child(5) {
    grid-column: auto;
  }

  .hero-image-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .status-card {
    position: static;
    margin-top: 14px;
  }

  .two-col,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Green / black BR shirt colorway update */
.site-header {
  background: rgba(5, 6, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand span {
  color: #ffffff;
}

.nav-links,
.sign-in {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a:hover,
.sign-in:hover {
  color: #ffffff;
}

.menu-button span {
  background: #ffffff;
}

.nav-links.open,
.nav-actions.open {
  background: #050608;
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-button,
.button.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 166, 48, 0.24);
}

.nav-button:hover,
.button.primary:hover {
  background: var(--green-dark);
}

.hero {
  background:
    radial-gradient(circle at 72% 42%, rgba(18,166,48,0.15), transparent 24%),
    radial-gradient(circle at 12% 15%, rgba(5,6,8,0.06), transparent 18%),
    linear-gradient(180deg, #ffffff, #f8faf8);
}

.badge {
  background: rgba(18,166,48,0.09);
  color: var(--green-dark);
  border-color: rgba(18,166,48,0.28);
}

.button.secondary {
  border-color: #dfe3e8;
}

.icon-box {
  background: rgba(18,166,48,0.10);
  color: var(--green);
}

.price-card.featured {
  border-color: rgba(18,166,48,0.72);
  box-shadow: 0 22px 55px rgba(18,166,48,0.13);
}

.dark-card,
.checkout-panel,
.cta-box {
  background: linear-gradient(145deg, #050608, #101214);
}

.floating-tag,
.premium {
  background: var(--green);
}

.price-card li::before {
  color: var(--green);
}

.checkout-panel .step-label {
  color: #9dffb6;
  background: rgba(18,166,48,0.2);
}

.footer {
  background: #050608;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  color: rgba(255,255,255,0.72);
}

.footer-links a:hover {
  color: #ffffff;
}

.back-link {
  color: var(--green);
}

.selected-plan-banner {
  background: rgba(18,166,48,0.10);
  border-color: rgba(18,166,48,0.24);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(18,166,48,0.12);
}

/* Keep logos crisp in the black header */
.nav .brand img,
.footer .brand img {
  width: 48px;
  height: 36px;
}

.checkout-header img {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 6px;
}

.success-logo-card {
  display: inline-grid;
  place-items: center;
  width: 120px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: #050608;
}

.success-logo-card img {
  width: 92px !important;
  height: auto;
}
