:root {
  /* Colors */
  --primary: #003835;
  --primary-hover: #002523;
  --primary-fixed: #b5ede7;
  --primary-fixed-dim: #9ad1cb;
  --primary-container: #16504c;
  --on-primary: #ffffff;
  --on-primary-container: #8ac1bb;
  
  --surface: #fcf9f8;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f6f3f2;
  --surface-container-high: #eae7e7;
  --on-surface: #1b1c1c;
  --on-surface-variant: #404847;
  
  --error: #ba1a1a;
  --outline-variant: #bfc8c6;
  --stone-200: #e5e7eb;
  --stone-300: #d1d5db;
  --stone-400: #9ca3af;
  --stone-500: #6b7280;
  
  --btn-pink: #ea286e;

  /* Fonts */
  --font-headline: 'Noto Serif', serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Radii */
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

svg {
  display: block;
}

/* .home-page .secondary-btn {
    background: var(--on-primary);
    color: var(--primary);
    border: 1px solid var(--primary-hover);
    opacity: 1;
}

.home-page .secondary-btn:hover {
    background: var(--primary);
    color: var(--on-primary);
    border: 1px solid var(--primary-hover);
} */

@keyframes btn-pop-anim-2 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.home-page .hero .hero-content .hero-actions .btn-primary.btn-pop,
.home-page .hero .hero-content .hero-actions .btn-outline.btn-pop {
    animation: btn-pop-anim-2 2s infinite ease-in-out;
}

/* Utilities */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.icon-fill {
  font-variation-settings: 'FILL' 1;
}


.home-page .secondary-btn {
    background: var(--on-primary);
    color: var(--primary);
    border: 1px solid var(--primary-hover);
    opacity: 1;
}

.home-page .secondary-btn:hover {
    background: var(--primary);
    color: var(--on-primary);
    border: 1px solid var(--primary-hover);
}

.home-page .editorial-kerning {
    letter-spacing: -0.02em;
}

.home-page .no-scrollbar::-webkit-scrollbar {
    display: none;
}

.home-page .flowing-dash {
    stroke-dasharray: 8 8;
    animation: flow-dash 1s linear infinite;
}

@keyframes flow-dash {
    to {
        stroke-dashoffset: -16;
    }
}

@keyframes outline-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(234, 40, 110, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 40, 110, 0);
    }
}

.home-page .btn-call-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid var(--btn-pink);
    animation: outline-pulse 2s infinite;
    transition: all 0.3s ease;
}

.home-page .btn-call-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.home-page .icon-call {
    color: var(--btn-pink);
}

/* Global Utilities & Layouts */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.text-white { color: #ffffff !important; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
  color: var(--on-primary);
  padding: 3rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-badge {
  color: var(--primary-fixed);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  display: block;
}

.hero-title {
  font-size: 3rem;
  font-family: var(--font-headline);
  line-height: 1.1;
  color: white;
  margin: 0;
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4rem; }
}
.hero-title-highlight {
  font-style: italic;
  color: var(--primary-fixed);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width:575px) {
  .hero-actions a{
    font-size: 16px;
    padding: 0.8rem 1.2rem;
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,56,53,0.4), transparent);
}

h2, h3, h4, h5, .glass-title, .logo {
  font-family: var(--font-headline);
  color: var(--primary);
  line-height: 1.2;
}

/* Urgency Bar */
.urgency-bar {
  background-color: var(--primary);
  color: var(--on-primary);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 60;
  margin: 0;
}
.urgency-bar p { margin: 0; }
.urgent-number {
  background: white;
  color: var(--primary);
  padding: 0 0.5rem;
  border-radius: var(--radius-md);
  display: inline-block;
}
.urgent-pulse {
  animation: pulse-down 2s infinite ease-in-out;
}
@keyframes pulse-down {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(2px); opacity: 0.8; }
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.navbar-call-btn {
  display: none;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
@media (min-width: 800px) {
  .navbar-call-btn { display: inline-flex; }
}
@media (max-width: 991px) {
  .nav-cta-main{
    display: none;
  }
}
/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
  width: 40px;
  height: 40px;
  margin-left: auto;
}

@media (min-width: 768px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease-in-out;
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-nav-toggle.active .hamburger {
  background: transparent;
}

.mobile-nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 768px) {
  .navbar-container {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    display: none !important;
    gap: 0 !important;
    border-top: 1px solid var(--outline-variant);
  }

  .nav-links.active {
    display: flex !important;
    max-height: 500px;
    padding: 1rem;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.7rem 0 0.5rem 0;
    width: 100%;
    border-bottom: 2px solid transparent;
    color: var(--on-surface);
    transition: 0.4s all;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--primary);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--primary-hover);
  opacity: 0.9;
}
.btn-solid {
  background-color: white;
  color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Stats Bar */
.stats-bar {
  background-color: var(--primary);
  padding: 2rem 0 4rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .stat-item:last-child {
    border-right: none;
  }
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.25rem;
  font-family: var(--font-headline);
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-fixed);
  font-weight: 700;
}

.stat-desc {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Patient Concerns */
.concerns-section {
  padding: 6rem 0;
  background-color: var(--surface-container-lowest);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-badge {
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-family: var(--font-headline);
  color: var(--primary);
  margin: 0;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  letter-spacing: 0.025em;
  margin: 0;
}

.concerns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .concerns-grid { grid-template-columns: repeat(4, 1fr); }
}

.concern-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(191, 200, 198, 0.3);
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.concern-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary);
  transform: translateY(-0.25rem);
}

.concern-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: rgba(0, 56, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.concern-icon-wrap .material-symbols-outlined {
  font-size: 32px;
}

.concern-card h3 {
  font-size: 1.25rem;
  font-family: var(--font-headline);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.concern-card p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}
.patient-slider {
  aspect-ratio: 4/3;
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.before-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 10;
  clip-path: inset(0 50% 0 0);
  pointer-events: none;
}
.after-image {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  z-index: 20;
  transform: translateX(-50%);
  pointer-events: none;
}
.slider-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.tag {
  position: absolute;
  top: 0.5rem;
  z-index: 30;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.tag-before { left: 0.5rem; }
.tag-after { right: 0.5rem; background: rgba(0,82,74,0.6); }

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.card-header h3 {
  font-size: 1.125rem;
  margin: 0;
}
.micro-text {
  font-size: 0.625rem;
  color: var(--stone-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.icon-primary { color: var(--primary); }
.case-desc {
  font-size: 0.75rem;
  color: var(--on-surface-variant);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.testimonial {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  margin: 0;
}

.results-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Final CTA */
.final-cta {
  padding: 6rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-box {
  background: var(--primary-container);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--on-primary-container);
}
.cta-box h2 {
  color: inherit;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta-box h2 { font-size: 3rem; }
}
.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}
.btn-white {
  background: white;
  color: var(--primary);
  display: inline-flex;
}
.btn-white:hover {
  background: var(--on-primary);
  transform: scale(1.05);
}
.slots-alert {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.8;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}


/* Mobile Bottom Nav */
/* .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
  z-index: 50;
}
@media (min-width: 991px) {
  .bottom-nav { display: none; }
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  color: var(--stone-500);
  font-size: 0.625rem;
  font-weight: 700;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.bottom-nav-item.prime {
  background: var(--primary);
  color: white;
} */

/* Our Expertise */
.expertise-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(4, 1fr); }
}

.expertise-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.expertise-visual {
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background-color: var(--stone-200);
}
.expertise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.expertise-card:hover .expertise-visual img {
  transform: scale(1.1);
}
.expertise-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}
.before-badge, .after-badge {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #ffffffa8;
  backdrop-filter: blur(2px);
  color: #17514C;
  padding: 2px 8px;
  border-radius: 5px;
}
.after-badge {
  left: auto;
  right: 10px;
}
.expertise-card:hover .expertise-overlay {
  background-color: rgba(0,0,0,0.2);
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.expertise-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border-bottom: 1px solid rgba(0,56,53,0.2);
  padding-bottom: 0.25rem;
  transition: all 0.3s;
  align-self: flex-start;
}
.expertise-card:hover .expertise-link {
  border-color: var(--primary);
}

.expertise-more {
  background-color: var(--primary-container);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.expertise-more h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}
.expertise-more p {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 2rem;
}
.btn-more {
  background-color: var(--surface);
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}
.btn-more:hover {
  background-color: var(--surface-container-high);
}

#servicesDropdown {
  margin-top: 2rem;
  scroll-margin-top: 200px;
  transition: all 0.3s ease-in-out;
}
#servicesDropdown.hidden {
  display: none;
}
.services-dropdown-grid {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(191,200,198,0.3);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 500;
  transition: all 0.8s ease-in-out; 
  background-color: white;
}
.highlight-grid {
    background-color: var(--primary-fixed) !important; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease-in-out; 
}

.services-dropdown-grid a {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  display: inline-block;
  width: max-content;
  transition: all 0.2s ease-in-out; 
}

@media (min-width: 540px) {
  .services-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .services-dropdown-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .services-dropdown-grid { grid-template-columns: repeat(4, 1fr); }
}
.services-dropdown-grid a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* Patient Journey */
.journey-section {
  padding: 6rem 0;
  background-color: var(--surface-container-low);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .journey-grid { grid-template-columns: 1fr 1fr; }
}

.journey-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Timeline */
.vertical-timeline {
  padding-top: 1rem;
  position: relative;
}

.vertical-path {
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 2px;
  z-index: 0;
}
.flowing-dash {
  stroke-dasharray: 8 8;
  animation: flow-dash 1s linear infinite;
}
@keyframes flow-dash {
  to { stroke-dashoffset: -16; }
}

.vertical-timeline .flex-gap {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}
.vertical-timeline .flex-gap:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.journey-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: var(--stone-200);
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .journey-visual { height: 700px; aspect-ratio: auto; }
}
@media (max-width: 768px) {
  .journey-visual { 
    aspect-ratio: 1/ 1.7;
   }
}
.journey-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-quote {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background-color: var(--surface-container-low);
  border-top: 1px solid rgba(191,200,198,0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.test-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.test-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #FBBC05;
  margin-bottom: 1.5rem;
}
.stars .material-symbols-outlined {
  font-size: 0.875rem;
}

.test-quote {
  color: var(--on-surface-variant);
  font-weight: 300;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.btn-google {
  background-color: white;
  border: 1px solid #e2e8f0;
  color: #333;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-weight: 700;
}

/* Floating Call Icon */
.floating-call {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 50;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .floating-call {
    bottom: 2rem;
    right: 2rem;
  }
}
.floating-call:hover {
  transform: scale(1.1);
}

@keyframes outline-pulse {
  0% { box-shadow: 0 0 0 0 rgba(234, 40, 110, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(234, 40, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 40, 110, 0); }
}
.btn-call-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--btn-pink);
  animation: outline-pulse 2s infinite;
  transition: all 0.3s ease;
}
.btn-call-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}
.icon-call {
  color: var(--btn-pink);
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--primary-hover);
  opacity: 0.9;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-white {
  background: white;
  color: var(--primary);
  display: inline-flex;
}
.btn-white:hover {
  transform: scale(1.05);
}

/* Results Gallery */
.results-section {
  padding: 6rem 0;
  max-width: 100%;
}
.results-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.pre-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
