/* ─────────── Variables ─────────── */
:root {
  --bg: #f7f9fb;
  --ink: #12202e;
  --muted: #5b6b7d;
  --dark: #0b1824;
  --card: #ffffff;
  --teal: #0e9f8e;
  --teal-dark: #0b7d70;
  --gold: #e8b44a;
  --shadow: 0 20px 60px rgba(11, 24, 36, 0.12);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────── Reset / Base ─────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--teal); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--teal), var(--gold)); border-radius: 5px; }

/* ─────────── Preloader ─────────── */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--dark);
  display: flex; flex-direction: column; gap: 18px;
  align-items: center; justify-content: center;
  color: #fff; letter-spacing: 3px; text-transform: uppercase;
  font-size: 0.8rem;
  pointer-events: none;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.loader-spot {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--teal));
  animation: pulse 1s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 180, 74, 0.5); }
  50% { transform: scale(1.35); box-shadow: 0 0 0 18px rgba(232, 180, 74, 0); }
}

/* ─────────── Floating orbs ─────────── */
.orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(30px); opacity: 0.35;
  animation: drift 18s ease-in-out infinite alternate;
  will-change: transform;
}
.orb-1 { width: 300px; height: 300px; background: rgba(14, 159, 142, 0.25); top: -80px; left: -80px; }
.orb-2 { width: 260px; height: 260px; background: rgba(232, 180, 74, 0.2); bottom: 10%; right: -100px; animation-delay: -6s; }
.orb-3 { width: 220px; height: 220px; background: rgba(14, 159, 142, 0.15); top: 45%; left: 45%; animation-delay: -12s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -50px) scale(1.15); }
}

/* ─────────── Scroll progress ─────────── */
#progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 999;
}

/* ─────────── Nav ─────────── */
#site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
#site-header.scrolled {
  background: rgba(11, 24, 36, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.nav {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
#site-header.scrolled .nav { padding: 12px 24px; }
.logo {
  font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem;
  color: #fff; display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--gold); }
.logo-mark {
  display: inline-block; color: var(--gold);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.nav-links { display: flex; list-style: none; align-items: center; gap: 18px; margin: 0 auto; }
.nav-btns { display: flex; align-items: center; gap: 12px; pointer-events: none; }
.nav-btns a { pointer-events: auto; }
.nav-btns li { list-style: none; }
.nav-item { position: relative; }
.nav-item .caret { display: inline-block; margin-left: 4px; font-size: 0.75rem; transition: transform 0.3s var(--ease); }
.nav-item:hover .caret, .nav-item:focus-within .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px) scale(0.96);
  transform-origin: top center;
  background: rgba(11, 24, 36, 0.55); backdrop-filter: blur(10px) saturate(120%);
  border-radius: 14px;
  min-width: 120px; padding: 6px; list-style: none; z-index: 120;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
}
.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(4px) scale(1);
}
.nav-item::before {
  content: ""; position: absolute; top: 90%; left: -40px; right: -40px; height: 40px;
}
.dropdown-link {
  display: block; text-align: center; padding: 10px 22px; border-radius: 10px;
  color: #fff; font-size: 0.9rem; font-weight: 500; white-space: nowrap; position: relative; overflow: hidden;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), transform 0.28s var(--ease);
}
.dropdown-link::before {
  content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease); z-index: 1;
}
.dropdown-link:hover::before { left: 130%; }
.dropdown-link span { position: relative; z-index: 2; }
.dropdown-link::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  height: 2px; width: 0%; background: var(--gold); transition: width 0.35s var(--ease);
}
.dropdown-link:hover::after, .nav-item:hover .dropdown-link::after { width: 60%; }
.dropdown-link:hover {
  background: rgba(14, 159, 142, 0.3);
  color: #fff; transform: translateX(3px);
}
@media (max-width: 1020px) {
  .nav-item { width: 100%; }
  .dropdown-menu, .nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; border: 0; box-shadow: none; padding: 4px 0 4px 12px; min-width: 0;
  }
  .dropdown-link { padding: 10px 0; }
}
.nav-link { color: #e9f0f6; font-size: 0.88rem; font-weight: 500; position: relative; padding: 4px 0; white-space: nowrap; }
.nav-link::after {
  content: ""; position: absolute; bottom: -2px; left: 0; height: 2px; width: 0%;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff !important; padding: 7px 15px; font-size: 0.88rem;
  border-radius: 40px; font-weight: 600; position: relative; overflow: hidden;
  box-shadow: 0 8px 22px rgba(14, 159, 142, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-nav::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(232, 180, 74, 0.55), transparent);
  transform: skewX(-20deg); transition: left 0.8s var(--ease);
}
.btn-nav:hover::after { left: 140%; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(14, 159, 142, 0.5); }
.btn-nav .bn-arrow { color: var(--gold); transition: transform 0.3s var(--ease); }
.btn-nav:hover .bn-arrow { transform: translateX(4px); }
.btn-nav-foundation {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold), #f3cd7d);
  color: var(--dark) !important; padding: 7px 15px; font-size: 0.88rem;
  border-radius: 40px; font-weight: 700; position: relative; overflow: hidden;
  box-shadow: 0 8px 22px rgba(232, 180, 74, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-nav-foundation::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(11, 24, 36, 0.16), transparent);
  transform: skewX(-20deg); transition: left 0.8s var(--ease);
}
.btn-nav-foundation:hover::after { left: 140%; }
.btn-nav-foundation:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(232, 180, 74, 0.55);
}
.btn-nav-foundation .bf-heart { animation: navHeart 1.6s ease-in-out infinite; }
@keyframes navHeart {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.3); }
  30% { transform: scale(1); }
}
.btn-nav-foundation .bf-arrow { transition: transform 0.3s var(--ease); }
.btn-nav-foundation:hover .bf-arrow { transform: translateX(4px); }
#nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0; }
#nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: 0.3s; }

/* ─────────── Hero ─────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff; padding: 120px 24px 80px;
  background: radial-gradient(circle at 20% 20%, rgba(14,159,142,0.28), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(232,180,74,0.22), transparent 40%),
              linear-gradient(160deg, #0b1824 0%, #103, #0b1824 100%);
}
.hero-bg {
  position: absolute; inset: -20%;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(rgba(232,180,74,0.12) 1px, transparent 1px);
  background-size: 90px 90px, 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.6;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow {
  display: inline-block; padding: 8px 18px; border: 1px solid rgba(232, 180, 74, 0.5);
  border-radius: 40px; color: var(--gold); font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(3.2rem, 10vw, 6.5rem); margin-bottom: 18px; }
.gradient-text {
  background: linear-gradient(90deg, var(--teal), var(--gold));
  background-clip: text; -webkit-background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero-sub { font-size: clamp(1rem, 2.4vw, 1.3rem); color: #c3d2e0; max-width: 640px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; border: 0; cursor: pointer; padding: 16px 34px;
  border-radius: 50px; font-weight: 600; font-size: 1rem; font-family: "Inter", sans-serif;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; box-shadow: 0 12px 30px rgba(14, 159, 142, 0.35); }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px rgba(14, 159, 142, 0.5); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.35); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 6vw, 70px);
  margin-top: 64px; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat strong {
  display: block; font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--gold);
}
.stat strong.count-done { animation: countPop 0.5s var(--ease); }
@keyframes countPop {
  0% { transform: scale(1.65); }
  100% { transform: scale(1); }
}
.stat span { font-size: 0.8rem; color: #a7b8c8; text-transform: uppercase; letter-spacing: 1px; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 20px;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold); border-radius: 4px; animation: wheel 1.8s infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

/* ─────────── Sections ─────────── */
.section { padding: clamp(80px, 12vw, 140px) 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.tag {
  display: inline-block; color: var(--teal); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
  padding: 6px 14px; border-radius: 30px; background: rgba(14, 159, 142, 0.1);
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* How We Help */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.help-card {
  background: var(--card); border-radius: var(--radius); padding: 40px 34px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  border: 1px solid rgba(14, 159, 142, 0.08);
}
.help-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.help-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(11, 24, 36, 0.18); }
.help-card:hover::before { transform: scaleX(1); }
.help-icon {
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; border-radius: 18px; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(14,159,142,0.15), rgba(232,180,74,0.15));
  transition: transform 0.4s var(--ease);
}
.help-card:hover .help-icon { transform: rotate(-8deg) scale(1.1); }
.help-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.help-card p { color: var(--muted); font-size: 0.98rem; }
.help-card--wide { grid-column: span 2; }
@media (max-width: 760px) { .help-card--wide { grid-column: span 1; } }
.cta-banner {
  margin-top: 56px; text-align: center; background: var(--dark); color: #fff;
  padding: 48px 36px; border-radius: var(--radius); position: relative; overflow: hidden;
}
.cta-banner::after {
  content: "◆"; position: absolute; right: -30px; top: -40px; font-size: 10rem;
  color: rgba(232, 180, 74, 0.1); transform: rotate(15deg);
}
.cta-banner p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 26px; font-family: "Playfair Display", serif; }

/* Video band */
.video-band { background: linear-gradient(180deg, var(--bg), #eef4f6); }
.video-frame-wrap { max-width: 860px; margin: 0 auto; }
.video-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.9);
  aspect-ratio: 16 / 9;
  animation: videoGlow 4s ease-in-out infinite;
  transition: transform 0.4s var(--ease);
  background: var(--dark);
}
.video-frame:hover { transform: scale(1.02); animation-play-state: paused; }
@keyframes videoGlow {
  0%, 100% { box-shadow: 0 20px 50px rgba(11, 24, 36, 0.25), 0 0 24px rgba(14, 159, 142, 0.18); }
  50% { box-shadow: 0 26px 60px rgba(11, 24, 36, 0.3), 0 0 44px rgba(232, 180, 74, 0.28); }
}
.video-frame iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 0; display: block;
}
.watch-badge {
  position: absolute; z-index: 3; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex; align-items: center; gap: 10px;
  background: rgba(11, 24, 36, 0.75); backdrop-filter: blur(6px);
  color: #fff; font-weight: 600; padding: 14px 26px; border-radius: 50px;
  border: 1px solid rgba(232, 180, 74, 0.6);
  opacity: 0.9; pointer-events: none; transition: all 0.35s var(--ease);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.watch-badge i {
  width: 38px; height: 38px; border-radius: 50%; font-style: normal;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  animation: pulse 2s infinite;
}
.video-frame:hover .watch-badge { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
@media (max-width: 560px) { .watch-badge { display: none; } }

/* Conditions */
.conditions { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.conditions::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(14, 159, 142, 0.16), transparent 55%);
}
.cond-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  perspective: 1200px;
}
@media (max-width: 1024px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cond-grid { grid-template-columns: 1fr; } }
.cond-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 440px; cursor: pointer;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.cond-card:hover { transform: translateY(-14px); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55); }
.cond-card.flip { transform: translateY(10px) rotate(1deg); }
.cond-img {
  position: absolute; inset: -18%; z-index: 0;
}
.cond-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  transition: transform 0.9s var(--ease), filter 0.6s;
  will-change: transform;
}
.cond-card:hover .cond-img img { transform: scale(1.28) rotate(1.2deg); filter: saturate(1.15); }
.cond-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11, 24, 36, 0.1) 0%, rgba(11, 24, 36, 0.85) 70%, #0b1824 100%);
}
.cond-card:hover .cond-overlay { background: linear-gradient(180deg, rgba(14, 159, 142, 0.25) 0%, rgba(11, 24, 36, 0.9) 60%, #0b1824 100%); }
.cond-body {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px; transform: translateZ(40px);
}
.cond-symbol {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border-radius: 16px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(14, 159, 142, 0.35), rgba(232, 180, 74, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s var(--ease), background 0.4s;
  animation: floaty 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.4s);
}
.cond-card:hover .cond-symbol { transform: rotate(-10deg) scale(1.12); background: linear-gradient(135deg, var(--teal), var(--gold)); }
.cond-body h3 { font-size: 1.6rem; margin-bottom: 8px; }
.cond-body p { color: #c6d4e0; font-size: 0.92rem; transform: translateY(24px); opacity: 0; transition: all 0.5s var(--ease); }
.cond-card:hover .cond-body p { transform: translateY(0); opacity: 1; }

/* Services */
.services { background: linear-gradient(180deg, var(--bg), #eef4f6); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.service-card {
  background: var(--card); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease);
}
.service-num {
  font-family: "Playfair Display", serif; font-size: 3.4rem; font-weight: 700;
  color: rgba(14, 159, 142, 0.12); line-height: 1; margin-bottom: 16px;
  transition: color 0.4s;
}
.service-card:hover { transform: translateY(-10px) rotate(-0.6deg); }
.service-card:hover .service-num { color: rgba(14, 159, 142, 0.4); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.service-links { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.text-link { color: var(--teal); font-weight: 600; position: relative; }
.text-link::after { content: ""; position: absolute; bottom: -2px; left: 0; height: 2px; width: 0; background: var(--teal); transition: width 0.3s; }
.text-link:hover::after { width: 100%; }

/* Fees */
.fees-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 860px) { .fees-grid { grid-template-columns: 1fr; } }
.fees-card { background: var(--card); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow); border: 1px solid rgba(14, 159, 142, 0.08); }
.fees-card h3 { font-size: 1.5rem; margin-bottom: 20px; }
.fees-card p { color: var(--muted); margin-bottom: 14px; }
.plan-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.plan-list li {
  background: rgba(14, 159, 142, 0.08); color: var(--teal-dark);
  padding: 8px 16px; border-radius: 40px; font-size: 0.88rem; font-weight: 600;
  border: 1px solid rgba(14, 159, 142, 0.2);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.plan-list li:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.fine-print { font-size: 0.85rem; color: var(--muted); font-style: italic; }
.mt { margin-top: 36px; }

/* Who We Are */
.who-we-are { background: linear-gradient(160deg, var(--dark), #103); color: #fff; }
.who-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .who-wrap { grid-template-columns: 1fr; } }
.who-visual { display: flex; justify-content: center; }
.who-mask {
  width: 100%; max-width: 470px; aspect-ratio: 4 / 3; border-radius: 30px;
  background: radial-gradient(circle at 30% 30%, var(--teal), transparent 60%),
              radial-gradient(circle at 80% 80%, var(--gold), transparent 50%),
              linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  position: relative; border: 1px solid rgba(255, 255, 255, 0.12);
  animation: floaty 6s ease-in-out infinite;
  overflow: hidden;
}
.who-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 30px; z-index: 1;
  transform: scale(1.05);
  transition: transform 1s var(--ease);
}
.who-mask:hover .who-img { transform: scale(1.15); }
.who-halo {
  position: absolute; inset: 0; border-radius: 30px; z-index: 2;
  background-image: radial-gradient(rgba(232, 180, 74, 0.4) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  animation: shimmerGrid 4s linear infinite;
  opacity: 0.3;
}
.who-badge {
  position: absolute; bottom: 22px; left: 22px; z-index: 3;
  background: rgba(11, 24, 36, 0.75); backdrop-filter: blur(8px);
  color: #fff; padding: 10px 18px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid rgba(232, 180, 74, 0.5);
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmerGrid { to { background-position: 26px 26px; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.who-copy h2 { font-size: clamp(2rem, 5vw, 3rem); margin: 12px 0 20px; }
.who-copy p { color: #b9c8d6; margin-bottom: 18px; }
.state-grid { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0; }
.state-chip {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 22px; border-radius: 14px; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.state-chip:hover { transform: translateY(-4px); background: rgba(14, 159, 142, 0.25); border-color: var(--teal); }
.who-copy .text-link { color: var(--gold); }
.who-copy .text-link::after { background: var(--gold); }

/* Mission banner */
.who-mission {
  max-width: 820px; margin: 70px auto 0; text-align: center; position: relative;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px; padding: 56px 40px;
}
.mission-quote {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  font-family: "Playfair Display", serif; font-size: 4rem; line-height: 1;
  width: 74px; height: 74px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--dark); border-radius: 50%;
  box-shadow: 0 16px 40px rgba(14, 159, 142, 0.4);
}
.who-mission blockquote {
  font-family: "Playfair Display", serif; font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.5; color: #eaf2f8;
}
.who-mission blockquote::after { content: "❞"; color: var(--gold); font-size: 2rem; margin-left: 8px; }

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 60px; }
.why-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px; padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.why-card::after {
  content: ""; position: absolute; top: -16px; right: -16px; width: 90px; height: 90px;
  border-radius: 50%; background: radial-gradient(circle, rgba(14, 159, 142, 0.35), transparent 70%);
  transition: transform 0.5s var(--ease);
}
.why-card:hover { transform: translateY(-10px); background: rgba(14, 159, 142, 0.12); border-color: rgba(14, 159, 142, 0.5); }
.why-card:hover::after { transform: scale(1.8); }
.why-num {
  font-family: "Playfair Display", serif; font-size: 2.6rem; font-weight: 700;
  color: transparent; background: linear-gradient(135deg, var(--gold), var(--teal));
  background-clip: text; -webkit-background-clip: text; display: block; margin-bottom: 14px;
}
.why-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.why-card p { color: #b9c8d6; font-size: 0.95rem; }

/* Staff section */
.staff { background: linear-gradient(180deg, var(--bg), #eef4f6); }
.staff-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 48px; }
.staff-tab {
  font-family: "Inter", sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer;
  padding: 12px 34px; border-radius: 50px; border: 2px solid rgba(11, 24, 36, 0.12);
  background: var(--card); color: var(--muted); transition: all 0.35s var(--ease);
}
.staff-tab:hover { transform: translateY(-3px); border-color: var(--teal); }
.staff-tab.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; border-color: transparent;
  box-shadow: 0 14px 32px rgba(14, 159, 142, 0.35);
}
.staff-grid { display: none; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; margin-bottom: 6px; align-items: start; }
.staff-grid.active { display: grid; animation: staffIn 0.6s var(--ease) both; }
@keyframes staffIn {
  from { opacity: 0; transform: translateY(26px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* D.M.V tab — "soon" badge */
.staff-tab-dmv { position: relative; }
.staff-tab-dmv .dmv-soon {
  display: inline-block; margin-left: 6px; padding: 2px 9px; border-radius: 20px;
  background: var(--gold); color: var(--dark); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; vertical-align: 2px;
  animation: dmvPulse 1.8s ease-in-out infinite;
}
.staff-tab-dmv.active .dmv-soon { background: #fff; }
.staff-tab-dmv.active .dmv-soon { animation: none; }
@keyframes dmvPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 180, 74, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(232, 180, 74, 0); transform: scale(1.06); }
}

/* Hide Contact section while D.M.V launch tab is active */
#contact.is-dmv { display: none; }

/* LAUNCHING SOON stage — deep blue launch backdrop */
.staff-grid.team-dmv.active { place-items: center; }
.lps {
  position: relative; grid-column: 1 / -1; width: 100%; max-width: 860px;
  text-align: center; padding: 46px 26px 50px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(60, 130, 255, 0.32), transparent 60%),
    radial-gradient(90% 60% at 12% 100%, rgba(14, 159, 142, 0.26), transparent 65%),
    radial-gradient(70% 55% at 90% 88%, rgba(232, 180, 74, 0.15), transparent 70%),
    linear-gradient(175deg, #0a1c36 0%, #11406f 55%, #0c2a4e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow:
    0 34px 90px -24px rgba(10, 28, 54, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 60px rgba(255, 255, 255, 0.03);
}
.lps-bg { position: absolute; inset: 0; pointer-events: none; }
.lps-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(46% 42% at 84% 14%, rgba(232, 180, 74, 0.14), transparent 70%),
    radial-gradient(60% 50% at 16% 96%, rgba(14, 159, 142, 0.22), transparent 70%),
    radial-gradient(80% 60% at 50% 110%, rgba(80, 160, 255, 0.18), transparent 70%);
  animation: lpsAmbient 8s ease-in-out infinite;
}
@keyframes lpsAmbient { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.lps-star { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0; box-shadow: 0 0 8px rgba(255, 255, 255, 0.9); animation: lpsTw 2.6s ease-in-out infinite; }
.lps-star.g { background: var(--gold); box-shadow: 0 0 10px rgba(232, 180, 74, 0.9); }
.lps-star:nth-child(1) { top: 12%; left: 12%; }
.lps-star:nth-child(2) { top: 28%; left: 30%; width: 4px; animation-delay: .7s; }
.lps-star:nth-child(3) { top: 10%; right: 18%; animation-delay: 1.2s; }
.lps-star:nth-child(4) { top: 42%; right: 10%; width: 5px; animation-delay: .4s; }
.lps-star:nth-child(5) { bottom: 24%; left: 9%; width: 4px; animation-delay: 1.6s; }
.lps-star:nth-child(6) { top: 55%; left: 52%; width: 5px; animation-delay: .95s; }
.lps-star:nth-child(7) { top: 18%; right: 40%; width: 4px; animation-delay: 2s; }
.lps-star:nth-child(8) { bottom: 16%; right: 26%; animation-delay: .25s; }
@keyframes lpsTw { 0%,100% { opacity: 0; transform: scale(.6); } 50% { opacity: .95; transform: scale(1.15); } }
.lps-beam { position: absolute; top: -30%; width: 42%; height: 150%; transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(150, 205, 255, 0.22), transparent);
  animation: lpsSweep 5.5s ease-in-out infinite; }
.lps-beam.b2 { background: linear-gradient(90deg, transparent, rgba(232, 180, 74, 0.2), transparent); animation-delay: 2.75s; }
@keyframes lpsSweep { 0%, 100% { left: -70%; } 50% { left: 125%; } }

.lps-stage { position: relative; width: 120px; height: 160px; margin: 4px auto 8px; }
.lps-rocket { position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%); font-size: 2.7rem;
  filter: drop-shadow(0 12px 26px rgba(14, 159, 142, 0.6));
  animation: lpsFly 1.15s cubic-bezier(.22, 1, .36, 1) both, lpsBob 2.6s ease-in-out 1.15s infinite; }
@keyframes lpsFly { from { transform: translate(-50%, 210px) scale(1.3) rotate(-8deg); opacity: 0; } 40% { opacity: 1; } to { transform: translate(-50%, 0) scale(1) rotate(0deg); opacity: 1; } }
@keyframes lpsBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -10px); } }
.lps-thrust { position: absolute; left: 50%; top: calc(100% - 6px); transform: translateX(-50%); width: 18px; height: 26px;
  background: linear-gradient(#ffd770, rgba(232, 180, 74, 0)); border-radius: 0 0 14px 14px; filter: blur(1px);
  transform-origin: top; animation: lpsThrust .38s ease-in-out infinite alternate; }
@keyframes lpsThrust { from { height: 16px; opacity: .75; } to { height: 34px; opacity: 1; } }
.lps-trail { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 3px; height: 0;
  background: linear-gradient(rgba(140, 220, 255, 0.95), rgba(140, 220, 255, 0)); animation: lpsTrail 1.5s ease-out .5s both; }
@keyframes lpsTrail { from { height: 80px; opacity: .9; } to { height: 200px; opacity: 0; } }
.lps-trail::after { content: ""; display: block; background: linear-gradient(var(--gold), rgba(232, 180, 74, 0)); height: 30%; }

.lps-state {
  font-family: "Playfair Display", serif; font-size: 1.3rem; letter-spacing: .16em;
  color: rgba(255, 255, 255, 0.92); margin: 16px 0 4px; animation: lpsUp 1s ease .35s both;
  display: inline-block; position: relative; line-height: 1.35;
  background: linear-gradient(100deg, #ffffff 30%, #e8b44a 48%, #ffe3ad 50%, #e8b44a 52%, #ffffff 70%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: letter-spacing .55s var(--ease), transform .55s var(--ease), filter .55s var(--ease);
}
.lps-state::after {
  content: ""; position: absolute; left: -12%; right: -12%; top: 50%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0;
  transform: scaleX(.2); transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.lps-state:hover { letter-spacing: .24em; transform: scale(1.05); animation: lpsTitleShine 1.6s linear infinite; }
.lps-state:hover::after { opacity: .8; transform: scaleX(1); }
@keyframes lpsTitleShine { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
.lps-launch {
  display: inline-flex; align-items: baseline; justify-content: center; gap: .14em;
  font-family: "Playfair Display", serif; font-weight: 700; font-size: clamp(2.2rem, 6vw, 3.7rem);
  text-transform: uppercase; letter-spacing: .03em; perspective: 700px; margin: 4px auto 10px; padding: 0 4px; position: relative;
  filter: drop-shadow(0 10px 26px rgba(232, 180, 74, 0.3));
}
.lps-launch .w { display: inline-flex; gap: .09em; }
.lps-launch .w > span { display: inline-block;
  background: linear-gradient(100deg, #ffffff, var(--gold) 28%, #ffe3ad 50%, var(--gold) 72%, #ffffff); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: lpsLetter .75s cubic-bezier(.22,1,.36,1) both, lpsShine 3.4s linear infinite;
  animation-delay: var(--d), calc(var(--d) + 1.4s);
}
@keyframes lpsLetter { from { opacity: 0; transform: rotateX(95deg) translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes lpsShine { 0% { background-position: 0% center; } 50% { background-position: 100% center; } 100% { background-position: 0% center; } }
.lps-launch .soon { margin-left: .34em; }
.lps-sub { color: rgba(255, 255, 255, 0.78); font-size: .94rem; max-width: 430px; margin: 0 auto; line-height: 1.5; animation: lpsUp 1s ease .9s both; }
.lps-sub::after { content: "…"; display: inline-block; color: var(--gold); font-weight: 700; margin-left: 2px; animation: lpsDots 1.5s ease-in-out infinite; }
@keyframes lpsDots { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes lpsUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
  .staff-tabs { gap: 10px; margin-bottom: 38px; }
  .staff-tab { padding: 10px 18px; font-size: 0.9rem; }
  .lps { padding: 38px 16px 42px; }
  .lps-launch { flex-wrap: wrap; row-gap: 0.08em; font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .state-grid { gap: 5px; }
  .state-chip { padding: 8px 8px; font-size: clamp(0.46rem, 2.2vw, 0.66rem); }
}

.staff-card { perspective: 1400px; height: 340px; position: relative; }
.staff-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform 0.8s var(--ease);
  will-change: transform;
}
.staff-card:hover { z-index: 30; }
.staff-card.is-flipped .staff-inner, .staff-card:focus-within .staff-inner { transform: rotateY(180deg); }
@media (hover: hover) {
  .staff-card:hover .staff-inner { transform: rotateY(180deg); }
}
.staff-front, .staff-back {
  border-radius: 20px; overflow: hidden;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  transition: box-shadow 0.5s var(--ease);
}
.staff-card:hover .staff-front, .staff-card:hover .staff-back { box-shadow: 0 32px 60px rgba(11, 24, 36, 0.42); }
.staff-front {
  position: absolute; inset: 0;
  background: var(--card); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.staff-front img {
  flex: 1 1 auto; width: 100%; height: auto; min-height: 120px;
  object-fit: cover; object-position: top;
  transition: transform 0.6s var(--ease);
}
.staff-card:hover .staff-front img { transform: scale(1.06); }
.staff-front img.staff-photo-michael { object-position: center 22%; }
.staff-front img.staff-photo-carmen { object-position: center 62%; }
.staff-front-body { padding: 18px 20px; }
.staff-front-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.staff-front-body span { color: var(--teal); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.3px; }
.staff-avatar {
  flex: 1 1 auto; width: 100%; height: auto; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 4.6rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--a1, var(--teal)), var(--a2, var(--gold)));
  transition: transform 0.6s var(--ease);
}
.staff-card:hover .staff-avatar { transform: scale(1.06) rotate(2deg); }
.staff-back {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--dark), #10293a); color: #fff;
  padding: 22px 20px; transform: rotateY(180deg);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 10px;
  overflow: hidden;
}
.staff-back-content {
  overflow-y: hidden;
}
.staff-back-content.is-scrollable {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 180, 74, 0.55) transparent;
}
.staff-back-content.is-scrollable::-webkit-scrollbar { width: 6px; }
.staff-back-content.is-scrollable::-webkit-scrollbar-track { background: transparent; }
.staff-back-content.is-scrollable::-webkit-scrollbar-thumb {
  background: rgba(232, 180, 74, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.staff-back-content.is-scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 180, 74, 0.85);
}
.staff-back h3 { font-size: 1.15rem; }
.staff-back p { color: #c9d8e6; font-size: 0.88rem; line-height: 1.5; }
.staff-back .text-link { color: var(--gold); align-self: flex-start; }
.staff-back .text-link::after { background: var(--gold); }

/* Enlarge-on-flip: staggered content reveal */
.staff-back h3 { opacity: 0; transform: translateY(16px); transition: opacity 0.45s var(--ease), transform 0.55s var(--ease); }
.staff-back p { opacity: 0; transform: translateY(16px); transition: opacity 0.45s 0.18s var(--ease), transform 0.55s 0.18s var(--ease); }
.staff-back .text-link { opacity: 0; transform: translateY(12px); transition: opacity 0.45s 0.34s var(--ease), transform 0.55s 0.34s var(--ease); }
.staff-card.is-flipped .staff-back h3, .staff-card:focus-within .staff-back h3,
.staff-card:hover .staff-back h3,
.staff-card.is-flipped .staff-back p, .staff-card:focus-within .staff-back p,
.staff-card:hover .staff-back p,
.staff-card.is-flipped .staff-back .text-link, .staff-card:focus-within .staff-back .text-link,
.staff-card:hover .staff-back .text-link { opacity: 1; transform: translateY(0); }

/* Cool sweep across the flipped back + gold edge glow */
.staff-back::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0);
  transform-origin: left; transition: transform 0.5s 0.3s var(--ease);
}
.staff-card.is-flipped .staff-back::before, .staff-card:focus-within .staff-back::before,
.staff-card:hover .staff-back::before { transform: scaleX(1); }
.staff-back::after {
  content: ""; position: absolute; top: -50%; left: -80%; width: 45%; height: 200%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}
.staff-card.is-flipped .staff-back::after, .staff-card:focus-within .staff-back::after,
.staff-card:hover .staff-back::after { animation: backSheen 0.9s ease 0.25s; }
@keyframes backSheen { from { left: -80%; } to { left: 140%; } }

@media (hover: none) {
  .staff-card.is-flipped .staff-inner { transform: rotateY(180deg); }
}
@media (max-width: 520px) {
  .staff-card.is-flipped .staff-inner, .staff-card:focus-within .staff-inner { transform: rotateY(180deg); }
}
@media (prefers-reduced-motion: reduce) {
  .staff-card.is-flipped .staff-inner { transform: rotateY(180deg); }
  .staff-back h3, .staff-back p, .staff-back .text-link { opacity: 1; transform: none; transition: none; }
  .staff-back::before, .staff-back::after { animation: none; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.contact-form input, .contact-form textarea {
  font-family: "Inter", sans-serif; font-size: 1rem; color: var(--ink);
  border: 1px solid rgba(11, 24, 36, 0.15); border-radius: 12px;
  padding: 14px 16px; background: var(--bg); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 159, 142, 0.15);
  transform: translateY(-1px);
}
.contact-form .btn { align-self: flex-start; }
.contact-status {
  font-size: 0.92rem; font-weight: 600; padding: 12px 16px; border-radius: 12px;
  background: rgba(14, 159, 142, 0.1); border: 1px solid rgba(14, 159, 142, 0.35); color: var(--teal-dark);
}
.contact-status.is-error { background: rgba(217, 83, 79, 0.1); border-color: rgba(217, 83, 79, 0.4); color: #d9534f; }
.vp-submit { padding: 10px 22px; font-size: 0.88rem; width: auto; max-width: 280px; margin-top: 18px; }
.vp-submit:hover { transform: translateY(-2px); }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-row {
  display: flex; gap: 18px; align-items: flex-start; background: var(--card);
  padding: 22px 24px; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.info-row:hover { transform: translateX(8px); box-shadow: 0 18px 44px rgba(11, 24, 36, 0.15); }
.info-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(14, 159, 142, 0.15), rgba(232, 180, 74, 0.15));
}
.info-row strong { display: block; }
.info-row p { color: var(--muted); font-size: 0.95rem; }

/* Footer */
.footer { background: var(--dark); color: #a9bac9; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 80px 24px 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-size: 1.3rem; margin-bottom: 14px; display: inline-block; }
.footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { display: inline-flex; align-items: center; gap: 9px; }
.soc-ico { flex: none; color: var(--gold); opacity: 0.9; transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.footer ul li a:hover .soc-ico { transform: translateX(2px); color: #fff; opacity: 1; }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; padding: 24px; font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }
.footer-bottom .credit {
  margin-top: 10px; font-family: "Playfair Display", serif;
  font-size: 0.95rem; letter-spacing: 3px; text-transform: uppercase; color: #7e8f9f;
}
.footer-bottom .credit span {
  background: linear-gradient(90deg, var(--teal), var(--gold));
  background-clip: text; -webkit-background-clip: text; color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Foundation button */
.footer ul .btn-foundation {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px; padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.3px;
  box-shadow: 0 8px 22px rgba(14, 159, 142, 0.35);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.footer ul .btn-foundation:hover {
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(14, 159, 142, 0.55);
}
.footer ul .btn-foundation::before {
  content: ""; position: absolute; top: 0; left: 0; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(232, 180, 74, 0.6), transparent);
  transform: translateX(-180%) skewX(-18deg);
  animation: bf-shimmer 3.2s ease-in-out infinite;
}
.footer ul .btn-foundation .bf-arrow { transition: transform 0.3s var(--ease); }
.footer ul .btn-foundation:hover .bf-arrow { transform: translateX(5px); }
@keyframes bf-shimmer {
  0%, 50% { transform: translateX(-180%) skewX(-18deg); }
  85%, 100% { transform: translateX(230%) skewX(-18deg); }
}

/* Back to top */
#to-top {
  position: fixed; bottom: 104px; right: 26px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  font-size: 1.3rem; font-weight: 700;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.4s var(--ease);
  box-shadow: 0 12px 28px rgba(14, 159, 142, 0.4);
}
#to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#to-top:hover { transform: translateY(-4px); }
@media (max-width: 600px) {
  #to-top { right: 20px; bottom: 152px; }
}

/* ─────────── Scroll reveal ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-card.reveal { transition-delay: 0s; }

/* Mobile menu */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(11, 24, 36, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }
@media (max-width: 1020px) {
  #nav-toggle {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 44px; height: 44px; z-index: 110; position: relative;
  }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: rgba(11, 24, 36, 0.98);
    padding: 40px; transition: transform 0.6s var(--ease); z-index: 100;
    transform: translateX(100vw); will-change: transform;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-btns {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 16px;
    padding: 40px; transition: transform 0.6s var(--ease); z-index: 101;
    transform: translateX(100vw); will-change: transform;
  }
  .nav-btns.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; }
  #nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #nav-toggle.open span:nth-child(2) { opacity: 0; }
  #nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* ─────────── Conditions carousel ─────────── */
.cond-carousel { position: relative; margin-top: 8px; }
.cond-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  padding: 26px 10px 38px;
  scrollbar-width: none;
}
.cond-track::-webkit-scrollbar { display: none; }
.cond-chip {
  flex: 0 0 auto; width: 248px;
  position: relative; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(14,159,142,0.08), #0d1f2d 70%);
  border: 1px solid rgba(232, 180, 74, 0.22);
  color: #fff;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.cond-chip::after {
  content: ""; position: absolute; top: 0; left: -90%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg); transition: left 0.8s var(--ease); z-index: 4; pointer-events: none;
}
.cond-chip:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(232, 180, 74, 0.6);
  box-shadow: 0 26px 60px rgba(11, 24, 36, 0.45), 0 0 34px rgba(14, 159, 142, 0.25);
}
.cond-chip:hover::after { left: 150%; }
.cc-img { position: relative; height: 196px; overflow: hidden; flex: 0 0 auto; }
.cc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1); transition: transform 0.9s var(--ease), filter 0.5s;
}
.cond-chip:hover .cc-img img { transform: scale(1.22) rotate(0.6deg); }
.cc-photo .cc-img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 24, 36, 0.82));
}
.cc-body { padding: 18px 20px 22px; }
.cc-body h4 { font-size: 1.05rem; margin-bottom: 6px; color: #fff; }
.cc-body p { font-size: 0.8rem; color: #a9bac9; line-height: 1.5; margin: 0; }
.cond-fade {
  position: absolute; top: 26px; bottom: 38px; width: 104px; z-index: 4; pointer-events: none;
  opacity: 1;
  -webkit-backdrop-filter: blur(9px) saturate(130%);
  backdrop-filter: blur(9px) saturate(130%);
}
.cond-fade--l {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 24, 36, 0.92), rgba(11, 24, 36, 0.35), transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 25%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 25%, transparent 100%);
}
.cond-fade--r {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 24, 36, 0.92), rgba(11, 24, 36, 0.35), transparent);
  -webkit-mask-image: linear-gradient(270deg, #000 25%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 25%, transparent 100%);
}
.caro-btn {
  position: absolute; top: 42%; z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(232, 180, 74, 0.4); cursor: pointer;
  background: rgba(11, 24, 36, 0.88); color: var(--gold);
  font-size: 1.25rem; line-height: 1; backdrop-filter: blur(6px);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.caro-btn:hover { transform: translateY(-6px) scale(1.1); color: var(--dark); background: linear-gradient(135deg, var(--teal), var(--gold)); border-color: transparent; box-shadow: 0 14px 34px rgba(232, 180, 74, 0.45); }
.caro-prev { left: 6px; }
.caro-next { right: 6px; }
@media (max-width: 640px) {
  .caro-btn { display: none; }
  .cond-fade { width: 56px; }
  .cond-chip { width: min(76vw, 268px); }
  .cc-img { height: 170px; }
}

/* ─────────── Steps / Get Started modal ─────────── */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center; padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 12, 20, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-panel {
  position: relative; max-width: 720px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  background: linear-gradient(160deg, #0e1d2c, #0a1520);
  border: 1px solid rgba(232, 180, 74, 0.28); border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16); background: transparent;
  color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal-close:hover { background: linear-gradient(135deg, var(--teal), var(--gold)); color: var(--dark); transform: rotate(90deg); }
.modal-panel .tag { margin-bottom: 8px; }
.modal-panel h2 { font-family: "Playfair Display", serif; font-size: 1.7rem; color: #fff; margin: 0 0 8px; }
.modal-intro { color: #a9bac9; font-size: 0.95rem; line-height: 1.65; margin: 0 0 18px; }
.modal-intro a, .modal-panel a { color: var(--gold); }
.modal-note { color: #a9bac9; font-size: 0.9rem; line-height: 1.6; margin: 18px 0 22px; }
.steps-list { list-style: none; counter-reset: step; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.steps-list li {
  counter-increment: step; position: relative;
  padding: 12px 16px 12px 52px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px; color: #cfe0ec; font-size: 0.92rem; line-height: 1.55;
}
.steps-list li::before {
  content: counter(step); position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--dark); font-weight: 700; font-size: 0.82rem;
}
.steps-list li strong { color: #fff; }
.step-fig { margin: 14px 0 2px; }
.step-fig img {
  width: 100%; height: auto; display: block;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.step-fig figcaption { font-size: 0.78rem; color: #8fa2b4; margin-top: 8px; line-height: 1.45; }
.modal-brand {
  margin: 6px auto 16px; padding: 8px; max-width: 380px;
  background: linear-gradient(135deg, rgba(14, 159, 142, 0.16), rgba(232, 180, 74, 0.16));
  border: 1px solid rgba(232, 180, 74, 0.25); border-radius: 14px;
}
.modal-brand img { width: 100%; height: auto; display: block; border-radius: 8px; }
.modal-cta { margin-top: 4px; }
