/* ══════════════════════════════════════════════
   PETROO — Styles  (v2 — Revamped)
   Apple-inspired · Teal brand · Dynamic
══════════════════════════════════════════════ */

:root {
  /* ── Brand palette — ocean teal (#1C6372) ── */
  --brand:       #1C6372;
  --brand-dark:  #154f5c;
  --brand-light: #E4F2F5;
  --brand-mid:   #2B7A8C;

  /* ── Neutral Apple palette ── */
  --dark:    #1D1D1F;
  --mid:     #6E6E73;
  --light:   #F5F5F7;
  --lighter: #FAFAFA;
  --white:   #FFFFFF;

  --border:     rgba(0,0,0,0.06);
  --border-mid: rgba(0,0,0,0.10);

  --radius-xs:  8px;
  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --radius-full: 100px;

  --shadow-xs:       0 1px 4px  rgba(0,0,0,0.04);
  --shadow-sm:       0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:       0 24px 64px rgba(0,0,0,0.10);
  --shadow-brand:    0 8px 32px rgba(28,99,114,0.32);
  --shadow-brand-lg: 0 20px 60px rgba(28,99,114,0.42);

  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

*, *::before, *::after { cursor: none !important; }
@media (hover: none) { *, *::before, *::after { cursor: auto !important; } }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.hidden { opacity: 0; pointer-events: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }


/* ════════════════════════════════════════════
   CUSTOM CURSOR — PAW
════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 24px; height: 24px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) rotate(-10deg);
  transition: transform 0.18s var(--ease), opacity 0.2s;
  animation: paw-wag 2.6s ease-in-out infinite;
}
.cursor svg {
  width: 100%; height: 100%;
  fill: var(--brand);
  filter: drop-shadow(0 1px 4px rgba(28,99,114,0.5));
  transition: fill 0.18s;
}
.cursor.hovered {
  animation: none;
  transform: translate(-50%, -50%) scale(1.5) rotate(0deg);
}
.cursor.hovered svg { fill: var(--brand-dark); }
.cursor.clicking {
  animation: none;
  transform: translate(-50%, -50%) scale(0.72) rotate(-30deg);
}
.cursor.cursor-light svg {
  fill: white;
  filter: drop-shadow(0 1px 5px rgba(0,0,0,0.4));
}
.cursor.cursor-light.hovered svg { fill: rgba(255,255,255,0.85); }
@keyframes paw-wag {
  0%, 100% { transform: translate(-50%, -50%) rotate(-10deg); }
  50%       { transform: translate(-50%, -50%) rotate(10deg); }
}

@media (hover: none) { .cursor { display: none; } }


/* ════════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════════ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid), #7EC8D8);
  z-index: 99997;
  border-radius: 0 100px 100px 0;
  box-shadow: 0 0 10px rgba(28,99,114,0.55);
  pointer-events: none;
}


/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  cursor: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
}
.btn:hover::after { left: 160%; }

.btn-brand {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
}
.btn-brand:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
}
.btn-ghost:hover { background: var(--light); }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand-light); transform: translateY(-2px); }

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }


/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.78s var(--ease), transform 0.78s var(--ease);
  transition-delay: var(--delay, 0s);
}
[data-animate="fadeLeft"]  { transform: translateX(52px); }
[data-animate="fadeRight"] { transform: translateX(-52px); }
[data-animate="floatIn"]   { transform: scale(0.80) translateY(14px); }
[data-animate="scaleUp"]   { transform: scale(0.86); }
[data-animate].in-view { opacity: 1; transform: none; }


/* ════════════════════════════════════════════
   LOADER
════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0A0F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  transition: opacity 0.2s linear, transform 0.22s var(--ease);
}
#loader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.loader-track {
  position: absolute;
  inset: 0;
  top: 30%;
  pointer-events: none;
}

.loader-road {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(28,99,114,0.4), rgba(43,122,140,0.3), transparent);
  border-radius: 100px;
}

.paw-print {
  position: absolute;
  font-size: 16px;
  opacity: 0;
  filter: invert(1);
  animation: pawFade 0.9s ease forwards;
}
@keyframes pawFade {
  0%   { opacity: 0; transform: scale(0.5) rotate(-15deg); }
  25%  { opacity: 0.6; transform: scale(1) rotate(0deg); }
  100% { opacity: 0; transform: scale(1) rotate(0deg); }
}

.car-runner {
  position: absolute;
  top: 0;
  left: -340px;
  animation: carDriveAcross 5s cubic-bezier(0.35, 0.0, 0.65, 1.0) forwards;
}
@keyframes carDriveAcross {
  0%   { left: -340px; }
  100% { left: calc(100% + 340px); }
}

.car-bobber {
  animation: carBounce 0.38s ease-in-out infinite alternate;
}
@keyframes carBounce {
  from { transform: translateY(0px); }
  to   { transform: translateY(-5px); }
}

.wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.5s linear infinite;
}
@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.dog-ear-l {
  transform-box: fill-box;
  transform-origin: center 38px;
  animation: earFlapL 0.3s ease-in-out infinite alternate;
}
.dog-ear-r {
  transform-box: fill-box;
  transform-origin: center 38px;
  animation: earFlapR 0.32s ease-in-out infinite alternate;
}
@keyframes earFlapL {
  from { transform: rotate(-22deg) translateX(-3px); }
  to   { transform: rotate(12deg)  translateX(-1px); }
}
@keyframes earFlapR {
  from { transform: rotate(18deg)  translateX(-2px); }
  to   { transform: rotate(-8deg)  translateX(-1px); }
}

.dog-tongue {
  transform-box: fill-box;
  transform-origin: center top;
  animation: tongueWag 0.42s ease-in-out infinite alternate;
}
@keyframes tongueWag {
  from { transform: rotate(-14deg); }
  to   { transform: rotate(14deg); }
}

.wind-l {
  animation: windStreak 0.6s ease-in-out infinite alternate;
}
@keyframes windStreak {
  from { opacity: 0.6; transform: translateX(0px); }
  to   { opacity: 0.2; transform: translateX(8px); }
}

.exhaust {
  transform-box: fill-box;
  transform-origin: center;
  animation: exhaustPuff 0.9s ease-out infinite;
}
.ex-1 { animation-delay: 0s; }
.ex-2 { animation-delay: 0.3s; }
.ex-3 { animation-delay: 0.6s; }
@keyframes exhaustPuff {
  0%   { opacity: 0.4; transform: scale(0.8) translateX(0); }
  100% { opacity: 0;   transform: scale(1.8) translateX(-18px); }
}

.loader-brand {
  text-align: center;
  margin-bottom: 32px;
  z-index: 1;
}
.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: brandReveal 0.8s var(--spring) 0.4s both;
}
@keyframes brandReveal {
  from { opacity: 0; transform: translateY(22px) scale(0.88); }
  to   { opacity: 1; transform: none; }
}
.loader-logo-img {
  height: clamp(100px, 18vw, 150px);
  width: auto;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(28,99,114,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

.loader-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.02em;
  animation: brandReveal 0.8s var(--spring) 0.6s both;
}
.dots span {
  animation: dotBlink 1.2s ease-in-out infinite;
  display: inline-block;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40%  { opacity: 1; transform: translateY(-3px); }
}

.loader-bar-wrap {
  width: min(340px, 80vw);
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  z-index: 1;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid), #7EC8D8);
  border-radius: 100px;
  width: 0%;
  animation: barFill 2.4s var(--ease) 0.2s forwards;
}
@keyframes barFill {
  0%   { width: 0%; }
  20%  { width: 25%; }
  60%  { width: 65%; }
  90%  { width: 88%; }
  100% { width: 100%; }
}


/* ════════════════════════════════════════════
   MAIN SITE — FADE IN
════════════════════════════════════════════ */
#main { transition: opacity 0.3s var(--ease); }
#main.hidden  { display: block; opacity: 0; pointer-events: none; }
#main.visible { opacity: 1; pointer-events: all; }


/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  background: var(--brand);
  transition: box-shadow 0.35s var(--ease);
}
#navbar.scrolled {
  box-shadow: 0 2px 28px rgba(28,99,114,0.5), 0 1px 0 rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
  padding: 0;
  align-self: stretch;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: var(--nav-h);
  width: auto;
  border-radius: 0;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── 3-D white nav buttons ── */
#navbar .nav-actions .btn {
  background: white;
  color: var(--brand);
  font-weight: 700;
  border: none;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.18),
    0 6px 18px rgba(28,99,114,0.22);
  transform: translateY(0);
  transition: transform 0.14s var(--ease), box-shadow 0.14s var(--ease);
}
#navbar .nav-actions .btn:hover {
  background: white;
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 rgba(0,0,0,0.16),
    0 10px 24px rgba(28,99,114,0.28);
}
#navbar .nav-actions .btn:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.18),
    0 2px 8px rgba(28,99,114,0.15);
}
/* suppress the shimmer sweep on nav buttons so it doesn't flash on white */
#navbar .nav-actions .btn::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  align-self: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer-close { display: none; }
body.loading #petroo-chat-btn { display: none !important; }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
}
.hero-blob-1 {
  width: 700px; height: 700px;
  background: var(--brand);
  top: -160px; right: -160px;
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 450px; height: 450px;
  background: #7EC8D8;
  bottom: -80px; left: -120px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 320px; height: 320px;
  background: var(--brand-mid);
  top: 40%; left: 42%;
  animation: blobFloat 13s ease-in-out infinite 2s;
  opacity: 0.07;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(36px, -36px) scale(1.06); }
  66%  { transform: translate(-24px, 22px) scale(0.94); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--dark);
  border: 1px solid rgba(28,99,114,0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(28,99,114,0.65); }
  50%       { box-shadow: 0 0 0 7px rgba(28,99,114,0); }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, #2B9CB5 50%, #7EC8D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--mid);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-right: -10px;
  background: var(--light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--mid);
}
.stars { color: #FFB800; letter-spacing: 1px; font-size: 14px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ════════════════════════════════════════════
   PHONE MOCKUP — hero visual
════════════════════════════════════════════ */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 64px;
  width: 100%;
  max-width: 380px;
}

/* ambient teal halo behind the phone */
.phone-glow {
  position: absolute;
  width: 220px; height: 440px;
  background: radial-gradient(ellipse, rgba(28,99,114,0.45) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-breathe 3s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.65; }
  50%       { transform: scale(1.18); opacity: 1; }
}

/* ── iPhone 15 shell (outer wrapper, holds frame + side buttons) ── */
.phone-shell {
  position: relative;
  display: inline-flex;
  animation: phone-bob 4.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes phone-bob {
  0%, 100% { transform: translateY(0)     rotate(-1.5deg); }
  50%       { transform: translateY(-16px) rotate(1.5deg); }
}

/* Side hardware buttons */
.phone-btn {
  position: absolute;
  /* Brushed-aluminium look matching iPhone 15 Black */
  background: linear-gradient(to bottom, #3a3a3c, #2c2c2e 50%, #3a3a3c);
  border-radius: 2px;
  z-index: 10;
}
/* Action button — left, above volumes */
.phone-btn-action {
  left: -4px; top: 122px;
  width: 4px; height: 34px;
  border-radius: 3px 0 0 3px;
}
/* Volume up — left */
.phone-btn-vol-up {
  left: -4px; top: 172px;
  width: 4px; height: 56px;
  border-radius: 3px 0 0 3px;
}
/* Volume down — left */
.phone-btn-vol-dn {
  left: -4px; top: 238px;
  width: 4px; height: 56px;
  border-radius: 3px 0 0 3px;
}
/* Power / sleep-wake — right */
.phone-btn-power {
  right: -4px; top: 162px;
  width: 4px; height: 76px;
  border-radius: 0 3px 3px 0;
}

/* ── iPhone 15 frame ── */
.phone-frame {
  width: 242px;
  height: 496px;
  /* True iPhone 15 Black — very dark, almost pure black */
  background: #0d0d0d;
  /* Flat aluminium edge (iPhone 15 non-Pro) via layered box-shadows */
  border-radius: 52px;
  box-shadow:
    /* 1. screen-glass inner edge highlight */
    inset 0 0 0 1px rgba(255,255,255,0.08),
    /* 2. inner dark gap between glass and aluminium */
    inset 0 0 0 2px #0d0d0d,
    /* 3. aluminium frame band — 10px visible */
    inset 0 0 0 12px #2c2c2e,
    /* 4. outer aluminium edge shine */
    0 0 0 2px rgba(255,255,255,0.14),
    /* 5. drop shadows */
    0 40px 80px rgba(0,0,0,0.60),
    0 0 52px rgba(28,99,114,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* ── Dynamic Island (iPhone 14 Pro / 15) ── */
.phone-di {
  /* Pill-shaped cutout centred at the top */
  width: 64px; height: 30px;
  background: #000;
  border-radius: 20px;
  margin: 9px auto 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03);
}

/* screen */
.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 14px 0;
  /* uniform bezel: 9px on all four sides */
  margin: 9px 9px 9px;
  /* inner corner radius = outer frame radius (52px) minus bezel stack (~23px) */
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
/* subtle dark scan-line texture on white */
.phone-screen::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.018) 2px, rgba(0,0,0,0.018) 4px
  );
  pointer-events: none;
  z-index: 0;
}
/* top radial glow on screen */
.phone-screen::after {
  content: '';
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(28,99,114,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: screen-glow 3s ease-in-out infinite;
}
@keyframes screen-glow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.35); }
}
.phone-screen > * { position: relative; z-index: 1; }

/* app icon */
.phone-app-icon {
  width: 74px; height: 74px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(28,99,114,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  flex-shrink: 0;
  animation: icon-pulse 2.6s ease-in-out infinite;
}
.phone-app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(28,99,114,0.5),  0 0 0 1px rgba(255,255,255,0.07); transform: scale(1); }
  50%       { box-shadow: 0 8px 36px rgba(28,99,114,0.8),  0 0 22px rgba(28,99,114,0.38);   transform: scale(1.05); }
}

.phone-title {
  font-size: 18px; font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin: 0; line-height: 1;
}
.phone-subtitle {
  font-size: 11px; font-weight: 700;
  color: #4ec9e0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: -6px 0 0;
}

/* bouncing paw trail */
.phone-paw-trail { display: flex; gap: 10px; align-items: center; }
.ppaw {
  font-size: 17px; display: inline-block;
  animation: paw-pop 1.4s ease-in-out infinite;
  opacity: 0.45;
}
.pp1 { animation-delay: 0s; }
.pp2 { animation-delay: 0.22s; }
.pp3 { animation-delay: 0.44s; }
@keyframes paw-pop {
  0%, 100% { transform: scale(0.75) rotate(-12deg); opacity: 0.3; }
  45%       { transform: scale(1.25) rotate(12deg);  opacity: 1; }
}

/* progress bar */
.phone-prog-wrap {
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.phone-prog-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand) 0%, #4ec9e0 100%);
  border-radius: 100px;
  animation: prog-loop 3.8s ease-in-out infinite;
}
@keyframes prog-loop {
  0%   { width: 0%;   opacity: 1; }
  62%  { width: 86%;  opacity: 1; }
  82%  { width: 86%;  opacity: 1; }
  96%  { width: 100%; opacity: 0; }
  100% { width: 0%;   opacity: 0; }
}
.phone-prog-text {
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -6px;
}

/* early access pill */
.phone-notif-pill {
  background: var(--brand-light);
  border: 1px solid rgba(28,99,114,0.35);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11.5px; font-weight: 600;
  color: var(--brand);
  display: flex; align-items: center; gap: 7px;
  animation: pill-breathe 2.8s ease-in-out infinite;
  white-space: nowrap;
}
.phone-notif-dot {
  width: 7px; height: 7px;
  background: #4ec9e0;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-ping 1.6s ease-in-out infinite;
}
@keyframes dot-ping {
  0%, 100% { box-shadow: 0 0 0 0   rgba(78,201,224,0.7); }
  50%       { box-shadow: 0 0 0 5px rgba(78,201,224,0);   }
}
@keyframes pill-breathe {
  0%, 100% { border-color: rgba(28,99,114,0.3);  background: var(--brand-light); }
  50%       { border-color: rgba(28,99,114,0.55); background: rgba(28,99,114,0.12); }
}

/* iPhone home bar */
.phone-home-bar {
  width: 88px; height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 100px;
  margin: 5px auto 5px;
  flex-shrink: 0;
}

/* floating decorative emojis */
.ph-float {
  position: absolute;
  font-size: 26px;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  animation: ph-float-anim 3.2s ease-in-out infinite;
}
.ph-f1 { top: 12px;   right: 6px;  animation-delay: 0s;    font-size: 30px; }
.ph-f2 { top: 60px;   left: 0px;   animation-delay: 1s;    font-size: 22px; }
.ph-f3 { bottom: 72px; right: 2px; animation-delay: 0.65s;  font-size: 20px; }
.ph-f4 { bottom: 18px; left: 6px;  animation-delay: 1.7s;  font-size: 24px; }
@keyframes ph-float-anim {
  0%, 100% { transform: translateY(0)     rotate(-8deg); opacity: 0.7; }
  50%       { transform: translateY(-13px) rotate(8deg);  opacity: 1; }
}

/* responsive: hide floats on very small screens */
@media (max-width: 400px) { .ph-float { display: none; } }

.hero-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  will-change: transform;
}

.ride-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid var(--border);
}
.ride-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ride-card-icon {
  width: 42px; height: 42px;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ride-card-title { font-weight: 700; font-size: 15px; }
.ride-card-sub { font-size: 12px; color: var(--mid); margin-top: 2px; }
.ride-card-live {
  margin-left: auto;
  background: #FF3B30;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.ride-map-placeholder {
  background: linear-gradient(135deg, #E4F2F5 0%, #C8E6ED 100%);
  border-radius: var(--radius-md);
  height: 110px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.map-road {
  position: absolute;
  top: 50%; left: 10%; right: 10%;
  height: 6px;
  background: var(--white);
  border-radius: 100px;
  transform: translateY(-50%);
  opacity: 0.8;
}
.map-car {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 22px;
  animation: carDrive 3s ease-in-out infinite;
}
@keyframes carDrive {
  0%   { left: 12%; }
  50%  { left: 55%; }
  100% { left: 12%; }
}
.map-dest {
  position: absolute;
  top: 50%; right: 14%;
  transform: translateY(-60%);
  font-size: 22px;
}
.map-paw {
  position: absolute;
  font-size: 12px;
  opacity: 0.35;
}
.paw-1 { top: 25%; left: 25%; }
.paw-2 { top: 60%; left: 45%; }
.paw-3 { top: 30%; left: 65%; }

.ride-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pilot-info { display: flex; align-items: center; gap: 10px; }
.pilot-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
}
.pilot-name   { font-size: 13px; font-weight: 600; }
.pilot-rating { font-size: 12px; color: var(--mid); margin-top: 1px; }

.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 1px solid var(--border);
}
.badge-safe      { top: -14px; left: -20px;  animation: badgeFloat 4s ease-in-out infinite; }
.badge-vet       { top: 50%;   right: -30px; animation: badgeFloat 4s ease-in-out infinite 1.3s; }
.badge-certified { bottom: -14px; left: -24px; animation: badgeFloat 4s ease-in-out infinite 2.6s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-9px); }
}


/* ════════════════════════════════════════════
   MARQUEE TRUST STRIP
════════════════════════════════════════════ */
#marquee {
  padding: 18px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
/* Fade edges */
#marquee::before, #marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
#marquee::before { left: 0;  background: linear-gradient(90deg, var(--light), transparent); }
#marquee::after  { right: 0; background: linear-gradient(-90deg, var(--light), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.marquee-item:last-child { border-right: none; }
.marquee-item span { font-size: 17px; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
#stats {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 24px 20px;
}
.stat-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number.stat-rating { color: var(--brand); }
.stat-number span { font-size: 0.6em; color: #FFB800; }
.stat-label {
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════ */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
#services { background: var(--lighter); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(28,99,114,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(28,99,114,0.12); }
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  background: var(--white);
  color: var(--dark);
  border-color: rgba(28,99,114,0.15);
  box-shadow: 0 16px 48px rgba(28,99,114,0.10);
}
.service-card-featured::after { display: none; }
.service-card-featured h3,
.service-card-featured p { color: var(--dark); }
.service-card-featured .service-features span {
  background: var(--lighter);
  color: var(--mid);
}
.service-card-featured:hover { box-shadow: var(--shadow-lg); border-color: rgba(28,99,114,0.20); }

.service-popular {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(28,99,114,0.40);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s var(--spring);
}
.service-card:hover .service-icon { transform: scale(1.10) rotate(-3deg); }
.service-icon-orange { background: var(--brand-light); color: var(--brand); }
.service-icon-white  { background: rgba(28,99,114,0.10); color: #1C6372; }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-features span {
  background: var(--light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
}
.service-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.22s var(--ease);
}
.service-link:hover { gap: 10px; }
.service-link-white { color: var(--teal, #1C6372); }
.service-link-white:hover { color: #0f2d36; }


/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
#how-it-works { background: var(--white); }

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 20px;
}
.step-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 16px;
}
.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  animation: stepIconFloat 3s ease-in-out infinite;
}
.step-item:nth-child(3) .step-icon { animation-delay: 1s; }
.step-item:nth-child(5) .step-icon { animation-delay: 2s; }
@keyframes stepIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.step-item h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-item p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}
.step-connector {
  flex-shrink: 0;
  padding: 0 8px;
  opacity: 0.45;
}


/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
#features { background: var(--lighter); }

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-left .section-title { text-align: left; }
.features-left .section-sub   { text-align: left; margin: 0; }
.features-left .section-tag   { text-align: left; }
.features-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow 0.28s var(--ease), border-color 0.28s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
/* Spotlight overlay */
.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 120px at var(--mx, 50%) var(--my, 50%),
    rgba(28,99,114,0.08) 0%, transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-item:hover { box-shadow: var(--shadow-md); border-color: rgba(28,99,114,0.15); }
.feature-item:hover::before { opacity: 1; }

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--spring);
}
.feature-item:hover .feature-icon { transform: scale(1.14) rotate(-5deg); }

.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--dark);
}
.feature-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.55;
}


/* ════════════════════════════════════════════
   PILOTS
════════════════════════════════════════════ */
#pilots { background: var(--white); }

.pilots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pilot-card {
  background: var(--lighter);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.pilot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,99,114,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pilot-card:hover { box-shadow: var(--shadow-md); border-color: rgba(28,99,114,0.12); }
.pilot-card:hover::before { opacity: 1; }

.pilot-card-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  background: var(--light);
  transition: transform 0.35s var(--spring);
  object-fit: cover;
  object-position: center 18%;
}
.pilot-card:hover .pilot-card-avatar { transform: scale(1.08); }

.pilot-card-info h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pilot-card-rating {
  color: #FFB800;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pilot-card-info p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 16px;
}
.pilot-card-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pilot-card-badges span {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ── Founders ── */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}
.founder-card:hover { box-shadow: var(--shadow-md); }
.founder-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  display: block;
}
.founder-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--dark);
}
.founder-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--brand-dark);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.founder-bio {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  text-align: left;
}

.pilots-cta {
  text-align: center;
  padding: 40px;
  background: var(--lighter);
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(28,99,114,0.28);
}
.pilots-cta p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 20px;
}


/* ════════════════════════════════════════════
   TESTIMONIALS — CAROUSEL
════════════════════════════════════════════ */
#testimonials { background: var(--lighter); }

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
  will-change: transform;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(28,99,114,0.12); }

.testimonial-stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.testimonial-card > p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
  display: block;
}

.slider-btn {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.22s var(--ease);
  box-shadow: var(--shadow-xs);
}
.slider-btn:hover {
  background: var(--brand);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-mid);
  cursor: none;
  border: none;
  padding: 0;
  transition: all 0.25s var(--ease);
}
.slider-dot.active {
  background: var(--brand);
  width: 24px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════
   BOOK / CONTACT CTA
════════════════════════════════════════════ */
#book { background: var(--white); }

.book-card {
  background: linear-gradient(145deg, #1D1D1F 0%, #2C2C2E 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
/* Ambient orange glow */
.book-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(28,99,114,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(43,122,140,0.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Orange top-edge highlight */
.book-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28,99,114,0.55), transparent);
}
.book-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28,99,114,0.14) 0%, transparent 70%);
  top: -150px; right: -50px;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.12); }
}

.book-inner { position: relative; z-index: 1; }
.tag-white  { color: rgba(255,255,255,0.38); }

.book-text h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.book-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 24px;
}
.book-text strong { color: var(--brand-mid); }

.book-note {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}
.book-note-icon { font-size: 16px; }
.book-waitlist-link {
  color: var(--brand-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.book-waitlist-link:hover { color: white; }

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.book-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease);
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}
.book-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
}
.book-btn:hover::after { left: 160%; }
.book-btn:hover { transform: translateY(-4px); }

.book-btn-call {
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}
.book-btn-call:hover { background: var(--brand-dark); box-shadow: var(--shadow-brand-lg); }
.book-btn-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 28px rgba(37,211,102,0.28);
}
.book-btn-whatsapp:hover { background: #1DAE55; box-shadow: 0 16px 48px rgba(37,211,102,0.40); }
.book-btn-email {
  background: #4F46E5;
  box-shadow: 0 8px 28px rgba(79,70,229,0.28);
}
.book-btn-email:hover { background: #4338CA; box-shadow: 0 16px 48px rgba(79,70,229,0.40); }

.book-btn-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.book-btn-text { display: flex; flex-direction: column; gap: 3px; }
.book-btn-label { font-size: 18px; font-weight: 700; color: white; letter-spacing: -0.02em; }
.book-btn-sub   { font-size: 12px; color: rgba(255,255,255,0.60); }

.book-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.book-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.42);
}
.book-info-icon { font-size: 16px; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  border-radius: 14px;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.36);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  transition: all 0.22s var(--ease);
}
.footer-social a:hover {
  background: var(--brand);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(28,99,114,0.35);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 10px;
  transition: color 0.2s, transform 0.2s var(--ease);
}
.footer-col a:hover { color: white; transform: translateX(5px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.22);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(255,255,255,0.26);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.60); }


/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-layout { gap: 48px; }
  .book-card { padding: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .footer-top { gap: 40px; }
  .testimonial-card { min-width: calc(50% - 10px); }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  section { padding: 72px 0; }

  body, a, button { cursor: auto; }

  /* ── Side drawer ── */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 300px);
    height: 100dvh;
    background: #2e2e3d;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 72px 0 32px;
    box-shadow: -6px 0 32px rgba(0,0,0,0.35);
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    margin-left: 0;
    z-index: 1001;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li {
    list-style: none;
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.82);
    white-space: normal;
  }
  .nav-links a:hover {
    background: rgba(255,107,53,0.12);
    color: var(--brand);
  }
  .nav-links a.active {
    background: rgba(255,107,53,0.15) !important;
    color: var(--brand) !important;
    font-weight: 700;
  }

  /* drawer close button */
  .nav-drawer-close {
    display: flex;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s;
  }
  .nav-drawer-close:hover { background: rgba(255,255,255,0.16); color: #fff; }


  /* overlay backdrop */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
  }
  .nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero-visual { order: 1; }
  .hero-card { max-width: 100%; }
  .float-badge { display: none; }

  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; max-width: none; }

  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { transform: rotate(90deg); }

  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .features-right { grid-template-columns: 1fr; }
  .features-left .section-title,
  .features-left .section-sub { text-align: center; }
  .features-left .section-tag { margin: 0 auto; }
  .features-left { text-align: center; }
  .features-left .btn { margin: 2rem auto 0; display: inline-flex; }

  .pilots-grid { grid-template-columns: 1fr; }

  .book-card { padding: 36px 28px; border-radius: var(--radius-lg); }
  .book-actions { flex-direction: column; }
  .book-btn { max-width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .testimonial-card { min-width: 100%; padding: 24px; }
  .carousel-wrap { gap: 8px; }
  .slider-btn { width: 36px; height: 36px; }

  .marquee-item { padding: 0 22px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }

  /* section headings scale down */
  .section-title { font-size: clamp(24px, 7vw, 36px); }
  .inner-hero-title { font-size: clamp(26px, 8vw, 44px); }

  /* stat grid 2-col on small phones */
  .stat-item { min-width: 40%; }

  /* pilot cards padding */
  .pilot-card { padding: 24px 16px; }

  /* contact strip wraps nicely */
  .contact-strip { flex-direction: column; align-items: stretch; }
  .contact-link  { justify-content: center; }

  /* booking form */
  .booking-card { padding: 24px 16px; }
  .booking-progress { gap: 0; }

  /* footer social icon sizing */
  .footer-social a { width: 36px; height: 36px; }

  /* prevent any horizontal overflow */
  img, video, svg { max-width: 100%; }
  .container { padding-inline: 16px; }
}

/* Extra-small phones (320px) */
@media (max-width: 360px) {
  .hero-title { font-size: clamp(28px, 9vw, 44px); }
  .btn { padding: 12px 20px; font-size: 14px; }
  .nav-links { width: 88vw; }
}


/* ════════════════════════════════════════════
   ACTIVE NAV LINK
════════════════════════════════════════════ */
/* action buttons — fixed to bottom of drawer, body-level element */
/* hidden on desktop, shown inside mobile drawer */
.nav-drawer-actions {
  display: none;
  list-style: none;
}
@media (max-width: 768px) {
  .nav-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px 28px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
  }
  .nav-drawer-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
  }
  .nav-drawer-actions .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
  }
}

.nav-links a.active {
  color: var(--brand);
  background: white;
  font-weight: 700;
}


/* ════════════════════════════════════════════
   INNER PAGE HERO (non-home pages)
════════════════════════════════════════════ */
.inner-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--white) 60%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -20%, rgba(28,99,114,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--dark);
  margin: 12px 0 16px;
}
.inner-hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Non-loader pages: no hidden main */
#main-inner { }


/* ════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }


/* ════════════════════════════════════════════
   BLOG CARDS
════════════════════════════════════════════ */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  will-change: transform;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--brand-light);
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mid);
}
.blog-card-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.blog-card-read:hover { gap: 8px; }


/* ════════════════════════════════════════════
   SUPPORT PAGE
════════════════════════════════════════════ */
/* ── UNIFIED CONTACT HUB ── */
.contact-hub {
  position: relative;
  background: linear-gradient(145deg, #0d1f24 0%, #0f2d36 50%, #081a20 100%);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}

/* animated ambient blobs */
.contact-hub-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.contact-hub-blob-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 70%);
  top: -120px; left: -100px;
  animation: blob-drift 8s ease-in-out infinite alternate;
}
.contact-hub-blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(28,99,114,0.28) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: blob-drift 10s ease-in-out infinite alternate-reverse;
}
.contact-hub-blob-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(79,70,229,0.14) 0%, transparent 70%);
  top: 50%; right: 25%;
  animation: blob-drift 12s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.contact-hub-inner { position: relative; z-index: 1; }

/* header row */
.contact-hub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-hub-title { color: white; font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.contact-hub-title span { color: var(--brand); }
.contact-hub-sub { color: rgba(255,255,255,0.50); font-size: 14px; margin-top: 8px; max-width: 340px; line-height: 1.6; }

/* live status badge */
.contact-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 8px 16px;
  flex-shrink: 0;
}
.contact-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: status-pulse 2s ease-out infinite;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.contact-status-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); }

/* channel rows */
.contact-channels { display: flex; flex-direction: column; gap: 0; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.contact-channel:last-child { border-bottom: none; }

.contact-channel-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}
.contact-channel-icon-call    { background: linear-gradient(135deg, rgba(255,107,53,0.25), rgba(255,107,53,0.10)); border: 1px solid rgba(255,107,53,0.30); }
.contact-channel-icon-whatsapp{ background: linear-gradient(135deg, rgba(37,211,102,0.25), rgba(37,211,102,0.10)); border: 1px solid rgba(37,211,102,0.30); }
.contact-channel-icon-email   { background: linear-gradient(135deg, rgba(79,70,229,0.25), rgba(79,70,229,0.10));  border: 1px solid rgba(79,70,229,0.30); }

.contact-channel-info { flex: 1; min-width: 0; }
.contact-channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
}
.contact-channel-name {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.contact-channel-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* CTA button inside channel */
.contact-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.contact-channel-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
}
.contact-channel-btn:hover::after { left: 160%; }
.contact-channel-btn:hover { transform: translateY(-3px); }

.contact-channel-btn-call {
  background: var(--brand);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}
.contact-channel-btn-call:hover { box-shadow: 0 14px 36px rgba(255,107,53,0.50); }
.contact-channel-btn-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}
.contact-channel-btn-whatsapp:hover { box-shadow: 0 14px 36px rgba(37,211,102,0.45); }
.contact-channel-btn-email {
  background: #4F46E5;
  box-shadow: 0 8px 24px rgba(79,70,229,0.30);
}
.contact-channel-btn-email:hover { box-shadow: 0 14px 36px rgba(79,70,229,0.45); }

/* info footer strip */
.contact-hub-footer {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.contact-hub-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.contact-hub-footer-item span:first-child { font-size: 16px; }

/* responsive */
@media (max-width: 768px) {
  .contact-hub { padding: 36px 24px; }
  .contact-hub-title { font-size: 24px; }
  .contact-channel { flex-wrap: wrap; gap: 16px; }
  .contact-channel-btn { width: 100%; justify-content: center; }
  .contact-hub-footer { gap: 16px; }
}


/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-text .section-title { text-align: left; }
.about-story-text .section-sub   { text-align: left; margin: 0 0 28px; }
.about-story-text .section-tag   { text-align: left; }
.about-visual {
  background: var(--brand-light);
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--lighter);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.value-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.value-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: 14px; color: var(--mid); line-height: 1.6; }


/* ════════════════════════════════════════════
   HOME — PAGE OVERVIEW CARDS
════════════════════════════════════════════ */
.page-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  text-decoration: none;
  display: block;
  will-change: transform;
}
.page-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.page-card-icon  { font-size: 44px; margin-bottom: 18px; display: block; }
.page-card h3    { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.page-card p     { font-size: 14px; color: var(--mid); line-height: 1.6; }
.page-card-link  {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.2s;
}
.page-card:hover .page-card-link { gap: 10px; }


/* ════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blogs-grid      { grid-template-columns: 1fr 1fr; }
  .support-grid    { grid-template-columns: 1fr 1fr; }
  .about-story     { gap: 48px; }
  .page-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .inner-hero { padding: calc(var(--nav-h) + 40px) 0 48px; }
  .blogs-grid      { grid-template-columns: 1fr; }
  .support-grid    { grid-template-columns: 1fr; }
  .about-story     { grid-template-columns: 1fr; gap: 40px; }
  .about-story-text .section-title,
  .about-story-text .section-sub { text-align: center; }
  .about-story-text .section-tag { margin: 0 auto; }
  .values-grid     { grid-template-columns: 1fr; }
  .page-cards-grid { grid-template-columns: 1fr; }
  .about-visual    { max-width: 300px; margin: 0 auto; font-size: 72px; }
}

/* ═══════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════ */
.booking-page { background: var(--lighter); min-height: 100vh; padding-bottom: 80px; }

/* progress bar */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 56px;
  max-width: 520px;
}
.booking-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.booking-step-dot::after {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(50% + 19px);
  width: calc(100% - 38px);
  height: 2px;
  background: var(--border);
  transition: background 0.4s;
}
.booking-step-dot:last-child::after { display: none; }
.booking-step-dot.done::after { background: var(--brand); }
.booking-step-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.booking-step-dot.active .booking-step-circle {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  box-shadow: 0 0 0 5px rgba(255,107,53,0.18);
}
.booking-step-dot.done .booking-step-circle {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.booking-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.booking-step-dot.active .booking-step-label { color: var(--brand); }

/* form card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}
.booking-card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.booking-card-sub { font-size: 14px; color: var(--mid); margin-bottom: 36px; }

/* field */
.booking-fields { display: flex; flex-direction: column; gap: 20px; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-field { display: flex; flex-direction: column; gap: 7px; }
.booking-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.booking-field label span { color: var(--brand); }
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.10);
}
.booking-field textarea { resize: vertical; min-height: 100px; }
.booking-field select { cursor: pointer; }

/* radio group */
.radio-group { display: flex; gap: 16px; }
.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.radio-option input[type="radio"] { accent-color: var(--brand); width: 16px; height: 16px; }
.radio-option:has(input:checked) {
  border-color: var(--brand);
  background: rgba(255,107,53,0.04);
}

/* disease reveal */
.disease-reveal { display: none; }
.disease-reveal.visible { display: flex; flex-direction: column; gap: 7px; }

/* nav buttons */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.booking-nav .btn-back {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.booking-nav .btn-back:hover { border-color: var(--dark); color: var(--dark); }
.booking-nav .btn-next {
  background: var(--brand);
  border: none;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(255,107,53,0.30);
  display: flex; align-items: center; gap: 8px;
}
.booking-nav .btn-next:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,0.40); }
.booking-nav .btn-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* success screen */
.booking-success {
  text-align: center;
  padding: 20px 0 10px;
  display: none;
}
.booking-success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #25D366, #1aad53);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  box-shadow: 0 12px 32px rgba(37,211,102,0.30);
}
.booking-success h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.03em; }
.booking-success p { font-size: 15px; color: var(--mid); line-height: 1.7; max-width: 420px; margin: 0 auto 32px; }
.booking-success-channels {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.booking-success-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.booking-success-tag-email { background: rgba(79,70,229,0.08); color: #4F46E5; }
.booking-success-tag-wa    { background: rgba(37,211,102,0.10); color: #1aad53; }

/* responsive */
@media (max-width: 768px) {
  .booking-card { padding: 32px 24px; }
  .booking-row  { grid-template-columns: 1fr; }
  .radio-group  { flex-direction: column; }
}

@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   AUTH PAGES (Sign In / Sign Up)
═══════════════════════════════════════════ */
.auth-section {
  min-height: calc(100vh - var(--nav-h));
  background: var(--lighter);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.auth-logo img { height: 52px; width: auto; }
.auth-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 6px;
}
.auth-sub {
  font-size: 14px;
  color: var(--mid);
  text-align: center;
  margin-bottom: 36px;
}
.auth-sub a { color: var(--brand); font-weight: 600; }

.auth-fields { display: flex; flex-direction: column; gap: 18px; }

.auth-field { display: flex; flex-direction: column; gap: 7px; }
.auth-field label { font-size: 13px; font-weight: 600; color: var(--dark); }
.auth-field label span { color: var(--brand); }

.auth-input-wrap { position: relative; }
.auth-input-wrap > svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
  pointer-events: none;
}
.auth-field input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.auth-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.10);
}
.auth-field input.error { border-color: #FF3B30; }

/* password toggle */
.auth-pw-toggle {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  padding: 0;
  display: flex;
  align-items: center;
}
.auth-pw-toggle:hover { color: var(--dark); }

.auth-forgot {
  text-align: right;
  margin-top: -8px;
}
.auth-forgot a { font-size: 12px; color: var(--brand); font-weight: 600; }

/* strength bar */
.pw-strength { margin-top: 6px; }
.pw-strength-bar {
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 4px;
}
.pw-strength-fill {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 0.3s, background 0.3s;
}
.pw-strength-label { font-size: 11px; font-weight: 600; color: var(--mid); }

/* error banner */
.auth-error {
  display: none;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: #be123c;
  font-weight: 500;
}
.auth-error.visible { display: block; }

/* submit button */
.auth-submit {
  width: 100%;
  padding: 15px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(255,107,53,0.28);
}
.auth-submit:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,0.38); }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  color: var(--mid);
  font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

@media (max-width: 520px) {
  .auth-card { padding: 36px 24px; }
}

/* ── COMING SOON TOAST ── */
.coming-soon-toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  background: #1D1D1F;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  white-space: nowrap;
}
.coming-soon-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ══════════════════════════════════════════════
   AUTH NAV — "Hi [Name]" dropdown
══════════════════════════════════════════════ */
.auth-nav-user {
  position: relative;
}
.auth-nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
}
.auth-nav-btn .auth-nav-chevron { transition: transform 0.2s; }
.auth-nav-user.open .auth-nav-chevron { transform: rotate(180deg); }

.auth-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}
.auth-nav-user.open .auth-nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.auth-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.auth-nav-dropdown-item:hover { background: rgba(255,107,53,0.06); }
.auth-nav-dropdown-item.signout { color: #FF3B30; }
.auth-nav-dropdown-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 4px 0; }


/* ══════════════════════════════════════════════
   WELCOME OVERLAY
══════════════════════════════════════════════ */
.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.93);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.welcome-overlay.fade-out { opacity: 0; pointer-events: none; }
.welcome-content {
  text-align: center;
  color: #fff;
  padding: 40px 32px;
  max-width: 420px;
  animation: welcomeIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes welcomeIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.welcome-paws {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.welcome-paw {
  font-size: 28px;
  animation: pawBounce 1.4s ease-in-out infinite;
}
.welcome-paw:nth-child(1) { animation-delay: 0s;    }
.welcome-paw:nth-child(2) { animation-delay: 0.18s; }
.welcome-paw:nth-child(3) { animation-delay: 0.36s; }
.welcome-paw:nth-child(4) { animation-delay: 0.54s; }
.welcome-paw:nth-child(5) { animation-delay: 0.72s; }
@keyframes pawBounce {
  0%, 80%, 100% { transform: translateY(0);    opacity: 0.5; }
  40%            { transform: translateY(-14px); opacity: 1;   }
}
.welcome-emoji { font-size: 64px; display: block; margin-bottom: 20px; animation: petBounce 2s ease-in-out infinite; }
@keyframes petBounce {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%       { transform: scale(1.08) rotate(3deg); }
}
.welcome-heading {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.welcome-heading span { color: var(--brand); }
.welcome-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.5;
}
.welcome-progress {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.welcome-progress-bar {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}


/* ══════════════════════════════════════════════
   BOOKING HISTORY PANEL
══════════════════════════════════════════════ */
.bh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bh-overlay.open { opacity: 1; pointer-events: all; }

.bh-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 95vw;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.bh-overlay.open .bh-panel { transform: translateX(0); }

.bh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.bh-header h2 { font-size: 18px; font-weight: 700; margin: 0; }
.bh-close {
  width: 34px; height: 34px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s;
}
.bh-close:hover { background: rgba(0,0,0,0.12); }

.bh-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bh-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--mid);
}
.bh-empty-icon { font-size: 48px; display: block; margin-bottom: 14px; }
.bh-empty h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.bh-empty p  { font-size: 14px; line-height: 1.5; }

.bh-card {
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  padding: 16px 18px;
  transition: box-shadow 0.2s;
}
.bh-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.bh-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bh-card-pet { font-size: 15px; font-weight: 700; color: var(--dark); }
.bh-card-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,107,53,0.12);
  color: var(--brand);
  text-transform: capitalize;
}
.bh-card-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 5px;
  line-height: 1.4;
}
.bh-card-row:last-child { margin-bottom: 0; }
.bh-card-label { font-weight: 600; color: var(--dark); min-width: 52px; }
.bh-card-date { font-size: 11px; color: var(--mid); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.06); }

.bh-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--mid);
  font-size: 14px;
}


/* ══════════════════════════════════════════════
   SIGNUP — extra form layout helpers
══════════════════════════════════════════════ */
.auth-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 8px 0 -4px;
}
.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .auth-row { grid-template-columns: 1fr; }
}
