/* ============================================
   WONGU HEALTH CENTER - Master Stylesheet
   Medical Aesthetic: Clean, Calm, Trustworthy
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Figtree:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  /* Primary Palette */
  --sage: #7A9E7E;
  --sage-light: #A8C5AB;
  --sage-dark: #5B7D5E;
  --forest: #2D4A32;
  --cream: #FAF8F5;
  --warm-white: #FFFFFF;
  --sand: #F0EDE8;
  --blush: #E8DDD3;

  /* Accent */
  --gold: #C4A35A;
  --gold-light: #D4BC82;
  --terracotta: #C17B5A;

  /* Neutrals */
  --charcoal: #2C2C2C;
  --slate: #4A4A4A;
  --gray: #6B6B6B;
  --gray-light: #767676;
  --border: #E5E2DD;

  /* Typography */
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'Figtree', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(122,158,126,0.1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* In-body prose links get underlines for color-blind accessibility */
p a, li a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* But not nav, button, footer, or card links */
.nav-links a, .mobile-menu a, .btn, .footer-col a,
.footer-brand a, .footer-bottom a, .footer-social a,
.card a, .testimonial-card a, .pricing-card a,
.mobile-book-bar a, .header-top a, .breadcrumb a {
  text-decoration: none;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--forest);
  color: white;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 100000;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-nav:focus {
  top: 0;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-family: var(--font-body); font-weight: 700; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 16px rgba(122,158,126,0.3);
}

.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 6px 24px rgba(122,158,126,0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--sage-light);
}

.btn-secondary:hover {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

.btn-gold {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 16px rgba(196,163,90,0.3);
}

.btn-gold:hover {
  background: #B8963F;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--forest);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn svg, .btn .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--forest);
  color: white;
  padding: 6px 0;
  font-size: 0.8rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.header-top a:hover {
  color: white;
}

.header-main {
  padding: 12px 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gray-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-links a {
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--forest);
  background: rgba(122,158,126,0.1);
}

.nav-links a.active {
  color: var(--forest);
  background: rgba(122,158,126,0.15);
  font-weight: 600;
}

.nav-cta {
  margin-left: 8px;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--cream);
}

.mobile-menu .btn {
  margin-top: 16px;
  text-align: center;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

/* --- Hero Sections --- */
.hero {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 40%, rgba(168,197,171,0.15) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,126,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,158,126,0.1);
  border: 1px solid rgba(122,158,126,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 4px;
}

.hero-image {
  position: relative;
}

.hero-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--sage-light), var(--sage));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-main .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  background: linear-gradient(145deg,
    rgba(122,158,126,0.9),
    rgba(45,74,50,0.8));
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 40px;
  left: -30px;
}

.hero-float-card.card-2 {
  top: 40px;
  right: -20px;
  animation-delay: -3s;
}

.float-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(122,158,126,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage);
}

.float-card-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.float-card-sub {
  font-size: 0.75rem;
  color: var(--gray-light);
  font-weight: 400;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Page Heroes (internal pages) */
.hero-page {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  text-align: center;
  padding: 40px 0 40px;
}

.hero-page h1 {
  margin-bottom: 16px;
}

.hero-page .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.hero-page .breadcrumb a:hover {
  color: var(--sage);
}

.hero-page .breadcrumb .sep {
  color: var(--border);
}

/* --- Sections --- */
.section {
  padding: var(--section-pad) 0;
}

.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-sage {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  color: white;
}
.section-sage h2, .section-sage h3, .section-sage h4 { color: white; }
.section-sage .section-label { color: var(--sage-light); }
.section-sage .section-subtitle { color: rgba(255,255,255,0.8); }
.section-sage .prose,
.section-sage .prose-lg { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle {
  margin: 12px auto 0;
}

/* --- Cards --- */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(122,158,126,0.08);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(122,158,126,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* --- Testimonial --- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sage-light);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--forest);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.stars {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* --- Pricing Table --- */
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Best for New Patients';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card:hover {
  border-color: var(--sage-light);
}

.pricing-type {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.pricing-price sup {
  font-size: 1.2rem;
  top: -1rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(122,158,126,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.active .faq-icon {
  background: var(--sage);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  stroke-width: 2;
}

.faq-item.active .faq-icon svg {
  stroke: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner .btn-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-brand .logo-name {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--sage);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: white;
}

/* --- Specific Components --- */

/* Two-col content block */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.85rem;
  overflow: hidden;
}

/* Review Stars CTA */
.review-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(196,163,90,0.08);
  border: 1px solid rgba(196,163,90,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
}

.review-cta-text {
  font-size: 0.9rem;
  color: var(--slate);
}

.review-cta-text strong {
  color: var(--charcoal);
}

/* Contact info */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(122,158,126,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-info-text a:hover {
  color: var(--sage);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

/* Student Clinic Comparison */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table thead {
  background: var(--forest);
  color: white;
}

.comparison-table th {
  font-weight: 600;
  font-family: var(--font-body);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
  background: rgba(122,158,126,0.03);
}

.comparison-table .highlight {
  color: var(--sage-dark);
  font-weight: 600;
}

/* Numbered Steps */
.steps-grid {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--sage-light);
  position: absolute;
  left: 0;
  top: -4px;
}

.step-card h4 {
  margin-bottom: 8px;
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */

/* Sticky mobile Book Now bar */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sage-dark);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-book-bar a {
  display: block;
  width: 100%;
  text-align: center;
  background: white;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-lg {
  padding: 16px 32px !important;
  font-size: 1.05rem !important;
}

/* ============================================
   DESIGN SYSTEM — Reusable Component Classes
   ============================================ */

/* Layout helpers */
.max-950 { max-width: 950px; margin-left: auto; margin-right: auto; }
.max-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.section-note { text-align: center; color: var(--gray); margin-top: 32px; font-size: 0.95rem; }
.section-note-sm { text-align: center; color: var(--gray-light); margin-top: 20px; font-size: 0.85rem; }

/* Prose text */
.prose { color: var(--gray); line-height: 1.8; }
.prose-lg { color: var(--gray); line-height: 1.9; font-size: 1.05rem; }
.muted { color: var(--gray-light); }

/* Dark-section button variant */
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* --- Legal page system --- */
.legal-body    { color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.legal-body-sm { color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.legal-body-xs { color: var(--gray); line-height: 1.8; margin-bottom: 8px; }
.legal-heading { margin-bottom: 16px; }
.legal-subheading { color: var(--forest); margin-bottom: 8px; }
.legal-date { color: var(--gray); margin-bottom: 32px; }
.legal-alert {
  background: rgba(45,74,50,0.05);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--gray);
}
.legal-contact { color: var(--gray); line-height: 1.8; margin-bottom: 4px; }
.legal-contact a { color: var(--sage); }

/* --- Pricing system --- */
.btn-full { width: 100%; justify-content: center; }
.btn-stack { width: 100%; margin-top: 8px; justify-content: center; }
.discount-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(196,163,90,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
}
.discount-badge-set { display: flex; flex-wrap: wrap; gap: 8px 12px; justify-content: center; margin-bottom: 20px; }
.discount-card {
  background: rgba(196,163,90,0.05);
  border: 2px solid rgba(196,163,90,0.2);
  text-align: center;
  padding: 40px;
}
.discount-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.info-highlight {
  background: rgba(122,158,126,0.05);
  border: 1px solid rgba(122,158,126,0.15);
}
.pricing-footnote { font-size: 0.78rem; color: var(--gray-light); margin-top: 12px; }
.table-wrapper { overflow-x: auto; }

/* --- Service page system --- */
.service-body { color: var(--gray); margin-bottom: 20px; line-height: 1.8; }
.service-body-top { color: var(--gray); margin: 16px 0; line-height: 1.8; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-bottom: 24px; }
.service-section { margin-bottom: 80px; }
.img-rounded { border-radius: var(--radius-lg); }
.check-text { color: var(--slate); font-size: 0.9rem; }

/* Icon-feature rows */
.icon-feature-list { display: flex; flex-direction: column; gap: 20px; }
.icon-feature { display: flex; gap: 16px; align-items: flex-start; }
.icon-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(122,158,126,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-feature-icon svg { stroke: var(--sage); fill: none; width: 22px; height: 22px; stroke-width: 1.5; }
.icon-feature-body h4 { margin-bottom: 4px; }
.icon-feature-body p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

/* --- Contact form system --- */
.form-label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--forest); }
.form-hint { font-weight: 400; color: var(--gray-light); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-footer-note { text-align: center; margin-top: 12px; font-size: 0.82rem; color: var(--gray-light); }
.alert-error {
  display: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-sm);
  color: #991b1b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Patient toggle (segmented control) */
.patient-toggle { display: flex; gap: 12px; }
.patient-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  flex: 1;
  background: white;
  font-family: inherit;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.patient-toggle-btn:hover { border-color: var(--sage-light); }
.patient-toggle-btn.selected {
  border-color: var(--sage);
  background: rgba(122,158,126,0.06);
  color: var(--forest);
}
.patient-toggle-btn:focus { box-shadow: 0 0 0 3px rgba(122,158,126,0.25); outline: none; }

/* Privacy callout (replaces border-left card) */
.privacy-callout {
  background: white;
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 28px;
}
.privacy-callout h4 { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 12px; }

/* --- Blog editorial system --- */
.blog-article { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.blog-category {
  display: inline-block;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-title { margin: 8px 0 12px; font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.blog-title a { color: var(--forest); text-decoration: none; }
.blog-title a:hover { color: var(--sage-dark); }
.blog-meta { color: var(--gray-light); font-size: 0.88rem; margin-bottom: 14px; }
.blog-excerpt { color: var(--gray); line-height: 1.8; }
.blog-read-more { display: inline-block; margin-top: 12px; color: var(--sage-dark); font-weight: 600; font-size: 0.9rem; }
.blog-read-more::after { content: ' →'; }
.blog-cta-box { text-align: center; padding: 40px; background: rgba(45,74,50,0.04); border-radius: var(--radius-lg); }

/* Team card system */
.team-role { color: var(--sage); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; display: block; }

/* Footer links row */
.footer-links-row { display: flex; gap: 24px; }

/* Focus states — global */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .mobile-book-bar { display: block; }
  /* Add padding to body so content isn't hidden behind sticky bar */
  body { padding-bottom: 70px; }
}

@media (max-width: 1024px) {
.content-image img,
.hero-image-main img {
  background: linear-gradient(135deg, var(--sand), var(--sage-light));
}

.content-image img[alt]::after,
.hero-image-main img[alt]::after {
  content: attr(alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sand), var(--sage-light));
  color: var(--sage-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
}

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

  .hero-image { display: block; }
  .hero-image-main { aspect-ratio: 16 / 7; }
  .hero-float-card { display: none; }

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

  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-split.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero-home { min-height: auto; }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .conditions-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .price-anchor-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-anchor-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .cta-banner {
    padding: 40px 24px;
    border-radius: var(--radius);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .trust-items {
    gap: 24px;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
  }

  /* === MOBILE TEXT REDUCTION === */

  /* Shorter hero on mobile */
  .hero-home .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-home h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .hero-actions .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Hide second CTA button on mobile - one is enough */
  .hero-actions .btn-secondary {
    display: none;
  }

  /* Compact section headers on mobile */
  .section-header h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .section-label {
    font-size: 0.72rem;
  }

  /* Conditions cards: show as compact 2-col grid on mobile */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .grid-4 .card {
    padding: 16px !important;
  }

  .grid-4 .card h4 {
    font-size: 0.88rem;
  }

  .grid-4 .card p {
    font-size: 0.78rem !important;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .grid-4 .card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px !important;
  }

  .grid-4 .card-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Trust bar: horizontal scroll on mobile */
  .trust-items {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .trust-items::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex-shrink: 0;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  /* Compact testimonial cards — no clamping, full quotes on mobile */
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* Pricing: show all cards on mobile, stacked */
  .pricing-card:last-child {
    display: block;
  }

  .pricing-features li {
    font-size: 0.82rem;
    padding: 6px 0;
  }

  /* Reduce section padding on mobile */
  .section {
    padding: 48px 0;
  }

  /* Compact cards */
  .card {
    padding: 20px;
  }

  .card p {
    font-size: 0.88rem;
  }

  /* Scale team/intern photos for mobile */
  .team-photo,
  .intern-photo {
    width: 180px;
    height: 180px;
  }
  .team-photo img,
  .intern-photo img {
    width: 180px;
    height: 180px;
  }

  /* Ensure intern grid doesn't overflow */
  .intern-photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  /* Make mobile book bar more prominent */
  .mobile-book-bar {
    padding: 12px 16px;
  }

  .mobile-book-bar a {
    font-size: 0.95rem;
  }

  /* Reduce Google Maps height on mobile */
  .section iframe {
    height: 250px !important;
  }

  /* Footer compact */
  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col li,
  .footer-col a {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    width: 100%;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 14px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero h1 { font-size: 2rem; }

  .hero-home h1 {
    font-size: 1.4rem;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat .number {
    font-size: 1.1rem;
  }

  .hero-stat .label {
    font-size: 0.7rem;
  }

  /* Stack conditions to single column on very small screens */
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .grid-4 .card {
    padding: 12px !important;
  }

  .grid-4 .card p {
    -webkit-line-clamp: 2;
    font-size: 0.75rem !important;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  /* Scale team/intern photos smaller */
  .team-photo,
  .intern-photo {
    width: 150px;
    height: 150px;
  }
  .team-photo img,
  .intern-photo img {
    width: 150px;
    height: 150px;
  }

  .cta-banner {
    padding: 32px 16px;
  }

  .content-split {
    gap: 24px;
  }
}

/* --- Utility: Extracted from inline styles --- */
.notification-banner {
  background: linear-gradient(135deg, #b45309, #d97706);
  color: white;
  padding: 16px 48px 16px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 99999;
  width: 100%;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.notification-banner a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}
.notification-banner .notif-dismiss {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px 12px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.notification-banner .notif-dismiss:hover {
  background: rgba(255,255,255,0.15);
}
.card--center {
  text-align: center;
  padding: 28px;
}
.card-icon--center {
  margin: 0 auto 16px;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--sage-light));
  margin: 0 auto 16px;
  overflow: hidden;
  clip-path: circle(50%);
  -webkit-clip-path: circle(50%);
}
.team-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  display: block;
}
.team-photo--small {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
.team-photo--small img {
  width: 120px;
  height: 120px;
}
/* Utility classes to replace common homepage inline styles */
.text-center { text-align: center; }
.text-gray { color: var(--gray); }
.text-sage { color: var(--sage); }
.text-forest { color: var(--forest); }
.text-sm { font-size: 0.88rem; }
.text-xs { font-size: 0.82rem; }
.line-tall { line-height: 1.8; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Check list (Why Choose Us) */
.check-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check-body p { color: var(--gray); font-size: 0.9rem; margin-top: 2px; }

/* Team card typography */
.team-card-role {
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-card-bio {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Welcome quote */
.welcome-quote {
  color: var(--gray);
  line-height: 1.9;
  margin: 16px 0;
  font-size: 1.05rem;
  font-style: italic;
}

/* Conditions split layout */
.conditions-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.conditions-intro h2 {
  margin: 12px 0 16px;
}
.conditions-intro p {
  color: var(--gray);
  line-height: 1.8;
}
.conditions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.conditions-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.5;
}
.conditions-list li:first-child {
  border-top: 1px solid var(--border);
}

/* Price anchor block */
.price-anchor-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.price-anchor-copy h2 {
  color: white;
  margin: 12px 0 16px;
}
.price-anchor-copy p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.price-anchor-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* Form inputs */
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,0.25);
}
select.form-input {
  background: white;
}

.team-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0 16px;
}
.team-carousel-wrapper::before,
.team-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.team-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white, #fff), transparent);
}
.team-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white, #fff), transparent);
}
.team-carousel-track {
  display: flex;
  width: max-content;
  animation: teamScroll 30s linear infinite;
}
.team-carousel-track:hover {
  animation-play-state: paused;
}
.team-carousel-track .card {
  width: 280px;
  flex-shrink: 0;
  margin-right: 24px;
  text-align: center;
  padding: 28px 20px;
}
@keyframes teamScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.intern-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  justify-items: center;
}
.intern-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--sage-light));
  margin: 0 auto 16px;
  overflow: hidden;
  clip-path: circle(50%);
  -webkit-clip-path: circle(50%);
}
.intern-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  display: block;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-section-heading {
  margin: 48px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sage-light);
}
