/* ===== WAIKIKI DENTAL — Premium Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --color-primary: #0a1628;
  --color-primary-light: #1a2a3a;
  --color-secondary: #c97b5d;
  --color-secondary-dark: #b06549;
  --color-accent-gold: #b8954e;
  --color-accent-gold-light: #d4b06a;
  --color-cream: #f7f3ee;
  --color-cream-dark: #efe7de;
  --color-white: #ffffff;
  --color-black: #0a0a0a;
  --color-text: #1a1a2e;
  --color-text-light: #5a5a72;
  --color-text-lighter: #8a8a9e;
  --color-bg-section: #faf8f5;
  --color-bg-dark: #0a1628;
  --color-border: #e8e0d8;
  --color-success: #2d8a5e;
  --color-error: #c94a4a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad: clamp(4.5rem, 9vw, 7rem);
  --container-max: 1200px;
  --container-narrow: 900px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-slow: 0.7s;
  --duration-med: 0.4s;
  --duration-fast: 0.25s;

  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.16);
  --shadow-glow: 0 0 30px rgba(201, 123, 93, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-mobile-cta: 400;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; color: var(--color-primary); }
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
  margin-left: 12px;
  vertical-align: middle;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--duration-med) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn--secondary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--secondary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--color-accent-gold);
  color: var(--color-white);
}
.btn--gold:hover {
  background: var(--color-accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 149, 78, 0.3);
}
.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.8rem; }
.btn--lg { padding: 1.125rem 2.5rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn__shine {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}
.btn:hover .btn__shine { left: 125%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: 0 var(--gutter);
  transition: all var(--duration-med) var(--ease-out);
  background: transparent;
}
.header--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--duration-med) var(--ease-out);
}
.header--scrolled .header__inner { height: 64px; }
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.header__logo img { height: 44px; width: auto; transition: height var(--duration-med) var(--ease-out); }
.header--scrolled .header__logo img { height: 36px; }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  padding: 0.25rem 0;
}
.header--scrolled .header__nav-link { color: var(--color-text); }
.header__nav-link.active { color: var(--color-white); }
.header--scrolled .header__nav-link.active { color: var(--color-secondary); }
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-secondary);
  transition: width var(--duration-med) var(--ease-out);
}
.header__nav-link.active::after,
.header__nav-link:hover::after { width: 100%; }
.header__nav-link:hover { color: var(--color-white); }
.header--scrolled .header__nav-link:hover { color: var(--color-secondary); }
.header__cta { display: flex; align-items: center; gap: 0.75rem; }
.header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
  transition: color var(--duration-fast) var(--ease-out);
}
.header--scrolled .header__phone { color: var(--color-primary); }
.header__phone:hover { color: var(--color-secondary) !important; }
.header__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 2; padding: 4px; }
.header__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  transition: all var(--duration-fast) var(--ease-out);
  border-radius: 2px;
}
.header--scrolled .header__hamburger span { background: var(--color-primary); }
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  z-index: var(--z-overlay);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med) var(--ease-out);
  overflow-y: auto;
}
.header__mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.header__mobile-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--duration-fast) var(--ease-out);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__mobile-link:hover { color: var(--color-white); }

@media (max-width: 1024px) {
  .header__nav, .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .header__mobile-menu { display: flex; }
  .header__mobile-cta { margin-top: 1rem; }
}

/* ===== HERO — Two-Column Slim Layout ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--color-primary);
}
.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 3rem calc((100vw - var(--container-max)) / 2 + var(--gutter));
}
.hero__right {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero__right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.3s ease-out;
}
.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201, 123, 93, 0.3);
  border-radius: var(--radius-full);
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--color-secondary);
}
.hero__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.75rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__left {
    padding: 6rem var(--gutter) 3rem;
  }
  .hero__right {
    display: none;
  }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__actions .btn { white-space: normal; }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stat-number { font-size: 1.5rem; }
}

/* ===== SECTIONS ===== */
section { padding: var(--section-pad) 0; }
.section--dark { background: var(--color-bg-dark); color: rgba(255,255,255,0.8); }
.section--dark .section-title { color: var(--color-white); }
.section--dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.trust-bar__item svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-bar__grid { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ===== SERVICES — Compact 3-column grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.75rem;
  transition: all var(--duration-med) var(--ease-out);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 44px; height: 44px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--duration-fast) var(--ease-out);
}
.service-card:hover .service-card__icon { background: rgba(201, 123, 93, 0.1); }
.service-card__icon svg { width: 22px; height: 22px; color: var(--color-secondary); }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.service-card__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--duration-fast) var(--ease-out);
}
.service-card__link:hover { gap: 0.6rem; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT / DOCTOR ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__image-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--color-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about__image-badge-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.about__image-badge-sub {
  font-size: 0.75rem;
  color: var(--color-text-light);
}
.about__content .section-title { margin-top: 0.5rem; }
.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.about__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.about__list-item svg { flex-shrink: 0; color: var(--color-secondary); }
.about__signature {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__image-wrapper img { height: 350px; }
  .about__list { grid-template-columns: 1fr; }
}

/* ===== BEFORE & AFTER ===== */
.ba-section { background: var(--color-primary); }
.ba-section .section-title { color: var(--color-white); }
.ba-section .section-subtitle { color: rgba(255,255,255,0.6); }
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 3rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.ba-slider__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__after { clip-path: inset(0 50% 0 0); }
.ba-slider__divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--color-white);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.ba-slider__handle {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-slider__handle svg { width: 20px; height: 20px; color: var(--color-primary); }
.ba-slider__label {
  position: absolute;
  bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  z-index: 2;
  pointer-events: none;
}
.ba-slider__label--before { left: 1rem; }
.ba-slider__label--after { right: 1rem; }

/* ===== AI DIAGNOSTICS ===== */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ai__content .section-title { margin-bottom: 1rem; }
.ai__features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.ai__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ai__feature-icon {
  width: 44px; height: 44px;
  background: rgba(201, 123, 93, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai__feature-icon svg { width: 22px; height: 22px; color: var(--color-secondary); }
.ai__feature-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.ai__feature-text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.ai__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ai__image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.ai__image-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .ai-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ai__image-wrapper img { height: 300px; }
}

/* ===== REVIEWS ===== */
.reviews__slider { margin-top: 3rem; position: relative; }
.reviews__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 380px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: all var(--duration-med) var(--ease-out);
  position: relative;
}
.review-card::after {
  content: '\201C';
  position: absolute;
  top: 0.75rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.06;
  pointer-events: none;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.review-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.review-card__stars svg { width: 18px; height: 18px; color: var(--color-accent-gold); }
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 0.9rem; }
.review-card__source { font-size: 0.75rem; color: var(--color-text-lighter); }
.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.reviews__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  border: none;
}
.reviews__dot.active { background: var(--color-secondary); width: 28px; border-radius: 4px; }
@media (max-width: 768px) {
  .review-card { min-width: 280px; }
}

/* ===== INSURANCE ===== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.insurance-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--duration-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.insurance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out);
}
.insurance-card:hover::before { transform: scaleX(1); }
.insurance-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.insurance-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.insurance-card__note {
  font-size: 0.7rem;
  color: var(--color-text-lighter);
}
.insurance-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}
.insurance-cta p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0.25rem 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  font-family: var(--font-serif);
}
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-secondary);
  transition: transform var(--duration-fast) var(--ease-out);
}
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--duration-med) var(--ease-in-out);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer__inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 123, 93, 0.12), transparent 70%);
  top: -120px; right: -80px;
  pointer-events: none;
}
.cta-banner__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-banner__blob--1 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(184, 149, 78, 0.1), transparent 70%);
  bottom: -60px; left: -40px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) {
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact__info-icon {
  width: 44px; height: 44px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 20px; height: 20px; color: var(--color-secondary); }
.contact__info-label { font-size: 0.75rem; color: var(--color-text-lighter); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.contact__info-value { font-weight: 600; font-size: 1rem; }
.contact__info-link { color: var(--color-secondary); }
.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
}
.contact__social a:hover { background: var(--color-secondary); }
.contact__social a:hover svg { color: var(--color-white); }
.contact__social svg { width: 20px; height: 20px; color: var(--color-text-light); transition: color var(--duration-fast) var(--ease-out); }
.contact__form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast) var(--ease-out);
  background: var(--color-white);
  color: var(--color-text);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(201, 123, 93, 0.1);
}
.form__input.error, .form__textarea.error, .form__select.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(201, 74, 74, 0.1);
}
.form__input.success, .form__textarea.success, .form__select.success {
  border-color: var(--color-success);
  box-shadow: 0 0 0 3px rgba(45, 138, 94, 0.1);
}
.form__error-msg {
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 0.25rem;
  display: none;
}
.form__error-msg.visible { display: block; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a5a72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}
.form__checkbox input { margin-top: 0.25rem; accent-color: var(--color-secondary); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.5rem; }
}

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; display: block; border: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer__heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__links a:hover { color: var(--color-secondary); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--color-secondary); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-mobile-cta);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem var(--gutter);
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-cta .btn { flex: 1; font-size: 0.85rem; padding: 0.75rem 1rem; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent-gold));
  z-index: calc(var(--z-header) + 10);
  transition: width 0.1s linear;
}

/* ===== COMPREHENSIVE ANIMATION SYSTEM ===== */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.fade-in { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.fade-in-scale { transform: scale(0.92); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-children > * { opacity: 0; transform: translateY(20px); }
.stagger-children.visible > *:nth-child(1) { transition: all 0.5s var(--ease-out) 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition: all 0.5s var(--ease-out) 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition: all 0.5s var(--ease-out) 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition: all 0.5s var(--ease-out) 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition: all 0.5s var(--ease-out) 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition: all 0.5s var(--ease-out) 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition: all 0.5s var(--ease-out) 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition: all 0.5s var(--ease-out) 0.4s; opacity: 1; transform: translateY(0); }

/* Hero entrance sequence */
.hero__label { animation: slideUp 0.6s var(--ease-out) 0.1s both; }
.hero__title { animation: slideUp 0.6s var(--ease-out) 0.2s both; }
.hero__text { animation: slideUp 0.6s var(--ease-out) 0.35s both; }
.hero__actions { animation: slideUp 0.6s var(--ease-out) 0.5s both; }
.hero__stats { animation: slideUp 0.6s var(--ease-out) 0.65s both; }
.hero__right-image { animation: heroImgReveal 1s var(--ease-out) 0.1s both; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgReveal {
  from { opacity: 0; transform: scale(1.15); }
  to { opacity: 1; transform: scale(1.05); }
}

/* Image reveal on scroll */
.reveal-img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-img.visible {
  opacity: 1;
  transform: scale(1);
}

/* Section divider animation */
.section-label,
.section-title,
.section-subtitle {
  transition-delay: 0s;
}
.text-center.fade-in .section-label { transition-delay: 0.05s; }
.text-center.fade-in .section-title { transition-delay: 0.15s; }
.text-center.fade-in .section-subtitle { transition-delay: 0.25s; }

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.video-modal.active {
  display: flex;
  animation: modalFadeIn 0.3s var(--ease-out);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-modal__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
  border: none;
}
.video-modal__close:hover { background: rgba(255,255,255,0.2); }
.video-modal__close svg { width: 24px; height: 24px; }
.video-modal__content {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-modal__content iframe { width: 100%; height: 100%; border: none; }

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== PRINT ===== */
@media print {
  .header, .mobile-cta, .footer, .scroll-progress, .video-modal { display: none; }
}
