/* ─────────────────────────────────────────────
   Medicus Praxis | Labor — Brand Stylesheet
   Font: Figtree (loaded via <link> in HTML)
   Brand blue: #5993B9 — CMYK 52, 21, 0, 27
   ───────────────────────────────────────────── */

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

:root {
  --teal:       #5993B9;
  --teal-dark:  #3d6e91;
  --navy:       #1D3347;
  --text:       #1A2E3D;
  --muted:      #4E6E87;
  --light-bg:   #EDF2F7;
  --border:     #CCDDE8;
  --white:      #FFFFFF;
  --green:      #4A8C6F;
  --green-light: rgba(74,140,111,0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  opacity: 0;
  background: var(--white);
  border: 1px solid rgba(25,28,33,0.12);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(25,28,33,0.04);
  z-index: 100;
  width: max-content;
  max-width: calc(100vw - 40px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

nav.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 20px;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-cta-btn {
  font-size: 13px;
  padding: 9px 18px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(89,147,185,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-1px);
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(89,147,185,0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  display: inline-block;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 128px 32px 64px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-inner h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 16px;
}

.page-hero-inner p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── HERO ── */
.section-hero {
  padding: 140px 32px 80px;
}

.hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(89,147,185,0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-bullets {
  list-style: none;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-bullets li {
  font-size: 15px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235993B9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-bullets li strong { color: var(--navy); font-weight: 700; }

.hero-image {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  height: 440px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* ── HERO ANIMATIONS ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-animate .hw {
  display: inline-block;
  opacity: 0;
  animation: heroFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-sub-animate, .hero-bullet-1, .hero-bullet-2, .hero-bullet-3, .hero-cta-animate {
  opacity: 0;
  animation: heroFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-sub-animate  { animation-delay: 0.2s; }
.hero-bullet-1     { animation-delay: 0.3s; }
.hero-bullet-2     { animation-delay: 0.4s; }
.hero-bullet-3     { animation-delay: 0.5s; }
.hero-cta-animate  { animation-delay: 0.6s; }

.hero-image-animate {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* ── ABOUT ── */
.section-about {
  padding: 96px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-top: 4px;
  margin-bottom: 32px;
}

.section-about h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-about p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.75;
}

.section-about p strong { color: var(--navy); font-weight: 700; }

/* ── STATS ── */
.section-stats {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

/* ── SUPPLEMENTS ── */
.section-supplements {
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.supp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  max-width: 1400px;
  margin: 0 auto;
}

.supp-visual {
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  min-height: 300px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.supp-botanical {
  width: 75%;
  max-width: 300px;
  height: auto;
  display: block;
}

/* Leaves */
.s-leaf {
  transform-origin: 150px 150px;
}
.s-leaf-1 { animation: leaf-sway 5s ease-in-out infinite; }
.s-leaf-2 { animation: leaf-sway 5s ease-in-out infinite 1.6s; }
.s-leaf-3 { animation: leaf-sway 5s ease-in-out infinite 3.2s; }

@keyframes leaf-sway {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.07); }
}

/* Center seed */
.s-seed {
  transform-origin: 150px 148px;
  animation: seed-pulse 3.5s ease-in-out infinite;
}
@keyframes seed-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* Orbiting particles */
.s-orbit-a { transform-origin: 150px 150px; animation: orbit 7s linear infinite; }
.s-orbit-b { transform-origin: 150px 150px; animation: orbit 11s linear infinite reverse; }
.s-orbit-c { transform-origin: 150px 150px; animation: orbit 9s linear infinite 2s; }

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scattered particles */
.s-p1 { animation: p-float 5s ease-in-out infinite; }
.s-p2 { animation: p-float 7s ease-in-out infinite 1s; }
.s-p3 { animation: p-float 6s ease-in-out infinite 2s; }
.s-p4 { animation: p-float 8s ease-in-out infinite 3s; }
.s-p5 { animation: p-float 6.5s ease-in-out infinite 0.5s; }
.s-p6 { animation: p-float 9s ease-in-out infinite 1.5s; }

@keyframes p-float {
  0%, 100% { transform: translateY(0);   opacity: 0.5; }
  50%       { transform: translateY(-5px); opacity: 1; }
}

.supp-content {
  padding: 52px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supp-label {
  background: var(--green-light) !important;
  color: var(--green) !important;
}

.supp-label .dot {
  background: var(--green) !important;
}

.supp-heading {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 18px 0 22px;
}

.supp-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.supp-desc strong {
  color: var(--navy);
  font-weight: 600;
}

.supp-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  margin: 22px 0;
}

.supp-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.supp-pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.supp-pillar--green {
  color: var(--green);
  font-weight: 600;
}

.supp-pillar--green .supp-pillar-dot {
  background: var(--green);
}

.supp-tagline {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── SERVICES ── */
.section-services {
  padding: 96px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}

.section-services .container {
  text-align: center;
}

.section-services h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-services h2 .highlight {
  color: var(--teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  border-radius: 14px;
  padding: 40px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89,147,185,0.08);
  border-color: rgba(89,147,185,0.25);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card ul li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235993B9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── FAQ ── */
.section-faq {
  padding: 96px 0;
  text-align: center;
}

.section-faq h2 {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 600;
  margin-bottom: 24px;
}

.faq-notice {
  font-size: 15px;
  color: var(--teal);
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto 48px;
  display: block;
  max-width: 560px;
  text-align: center;
  line-height: 1.6;
}

.faq-notice strong { color: var(--teal); font-weight: 600; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-color: rgba(89,147,185,0.30);
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.faq-item.open {
  background: var(--white);
  border-color: rgba(89,147,185,0.40);
  box-shadow: inset 3px 0 0 var(--teal);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 6px 20px 22px 56px;
}

.faq-answer ul {
  margin: 8px 0 8px 16px;
  list-style: disc;
}

.faq-answer ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ── CTA BANNER ── */
.section-cta {
  padding: 32px 32px 80px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 20px;
  padding: 56px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(89,147,185,0.22);
}

.cta-text h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-image {
  width: 280px;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  padding: 0 0 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer-address {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-contact-box {
  background: linear-gradient(150deg, #5993B9 0%, #4478a0 100%);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(89,147,185,0.35), inset 0 0 0 1.5px rgba(255,255,255,0.22);
}

.footer-contact-box a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.footer-contact-box a:last-child { margin-bottom: 0; }
.footer-contact-box a:hover { opacity: 0.85; }

.footer-hours {
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 5px 0;
}

.footer-hours strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  margin-top: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 13px; color: var(--muted); }

.footer-links { display: flex; gap: 24px; align-items: center; }

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
  display: block;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
}

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal        { transform: translateY(32px); }
.reveal-left   { transform: translateX(-32px); }
.reveal-right  { transform: translateX(32px); }
.reveal-scale  { transform: scale(0.96); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .supp-wrapper { grid-template-columns: 1fr; }
  .supp-visual { min-height: 240px; }
  .supp-content { padding: 48px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; }
  .cta-image { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid > div:nth-child(2) { order: 3; }
  .footer-hours { order: 2; text-align: left; }
}

@media (max-width: 768px) {
  nav {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(-100%);
    opacity: 1;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
  }
  nav.visible { transform: translateY(0); }
  .nav-inner { padding: 0 20px; height: 60px; justify-content: space-between; }
  .nav-links, .nav-cta-btn { display: none !important; }
  .hamburger { display: flex; }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--white);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    flex-shrink: 0;
  }
  .mobile-menu-logo { height: 30px; width: auto; display: block; }
  .menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text);
    line-height: 0;
    flex-shrink: 0;
  }
  .menu-close:active { opacity: 0.5; }

  .mobile-menu-nav { flex: 1; padding: 8px 24px; overflow-y: auto; }
  .mobile-menu ul { list-style: none; margin: 0; padding: 0; }
  .mobile-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu ul li:last-child a { border-bottom: none; }
  .mobile-menu ul li a::after { content: '›'; font-size: 22px; color: var(--muted); font-weight: 300; }
  .mobile-menu ul li a:active { opacity: 0.6; }

  .mobile-menu-footer {
    flex-shrink: 0;
    padding: 24px 24px 52px;
  }
  .mobile-menu-footer .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    box-sizing: border-box;
  }
  .mobile-menu-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
  .mobile-menu-legal a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
  }

  .section-hero { padding: 80px 20px 48px; }
  .hero h1 { font-size: 28px; margin-bottom: 14px; line-height: 1.2; }
  .hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .hero-bullets { gap: 8px; margin-bottom: 28px; }
  .hero-bullets li { font-size: 13px; font-weight: 400; color: var(--muted); padding-left: 24px; }
  .hero-bullets li::before { width: 14px; height: 14px; }
  .hero-bullets li strong { color: var(--navy); font-weight: 600; }
  .hero-image { height: 220px; margin-top: 36px; }
  .supp-wrapper { grid-template-columns: 1fr; }
  .supp-visual { min-height: 220px; }
  .supp-content { padding: 40px 28px; }
  .supp-heading { font-size: 28px; }
  .page-hero { padding: 88px 20px 48px; }
  .section-about, .section-services, .section-faq { padding: 64px 0; }
  .about-inner, .two-col { padding: 0 20px; }
  .section-cta { padding: 20px 20px 56px; }
  .cta-banner { padding: 36px 28px; border-radius: 14px; }
  footer { padding: 0 0 20px; overflow: hidden; }
  .footer-inner { padding: 48px 36px 0; box-sizing: border-box; }
  .section-stats { padding: 56px 0; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(89,147,185,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 90;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 20px rgba(89,147,185,0.45);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}
