/* ============================================
   FreshMoment — Landing Page
   ============================================ */

:root {
  --headline: #2D3B41;
  --body: #7A858D;
  --muted: #A3ADB5;
  --teal: #22A88A;
  --teal-hover: #1B8E74;
  --teal-light: rgba(34, 168, 138, 0.06);
  --cloud: #F5F6F8;
  --border: #E8EAED;
  --white: #FFFFFF;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--body);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

/* --- Typography Scale --- */
.display {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--headline);
}

.display-xl {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.display-md {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--body);
}

/* --- Navigation --- */
.nav-wrapper {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 2rem));
  z-index: 100;
}

.nav {
  width: 100%;
  padding: 0 clamp(1.5rem, 3vw, 2rem);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: all 0.5s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* --- Nav Top Bar (pilot CTA) --- */
.nav-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 85%;
  margin: -1px auto 0;
  padding: 0.35rem 1rem;
  background: var(--teal);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 0 0 16px 16px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-topbar:hover {
  background: #1e9a7e;
}

.nav-topbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  animation: topbarPulse 2s ease-in-out infinite;
}

@keyframes topbarPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--headline);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary,
.btn-plum {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-plum:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 168, 138, 0.25);
}

.btn-primary:active,
.btn-plum:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-nav {
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
}

.btn-nav.btn-plum {
  background: var(--teal);
  color: white;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
}

.nav-questions-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-questions-link:hover {
  color: var(--teal);
}

.nav-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-whatsapp-label {
  display: inline;
}

.btn-text {
  color: var(--teal);
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9375rem;
  border-radius: 0;
}

.btn-text:hover {
  color: var(--teal-hover);
}

.btn-outline {
  color: var(--headline);
  background: none;
  border: 1.5px solid var(--border);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* --- Section Spacing --- */
.section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  background: url('../images/lifestyle-restroom.png') center / cover no-repeat;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 1;
}


.hero-accent-line {
  display: block;
  width: 3px;
  height: 40px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.hero-body {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.hero-specificity {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}


/* --- Toothbrush Divider --- */
.toothbrush-divider {
  position: relative;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: visible;
}

/* --- Hero Toothbrush --- */
.hero-toothbrush {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: clamp(140px, 21vw, 245px);
  pointer-events: none;
  transform: rotate(-25deg) translateY(30px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-toothbrush.visible {
  opacity: 1;
}

.hero-toothbrush img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* Brush swipe animation */
.hero-toothbrush.brushing {
  animation: brushSwipe 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes brushSwipe {
  0%   { transform: rotate(-25deg) translateY(30px); }
  40%  { transform: rotate(-8deg) translateX(-20px) translateY(-10px); }
  60%  { transform: rotate(-12deg) translateX(10px) translateY(-5px); }
  100% { transform: rotate(-15deg) translateX(0) translateY(0); }
}

/* --- Hero Sparkles --- */
.sparkle {
  position: absolute;
  font-size: 1rem;
  color: var(--teal);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 0 4px var(--teal));
}

.sparkle-1 { top: 10%; left: 15%; font-size: 1.1rem; }
.sparkle-2 { top: 5%;  left: 55%; font-size: 0.7rem; }
.sparkle-3 { top: 30%; left: 5%;  font-size: 0.85rem; }
.sparkle-4 { top: 18%; left: 75%; font-size: 1.2rem; }
.sparkle-5 { top: 42%; left: 25%; font-size: 0.6rem; }

.hero-toothbrush.sparkling .sparkle {
  animation: sparkleIn 1.8s ease-in-out forwards;
}
.hero-toothbrush.sparkling .sparkle-1 { animation-delay: 0s; }
.hero-toothbrush.sparkling .sparkle-2 { animation-delay: 0.2s; }
.hero-toothbrush.sparkling .sparkle-3 { animation-delay: 0.35s; }
.hero-toothbrush.sparkling .sparkle-4 { animation-delay: 0.15s; }
.hero-toothbrush.sparkling .sparkle-5 { animation-delay: 0.45s; }

@keyframes sparkleIn {
  0%   { opacity: 0; transform: scale(0) rotate(0deg); }
  30%  { opacity: 1; transform: scale(1.3) rotate(90deg); }
  50%  { opacity: 0.8; transform: scale(0.9) rotate(150deg); }
  70%  { opacity: 1; transform: scale(1.1) rotate(230deg); }
  100% { opacity: 0.85; transform: scale(1) rotate(360deg); }
}

/* Continuous subtle pulse after initial sparkle */
.hero-toothbrush.sparkling-loop .sparkle {
  animation: sparklePulse 2.5s ease-in-out infinite;
}
.hero-toothbrush.sparkling-loop .sparkle-1 { animation-delay: 0s; }
.hero-toothbrush.sparkling-loop .sparkle-2 { animation-delay: 0.5s; }
.hero-toothbrush.sparkling-loop .sparkle-3 { animation-delay: 1s; }
.hero-toothbrush.sparkling-loop .sparkle-4 { animation-delay: 0.3s; }
.hero-toothbrush.sparkling-loop .sparkle-5 { animation-delay: 1.3s; }

@keyframes sparklePulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.2) rotate(180deg); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-toothbrush.brushing { animation: none; transform: rotate(-15deg) translateX(0) translateY(0); }
  .sparkle { animation: none !important; opacity: 0.7; transform: scale(1); }
}

/* --- Hero Questions --- */
.hero-questions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}

.hero-questions-label {
  font-size: 0.9375rem;
  color: var(--body);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp-hero:hover {
  background: #1ebe57;
}

/* --- Proof Points --- */
.proof-points {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .proof-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--cloud);
  border-radius: 14px;
  padding: 20px 24px;
  border: none;
}

.proof-icon {
  color: var(--teal);
  font-size: 14px;
  line-height: 1.4;
  flex-shrink: 0;
}

.proof-point strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--headline);
  margin-bottom: 2px;
}

.proof-point span {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.5;
}

/* --- Steps (How It Works) --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}


.step-card .step-image {
  margin-bottom: 1.25rem;
}

.step-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cloud);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: var(--headline);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-card p {
  color: var(--body);
  line-height: 1.65;
  font-size: 0.9375rem;
  max-width: 360px;
  margin: 0 auto;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  font-size: 120px;
  color: var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.cta-section > *:not(.cta-watermark) {
  position: relative;
  z-index: 1;
}

/* --- Sparkle Icon --- */
.sparkle-icon {
  color: var(--teal);
  margin-right: 0.25em;
  font-size: 0.75em;
}

.cta-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 2rem auto;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-links a {
  font-size: 0.875rem;
  color: var(--body);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.cta-links a:hover {
  color: var(--teal);
}

/* --- Footer --- */
.footer {
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  font-weight: 600;
  font-size: 1rem;
  color: var(--headline);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--teal);
}

/* --- Scroll Reveal (JS-driven) --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* --- Mobile adjustments --- */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 56px;
  }

  .nav.scrolled .nav-inner {
    height: 56px;
    transition: height 0.2s ease;
  }

  .nav.scrolled .nav-logo {
    font-size: 1rem;
    transition: font-size 0.2s ease;
  }

  .nav-questions-link {
    font-size: 0.75rem;
  }

  .hero::before {
    background: linear-gradient(to bottom, rgba(255,255,255,0.93) 50%, rgba(255,255,255,0.75) 100%);
  }

  .nav-topbar {
    width: 90%;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    gap: 0.3rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .btn-nav {
    width: auto;
    min-height: auto;
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .hero-actions .btn-text {
    width: auto;
    min-height: auto;
  }

  .hero {
    height: 100vh;
    height: 100svh;
  }
}

/* Very small screens: icon-only WhatsApp button */
@media (max-width: 400px) {
  .btn-whatsapp-label {
    display: none;
  }

  .btn-nav {
    padding: 8px 12px;
  }

  .nav-topbar {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0 0 12px 12px;
  }
}


/* ============================================
   REVENUE CALCULATOR
   ============================================ */

.calc-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .calc-card {
    padding: 32px;
  }
}

/* --- Progress Bar --- */

.calc-progress {
  margin-bottom: 2rem;
  position: relative;
}

.calc-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.calc-progress-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.calc-progress-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-align: right;
  margin-top: 6px;
}

/* --- Step Transitions --- */

.calc-steps-viewport {
  overflow: hidden;
  position: relative;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-steps-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-step {
  width: 100%;
  flex-shrink: 0;
  padding: 0.5rem 0 1rem;
  overflow: hidden;
}

.calc-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--headline);
  outline: none;
}

.calc-field-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Venue Cards --- */

.calc-venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
}

.calc-venue-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  min-height: 48px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  color: var(--body);
  transition: border-color 0.15s ease, background 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}

.calc-venue-card:hover {
  border-color: var(--muted);
  background: var(--cloud);
}

.calc-venue-card.active {
  border: 2px solid var(--teal);
  background: var(--teal-light);
  color: var(--headline);
}

.calc-venue-card.active i {
  color: var(--teal);
}

.calc-venue-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* --- Sliders --- */

.calc-slider-group {
  margin-bottom: 1.75rem;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.calc-slider-header .calc-field-label {
  margin-bottom: 0;
}

.calc-slider-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--headline);
  font-variant-numeric: tabular-nums;
}

.calc-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 2px solid var(--teal);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 2px solid var(--teal);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.calc-slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(34, 168, 138, 0.25);
}

.calc-slider:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(34, 168, 138, 0.25);
}

.calc-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}

.calc-slider-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

@media (pointer: coarse) {
  .calc-slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }
  .calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }
}

/* --- Fixed Fee Display --- */

.calc-fixed-fee-display {
  margin-bottom: 1.75rem;
  padding: 16px 20px;
  background: var(--cloud);
  border-radius: 12px;
}

.calc-fixed-fee-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--headline);
  margin-top: 4px;
}

/* --- Step Navigation --- */

.calc-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.calc-next-btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.calc-step-nav .calc-next-btn {
  margin-top: 0;
  width: auto;
}

.calc-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 12px;
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s ease, background 0.2s ease;
}

.calc-back-btn:hover {
  background: var(--cloud);
}

.calc-back-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 10px;
}

/* --- Results --- */

.calc-results-wrapper {
  position: relative;
}

.calc-results-blur {
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-results-blur.blurred {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 1rem;
}

.calc-result-card {
  background: var(--cloud);
  border: none;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.calc-result-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.calc-result-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--headline);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.calc-result-highlight .calc-result-value {
  color: var(--teal);
  font-weight: 700;
}

.calc-result-value-lg {
  font-size: 2rem;
}

.calc-qualifier {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--headline);
  font-weight: 500;
  margin-top: 0.5rem;
  font-style: italic;
}

/* --- Email Overlay --- */

.calc-email-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.calc-email-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.calc-email-box {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.calc-email-prompt {
  font-size: 1rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.calc-email-input-wrap {
  display: flex;
  gap: 8px;
}

.calc-email-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-family: 'Outfit', sans-serif;
  color: var(--headline);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-email-input::placeholder {
  color: var(--muted);
}

.calc-email-input:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 168, 138, 0.1);
}

.calc-email-input.error {
  border-color: #c53030;
}

.calc-email-btn {
  white-space: nowrap;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.875rem;
}

.calc-email-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.calc-email-error {
  color: #c53030;
  font-size: 0.8125rem;
  margin-top: 8px;
  min-height: 1.2em;
}

/* --- Confirmation --- */

.calc-confirmation-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--cloud);
  border-radius: 12px;
  color: var(--headline);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-top: 1rem;
}

/* --- Calculator Mobile --- */

@media (max-width: 767px) {
  .calc-venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-venue-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .calc-results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calc-email-input-wrap {
    flex-direction: column;
  }

  .calc-email-btn {
    width: 100%;
    justify-content: center;
  }

  .calc-result-value {
    font-size: 1.5rem;
  }

  .calc-result-value-lg {
    font-size: 1.75rem;
  }
}

/* --- Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
  .calc-steps-track,
  .calc-results-blur,
  .calc-email-overlay,
  .calc-progress-fill,
  [data-reveal] {
    transition-duration: 0.01ms !important;
  }
}
