/* ═══════════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0D0D0D;
  --white: #FFFFFF;
  --off-white: #F7F5F1;
  --paper: #EDE9E3;
  --charcoal: #1E1E1C;
  --muted-dark: #999690;
  /* muted on dark bg */
  --muted-light: #6B6860;
  /* muted on light bg */
  --border-dark: rgba(255, 255, 255, 0.10);
  --border-light: #D6D1C9;
  --terracotta: #c8603a;
  --terracotta-dim: rgba(200, 96, 58, 0.18);
  --green: #2A4A2E;
  --green-light: #E8EDE8;
  --heading-font: 'Newsreader', serif;
  --body-font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════ */
.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: 0em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-heading.light {
  color: var(--white);
}

.section-sub {
  font-size: 16.5px;
  color: var(--muted-light);
  font-weight: 400;
  line-height: 1.65;
  max-width: 580px;
}

.section-sub.light {
  color: var(--muted-dark);
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HERO — full-screen, white, centred logo
═══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  padding: 0 5vw;
  overflow: hidden;
}

/* The big centred logo */
.hero-logo-wrap {
  margin-bottom: 2rem;
  will-change: transform, opacity;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1), opacity 0.45s ease;
}

.hero-logo-text {
  font-family: var(--body-font);
  font-size: clamp(48px, 11vw, 96px);
  font-weight: 1000;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  display: inline-block;
}

.hero-logo-dot {
  color: var(--terracotta);
}

.hero-tagline {
  font-family: var(--heading-font);
  font-size: clamp(22px, 4.5vw, 28px);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 4.5rem;
}

.hero-sub {
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--muted-light);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--body-font);
  transition: background 0.15s, transform 0.15s;
  margin: 3.5rem;
}

.hero-cta:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

/* Scroll hint chevron */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 1.5px solid var(--muted-light);
  border-bottom: 1.5px solid var(--muted-light);
  transform: rotate(45deg);
  animation: bounce-down 1.8s ease-in-out infinite;
}

@keyframes bounce-down {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════
   NAV — sticky, initially hidden, slides in on scroll
═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 5vw;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dark);
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1), opacity 0.35s ease;
}

nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-logo {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

nav.nav-visible .nav-logo {
  opacity: 1;
  transform: translateX(0);
}

.nav-logo-dot {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-cta-item {
  display: flex;
  align-items: center;
}

/* Google Calendar desktop popup styles */
.nav-cta-item .qxCTlb {
  font-family: var(--body-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  background-color: var(--terracotta) !important;
  color: var(--white) !important;
  transition: background-color 0.15s ease !important;
  min-height: auto !important;
  line-height: 1.2 !important;
  box-shadow: none !important;
}

.qxCTlb {
  padding: 12px 26px !important;
  font-size: 14px;
}

.nav-cta-item .qxCTlb:hover {
  background-color: #b35230 !important;
}

.desktop-calendar-btn {
  display: inline-block;
}


.mobile-booking-btn {
  display: none;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  background-color: var(--terracotta);
  color: var(--white) !important;
  border-radius: 5px;
  padding: 7px 16px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease;
}

.mobile-booking-btn:hover {
  background-color: #b35230;
}

.hero-section .mobile-booking-btn {
  font-size: 14px !important;
  font-weight: 700;
  padding: 12px 26px !important;
  border-radius: 6px !important;
}

/* ── Hamburger button (hidden on desktop) ─────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
  flex-shrink: 0;
}

.nav-hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}

/* X shape when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION — black background
═══════════════════════════════════════════════════ */
.problem-section {
  background: var(--black);
  padding: 100px 5vw;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
}

.problem-cell {
  padding: 32px 28px;
  background: var(--black);
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.2s;
}

.problem-cell:hover {
  background: #161616;
}

/* remove right border from last column */
.problem-cell:nth-child(3n) {
  border-right: none;
}

/* remove bottom border from last row */
.problem-cell:nth-last-child(-n+3) {
  border-bottom: none;
}

.problem-before {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.problem-x {
  width: 20px;
  height: 20px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #f87171;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.problem-desc {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.6;
  padding-left: 30px;
}

/* ═══════════════════════════════════════════════════
   MODULES SECTION — white background
═══════════════════════════════════════════════════ */
.modules-section {
  background: var(--white);
  padding: 100px 5vw;
}

.modules-intro {
  max-width: 500px;
  margin-bottom: 3.5rem;
}

.modules-intro h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--charcoal);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}

.module-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}

.module-card:hover {
  background: var(--off-white);
}

.module-icon {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 7px;
  /* margin-bottom: 1rem; */
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 1rem;
  color: var(--black);
  font-weight: 600;
}

.module-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.module-card p {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.6;
}

/* UPCOMING MODULES STRIP */
.upcoming-modules {
  padding-top: 2.5rem;
}

.upcoming-label {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--muted-light);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.upcoming-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.upcoming-pill {
  display: inline-block;
  font-size: 12px;
  color: var(--muted-light);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  line-height: 1.4;
  transition: border-color 0.15s, color 0.15s;
}

.upcoming-pill strong {
  color: var(--charcoal);
  font-weight: 600;
}

.upcoming-pill:hover {
  border-color: var(--terracotta);
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════
   FEATURES (feature) SECTION — white background
═══════════════════════════════════════════════════ */
.features-highlight-section {
  background: var(--off-white);
  padding: 100px 5vw;
}

.feature-header {
  margin-bottom: 3rem;
}

.feature-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--charcoal);
  line-height: 1.15;
}

.feature-slider {
  position: relative;
  overflow: hidden;
}

.f-slide {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.f-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.f-slide.exit {
  display: block;
  opacity: 0;
  transform: translateX(-30px);
}

.f-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.f-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.f-headline {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.f-copy {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.75;
}

.f-visual-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  display: block;
}

/* Frappe UI mock card */
.f-visual-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  font-family: var(--body-font);
}

.frappe-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.frappe-mock-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.01em;
}

.frappe-mock-actions {
  display: flex;
  gap: 0.5rem;
}

.frappe-btn-primary {
  background: #2490ef;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--body-font);
  transition: background 0.15s;
}

.frappe-btn-primary:hover {
  background: #1a7ad4;
}

.frappe-btn-secondary {
  background: #fff;
  color: #555;
  border: 1px solid #d1d5db;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--body-font);
}

.frappe-error-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 3px solid #ef4444;
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
}

.frappe-error-icon {
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.frappe-error-text {
  font-size: 12.5px;
  color: #991b1b;
  line-height: 1.5;
}

.frappe-error-text strong {
  font-weight: 600;
}

.frappe-success-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 3px solid #22c55e;
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  margin: 1rem 0;
}

.frappe-success-icon {
  width: 18px;
  height: 18px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.frappe-success-text {
  font-size: 12.5px;
  color: #166534;
  line-height: 1.5;
}

.frappe-success-text strong {
  font-weight: 600;
}

.frappe-approval-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.frappe-approve-btn {
  flex: 1;
  padding: 9px 0;
  font-size: 13px;
}

.frappe-btn-reject {
  flex: 1;
  background: #fff;
  color: #dc2626;
  border: 1px solid #fca5a5;
  padding: 9px 0;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--body-font);
  transition: background 0.15s;
}

.frappe-btn-reject:hover {
  background: #fef2f2;
}

.frappe-mock-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f4f4f4;
  font-size: 12.5px;
}

.frappe-mock-field:last-child {
  border-bottom: none;
}

.frappe-field-label {
  color: #888;
  font-weight: 500;
}

.frappe-field-value {
  color: #333;
  font-weight: 500;
}

.frappe-field-error {
  color: #dc2626;
  font-weight: 600;
}

/* Slider controls */
.f-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.f-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.f-dot.active {
  background: var(--charcoal);
  transform: scale(1.4);
}

.f-nav {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}

.f-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--charcoal);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: var(--body-font);
}

.f-arrow:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ═══════════════════════════════════════════════════
   ABOUT / BUILT BY GXCO — black background
═══════════════════════════════════════════════════ */
.about-section {
  background: var(--black);
  padding: 72px 5vw;
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-section .section-heading {
  margin-bottom: 20px;
}

.about-divider {
  width: 36px;
  height: 1px;
  background: var(--terracotta);
  margin: 20px 0;
}

.about-body {
  font-size: 15.5px;
  color: var(--muted-dark);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
  transition: border-color 0.15s, color 0.15s;
}

.about-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.about-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* ═══════════════════════════════════════════════════
   PRICING — white background
═══════════════════════════════════════════════════ */
.pricing-section {
  background: var(--white);
  padding: 120px 5vw;
}

/* ── Card ─────────────────────────────────────────── */
.pricing-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.07);
  border-color: rgba(200, 96, 58, 0.2);
}

/* ── Title row ─────────────────────────────────────── */
.pricing-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px 0;
}

.pricing-heading {
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.5vw, 42px);
  color: var(--charcoal);
  line-height: 1.1;
  font-weight: 400;
}

/* ── Currency switcher ─────────────────────────────── */
.currency-switch {
  display: inline-flex;
  gap: 2px;
  background: var(--off-white);
  padding: 3px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.currency-btn {
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-light);
  background: transparent;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--body-font);
  line-height: 1;
}

.currency-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.currency-btn:hover:not(.active) {
  color: var(--charcoal);
}

/* ── Two-column calculator ────────────────────────── */
.pricing-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 36px 40px 40px;
}

/* ── Left: inputs ─────────────────────────────────── */
.pricing-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 40px;
  border-right: 1px solid var(--border-light);
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.calc-label-sub {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--muted-light);
  opacity: 0.75;
}

/* input with prefix symbol */
.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* budget field: input + expanded amount in a row */
.calc-budget-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.calc-input-wrap--short {
  flex: 0 0 auto;
  width: 120px;
}

.calc-budget-expanded {
  font-size: 16px;
  color: var(--muted-light);
  font-family: var(--body-font);
  white-space: nowrap;
}

.calc-prefix {
  position: absolute;
  left: 14px;
  font-size: 18px;
  color: var(--charcoal);
  font-family: var(--body-font);
  pointer-events: none;
  font-weight: 400;
}

.calc-input {
  width: 100%;
  padding: 12px 16px 12px 34px;
  font-size: 20px;
  font-family: var(--heading-font);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
}

.calc-input.no-prefix {
  padding-left: 16px;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-dim);
}

/* ── Right: result ────────────────────────────────── */
.pricing-calc-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding-left: 40px;
}

.result-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
}

.result-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.result-price span:first-child {
  font-family: var(--heading-font);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
  transition: opacity 0.15s ease;
}

.result-period {
  font-size: 16px;
  color: var(--muted-light);
  font-weight: 400;
}

.result-disclaimer {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.55;
  max-width: 280px;
}

.pricing-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--body-font);
}

.pricing-book-btn:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200, 96, 58, 0.25);
}

/* ── Inclusions strip ─────────────────────────────── */
.pricing-inclusions {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border-light);
  background: var(--off-white);
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 16px 24px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted-light);
  border-right: 1px solid var(--border-light);
  flex: 1;
  white-space: nowrap;
}

.inclusion-item:last-child {
  border-right: none;
}

.inclusion-item svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   CONTACT — black background
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   CONTACT — white background
═══════════════════════════════════════════════════ */
.contact-section {
  background-color: var(--white);
  color: var(--charcoal);
  padding: 100px 5vw;
  border-top: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--charcoal);
  line-height: 1.2;
}

.contact-info p {
  color: var(--muted-light);
  line-height: 1.65;
  font-size: 15px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-method-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-method-link:hover {
  opacity: 0.75;
}

.contact-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-light);
  font-weight: 600;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  color: var(--charcoal);
  padding: 0.75rem;
  font-family: var(--body-font);
  font-size: 0.88rem;
  border-radius: 4px;
  transition: border-color 0.15s, background-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}

.btn-terracotta {
  display: inline-block;
  align-self: flex-start;
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--body-font);
  transition: background-color 0.15s, transform 0.15s;
  text-decoration: none;
  text-align: center;
}

.btn-terracotta:hover {
  background: #b35230;
  transform: translateY(-1px);
}

.form-status-message {
  display: none;
  font-size: 0.88rem;
  font-family: var(--body-font);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   MOBILE CALENDAR BOOKING
═══════════════════════════════════════════════════ */
#mobile-google-calendar-booking {
  display: none;
}

/* ═══════════════════════════════════════════════════
   FOOTER — black background (continuation)
═══════════════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 36px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: -0.02em;
  font-family: var(--body-font);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-built {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-built a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer-built a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* fix border logic for 2-col */
  .problem-cell:nth-child(3n) {
    border-right: 1px solid var(--border-dark);
  }

  .problem-cell:nth-child(2n) {
    border-right: none;
  }

  .problem-cell:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--border-dark);
  }

  .problem-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .f-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }



  .pricing-title-row {
    padding: 24px 24px 0;
  }

  .pricing-calc-grid {
    grid-template-columns: 1fr;
    padding: 28px 24px 32px;
    gap: 32px;
  }

  .pricing-calc-inputs {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 32px;
  }

  .pricing-calc-result {
    padding-left: 0;
    align-items: flex-start;
  }

  .pricing-inclusions {
    flex-wrap: wrap;
  }

  .inclusion-item {
    flex: 1 1 48%;
    border-bottom: 1px solid var(--border-light);
    white-space: normal;
  }

  .inclusion-item:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }

  .inclusion-item:nth-child(even) {
    border-right: none;
  }

  .inclusion-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-calendar-btn {
    display: none !important;
  }

  /* Also hide the Google Calendar widget button class directly */
  .qxCTlb {
    display: none !important;
  }

  .mobile-booking-btn {
    display: inline-block !important;
  }

  /* Show hamburger, hide desktop nav-links */
  .nav-hamburger {
    display: flex !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-dark);
    padding: 1.5rem 5vw 2rem;
    gap: 1.25rem;
    align-items: flex-start;
    z-index: 199;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

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

  /* Keep Book a Demo CTA visible inside dropdown */
  .nav-cta-item {
    margin-top: 0.5rem;
  }

  #mobile-google-calendar-booking {
    display: block !important;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-dark);
    padding: 2rem 0;
    overflow: hidden;
    height: 680px;
  }

  #mobile-google-calendar-booking iframe {
    height: 100%;
    display: block;
  }

  /* .about-image {
    max-width: 100%;
  } */
}

@media (max-width: 600px) {
  .hero-section {
    padding: 0 6vw;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .mobile-booking-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .problem-section,
  .modules-section,
  .features-highlight-section,
  .about-section,
  .pricing-section,
  .contact-section {
    padding: 72px 5vw;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-cell {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .problem-cell:last-child {
    border-bottom: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .mobile-booking-btn {
    padding: 5px 8px;
    font-size: 10px;
  }
}

@media (max-width: 598px) {
  #mobile-google-calendar-booking {
    height: 1205px;
  }
}