@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* ── DEEP TEAL (primary) ── */
  --blue-950: #0d2828;
  --blue-900: #1F4F4F;   /* deep teal — nav, headers */
  --blue-800: #1a4545;
  --blue-600: #1F4F4F;   /* primary buttons */
  --blue-500: #2d5e5e;
  --blue-400: #6FAF9F;   /* sage green — accents, hover */
  --blue-100: #c8e4de;
  --blue-50:  #eaf4f1;   /* very light sage — icon badge bg */

  /* ── MUTED GOLD (logo accent only) ── */
  --teal-600: #a07848;
  --teal-500: #b89058;
  --teal-400: #C8A96A;   /* muted gold */
  --teal-50:  #f5ede0;

  /* ── LOTUS GRADIENT ── */
  --lotus-start:    #e8709a;
  --lotus-mid:      #c858b0;
  --lotus-end:      #8848c0;
  --lotus-gradient: linear-gradient(135deg, #e8709a 0%, #c858b0 50%, #8848c0 100%);

  /* ── NEUTRALS ── */
  --slate-900: #1a1a1a;
  --slate-700: #2B2B2B;   /* charcoal — body text */
  --slate-500: #5a5a5a;   /* muted text */
  --slate-400: #888888;
  --slate-200: #D9DDDB;   /* soft gray — dividers */
  --slate-100: #e8ecea;
  --slate-50:  #f0f2f0;

  /* ── BACKGROUNDS ── */
  --bg:        #F8F9F7;   /* warm white */
  --bg-card:   #ffffff;   /* pure white cards */
  --bg-section:#EEF1EF;   /* light sage gray — alternate sections */
  --bg-deep:   #1F4F4F;   /* deep teal — dark panels */
  --bg-gold:   #f5ede0;   /* warm cream */

  /* ── TERTIARY ── */
  --green-500: #6FAF9F;   /* sage green */
  --green-50:  #eaf4f1;

  --white: #ffffff;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(31,79,79,0.08), 0 1px 2px rgba(31,79,79,0.04);
  --shadow:    0 4px 16px rgba(31,79,79,0.08), 0 2px 6px rgba(31,79,79,0.04);
  --shadow-lg: 0 12px 40px rgba(31,79,79,0.10), 0 4px 12px rgba(31,79,79,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-700);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 1.05rem;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
  transition: opacity 0.2s;
}

.nav-logo:hover img {
  opacity: 0.88;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--blue-900);
  background: var(--bg-section);
}

.nav-links a.active {
  color: var(--blue-900);
  background: var(--bg-section);
  font-weight: 600;
}

/* ── NAV DROPDOWN ── */
.nav-links li.has-dropdown {
  position: relative;
}

.nav-links li.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links li.has-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s, color 0.2s, opacity 0.2s;
}

.nav-links li.has-dropdown:hover > a {
  color: var(--teal-400) !important;
  background: rgba(200, 169, 106, 0.1) !important;
}

.nav-links li.has-dropdown:hover > a::after {
  transform: rotate(180deg);
  color: var(--teal-400);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--blue-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
  list-style: none;
}

.nav-links li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  background: transparent;
}

.nav-dropdown li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Service dropdown — per-page accent colors */
.nav-dropdown li a[href="counseling.html"] {
  border-left: 3px solid #7c3aed;
}
.nav-dropdown li a[href="counseling.html"]:hover {
  background: rgba(124,58,237,0.18);
  border-left-color: #a78bfa;
  color: #a78bfa;
}

.nav-dropdown li a[href="evaluations.html"] {
  border-left: 3px solid #0d9488;
}
.nav-dropdown li a[href="evaluations.html"]:hover {
  background: rgba(13,148,136,0.18);
  border-left-color: #5eead4;
  color: #5eead4;
}

.nav-dropdown li a[href="clinical-testing.html"] {
  border-left: 3px solid #2a52a0;
}
.nav-dropdown li a[href="clinical-testing.html"]:hover {
  background: rgba(42,82,160,0.25);
  border-left-color: #93c5fd;
  color: #93c5fd;
}

.nav-dropdown .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.35rem 0.5rem;
}

/* ── MEGA MENU ── */
.has-megamenu { position: static !important; }

.nav-megamenu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border-top: 2px solid var(--teal-400);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 8px 32px rgba(31,79,79,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 199;
}

.has-megamenu:hover .nav-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.megamenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.megamenu-header-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--blue-900);
  display: block;
}

.megamenu-header-text span {
  font-size: 0.78rem;
  color: var(--slate-500);
}

.megamenu-view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-600);
  background: var(--bg-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(160,120,72,0.2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.megamenu-view-all:hover {
  background: var(--teal-400);
  color: var(--white);
}

.megamenu-body {
  display: flex;
  gap: 0;
  padding: 1.5rem 0;
}

.megamenu-col {
  flex: 1;
  padding: 0 1.5rem;
}

.megamenu-col:first-child { padding-left: 0; }

.megamenu-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-500);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.megamenu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 0.2rem;
}

.megamenu-item:hover { background: var(--bg-section); }

.megamenu-item-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.megamenu-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.3;
}

.megamenu-item-text span {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.4;
}

.megamenu-item-sm {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: background 0.15s, color 0.15s;
  margin-bottom: 0.1rem;
}

.megamenu-item-sm:hover {
  background: var(--bg-section);
  color: var(--blue-900);
}

.megamenu-sm-icon {
  width: 26px;
  height: 26px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.megamenu-vdivider {
  width: 1px;
  background: var(--slate-200);
  margin: 0;
  flex-shrink: 0;
}

.megamenu-col-featured {
  flex: 0 0 220px;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.megamenu-featured-card {
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-decoration: none;
  display: block;
  transition: background 0.15s;
  flex: 1;
}

.megamenu-featured-card:hover { background: var(--blue-800); }

.megamenu-featured-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.megamenu-featured-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.megamenu-featured-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.megamenu-featured-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-900);
  background: var(--teal-400);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.megamenu-featured-card:hover .megamenu-featured-cta {
  background: var(--teal-500);
}

.megamenu-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--green-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--blue-900);
  font-weight: 500;
}

.megamenu-trust-badge span:first-child { font-size: 0.9rem; }

.megamenu-sub-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding: 0.55rem 0.6rem 0.2rem;
  margin-top: 0.2rem;
}

.megamenu-item-sm.coming-soon {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.megamenu-item-sm.coming-soon .megamenu-sm-icon {
  background: var(--slate-100);
}

.megamenu-soon-badge {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--slate-100);
  color: var(--slate-400);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--blue-400) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
}

.nav-cta:hover {
  background: var(--blue-600) !important;
}

.nav-portal {
  margin-left: 0.5rem;
  background: transparent !important;
  color: var(--blue-400) !important;
  padding: 0.5rem 1.1rem !important;
  border: 1.5px solid var(--blue-400) !important;
  border-radius: 6px;
}

.nav-portal:hover {
  background: var(--blue-400) !important;
  color: var(--white) !important;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--blue-600) 100%);
  color: var(--white);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--teal-400); /* gold */
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
  display: block;
}

.heading-lg {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--blue-900);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.heading-lg em {
  font-style: italic;
  color: var(--teal-500); /* gold */
}

.lead {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.8;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(31,79,79,0.2), 0 4px 14px rgba(31,79,79,0.12);
}

.btn-primary:hover {
  background: var(--blue-400);
  box-shadow: 0 2px 6px rgba(111,175,159,0.3), 0 6px 20px rgba(111,175,159,0.18);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.95);
}

.btn-white {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
  transform: translateY(-3px);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  background: var(--blue-50);
}

.card-icon-wrap.teal { background: var(--teal-50); }
.card-icon-wrap.green { background: var(--green-50); }

/* ── BADGE / TAG ── */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
}

.tag-blue  { background: var(--blue-50);  color: var(--blue-600);  }
.tag-teal  { background: var(--teal-50);  color: var(--teal-600);  }
.tag-green { background: var(--green-50); color: var(--green-500); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-600) 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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");
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--teal-400); /* gold */
}

.cta-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  background: var(--slate-900);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 240px;
}

.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-nav-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

/* ── SOCIAL ICONS ── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 2rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.trust-item .t-icon {
  color: var(--blue-400);
  font-size: 1rem;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--slate-100);
  margin: 0;
}

/* ── SECTION ── */
.section {
  padding: 5.5rem 2rem;
}

.section-sm {
  padding: 4rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
}

/* ── HERO WATERMARK ── */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  filter: grayscale(30%);
}

/* ── SECTION LOTUS DIVIDER ── */
.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.25rem 0;
}

.lotus-divider::before,
.lotus-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--slate-200);
}

.lotus-divider img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  opacity: 0.55;
}

/* ── FOOTER LOGO ── */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-logo-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.footer-logo-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Mobile styles are in mobile.css */
