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

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&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: #9B9B9B;
  --border: #E5E2DD;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -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;
}

/* --- 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: 400;
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  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 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  transition: all 0.2s;
}

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

.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.7); }

.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.1);
  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: 'Most Popular';
  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;
  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;
}

@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: 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;
  }

  .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;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
  }

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

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

/* Notification Banner */
.notification-banner {
  background: linear-gradient(135deg, #b45309, #d97706);
  color: white;
  padding: 14px 48px 14px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 99999;
  width: 100%;
  display: block;
}

.notification-banner a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}

.notification-banner .notif-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
}

.notification-banner .notif-close:hover {
  opacity: 1;
}
