/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Core Clinical Color Palette — Blue-Green-White */
  --teal: #0e8c99;
  --teal-dark: #0a6875;
  --teal-deeper: #064e5a;
  --teal-light: #e0f4f7;
  --teal-mid: #a8dde5;
  --teal-accent: #17c3d4;
  --blue: #1565c0;
  --blue-soft: #1e88e5;
  --blue-light: #e3f2fd;
  --blue-mid: #90caf9;
  --gold: #d4a843;
  --gold-hover: #e3b84f;
  --gold-light: #fdf6e3;
  --gold-glow: rgba(212, 168, 67, 0.3);
  --charcoal: #0d2b38;
  --slate: #2e5868;
  --slate-light: #5a8494;
  --mist: #f0f9fc;
  --mist-2: #e8f6fa;
  --white: #ffffff;
  --border: #c8e9ef;
  --border-soft: #dff0f4;

  /* Premium Utility Animations */
  --shine-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );

  /* Clinical Psychology BG — sophisticated blue-green-white mesh composition */
  --body-bg: fixed linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  --mesh-1: radial-gradient(at 0% 0%, hsla(187, 85%, 92%, 1) 0, transparent 50%);
  --mesh-2: radial-gradient(at 50% 0%, hsla(210, 85%, 94%, 1) 0, transparent 50%);
  --mesh-3: radial-gradient(at 100% 0%, hsla(160, 85%, 92%, 1) 0, transparent 50%);
  --mesh-4: radial-gradient(at 0% 50%, hsla(190, 85%, 95%, 1) 0, transparent 50%);
  --mesh-5: radial-gradient(at 100% 50%, hsla(200, 85%, 94%, 1) 0, transparent 50%);
  --mesh-6: radial-gradient(at 50% 100%, hsla(180, 85%, 96%, 1) 0, transparent 50%);

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(14, 140, 153, 0.07);
  --sh-sm: 0 2px 12px rgba(14, 140, 153, 0.10);
  --sh-md: 0 6px 24px rgba(14, 140, 153, 0.15);
  --sh-lg: 0 16px 48px rgba(14, 140, 153, 0.18);
  
  /* Typography */
  --f-head: 'DM Serif Display', Georgia, serif;
  --f-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  
  /* Radius & Spacing — Scaled to ~110% of original feel */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 40px;
  --nav-h: 72px;
  --sec-pad: clamp(60px, 9vw, 100px);
  --max-w: 1400px;

  /* Liquid Morphism & Premium Effects */
  --liquid-bg: rgba(255, 255, 255, 0.82);
  --liquid-border: rgba(14, 140, 153, 0.1);
  --liquid-blur: blur(28px);
  --sh-premium: 0 15px 45px -10px rgba(14, 140, 153, 0.12), 0 5px 15px -5px rgba(0, 0, 0, 0.04);
  --sh-hover: 0 35px 70px -15px rgba(14, 140, 153, 0.22);
}

/* Fluid Mesh Animation */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(at 0% 0%, hsla(187, 85%, 92%, 0.5) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(164, 85%, 92%, 0.5) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(187, 85%, 92%, 0.5) 0, transparent 50%);
  z-index: -1;
  opacity: 0.6;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  width: 100%;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
body {
  font-family: var(--f-body);
  color: var(--charcoal);
  background: var(--body-bg);
  background-image: var(--mesh-1), var(--mesh-2), var(--mesh-3), var(--mesh-4), var(--mesh-5), var(--mesh-6);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
  opacity: 0.4;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   UTILITIES & ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px); /* Slightly tighter horizontal padding */
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Buttons */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-gold:hover {
  background: #ffcc33;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.topbar {
  background: rgba(14, 140, 153, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.btn-teal {
  background: var(--teal);
  color: white;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(14, 140, 153, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-teal:hover {
  background: var(--teal-accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(23, 195, 212, 0.4);
}

/* Section Headers */
section {
  padding: var(--sec-pad) 0;
}
.section-header {
  margin-bottom: 40px; /* Reduced from 52px */
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem; /* Slightly smaller label */
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  display: block;
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5vw, 2.7rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

/* Topbar */
.topbar {
  background: var(--teal-deeper);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}
.topbar-contacts a:hover { color: #fff; }
.topbar-contacts svg {
  width: 13px;
  height: 13px;
  fill: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.topbar-hours {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
}
.topbar-hours svg {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, 0.4);
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.74rem;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.topbar-cta:hover {
  background: var(--gold-hover);
  transform: scale(1.02);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border-bottom: 1px solid var(--border-soft);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--sh-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  display: block;
  padding: 7px 11px;
  border-radius: var(--r-sm);
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover {
  color: var(--teal);
  background: var(--teal-light);
}
.has-drop { position: relative; }
.has-drop > a::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
  opacity: 0.6;
  transition: transform 0.2s;
}
.has-drop:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 230px;
  padding: 8px 0;
  z-index: 999;
  animation: dropIn 0.18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.has-drop:hover .dropdown { display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.835rem;
  color: var(--charcoal);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.dropdown a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-mid);
  flex-shrink: 0;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: white;
  font-weight: 600;
  font-size: 0.845rem;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(14, 140, 153, 0.2);
}
.nav-btn:hover {
  background: var(--teal-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 195, 212, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 850;
  padding: calc(var(--nav-h) + 20px) 28px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mm-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding: 16px 0 8px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 13px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s, padding-left 0.2s;
  gap: 10px;
}
.mobile-menu a:hover {
  color: var(--teal);
  padding-left: 4px;
}
.mm-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  background: var(--teal);
  color: white !important;
  font-weight: 700;
  padding: 15px !important;
  border-radius: var(--r-md) !important;
  border: none !important;
  font-size: 1rem !important;
  box-shadow: var(--sh-md);
}
.mm-contact {
  margin-top: 20px;
  padding: 18px;
  background: var(--mist);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.mm-contact a {
  font-size: 0.88rem;
  color: var(--slate);
  border: none;
  padding: 8px 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h) - 30px);
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, #0b3a44 0%, #115c68 35%, #1a7f8e 70%, #1d9aad 100%);
  padding: 30px 0; /* Tighter padding */
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.055;
  animation: ringPulse 6s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.055; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.08; transform: translateY(-50%) scale(1.03); }
}
.hero-rings circle {
  fill: none;
  stroke: white;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 15px 50px;
}
.hero-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 50px;
  padding: 8px 24px;
  margin-bottom: 24px;
  max-width: 100%;
}
.offer-dot {
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-dot svg {
  width: 13px;
  height: 13px;
  fill: var(--charcoal);
}
.offer-text {
  font-size: clamp(0.65rem, 2.2vw, 0.8rem);
  font-weight: 700;
  color: #f5d88a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 5px 13px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.bp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee8a0;
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: #a8e8f0;
}
.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.4;
  opacity: 1;
}

.hero-para {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-quick-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-qi {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.hero-qi svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.hero-qi strong { color: rgba(255, 255, 255, 0.85); }
.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 58, 68, 0.6) 0%, transparent 60%);
}
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floatUp 4s ease-in-out infinite alternate;
}
@keyframes floatUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.hfc-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.hfc-icon svg { width: 24px; height: 24px; fill: currentColor; }
.hfc-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.1;
}
.hfc-text span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* Trust Strip */
.trust-strip {
  background: var(--mist);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0; /* Reduced from 44px */
}
.trust-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: box-shadow 0.25s, transform 0.25s;
}
.trust-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.tc-icon {
  width: 54px;
  height: 54px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.2s;
}
.trust-card:hover .tc-icon { background: var(--teal); }
.tc-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--teal);
  transition: fill 0.2s;
}
.trust-card:hover .tc-icon svg { fill: white; }
.tc-num {
  font-family: var(--f-head);
  font-size: 2.2rem; /* Reduced from 2.5rem */
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.tc-label {
  font-size: 0.86rem;
  color: var(--slate);
  font-weight: 500;
}

/* Services */
.services { background: var(--mist-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Reduced from 24px */
}
.svc-card {
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border: 1px solid var(--liquid-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: var(--sh-premium);
}
.svc-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--sh-hover);
  border-color: var(--teal-mid);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #1d9aad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 46px;
  height: 46px;
  background: var(--teal-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s;
}
.svc-card:hover .svc-icon { background: var(--teal); }
.svc-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--teal);
  transition: fill 0.25s;
}
.svc-card:hover .svc-icon svg { fill: white; }
.svc-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.svc-desc {
  font-size: 0.79rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Why Choose Us */
.why-us { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; /* Reduced from 64px */
  align-items: center;
}
.why-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--mist);
  padding: 16px;
  border-radius: var(--r-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-list li:hover {
  transform: translateX(5px);
  box-shadow: var(--sh-sm);
}
.wl-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--teal);
}
.wl-content h4 {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.wl-content p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

/* Products/Pricing */
.products { background: var(--mist); }
.product-showcase {
  margin-bottom: 60px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.product-showcase img {
  width: 100%;
  height: auto;
  display: block;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 26px 30px;
  position: relative;
  background: white;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.price-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--teal-light) 0%, white 55%);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.price-range {
  font-family: var(--f-head);
  font-size: 1.65rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 5px;
}
.price-note { font-size: 0.77rem; color: var(--slate-light); margin-bottom: 22px; }
.price-divider { border: none; border-top: 1px solid var(--border-soft); margin-bottom: 18px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: var(--charcoal); }
.pf-check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pf-check svg { width: 9px; height: 9px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Testimonials */
.testimonials { 
  background: linear-gradient(135deg, var(--mist) 0%, #e2f1f8 100%);
  position: relative;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border: 1px solid var(--liquid-border);
  padding: 40px 32px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-premium);
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  height: 100%;
}
.test-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--sh-hover);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--teal-mid);
}
.test-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.test-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}
.test-stars {
  display: flex;
  gap: 2px;
}
.test-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}
.test-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
  font-style: italic;
}
.test-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0 0 24px 0;
}
.test-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}
.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--sh-sm);
}
.test-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.test-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.test-role {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Brands */
.brands { background: var(--mist-2); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* Reduced from 30px */
}
.brand-box {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}
.brand-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(14, 140, 153, 0.12);
  border-color: var(--teal-mid);
  background: rgba(255, 255, 255, 0.8);
}
.brand-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fdf6e3;
  color: #d97706;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.brand-rating svg { width: 14px; height: 14px; fill: currentColor; }
.brand-logo-wrap {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: white;
  border-radius: var(--r-md);
  padding: 10px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}
.brand-logo-wrap img {
  max-width: 140px;
  max-height: 40px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-box:hover .brand-logo-wrap img {
  transform: scale(1.08);
}
.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.brand-country {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.brand-info {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
}

/* Brand Ticker */
.brand-ticker {
  background: white;
  padding: 22px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.brand-ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
  will-change: transform;
}
.brand-ticker-inner:hover {
  animation-play-state: paused;
}
.ticker-item {
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}
.ticker-item img {
  height: 100%;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}
.ticker-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}


/* Blog */
.blog { background: white; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: box-shadow 0.3s, transform 0.3s;
  background: white;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 20px;
  flex: 1;
}
.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 8px; }

/* Locations */
.locations { background: var(--mist); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.loc-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 22px 20px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.loc-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: var(--teal-mid);
}
.loc-region {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 20px;
  padding: 3px 10px;
  width: fit-content;
}
.loc-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--charcoal); }
.loc-addr {
  font-size: 0.79rem;
  color: var(--slate);
  line-height: 1.6;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.loc-addr svg { width: 13px; height: 13px; fill: var(--slate-light); flex-shrink: 0; margin-top: 2px; }
.loc-actions { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 20px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.loc-btn:hover { background: var(--teal); color: white; }
.loc-btn-wa { border-color: #25d366; color: #128c4f; }
.loc-btn-wa:hover { background: #25d366; color: white; border-color: #25d366; }

/* FAQ */
.faq { background: white; }
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px; /* Reduced from 64px */
  align-items: start;
}
.faq-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-sidebar-card {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  color: white;
}
.faq-sidebar-card h3 { font-family: var(--f-head); font-size: 1.4rem; margin-bottom: 10px; }
.faq-sidebar-card p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 22px; line-height: 1.65; }
.faq-sidebar-card .btn-gold { width: 100%; justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open { 
  border-color: var(--teal-mid); 
  background: white; 
  box-shadow: var(--sh-sm);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item.open .faq-btn { color: var(--teal-dark); }
.faq-chev {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.faq-chev svg { width: 12px; height: 12px; stroke: var(--slate); fill: none; stroke-width: 2.2; transition: stroke 0.2s; }
.faq-item.open .faq-chev { background: var(--teal); transform: rotate(180deg); }
.faq-item.open .faq-chev svg { stroke: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* CTA Band */
.cta-band {
  background: linear-gradient(130deg, #0b3a44 0%, #115c68 40%, #1a7f8e 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-family: var(--f-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.7); font-size: 1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 12px 22px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.cta-phone-link:hover { border-color: white; background: rgba(255, 255, 255, 0.08); }

/* Footer */
footer { background: var(--charcoal); color: rgba(255, 255, 255, 0.65); padding: 68px 24px 28px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px; /* Reduced from 48px */
  margin-bottom: 36px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; margin-bottom: 20px; color: rgba(255, 255, 255, 0.55); }
.footer-social { display: flex; gap: 9px; }
.soc-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.soc-btn:hover { background: var(--teal); transform: translateY(-2px); }
.soc-btn svg { width: 16px; height: 16px; fill: rgba(255, 255, 255, 0.7); transition: fill 0.2s; }
.soc-btn:hover svg { fill: white; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.58); transition: color 0.2s, padding-left 0.15s; display: inline-block; }
.footer-col ul a:hover { color: rgba(255, 255, 255, 0.9); padding-left: 3px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 13px; }
.fci { display: flex; align-items: flex-start; gap: 10px; }
.fci-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-icon svg { width: 13px; height: 13px; fill: rgba(255, 255, 255, 0.5); }
.fci-body { display: flex; flex-direction: column; gap: 1px; }
.fci-label { font-size: 0.67rem; color: rgba(255, 255, 255, 0.35); letter-spacing: 0.06em; text-transform: uppercase; }
.fci-val { font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); }
.fci-val a { color: inherit; transition: color 0.2s; }
.fci-val a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255, 255, 255, 0.45); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255, 255, 255, 0.8); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { 
  transform: scale(1.12) rotate(8deg); 
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); 
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float svg { width: 27px; height: 27px; fill: white; }

/* ==========================================================================
   UNIFIED CARDS & MODAL
   ========================================================================== */
.unified-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  height: 100%;
}
.unified-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--teal-mid);
}
.uc-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--mist);
}
.uc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.uc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 15px 0;
}
.uc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.uc-sub {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.uc-bs {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
  flex: 1;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 58, 68, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border: 1px solid var(--liquid-border);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: var(--r-xl);
  position: relative;
  overflow-y: auto;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.modal-overlay[aria-hidden="false"] .modal-container {
  transform: scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--mist);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: #e2e8f0; }
.modal-close svg { width: 18px; height: 18px; fill: var(--slate); }
.modal-content {
  padding: 32px;
}
.modal-content h3 { font-size: 1.4rem; color: var(--charcoal); margin-bottom: 8px; }
.modal-content .modal-sub { font-size: 0.9rem; color: var(--teal); font-weight: 600; margin-bottom: 16px; }
.modal-content p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }
.modal-content ul { padding-left: 20px; margin-bottom: 16px; font-size: 0.9rem; color: var(--slate); }
.modal-content li { margin-bottom: 8px; }

/* Glass Card Shine Utility */
.svc-card, .price-card-v2, .clinic-card, .test-card {
  position: relative;
  overflow: hidden;
}
.svc-card::before, .price-card-v2::before, .clinic-card::before, .test-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: var(--shine-gradient);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 1;
}
.svc-card:hover::before, .price-card-v2:hover::before, .clinic-card:hover::before, .test-card:hover::before {
  left: 150%;
}

@media (min-width: 1441px) {
  :root { --max-w: 1540px; }
  .hero-inner { max-width: 1600px; gap: 100px; }
  .brands-grid, .pricing-grid, .locations-grid { gap: 40px; }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS — PROFESSIONAL GRADE
   ========================================================================== */

/* ── 1440px: Wide Laptops / Large Screens ── */
@media (max-width: 1440px) {
  .section-inner { max-width: 1200px; }
  .hero-inner { max-width: 1320px; gap: 60px; }
}

/* ── 1200px: Standard Laptops ── */
@media (max-width: 1200px) {
  .section-inner { max-width: 100%; padding: 0 32px; }
  .pricing-grid { gap: 24px; }
  .locations-grid { gap: 24px; }
  .test-grid { gap: 24px; }
  /* Trust strip: keep 3 cols but tighter */
  .trust-strip .section-inner { gap: 16px; }
}

/* ── 1100px: Small Laptops / Large Tablets Landscape ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Testimonials: 2 cols on smaller laptops */
  .test-grid { grid-template-columns: 1fr 1fr; }
  /* Trust strip: stays 3 cols */
}

/* ── 960px: Tablets Landscape / Narrow Laptops ── */
@media (max-width: 960px) {
  /* Hero: stack vertically */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 48px 24px 36px; }
  .hero-trust-row, .hero-actions, .hero-quick-info { justify-content: center; }
  .hero { min-height: auto; }
  .hero-visual { order: 2; margin-top: 0; padding: 0 !important; }
  .hero-content { order: 1; }
  .hero-rings { right: auto; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; }
  /* FAQ: stack on 960px and below */
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; margin-bottom: 30px; }
  /* Pain: keep 2x2 */
  /* Trust strip: drop to 3 cols but allow wrap at 2 */
  .trust-strip .section-inner { grid-template-columns: repeat(3, 1fr) !important; }
  /* Testimonials: 2 cols */
  .test-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-hero-row { flex-direction: column; padding: 24px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .locations-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ── 768px: Tablets Portrait / Large Phones ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 48px 20px; }
  .topbar-hours { display: none; }
  .topbar-inner { justify-content: center; gap: 12px; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }

  /* Pain grid: 2 cols still works on tablet */
  /* Hmm actually on 768 it's fine as 2x2 */

  /* Trust strip: 2 cols on tablet */
  .trust-strip .section-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  /* Testimonials: 1 col on tablet */
  .test-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; gap: 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 24px; }
  .locations-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* Clinic Modal Mobile */
  .clinic-modal-container {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 92vh;
    width: 95%;
  }
  .clinic-modal-left { padding: 32px 24px; }
  .clinic-modal-right { height: 240px; }
  .cml-actions { flex-direction: column; }
  .cml-btn-primary, .cml-btn-secondary { width: 100%; justify-content: center; }

  /* Consult Form Mobile */
  .consult-box { width: 95%; }
  .consult-header { padding: 36px 24px 24px; }
  .consult-form { padding: 24px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .cf-trust-row { justify-content: center; gap: 16px; }
}

/* ── 600px: Large Phones ── */
@media (max-width: 600px) {
  section { padding: 40px 16px; }

  /* Pain grid: 1 col on phones */
  .pain-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Trust strip: stack to 1 col */
  .trust-strip .section-inner {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .hero-inner { padding: 36px 16px 28px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { max-width: 100%; }
  .pricing-grid, .locations-grid, .blog-grid { max-width: 100%; }

  /* Consult form */
  .consult-header, .consult-form { padding: 28px 20px; }
}

/* ── 480px: Small Phones ── */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  section { padding: 32px 14px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .phi-num { font-size: 2rem; }
  .brand-box { padding: 20px 16px; }
  .test-card { padding: 24px 18px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .topbar-contacts { flex-direction: column; align-items: center; gap: 6px; }
  .topbar-cta { display: none; }
  .consult-box { width: 96%; max-height: 90vh; }
  .consult-header { padding: 28px 16px 18px; }
  .consult-form { padding: 18px 16px; }
  .hero-badge-pill { font-size: 0.78rem; padding: 6px 12px; }
  .btn-gold, .btn-ghost-white { font-size: 0.88rem; padding: 12px 20px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-trust-row { gap: 8px; }
  .hero-mini-cards { display: none; }
  .ticker-item { padding: 0 28px; }
}

/* ==========================================================================
   PRODUCT HERO ROW + PRODUCT CARD V2
   ========================================================================== */
.products { background: transparent; }

.product-hero-row {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 40px 0 48px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-md);
}
.product-hero-img {
  flex: 1.2;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #f8fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-hero-img img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--r-md);
  display: block;
}
.product-hero-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.product-hero-badge svg { width: 16px; height: 16px; fill: var(--teal); }
.product-hero-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.phi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
}
.phi-num {
  font-family: var(--f-head);
  font-size: 2.8rem;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.phi-label {
  font-size: 0.82rem;
  color: var(--slate-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phi-divider { height: 1px; background: var(--border-soft); width: 70%; align-self: center; }

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card-v2 {
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border: 1px solid var(--liquid-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: var(--sh-premium);
  display: flex;
  flex-direction: column;
}
.price-card-v2:hover { 
  transform: translateY(-12px) scale(1.03); 
  box-shadow: var(--sh-hover); 
  border-color: var(--teal-mid);
}
.featured-v2 {
  background: rgba(14, 140, 153, 0.07);
  border-color: var(--teal-mid);
  box-shadow: 0 8px 32px rgba(14, 140, 153, 0.18);
}
.featured-v2:hover { box-shadow: 0 16px 48px rgba(14, 140, 153, 0.24); }
.pcv2-popular-ribbon {
  position: absolute;
  top: 18px;
  right: -28px;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 38px;
  transform: rotate(35deg);
  z-index: 2;
}
.pcv2-img-wrap { 
  position: relative; 
  height: 250px; 
  overflow: hidden; 
  background: #f8fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcv2-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
}
.price-card-v2:hover .pcv2-img-wrap img { transform: scale(1.05); }
.pcv2-tier-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #455a64;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pcv2-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pcv2-price-tag {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 12px;
}
.pcv2-price-tag strong {
  color: var(--teal-dark);
  font-size: 1.15rem;
}

.modal-tech-specs {
  margin-top: 15px;
  background: rgba(14, 140, 153, 0.04);
  padding: 16px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
  text-align: left;
}
.modal-tech-specs strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.9rem;
}
.modal-tech-specs ul {
  margin: 0;
  padding-left: 18px;
}
.modal-tech-specs li {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--slate-dark);
}
.pcv2-title { font-family: var(--f-head); font-size: 1.3rem; color: var(--charcoal); margin-bottom: 10px; line-height: 1.2; }
.pcv2-desc { font-size: 0.87rem; color: var(--slate); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.pcv2-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.pcv2-features span { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--slate); font-weight: 500; }
.pcv2-features svg { width: 15px; height: 15px; fill: var(--teal); flex-shrink: 0; }
.pcv2-cta { font-size: 0.85rem; font-weight: 700; color: var(--teal); cursor: pointer; transition: color 0.2s; }
.price-card-v2:hover .pcv2-cta { color: var(--teal-dark); }

/* ==========================================================================
   CLINIC CARDS
   ========================================================================== */
.locations { background: transparent; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.clinic-card {
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border: 1px solid var(--liquid-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--sh-premium);
}
.clinic-card:hover { 
  transform: translateY(-10px) scale(1.01); 
  box-shadow: var(--sh-hover); 
  border-color: var(--teal-mid); 
}
.cc-img-wrap { position: relative; height: 190px; overflow: hidden; }
.cc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.clinic-card:hover .cc-img-wrap img { transform: scale(1.05); }
.cc-badge { position: absolute; top: 12px; left: 12px; background: var(--teal); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.cc-body { padding: 20px 20px 22px; }
.cc-rating { display: inline-flex; align-items: center; gap: 4px; background: #fdf6e3; color: #d97706; padding: 4px 10px; border-radius: 20px; font-size: 0.82rem; font-weight: 800; margin-bottom: 12px; }
.cc-rating svg { width: 14px; height: 14px; fill: currentColor; }
.cc-title { font-family: var(--f-head); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 3px; }
.cc-region { font-size: 0.72rem; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.cc-addr { font-size: 0.83rem; color: var(--slate); line-height: 1.45; margin-bottom: 14px; }
.cc-cta { font-size: 0.83rem; font-weight: 700; color: var(--teal); cursor: pointer; transition: color 0.2s; }
.clinic-card:hover .cc-cta { color: var(--teal-dark); }

/* ==========================================================================
   CLINIC DETAIL MODAL (2-panel: info left, map right)
   ========================================================================== */
.clinic-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 78, 90, 0.55);
  backdrop-filter: blur(10px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.clinic-modal-overlay[aria-hidden="false"] { opacity: 1; visibility: visible; }
.clinic-modal-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  width: 100%;
  max-width: 860px;
  height: 540px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(6, 78, 90, 0.32);
  position: relative;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
}
.clinic-modal-overlay[aria-hidden="false"] .clinic-modal-container { transform: scale(1) translateY(0); opacity: 1; }
.clinic-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.clinic-modal-close:hover { background: white; }
.clinic-modal-close svg { width: 18px; height: 18px; fill: var(--charcoal); }
.clinic-modal-left {
  background: linear-gradient(160deg, #ffffff 0%, #f0f9fc 100%);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.cml-tag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.cml-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; }
.cml-name { font-family: var(--f-head); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--charcoal); margin-bottom: 4px; line-height: 1.15; }
.cml-region { font-size: 0.82rem; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.cml-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.cml-stars { display: flex; gap: 3px; }
.cml-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
.cml-rating-num { font-size: 1.1rem; font-weight: 800; color: var(--charcoal); }
.cml-rating-count { font-size: 0.76rem; color: var(--slate-light); }
.cml-divider { height: 1px; background: var(--border-soft); margin: 18px 0; }
.cml-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.cml-info-icon { width: 34px; height: 34px; background: var(--teal-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cml-info-icon svg { width: 16px; height: 16px; fill: var(--teal); }
.cml-info-label { font-size: 0.7rem; color: var(--slate-light); margin-bottom: 2px; letter-spacing: 0.05em; text-transform: uppercase; }
.cml-info-val { font-size: 0.87rem; color: var(--charcoal); font-weight: 600; }
.cml-info-val a { color: var(--teal-dark); text-decoration: none; }
.cml-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.cml-btn-primary { display: inline-flex; align-items: center; gap: 7px; background: var(--teal); color: white; padding: 11px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.cml-btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.cml-btn-primary svg { width: 15px; height: 15px; fill: currentColor; }
.cml-btn-secondary { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--teal); border: 1.5px solid var(--teal-mid); padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: background 0.2s, border-color 0.2s; text-decoration: none; }
.cml-btn-secondary:hover { background: var(--teal-light); border-color: var(--teal); }
.cml-btn-secondary svg { width: 15px; height: 15px; fill: currentColor; }
.clinic-modal-right { overflow: hidden; height: 100%; }
.clinic-modal-right iframe { border: 0; display: block; width: 100%; height: 100%; }

/* ==========================================================================
   CONSULTATION FORM MODAL — PRO REDESIGN
   ========================================================================== */
.consult-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 78, 90, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.consult-overlay[aria-hidden="false"] { opacity: 1; visibility: visible; }

.consult-box {
  background: var(--liquid-bg);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border: 1px solid var(--liquid-border);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 680px;
  max-height: 94vh;
  overflow-y: auto;
  padding: 0;
  position: relative;
  box-shadow: 0 40px 100px rgba(6, 78, 90, 0.22);
  transform: scale(0.94) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
  display: flex;
  flex-direction: column;
}
.consult-overlay[aria-hidden="false"] .consult-box { transform: scale(1) translateY(0); opacity: 1; }

.consult-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 20;
}
.consult-close:hover { background: white; transform: rotate(90deg); border-color: var(--teal); }
.consult-close svg { width: 18px; height: 18px; fill: var(--slate); }

.consult-header {
  padding: 32px 36px 24px; /* Reduced from 44/44/30 */
  background: linear-gradient(to bottom, rgba(14, 140, 153, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(14, 140, 153, 0.08);
}
.consult-logo img { height: 42px; width: auto; margin-bottom: 20px; }
.consult-title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.1;
}
.consult-sub { font-size: 0.95rem; color: var(--slate); line-height: 1.6; margin-bottom: 20px; max-width: 500px; }

.consult-quote {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 4px 12px 12px 4px;
  position: relative;
}
.quote-icon {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 24px;
  height: 24px;
  fill: var(--teal-mid);
  opacity: 0.4;
}
.consult-quote em {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--teal-deeper);
  font-weight: 500;
}

.consult-form {
  padding: 28px 36px 36px; /* Reduced from 34/44/44 */
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.cf-field { margin-bottom: 20px; }
.cf-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 8px;
}
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: all 0.25s;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(14, 140, 153, 0.1);
}

.cf-trust-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 32px;
  flex-wrap: wrap;
}
.cf-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--slate-light);
}
.cf-trust-row svg { width: 14px; height: 14px; fill: var(--teal-mid); }

.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(14, 140, 153, 0.3);
}
.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(14, 140, 153, 0.4);
  filter: brightness(1.1);
}
.cf-submit svg { width: 20px; height: 20px; fill: currentColor; }

/* ==========================================================================
   RESPONSIVE GRID CLASSES (Previously Inline)
   ========================================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.conversion-bar {
  background: linear-gradient(135deg, var(--gold) 0%, #ffcc33 100%);
  padding: 32px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 15px 40px rgba(255, 184, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 20px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ========================================================================== */

/* Large Tablets & Small Laptops */
@media (max-width: 1100px) {
  .hero-inner { gap: 40px; padding: 15px 30px; }
  .section-inner { padding: 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Tablets */
@media (max-width: 991px) {
  :root { --sec-pad: 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub, .hero-para { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-quick-info { justify-content: center; }
  .hero-visual { padding: 0; }
  
  .services-grid, .pricing-grid, .brands-grid, .test-grid, .blog-grid, .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid, .why-us-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Devices */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-contacts { justify-content: center; width: 100%; }
  
  .pain-grid, .trust-grid-inner, .why-cards-grid { grid-template-columns: 1fr; }
  
  .services-grid, .pricing-grid, .brands-grid, .test-grid, .blog-grid, .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .conversion-bar { text-align: center; justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand, .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; }
  
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-offer-pill { padding: 6px 16px; flex-direction: column; gap: 4px; border-radius: 12px; }
  .offer-text { white-space: normal; text-align: center; line-height: 1.4; }
  
  .btn-gold, .btn-ghost-white { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
  
  .section-title { font-size: 1.8rem; }
  
  .trust-card { padding: 20px; }
  
  /* FAB Adjustment to avoid overlap with content */
  .wa-float { width: 45px; height: 45px; }
}
