/* ============================================================
   PLASTICOS HEALTHCARE — custom.css
   Single unified stylesheet for all pages
   ============================================================ */

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

/* ---- DESIGN TOKENS ---- */
:root {
  --navy:        #0A1F44;
  --navy-light:  #112B5E;
  --teal:        #00B5AD;
  --teal-dark:   #008C86;
  --teal-light:  #E0F7F6;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FB;
  --gray-100:    #EEF0F4;
  --gray-200:    #DDE1EA;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;
  --gold:        #F59E0B;
  --purple:      #7C3AED;
  --purple-light:#EDE9FE;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(10,31,68,0.10);
  --shadow-md:   0 8px 40px rgba(10,31,68,0.14);
  --shadow-lg:   0 16px 60px rgba(10,31,68,0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 8px 2rem;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-left  { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar-item  { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { flex-shrink: 0; opacity: 0.7; }
.top-bar-right { display: flex; gap: 1rem; align-items: center; }
.top-bar-right a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.top-bar-right a:hover { color: var(--teal); }
.top-bar-cta {
  background: var(--teal); color: white !important;
  padding: 4px 12px; border-radius: 6px;
  font-weight: 600; font-size: 12px !important;
  transition: background 0.2s !important;
}
.top-bar-cta:hover { background: var(--teal-dark) !important; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(10,31,68,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px; gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header-logo { height: 60px; width: auto; object-fit: contain; }

/* Nav links */
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: 13.5px; font-weight: 500;
  color: var(--gray-600); text-decoration: none; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--teal); background: var(--teal-light); }

/* Arrow icon */
.nav-arrow {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

/* ---- MEGA DROPDOWN ---- */
/* Use visibility+opacity+pointer-events for smooth hover — no flicker */
.mega-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 680px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10,31,68,0.18), 0 0 0 1px rgba(10,31,68,0.06);
  overflow: hidden;
  display: flex;
  z-index: 200;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}
.nav-links > li:hover .mega-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

/* Bridge gap so menu stays open when cursor moves from link to dropdown */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0; right: 0;
  height: 12px;
}

.mega-sidebar {
  background: var(--navy); color: white;
  padding: 2rem 1.5rem; min-width: 200px;
  display: flex; flex-direction: column; gap: 6px;
}
.mega-sidebar-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 10px;
}
.mega-cat-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  border: none; background: transparent; text-align: left; width: 100%;
  color: rgba(255,255,255,0.7); font-size: 13.5px; font-weight: 500;
  font-family: 'Inter', sans-serif; transition: background 0.2s;
}
.mega-cat-btn:hover,
.mega-cat-btn.active { background: rgba(0,181,173,0.2); color: white; }
.mega-cat-btn .cat-icon {
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  background: rgba(255,255,255,0.08); flex-shrink: 0;
}
.mega-cat-btn.active .cat-icon { background: var(--teal); }

.mega-panel { display: flex; flex-direction: column; flex: 1; }
.mega-content { flex: 1; padding: 1.5rem; display: none; flex-direction: column; }
.mega-content.active { display: flex; }
.mega-content-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 12px;
}
.mega-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; text-decoration: none;
  color: var(--gray-700); font-size: 13.5px; font-weight: 500;
  transition: all 0.18s; border: 1px solid transparent;
}
.mega-item:hover { background: var(--teal-light); color: var(--teal-dark); border-color: rgba(0,181,173,0.2); }
.mega-item-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0; transition: background 0.18s;
}
.mega-item:hover .mega-item-icon { background: rgba(0,181,173,0.2); }
.mega-item-text { display: flex; flex-direction: column; }
.mega-item-text strong { font-size: 13px; line-height: 1.2; }
.mega-item-text span { font-size: 11px; color: var(--gray-400); margin-top: 1px; }
.mega-footer {
  background: var(--gray-50); padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.mega-footer a { font-size: 12.5px; color: var(--teal); font-weight: 600; text-decoration: none; }
.mega-footer a:hover { text-decoration: underline; }

/* ---- SIMPLE DROPDOWN ---- */
.simple-dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 4px); left: 0;
  background: white; border-radius: 12px;
  box-shadow: 0 16px 48px rgba(10,31,68,0.15), 0 0 0 1px rgba(10,31,68,0.05);
  padding: 8px; min-width: 200px; z-index: 200;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  transform: translateY(-6px);
}
.nav-links > li:hover .simple-dropdown {
  visibility: visible; opacity: 1; pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.simple-dropdown a {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  text-decoration: none; color: var(--gray-700); font-size: 13.5px; font-weight: 500;
  border-radius: 8px; transition: background 0.15s;
}
.simple-dropdown a:hover { background: var(--teal-light); color: var(--teal-dark); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-decoration: none; padding: 8px 12px; border-radius: 8px; transition: background 0.2s;
}
.nav-phone:hover { background: var(--gray-100); }
.nav-phone svg { stroke: var(--teal); fill: none; }
.nav-cta {
  background: var(--teal); color: white; padding: 10px 20px;
  border-radius: 8px; font-size: 13.5px; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer; background: none; border: none; border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 1100;
  flex-direction: column;
  /* Fix mobile scroll: allow internal scroll */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--gray-200);
  background: white; position: sticky; top: 0; z-index: 10;
  flex-shrink: 0;
}
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 8px; background: var(--gray-100);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gray-700);
}
.mobile-menu-body { padding: 8px 16px 16px; flex: 1; }
.mobile-nav-item { border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px; font-size: 15px; font-weight: 500; color: var(--gray-800);
  text-decoration: none; cursor: pointer;
  background: none; border: none; width: 100%; font-family: 'Inter', sans-serif;
}
.mobile-nav-link svg { transition: transform 0.25s; stroke: var(--gray-400); fill: none; stroke-width: 2.5; }
.mobile-nav-link.expanded svg { transform: rotate(180deg); }
.mobile-submenu { display: none; padding: 4px 0 12px 8px; }
.mobile-submenu.open { display: block; }
.mobile-sub-category {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); padding: 10px 4px 6px;
}
.mobile-sub-link {
  display: flex; align-items: center; gap: 10px; padding: 10px;
  border-radius: 8px; text-decoration: none; color: var(--gray-700);
  font-size: 14px; font-weight: 500; transition: background 0.15s; margin-bottom: 2px;
}
.mobile-sub-link:hover { background: var(--teal-light); color: var(--teal-dark); }
.mobile-sub-link .sub-icon {
  width: 32px; height: 32px; border-radius: 7px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.mobile-menu-cta { padding: 16px; flex-shrink: 0; }
.mobile-menu-cta a {
  display: block; background: var(--teal); color: white; text-align: center;
  padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; margin-bottom: 10px;
}
.mobile-contact-bar {
  background: var(--gray-50); border-radius: 10px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); }
.mobile-contact-item svg { stroke: var(--teal); fill: none; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #163a75 100%);
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2300B5AD' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,181,173,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 3rem 2rem;
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,181,173,0.15); border: 1px solid rgba(0,181,173,0.35);
  color: #7AF4F0; padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: white; line-height: 1.15; margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--teal); font-style: italic; }
.hero-content > p {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: white; padding: 14px 26px;
  border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  padding: 14px 26px; border-radius: 10px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }
.stat-num { font-size: 30px; font-weight: 700; color: white; line-height: 1; }
.stat-num span { color: var(--teal); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 4px; }

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px; padding: 1.75rem; color: white;
}
.hero-card-title { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.chip-group { margin-bottom: 1rem; }
.chip-group-label { font-size: 10.5px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
.specialty-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 8px; font-size: 12.5px; margin: 3px;
  cursor: default; transition: background 0.2s;
}
.specialty-chip:hover { background: rgba(0,181,173,0.18); border-color: rgba(0,181,173,0.35); }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-teal { background: var(--teal); }
.dot-gold { background: var(--gold); }
.dot-pink { background: #F472B6; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: #060F22; padding: 1.25rem 2rem; }
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap; align-items: stretch;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500;
  padding: 0.5rem 1.25rem; border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; stroke: var(--teal); fill: none; }

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: 4.5rem 2rem; }
section.inner { padding: 3.5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--navy); margin-bottom: 1rem; line-height: 1.25;
}
.section-sub { font-size: 15.5px; color: var(--gray-600); max-width: 580px; line-height: 1.8; margin-bottom: 3rem; }

/* ============================================================
   SERVICES — PROCTOLOGY
   ============================================================ */
.proctology { background: var(--gray-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.service-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden; text-decoration: none; display: block; color: inherit;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--teal); border-radius: 12px 0 0 12px;
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 22px;
}
.icon-teal  { background: var(--teal-light); }
.icon-blue  { background: #EEF4FF; }
.icon-gold  { background: #FEF3C7; }
.service-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; color: var(--teal); margin-top: 1rem; text-decoration: none;
}
.service-link svg { transition: transform 0.2s; width:14px; height:14px; stroke: currentColor; fill:none; stroke-width:2.5; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* Urology blue variant */
.service-card.blue::before { background: #3B82F6; }
.service-card.blue:hover   { border-color: #3B82F6; }
.service-card.blue .service-link { color: #3B82F6; }

/* ============================================================
   AESTHETICS SECTION
   ============================================================ */
.aesthetics-hero {
  background: linear-gradient(135deg, #1a0535 0%, #2d1060 50%, #1a0535 100%);
  padding: 5rem 2rem; color: white; position: relative; overflow: hidden;
}
.aesthetics-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.aesthetics-hero .section-inner { position: relative; z-index: 1; }
.aesthetics-hero .section-eyebrow { color: #C084FC; }
.aesthetics-hero .section-title   { color: white; }
.aesthetics-hero .section-sub     { color: rgba(255,255,255,0.62); }
.aesthetics-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px;
}
.aes-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.5rem;
  transition: background 0.25s, border-color 0.2s, transform 0.2s;
  text-decoration: none; display: block;
}
.aes-card:hover { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.4); transform: translateY(-3px); }
.aes-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(168,85,247,0.2); display: flex; align-items: center;
  justify-content: center; font-size: 20px; margin-bottom: 0.85rem;
}
.aes-card h3 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 0.4rem; }
.aes-card p  { font-size: 12.5px; color: rgba(255,255,255,0.52); line-height: 1.6; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-visual {
  background: white; border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.why-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-num-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.why-num-card .num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--teal); font-weight: 700; }
.why-num-card .lbl { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.why-num-card.dark { background: var(--navy); border-color: var(--navy); }
.why-num-card.dark .num { color: white; }
.why-num-card.dark .lbl { color: rgba(255,255,255,0.45); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; }
.why-check {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.why-check svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.why-item p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: white; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-top: 2rem;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: var(--gray-200); z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: white; border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 18px; font-weight: 700; color: var(--teal);
  position: relative; z-index: 1;
}
.step-num.filled { background: var(--teal); color: white; }
.process-step h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   CONTACT SECTION (homepage)
   ============================================================ */
.contact { background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact .section-title { color: white; }
.contact .section-sub   { color: rgba(255,255,255,0.62); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,181,173,0.15); border: 1px solid rgba(0,181,173,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.contact-item strong { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 2px; }
.contact-item span   { font-size: 13.5px; color: rgba(255,255,255,0.58); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.65); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 11px 14px; color: white; font-size: 14px;
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: rgba(255,255,255,0.09); }
.form-group select option { background: var(--navy); color: white; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  background: var(--teal); color: white; border: none;
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif; width: 100%;
}
.btn-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #040C1A; color: rgba(255,255,255,0.5); padding: 0; }
.footer-top {
  background: linear-gradient(135deg, #06121F 0%, #0A1F44 100%);
  padding: 3.5rem 2rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.48); margin-bottom: 1.5rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.social-icon:hover { background: var(--teal); border-color: var(--teal); }
.social-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; }
.social-icon:hover svg { stroke: white; }
.accreditation-badges { display: flex; gap: 10px; margin-top: 1.5rem; flex-wrap: wrap; }
.acc-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 6px 12px; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
}
.acc-badge span { color: var(--teal); font-size: 13px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: white;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 6px;
}
.footer-col h4::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.48); text-decoration: none; font-size: 13.5px;
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '\203A'; color: var(--teal); font-size: 16px; line-height: 1; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-mid {
  background: #040C1A; padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-mid-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
}
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-contact-item svg { stroke: var(--teal); fill: none; flex-shrink: 0; }
.footer-contact-item strong { color: white; font-size: 13px; }
.footer-bottom-bar { padding: 1.25rem 2rem; background: #040C1A; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--teal); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 2rem;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400);
}
.breadcrumb-inner a    { color: var(--teal); text-decoration: none; }
.breadcrumb-inner span { color: var(--gray-800); font-weight: 500; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a6e 100%);
  padding: 4.5rem 2rem 5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2300B5AD' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.piles-hero  { background: linear-gradient(135deg, #0d1f3c 0%, #0e2744 60%, #0a1f3a 100%); }
.team-hero   { background: linear-gradient(135deg, var(--navy) 0%, #0d2a5a 60%, #143268 100%); }
.contact-hero-band { background: linear-gradient(135deg, var(--navy) 0%, #0d2a5a 100%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,181,173,0.15); border: 1px solid rgba(0,181,173,0.35);
  color: #7AF4F0; padding: 5px 14px; border-radius: 100px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 1.25rem;
}
.page-eyebrow span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: white; line-height: 1.15; margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--teal); font-style: normal; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 580px; line-height: 1.75; }

/* Pill badges */
.piles-badges { display: flex; gap: 12px; margin-top: 1.5rem; flex-wrap: wrap; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,181,173,0.15); border: 1px solid rgba(0,181,173,0.3);
  color: #7AF4F0; padding: 7px 14px; border-radius: 100px; font-size: 12.5px; font-weight: 500;
}
.pill-badge svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

/* ============================================================
   INNER — WHAT IS SECTION
   ============================================================ */
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.what-is-visual { position: relative; }
.what-is-img { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.what-is-img img { width: 100%; display: block; max-height: 420px; object-fit: cover; object-position: center top; }
.what-is-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); border: 2px solid var(--teal);
  border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-lg);
}

/* ============================================================
   INNER — QUICK FACTS SIDEBAR
   ============================================================ */
.piles-intro-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.piles-quick-facts {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 1.75rem; position: sticky; top: 90px;
}
.piles-quick-facts h3 {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px;
}
.fact-row { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.fact-row:last-child { border-bottom: none; }
.fact-icon { font-size: 18px; flex-shrink: 0; }
.fact-row strong { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.fact-row span   { font-size: 12.5px; color: var(--gray-600); line-height: 1.5; }
.consult-cta-box { background: var(--teal); border-radius: 12px; padding: 1.25rem 1.5rem; margin-top: 1.25rem; text-align: center; }
.consult-cta-box p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 0.75rem; }
.consult-cta-box a {
  background: white; color: var(--teal); padding: 10px 22px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; text-decoration: none; display: inline-block; transition: transform 0.15s;
}
.consult-cta-box a:hover { transform: translateY(-1px); }

/* ============================================================
   INNER — GRADE TABS (piles)
   ============================================================ */
.grades-section { background: var(--gray-50); }
.grades-tabs { display: flex; gap: 8px; margin-bottom: 2rem; flex-wrap: wrap; }
.grade-tab {
  padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--gray-200);
  background: white; color: var(--gray-600); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.grade-tab:hover,
.grade-tab.active { background: var(--teal); border-color: var(--teal); color: white; }
.grade-content { display: none; }
.grade-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.grade-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem;
}
.grade-1 { background: #DCFCE7; color: #166534; }
.grade-2 { background: #FEF9C3; color: #854D0E; }
.grade-3 { background: #FED7AA; color: #9A3412; }
.grade-4 { background: #FEE2E2; color: #991B1B; }
.grade-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 0.75rem; }
.grade-info p   { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.tx-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tx-list li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13.5px; color: var(--gray-700); padding: 10px 12px;
  background: white; border-radius: 8px; border: 1px solid var(--gray-200);
}
.tx-list li::before { content: '\2713'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.grade-visual {
  background: white; border-radius: 16px; border: 1px solid var(--gray-200);
  padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  min-height: 300px; justify-content: center;
}
.severity-bar  { width: 100%; height: 10px; background: var(--gray-200); border-radius: 100px; overflow: hidden; margin-top: 0.5rem; }
.severity-fill { height: 100%; border-radius: 100px; transition: width 0.5s ease; }
.sev-1 { width: 20%;  background: #22C55E; }
.sev-2 { width: 45%;  background: #EAB308; }
.sev-3 { width: 70%;  background: #F97316; }
.sev-4 { width: 100%; background: #EF4444; }
.grade-visual-title { font-size: 14px; color: var(--gray-400); text-align: center; }
.grade-emoji { font-size: 64px; }

/* ============================================================
   INNER — LASER SECTION
   ============================================================ */
.laser-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a5a 100%); color: white;
}
.laser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.laser-benefits { display: flex; flex-direction: column; gap: 14px; margin-top: 1.5rem; }
.laser-benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1rem 1.25rem;
}
.lb-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(0,181,173,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;
}
.lb-text strong { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 3px; }
.lb-text span   { font-size: 13px; color: rgba(255,255,255,0.55); }
.laser-section .section-title   { color: white; }
.laser-section .section-eyebrow { color: #7AF4F0; }
.laser-cta-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2.5rem;
}
.laser-cta-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 0.5rem; }
.laser-cta-card p  { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 2rem; line-height: 1.7; }
.usp-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.usp-chip {
  padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 500;
  background: rgba(0,181,173,0.15); color: #7AF4F0; border: 1px solid rgba(0,181,173,0.3);
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 1rem;
}
.team-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 16px; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s; position: relative;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, #EEF8F8 100%);
  display: flex; align-items: center; gap: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
  color: white; flex-shrink: 0; border: 3px solid white;
  box-shadow: 0 4px 16px rgba(0,181,173,0.3);
}
.team-avatar.gold-bg   { background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%); box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
.team-avatar.navy-bg   { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); box-shadow: 0 4px 16px rgba(10,31,68,0.3); }
.team-avatar.purple-bg { background: linear-gradient(135deg, var(--purple) 0%, #5b21b6 100%); box-shadow: 0 4px 16px rgba(124,58,237,0.3); }
.team-meta {}
.team-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 3px; }
.team-role-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--teal-light); color: var(--teal-dark);
}
.team-role-badge.gold   { background: #FEF3C7; color: #92400E; }
.team-role-badge.navy   { background: #DBEAFE; color: #1E40AF; }
.team-role-badge.purple { background: var(--purple-light); color: var(--purple); }
.team-card-body { padding: 1.5rem 2rem; }
.team-title-full { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.team-org  { font-size: 12px; color: var(--teal); font-weight: 500; margin-bottom: 1rem; }
.team-pillars { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem; }
.pillar-tag {
  padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 500;
  background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200);
}
.team-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }
.team-card-footer { padding: 1rem 2rem 1.5rem; display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s; text-decoration: none;
}
.social-btn:hover { background: var(--teal-light); border-color: var(--teal); }
.social-btn svg { width: 15px; height: 15px; stroke: var(--gray-600); fill: none; stroke-width: 2; }
.social-btn:hover svg { stroke: var(--teal); }
.team-cta-strip {
  background: var(--navy); border-radius: 16px; padding: 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.team-cta-strip h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 0.5rem; }
.team-cta-strip p  { font-size: 14px; color: rgba(255,255,255,0.6); }
.btn-teal-solid {
  background: var(--teal); color: white; padding: 12px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: background 0.2s; display: inline-block;
}
.btn-teal-solid:hover { background: var(--teal-dark); }
.values-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--gray-200); border-radius: 12px; overflow: hidden;
  margin-top: 4rem; border: 1px solid var(--gray-200);
}
.value-block { background: white; padding: 2rem 1.75rem; }
.value-icon { font-size: 28px; margin-bottom: 0.75rem; }
.value-block h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.value-block p  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual  { position: relative; }
.about-visual-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px; padding: 2.5rem; color: white;
}
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.5rem; }
.about-stat-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1.25rem;
}
.about-stat-box .num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--teal); }
.about-stat-box .lbl { font-size: 11.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; margin-top: 4px; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: 12px; padding: 1rem 1.25rem; box-shadow: var(--shadow-md);
}
.about-badge-float .b-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: white; }
.about-badge-float .b-lbl { font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 500; }
.about-text-col .section-title { margin-bottom: 1.25rem; }
.about-text-col p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 1.25rem; }
.about-highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 1.75rem; }
.about-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); }
.hi-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.hi-check svg { width: 13px; height: 13px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--teal), var(--navy)); border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); border: 3px solid white; box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year { font-size: 11.5px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 4px; }
.timeline-item h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.timeline-item p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.mv-card {
  border-radius: 16px; padding: 2rem; border: 1px solid var(--gray-200);
  background: white; transition: box-shadow 0.25s, transform 0.2s;
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mv-card.teal-card { background: var(--teal); border-color: var(--teal); }
.mv-icon { font-size: 30px; margin-bottom: 1rem; }
.mv-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.mv-card p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }
.mv-card.teal-card h3 { color: white; }
.mv-card.teal-card p  { color: rgba(255,255,255,0.8); }
.cert-strip {
  background: var(--gray-50); border-radius: 16px; padding: 2rem 2.5rem;
  border: 1px solid var(--gray-200);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem; align-items: center; margin-top: 3rem;
}
.cert-item  { text-align: center; }
.cert-icon  { font-size: 32px; margin-bottom: 0.5rem; }
.cert-name  { font-size: 12.5px; font-weight: 600; color: var(--navy); }
.cert-sub   { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.5rem 1.75rem; display: flex; gap: 1.25rem; align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.info-card-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
}
.info-card-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.info-card-icon.gold-icon { background: #FEF3C7; }
.info-card-icon.gold-icon svg { stroke: #D97706; }
.info-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-card span   { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; display: block; }
.info-card a      { color: var(--teal); text-decoration: none; font-weight: 500; }
.map-placeholder {
  background: linear-gradient(135deg, #EEF4FF 0%, var(--teal-light) 100%);
  border: 2px dashed var(--gray-200); border-radius: 14px;
  padding: 2.5rem; text-align: center; margin-top: 1.5rem;
}
.map-placeholder .map-pin { font-size: 36px; margin-bottom: 0.75rem; }
.map-placeholder p { font-size: 13.5px; color: var(--gray-600); }
.map-placeholder a { color: var(--teal); font-weight: 600; text-decoration: none; font-size: 14px; }
.contact-form-wrap { background: var(--navy); border-radius: 20px; padding: 2.5rem; }
.form-title { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 0.5rem; }
.form-sub   { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; }
.cform  { display: flex; flex-direction: column; gap: 14px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }
.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px; padding: 11px 14px; color: white; font-size: 14px;
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(255,255,255,0.28); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--teal); background: rgba(255,255,255,0.10); }
.fg select option { background: var(--navy); color: white; }
.fg textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  background: var(--teal); color: white; border: none;
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
}
.submit-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.form-note { font-size: 11.5px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 4px; }
.opd-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.opd-table th { text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); padding: 8px 0; border-bottom: 1px solid var(--gray-200); }
.opd-table td { padding: 10px 0; font-size: 13.5px; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.opd-table tr:last-child td { border-bottom: none; }
.opd-badge { background: var(--teal-light); color: var(--teal-dark); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.opd-badge.closed { background: #FEE2E2; color: #DC2626; }

/* ============================================================
   SHARED BUTTON UTILITY
   ============================================================ */
.btn-teal {
  background: var(--teal); color: white; padding: 12px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none; display: inline-block;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .nav-phone { display: none; }
  .nav-cta   { display: none; }
}

@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero       { min-height: auto; padding: 3rem 0; }
  .hero-card  { display: none; }
  .why-grid         { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-mission    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .piles-intro-grid  { grid-template-columns: 1fr; }
  .laser-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .grade-content.active { grid-template-columns: 1fr; }
  .what-is-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .mv-grid           { grid-template-columns: 1fr 1fr; }
  .process-steps     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .piles-quick-facts { position: static; }
  .about-badge-float { display: none; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: 1 / -1; }
  .top-bar-left      { gap: 1rem; }
}

@media (max-width: 600px) {
  section            { padding: 3rem 1.25rem; }
  section.inner      { padding: 3rem 1.25rem; }
  .hero-inner        { padding: 2.5rem 1.25rem; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand      { grid-column: 1 / -1; }
  .form-row          { grid-template-columns: 1fr; }
  .form-row2         { grid-template-columns: 1fr; }
  .hero-actions      { flex-direction: column; }
  .hero-stats        { gap: 1rem; }
  .header-logo       { height: 42px !important; width: auto; object-fit: contain; }
  .why-numbers       { grid-template-columns: 1fr 1fr; }
  .process-steps     { grid-template-columns: 1fr; }
  .mv-grid           { grid-template-columns: 1fr; }
  .trust-item        { padding: 0.5rem 0.75rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item:last-child { border-bottom: none; }
  .top-bar           { display: none; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .hero h1           { font-size: 2rem; }
  .mega-dropdown     { min-width: unset; } /* never shows on mobile anyway */
  .grade-content.active { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================
   RIGHT SIDEBAR FIX
========================== */

.sidebar{
    position: sticky;
    top: 100px;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Cards */
.rating-card,
.info-card{
    width:100%;
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Rating Card */
.rating-card{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:18px;
    align-items:start;
    text-align:left;
}

.rating-score{
    font-size:64px;
    font-weight:800;
    line-height:1;
    color:#0f172a;
}

.rating-stars{
    justify-content:flex-start;
    margin:6px 0;
}

.rating-label{
    font-size:14px;
    line-height:1.5;
    color:#64748b;
}

.rating-breakdown{
    grid-column:1/-1;
    margin-top:15px;
}

/* Rating rows */
.rb-row{
    display:grid;
    grid-template-columns:90px 1fr 35px;
    gap:10px;
    align-items:center;
}

.rb-label{
    text-align:left;
    width:auto;
    font-weight:600;
}

.rb-pct{
    text-align:right;
}

/* Contact Card */
.info-card h4{
    font-size:20px;
    margin-bottom:20px;
}

.info-row{
    display:grid;
    grid-template-columns:22px 1fr;
    gap:12px;
    margin-bottom:18px;
}

.info-row .key{
    display:block;
    font-size:13px;
    color:#0d9488;
    margin-bottom:3px;
}

.info-row .val{
    line-height:1.6;
    color:#334155;
}

/* WhatsApp Button */
.wa-btn{
    justify-content:center;
    font-size:16px;
    font-weight:700;
    padding:16px;
    border-radius:12px;
    position:relative;
    overflow:hidden;
}

.wa-btn:hover{
    transform:translateY(-3px);
}

/* Desktop */
@media(min-width:992px){
    .sidebar{
        min-width:340px;
    }
}

/* Mobile */
@media(max-width:991px){

    .sidebar{
        position:static;
        top:auto;
    }

    .rating-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .rating-stars{
        justify-content:center;
    }

    .rb-row{
        grid-template-columns:70px 1fr 30px;
    }
}
