/* ============================================================
   RevivingCare — Shared Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --teal: #10CFC9;
  --teal-light: #A1FFFB;
  --teal-dark: #087E83;
  --purple: #38BDF8;
  --purple-light: #BAF7F4;
  --purple-dark: #0B6C8A;
  --green: #22C9A7;
  --green-light: #8EF5E7;
  --red: #FF5C7A;
  --white: #FFFFFF;
  --gray-50: #F3FFFD;
  --gray-100: #E8FFFE;
  --gray-200: #C8F1EE;
  --gray-500: #55706F;
  --gray-700: #264D50;
  --gray-900: #08383D;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: linear-gradient(135deg, rgba(161,255,251,.57) 0%, #EAFFFB 50%, #E8FFFE 100%);
  overflow-x: hidden;
}


/* Typography theme */
h1, h2, h3,
.hero-title,
.page-hero h1,
.section-title,
.cta-band h2,
.logo-text,
.logo-text-care {
  font-family: var(--font-display);
}

body, p, a, span, li, input, select, textarea, button,
.sub, .section-subtitle, .feature-card p, .card p,
.form-note, .cinfo-value, .cinfo-label {
  font-family: var(--font-body);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--teal), var(--purple)); border-radius: 3px; }

/* ── TOP BAR ── */
.topbar {
  background: linear-gradient(90deg, #087E83 0%, #0B6C8A 100%);
  padding: 8px 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.9);
}
.topbar a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-right .soc-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: background .2s; text-decoration: none;
  color: rgba(255,255,255,0.9);
}
.topbar-right .soc-icon:hover { background: rgba(255,255,255,.3); }
.topbar .login-btn {
  background: white; color: var(--teal-dark) !important;
  font-weight: 600; padding: 5px 16px; border-radius: 20px;
  font-size: 12px; letter-spacing: .3px; transition: all .2s;
}
.topbar .login-btn:hover { background: var(--teal-light); color: white !important; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(16,207,201,.12);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, #606060 0%, #3d6475 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-right: -10px;
}
.logo-text-care {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, #00b2c2 0%, #007883 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  text-decoration: none; padding: 8px 14px; border-radius: 8px; transition: all .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--purple));
  border-radius: 2px; transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
  color: white !important; padding: 10px 22px !important; border-radius: 30px;
  font-weight: 600 !important; box-shadow: 0 4px 15px rgba(16,207,201,.30);
  transition: all .25s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,207,201,.38) !important; }
.nav-cta::after { display: none !important; }

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transform: translateY(-2px); /* up */
}



/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, rgba(161,255,251,.57) 0%, #EAFFFB 50%, #E8FFFE 100%);
  padding: 80px 40px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .28; pointer-events: none;
}
.page-hero-blob.b1 { width:420px;height:420px; background:radial-gradient(circle,var(--teal-light),transparent); top:-160px; right:-80px; }
.page-hero-blob.b2 { width:300px;height:300px; background:radial-gradient(circle,var(--purple-light),transparent); bottom:-100px; left:60px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,207,201,.16); border: 1px solid rgba(16,207,201,.28);
  color: var(--teal-dark); font-size: 12px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--gray-900); margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; line-height: 1.7; color: var(--gray-500); max-width: 580px; margin: 0 auto 32px;
}
.title-accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── SECTION BASE ── */
section { padding: 88px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple)); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--gray-900); margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; line-height: 1.7; color: var(--gray-500); max-width: 580px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
  color: white; font-size: 15px; font-weight: 600; padding: 14px 32px;
  border-radius: 40px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(16,207,201,.30); transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16,207,201,.38); }
.btn-secondary {
  background: white; color: var(--gray-700); font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: 40px; text-decoration: none;
  border: 2px solid var(--gray-200); cursor: pointer; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }

/* ── CARDS ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.feature-card {
  border-radius: 20px; padding: 30px; border: 1.5px solid var(--gray-200);
  background: white; transition: all .3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.feature-card:hover { border-color: var(--teal-light); box-shadow: 0 12px 40px rgba(16,207,201,.14); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.card-icon.teal { background: rgba(16,207,201,.16); }
.card-icon.purple { background: rgba(56,189,248,.12); }
.card-icon.green { background: rgba(34,197,94,.12); }
.card-icon.red { background: rgba(244,63,94,.12); }
.feature-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--gray-900); margin-bottom: 10px; }
.feature-card p { font-size: 14px; line-height: 1.7; color: var(--gray-500); }

/* ── DARK STRIP ── */
.dark-strip {
  background: linear-gradient(135deg, #087E83 0%, #0B6C8A 100%);
  padding: 80px 40px; color: white; position: relative; overflow: hidden;
}
.dark-strip::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.05); top: -150px; right: -100px;
}
.dark-strip .section-label { color: rgba(255,255,255,.8); }
.dark-strip .section-title { color: white; }
.dark-strip .section-sub { color: rgba(255,255,255,.75); max-width: 600px; }
.dark-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 28px; backdrop-filter: blur(8px); transition: all .3s;
}
.dark-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.dark-card .icon { font-size: 28px; margin-bottom: 12px; }
.dark-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.dark-card p { font-size: 13px; opacity: .75; line-height: 1.6; }

/* ── SPLIT SECTION ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-visual {
  background: linear-gradient(135deg, rgba(16,207,201,.11) 0%, rgba(56,189,248,.10) 100%);
  border-radius: 28px; padding: 48px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; position: relative; overflow: hidden;
}
.split-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(16,207,201,.04) 20px, rgba(16,207,201,.04) 21px);
}
.big-icon { font-size: 96px; position: relative; z-index: 1; filter: drop-shadow(0 8px 24px rgba(16,207,201,.25)); }
.check-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--gray-700); }
.check-list li .chk {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: white; font-size: 11px; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 52px 40px;
}
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.stat-lbl { font-size: 14px; font-weight: 500; color: var(--gray-500); }

/* ── COMPLIANCE STRIP ── */
.compliance-strip {
  background: linear-gradient(90deg, rgba(16,207,201,.10), rgba(186,247,244,.35));
  border-top: 1px solid rgba(16,207,201,.16); border-bottom: 1px solid rgba(16,207,201,.16);
  padding: 28px 40px;
}
.compliance-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.compliance-badges { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.badge-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-700); }
.badge-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: white;
}
.compliance-text { font-size: 14px; color: var(--gray-500); max-width: 400px; line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--purple-dark) 100%);
  padding: 80px 40px; text-align: center; color: white;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; margin-bottom: 14px; }
.cta-band p { font-size: 17px; opacity: .85; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.btn-white {
  background: white; color: var(--teal-dark); font-size: 15px; font-weight: 700;
  padding: 14px 36px; border-radius: 40px; text-decoration: none; border: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.15); transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-outline-white {
  background: transparent; color: white; font-size: 15px; font-weight: 600;
  padding: 13px 32px; border-radius: 40px; text-decoration: none;
  border: 2px solid rgba(255,255,255,.5); transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 14px; margin-bottom: 12px;
  overflow: hidden; transition: all .3s;
}
.faq-item:hover { border-color: var(--teal-light); }
.faq-q {
  padding: 18px 24px; font-size: 15px; font-weight: 600; color: var(--gray-900);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none;
}
.faq-q .arrow { color: var(--teal); font-size: 18px; transition: transform .3s; flex-shrink: 0; }
.faq-a { padding: 0 24px 18px; font-size: 14px; line-height: 1.75; color: var(--gray-500); display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-item.open { border-color: var(--teal); }

/* ── PROCESS STEPS ── */
.steps { display: flex; gap: 0; margin-top: 52px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 32px; right: 32px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple)); z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: white; font-family: var(--font-display); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(16,207,201,.30);
}
.step h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step p { font-size: 13px; line-height: 1.6; color: var(--gray-500); }

/* ── FOOTER ── */
footer { background: #063136; color: white; padding: 70px 40px 30px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { font-size: 20px; display: block; margin: 10px 0 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none; transition: all .2s;
}
.footer-social a:hover { background: rgba(16,207,201,.28); color: white; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 10px; line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.animate-up { animation: fadeUp .7s ease both; }
.animate-up-d1 { animation: fadeUp .7s .1s ease both; }
.animate-up-d2 { animation: fadeUp .7s .2s ease both; }
.animate-up-d3 { animation: fadeUp .7s .3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .topbar { padding: 6px 20px; font-size: 11px; }
  .topbar-left { gap: 12px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 56px 20px; }
  .page-hero { padding: 60px 20px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dark-strip { padding: 56px 20px; }
  .cta-band { padding: 60px 20px; }
  .steps { flex-direction: column; gap: 32px; }
  .steps::before { display: none; }
}
@media (max-width: 600px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

  /* @keyframes heartBeat {
    0%, 100% {
      transform: scale(1);
    }

    14% {
      transform: scale(1.12);
    }

    28% {
      transform: scale(1);
    }

    42% {
      transform: scale(1.08);
    }

    70% {
      transform: scale(1);
    }
  } */

    @keyframes heartBeat {
    0%, 100% {
      transform: scale(1);
    }

    14% {
      transform: scale(1.12);
    }

    28% {
      transform: scale(1);
    }

    42% {
      transform: scale(1.08);
    }

    70% {
      transform: scale(1);
    }
  }
/* ============================================================
   Responsive improvements — desktop, laptop, tablet, mobile
   ============================================================ */
img, svg, video, canvas, iframe {
  max-width: 100%;
}
img { height: auto; }
input, select, textarea, button { font-size: 16px; }

/* Navigation toggle is hidden on wide screens and shown on mobile/tablet. */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16,207,201,.10);
}
.nav-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--gray-900);
  transition: transform .25s, opacity .25s;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1200px) {
  .section-inner,
  .hero-grid,
  .stats-inner,
  .footer-grid,
  .compliance-inner {
    max-width: 100%;
  }
  nav { padding-inline: 28px; }
  section { padding-inline: 28px; }
  .hero-grid { gap: 42px !important; }
  #orbit-scene { width: min(420px, 42vw) !important; height: min(420px, 42vw) !important; }
}

@media (max-width: 1024px) {
  .topbar {
    padding: 7px 22px;
    gap: 14px;
  }
  .topbar-left,
  .topbar-right {
    gap: 10px;
    flex-wrap: wrap;
  }
  .nav-toggle { display: flex; }
  nav {
    height: 68px;
    padding-inline: 22px;
    position: sticky;
  }
  .nav-links {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(8,56,61,.16);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  nav.nav-open .nav-links {
    transform: translateY(8px);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 12px 14px;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    text-align: center;
    margin-top: 4px;
  }
  .hero-grid,
  .split-section,
  .demo-grid,
  .contact-grid,
  .highlight-band,
  .module-row,
  .module-row.flip {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
    direction: ltr !important;
  }
  .hero-grid { padding: 66px 28px !important; }
  .hero-title { font-size: clamp(2.25rem, 7vw, 3.4rem) !important; }
  .hero-sub { max-width: 680px !important; }
  .hero-visual { min-height: 0; }
  #orbit-scene { width: min(430px, 82vw) !important; height: min(430px, 82vw) !important; }
  .card-grid-4,
  .card-grid-3,
  .features-mega-grid,
  .methods-grid,
  .values-grid,
  .story-cards,
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .card-grid-2,
  .testi-grid,
  .testimonials-grid,
  .problem-grid,
  .highlight-nums {
    grid-template-columns: 1fr !important;
  }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr !important; }
}

@media (max-width: 760px) {
  .topbar {
    justify-content: center;
    text-align: center;
  }
  .topbar-left {
    justify-content: center;
  }
  .topbar-right {
    display: none;
  }
  nav { padding-inline: 16px; }
  .logo { gap: 7px; }
  .logo-img { width: 34px; height: 34px; }
  .logo-text,
  .logo-text-care { font-size: 19px !important; }
  .logo-text { margin-right: -7px; }
  section { padding: 54px 18px !important; }
  .page-hero { padding: 54px 18px 48px !important; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 2.75rem) !important; }
  .page-hero p,
  .section-sub,
  .hero-sub,
  .cta-band p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  .section-title { font-size: clamp(1.85rem, 9vw, 2.35rem) !important; }
  .hero { min-height: auto !important; }
  .hero-grid {
    padding: 58px 18px !important;
    text-align: center;
  }
  .hero-actions,
  .hero-trust,
  .module-tags,
  .compliance-badges {
    justify-content: center;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .btn-white,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
  .split-visual,
  .contact-form-card,
  .contact-info-card,
  .demo-form-card,
  .highlight-band,
  .module-visual,
  .module-copy,
  .feature-card,
  .feat-card,
  .value-card,
  .testimonial-card,
  .reason-card {
    padding: 24px !important;
    border-radius: 20px !important;
  }
  .icon-grid,
  .form-row,
  .stats-inner,
  .card-grid-4,
  .card-grid-3,
  .features-mega-grid,
  .methods-grid,
  .values-grid,
  .story-cards,
  .reasons-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .compliance-inner { justify-content: center; text-align: center; }
  .compliance-badges { gap: 12px; }
  .badge-item { width: calc(50% - 8px); justify-content: center; }
  .steps { gap: 26px !important; }
  .map-embed { height: 300px !important; }
  .map-overlay-card { position: static !important; margin: 12px; align-self: flex-start; }
  .compare-table,
  .spec-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .topbar-left a { font-size: 11px; }
  .page-hero-badge,
  .hero-badge {
    font-size: 10px !important;
    letter-spacing: .5px !important;
  }
  .hero-title { font-size: clamp(2rem, 12vw, 2.55rem) !important; }
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white,
  .submit-btn,
  .form-submit {
    padding: 13px 18px !important;
    font-size: 14px !important;
  }
  .stats-inner { grid-template-columns: 1fr !important; }
  .stat-num { font-size: 2.25rem !important; }
  .badge-item { width: 100%; }
  .footer-brand p { max-width: 100%; }
  .cta-band { padding: 56px 18px !important; }
  #orbit-scene { display: none !important; }
}
