/* ============================================================
   DENTAL PLANET — MASTER DESIGN SYSTEM
   Brand: Purple #5B2D8E | Sky Blue #29ABE2 | White #FFFFFF
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --purple:        #5B2D8E;
  --purple-dark:   #3E1D65;
  --purple-light:  #7B4DB4;
  --purple-pale:   #F3EEF9;
  --blue:          #29ABE2;
  --blue-dark:     #1887B8;
  --blue-light:    #5FC3EA;
  --blue-pale:     #EBF7FD;
  --silver:        #9E9E9E;
  --silver-light:  #E8E8E8;
  --white:         #FFFFFF;
  --off-white:     #F9F9FB;
  --text-dark:     #111111;
  --text-mid:      #444444;
  --text-light:    #777777;
  --border:        #EBEBEB;

  --grad-brand:    linear-gradient(135deg, #5B2D8E 0%, #29ABE2 100%);
  --grad-brand-r:  linear-gradient(135deg, #29ABE2 0%, #5B2D8E 100%);
  --grad-hero:     linear-gradient(135deg, rgba(91,45,142,0.92) 0%, rgba(41,171,226,0.85) 100%);
  --grad-dark:     linear-gradient(135deg, #3E1D65 0%, #1887B8 100%);

  --shadow-sm:     0 2px 12px rgba(91,45,142,0.08);
  --shadow-md:     0 8px 40px rgba(91,45,142,0.14);
  --shadow-lg:     0 20px 60px rgba(91,45,142,0.18);
  --shadow-xl:     0 30px 80px rgba(91,45,142,0.22);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --radius-full:   9999px;

  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  --max-width:     1200px;
  --section-pad:   100px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-blue { color: var(--blue); }
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-purple { background: var(--purple); }
.bg-blue { background: var(--blue); }
.bg-off-white { background: var(--off-white); }
.bg-gradient { background: var(--grad-brand); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow.purple { color: var(--purple); }

h1, .h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3, .h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4, .h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-mid); }
.small { font-size: 0.875rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(91,45,142,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(91,45,142,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-logo-text { color: var(--purple); }
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--purple); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: var(--transition);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.18); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 12px;
  z-index: 200;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.nav-dropdown-menu a:hover { background: var(--purple-pale); color: var(--purple); }
.nav-dropdown-menu .icon { font-size: 1.1rem; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--text-dark); }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
}
.nav-mobile a:hover { color: var(--purple); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  background: var(--off-white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero .lead { color: rgba(255,255,255,0.88); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 56px; height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
  margin-bottom: 16px;
}
.center .divider { margin: 0 auto 16px; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 64px; height: 64px;
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.card:hover .card-icon { background: var(--purple); }
.card:hover .card-icon .icon { filter: brightness(10); }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--purple-pale);
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.92rem; line-height: 1.65; margin-bottom: 20px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple);
  transition: var(--transition-fast);
}
.service-card-link:hover { gap: 10px; }

/* ── FEATURE LIST ───────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--purple-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.feature-item p { font-size: 0.875rem; line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; }
.review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author .name { font-weight: 600; font-size: 0.9rem; }
.review-author .date { font-size: 0.78rem; color: var(--text-light); }
.review-google {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--purple);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--purple); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--grad-brand);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-logo img { height: 40px; }
.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-btn:hover { background: var(--purple); }
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(91,45,142,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.footer-contact-text { font-size: 0.88rem; line-height: 1.55; }
.footer-contact-text strong { color: var(--white); display: block; font-size: 0.82rem; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── PAGE HERO (Inner pages) ────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 600px; margin: 20px auto 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--purple-pale);
  border: 3px solid var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--grad-brand);
  color: var(--white);
  border-color: transparent;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ── IMAGE SPLIT ────────────────────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse { }
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.split-img img { width: 100%; height: 480px; object-fit: cover; }
.split-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.split-img-badge .badge-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.split-img-badge .badge-text { font-size: 0.78rem; color: var(--text-light); }

/* ── BEFORE AFTER ───────────────────────────────────────────── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ba-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── TEAM ───────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-img {
  height: 300px;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-body { padding: 28px; }
.team-body h3 { margin-bottom: 6px; }
.team-body .role {
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-body p { font-size: 0.88rem; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91,45,142,0.1);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 48px; height: 48px;
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-text h4 { margin-bottom: 4px; font-size: 0.9rem; }
.info-text p { font-size: 0.88rem; }

/* ── TRUST BADGES ───────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-item .trust-icon { font-size: 1.3rem; }

/* ── STICKY CTA (mobile) ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 998;
  padding: 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-cta-inner {
  display: flex;
  gap: 12px;
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ── FLOATING WHATSAPP ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 997;
  transition: var(--transition);
  animation: bounce 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1EA951; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-up { animation: fadeUp 0.7s ease both; }
.animate-in { animation: fadeIn 0.5s ease both; }

/* Intersection observer animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split-section { gap: 48px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .hero-stat:last-child, .hero-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse .split-content { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-cta { display: block; }
  .whatsapp-float { bottom: 88px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root { --section-pad: 44px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { position: relative; bottom: auto; margin-top: 40px; }
  .hero { min-height: auto; padding: 120px 0 40px; }
}

/* ── GOOGLE RATING BADGE ────────────────────────────────────── */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.google-rating .g-logo { font-size: 1rem; }
.google-rating .g-stars { color: #F59E0B; font-size: 0.85rem; }
.google-rating .g-text { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }

/* Service page specifics */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--purple-light); }
.benefit-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.benefit-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.benefit-card p { font-size: 0.85rem; }

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: var(--purple);
  background: var(--purple-pale);
}
.price-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}
.price-card .price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.price-card ul { text-align: left; }
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: '✓'; color: var(--purple); font-weight: 700; }
