/* ==========================================================================
   DIYA MYTHRI — LUXURY EDITORIAL CONVERSION LANDING PAGE
   Aesthetic: Warm Linen, High-Contrast Editorial Serif, Glassmorphism, Minimalist
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Warm Linen & Editorial Earth */
  --bg-page: #FBF9F5;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3EFE9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAF7F2;
  --bg-dark: #181715;
  --bg-dark-surface: #232220;
  
  /* Text Colors */
  --text-main: #1A1918;
  --text-heading: #121110;
  --text-muted: #66635C;
  --text-light: #8E8980;
  --text-inverse: #FBF9F5;
  --text-inverse-muted: #A8A49C;

  /* Accents */
  --accent-sage: #4B5B4D;
  --accent-sage-dark: #3A473C;
  --accent-sage-soft: #E9EFE9;
  --accent-sage-glow: rgba(75, 91, 77, 0.12);
  --accent-warm: #9E6B47;
  --accent-warm-soft: #F7EFE8;

  /* Borders & Dividers */
  --border-delicate: #ECE5DC;
  --border-medium: #DDD5C9;
  --border-dark: #2F2D29;

  /* Typography */
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-subtle: 0 4px 20px -2px rgba(26, 25, 24, 0.04);
  --shadow-medium: 0 12px 36px -4px rgba(26, 25, 24, 0.07);
  --shadow-float: 0 24px 60px -8px rgba(26, 25, 24, 0.12);
  --shadow-pedestal: 0 20px 40px -10px rgba(75, 60, 45, 0.08);

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout */
  --max-width: 1240px;
  --max-width-narrow: 920px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.025em;
}

.serif-italic {
  font-style: italic;
  font-weight: 300;
}

/* Editorial Eyebrow Tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-sage);
  margin-bottom: 1rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-sage);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   4. LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-top: clamp(4.5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  position: relative;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-delicate), transparent);
}

/* --------------------------------------------------------------------------
   5. FLOATING PILL NAVBAR
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  pointer-events: none;
}

.navbar-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
  padding: 0.6rem 1.25rem;
  background: rgba(251, 249, 245, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(26, 25, 24, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.navbar-pill.scrolled {
  background: rgba(251, 249, 245, 0.92);
  box-shadow: 0 12px 36px rgba(26, 25, 24, 0.09);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand-monogram {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--text-inverse);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--text-heading);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--accent-sage);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-inverse);
  background: var(--bg-dark);
  border-radius: var(--radius-pill);
  border: 1px solid var(--bg-dark);
  transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(75, 91, 77, 0.25);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-heading);
}

/* --------------------------------------------------------------------------
   6. SECTION 1: HERO
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: clamp(6.5rem, 12vw, 10rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
  position: relative;
}

/* Reference-Style Giant Editorial Display Word */
.hero-display-banner {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}

.hero-giant-word {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 13vw, 10.5rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text-heading);
  user-select: none;
  display: inline-block;
  position: relative;
}

.hero-giant-word span.italicized {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-sage);
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-delicate);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Two-column Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-headline {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-sage);
}

.hero-voice-story {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-voice-story p + p {
  margin-top: 0.85rem;
}

.hero-voice-highlight {
  color: var(--text-heading);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-inverse);
  background: var(--bg-dark);
  border-radius: var(--radius-pill);
  border: 1px solid var(--bg-dark);
  box-shadow: 0 10px 24px -4px rgba(26, 25, 24, 0.18);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.cta-button-primary:hover {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(75, 91, 77, 0.3);
}

.cta-button-primary svg {
  transition: transform 0.3s ease;
}

.cta-button-primary:hover svg {
  transform: translateX(4px);
}

.cta-reassurance {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero Right: High-End Visual with Editorial Frame */
.hero-visual-col {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-delicate);
  background: var(--bg-surface);
  transition: var(--transition-smooth);
}

.hero-image-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px -10px rgba(26, 25, 24, 0.16);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge-metric {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.badge-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent-sage-soft);
  color: var(--accent-sage-dark);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   7. SECTION 2: DELIVERABLES (WHAT YOU'LL RECEIVE)
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem) auto;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.deliverable-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.deliverable-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-medium);
}

.deliverable-card.highlighted {
  background: linear-gradient(145deg, #FFFFFF, var(--bg-subtle));
  border-color: var(--accent-sage);
}

.card-num-tag {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--accent-sage);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deliverable-title {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--text-heading);
}

.deliverable-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.deliverable-points {
  list-style: none;
  border-top: 1px solid var(--border-delicate);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverable-point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--text-main);
}

.deliverable-point svg {
  color: var(--accent-sage);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   8. SECTION 3: TRANSFORMATION / END RESULT
   -------------------------------------------------------------------------- */
.transformation-container {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-delicate);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-top: 2.5rem;
}

.trans-col {
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.trans-col.current-state {
  border-left: 3px solid #C48E74;
}

.trans-col.future-state {
  border-left: 3px solid var(--accent-sage);
  background: linear-gradient(175deg, #FFFFFF 0%, #F5FAF5 100%);
  box-shadow: var(--shadow-medium);
}

.trans-col-header {
  margin-bottom: 1.25rem;
}

.trans-col-title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 0.35rem;
}

.trans-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.trans-col-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trans-icon-cross {
  color: #C48E74;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.trans-icon-check {
  color: var(--accent-sage);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.trans-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trans-arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sage);
  box-shadow: var(--shadow-subtle);
}

/* --------------------------------------------------------------------------
   9. SECTION 4: PEDESTAL SHOWCASE & WHY CHOOSE DIYA
   (Inspired by reference image's dual pedestal middle section)
   -------------------------------------------------------------------------- */
.pedestal-section {
  position: relative;
}

.pedestal-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

/* Vertical Pedestal Cards (Mirroring Reference Image) */
.pedestal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-delicate);
  overflow: hidden;
  box-shadow: var(--shadow-pedestal);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pedestal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}

.pedestal-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-subtle);
  aspect-ratio: 3 / 4;
}

.pedestal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}

.pedestal-card:hover .pedestal-img-wrap img {
  transform: scale(1.03);
}

.pedestal-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pedestal-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  margin-bottom: 0.4rem;
}

.pedestal-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.pedestal-caption {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Right Feature Card (Reference: "Pure Care by Nature" text & sub-card) */
.pedestal-feature-panel {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-delicate);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-heading {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.panel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.panel-voice-quote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-heading);
  border-left: 2px solid var(--accent-sage);
  padding-left: 1rem;
  margin-bottom: 1.75rem;
}

.feature-mini-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-delicate);
  padding: 1.25rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mini-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-sage-soft);
  color: var(--accent-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-card-content h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mini-card-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. SECTION 5: HOW IT WORKS (4 SIMPLE STEPS)
   -------------------------------------------------------------------------- */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-sage);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: var(--border-medium);
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.process-step-card:hover .step-num {
  color: var(--accent-sage);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. SECTION 6: WATERMARK SHOWCASE & FINAL CONVERSION FORM
   (Reference: Giant watermark serif typography + showcase + CTA)
   -------------------------------------------------------------------------- */
.watermark-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-delicate);
  border-bottom: 1px solid var(--border-delicate);
}

/* Giant background watermark serif typography */
.watermark-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 22vw, 19rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(28, 27, 25, 0.035);
  line-height: 0.8;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.conversion-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.conversion-info {
  display: flex;
  flex-direction: column;
}

.conversion-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.conversion-voice {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-direct-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.direct-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.direct-card:hover {
  transform: translateX(4px);
  border-color: var(--accent-sage);
}

.direct-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.direct-card-text {
  display: flex;
  flex-direction: column;
}

.direct-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.direct-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* High-Converting Discovery Call Form Card */
.booking-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-float);
  position: relative;
}

.form-header {
  margin-bottom: 1.75rem;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

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

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  background: var(--bg-page);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 3px var(--accent-sage-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 85px;
}

.form-submit-btn {
  width: 100%;
  padding: 1.05rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-inverse);
  background: var(--bg-dark);
  border: 1px solid var(--bg-dark);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -4px rgba(26, 25, 24, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(75, 91, 77, 0.32);
}

.form-notice {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

.form-status-alert {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-top: 1rem;
  text-align: center;
}

.form-status-alert.success {
  display: block;
  background: var(--accent-sage-soft);
  color: var(--accent-sage-dark);
  border: 1px solid var(--accent-sage);
}

/* --------------------------------------------------------------------------
   12. SECTION 7: INTERACTIVE FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-subtle);
}

.faq-question-btn {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-heading);
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question-btn {
  color: var(--accent-sage);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
  color: var(--text-light);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-sage);
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-spring);
}

.faq-answer-inner {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
  border-top-color: var(--border-delicate);
  padding-top: 1rem;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-inverse-muted);
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-inverse);
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 3rem;
}

.footer-col h5 {
  color: var(--text-inverse);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.footer-col a:hover {
  color: var(--text-inverse);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-inverse-muted);
}

.back-to-top:hover {
  color: var(--text-inverse);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .pedestal-layout-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pedestal-feature-panel {
    grid-column: span 2;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content-col {
    order: 1;
  }

  .hero-visual-col {
    order: 2;
  }

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

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

  .trans-arrow-divider {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .pedestal-layout-grid {
    grid-template-columns: 1fr;
  }

  .pedestal-feature-panel {
    grid-column: span 1;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 540px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .navbar-pill {
    padding: 0.5rem 0.9rem;
  }

  .brand-monogram span {
    display: none;
  }

  .hero-cta-group {
    width: 100%;
  }

  .cta-button-primary {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 1.5rem;
  }
}
