/* =============================================
   ZEUTRIP — MAINTENANCE PAGE  |  Light Theme
   ============================================= */

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

/* ---------- Design tokens ---------- */
:root {
  --bg:         #f5f7fa;
  --bg2:        #ffffff;
  --text:       #1e293b;
  --text2:      #334155;
  --muted:      #64748b;
  --muted2:     #94a3b8;
  --border:     rgba(15,23,42,.08);
  --border2:    rgba(15,23,42,.13);
  --blue:       #0ea5e9;
  --blue2:      #0284c7;
  --amber:      #d97706;
  --amber2:     #f59e0b;
  --emerald:    #059669;
  --purple:     #7c3aed;
  --card:       rgba(255,255,255,.85);
  --card-solid: #ffffff;
  --shadow-sm:  0 1px 4px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.06);
  --shadow-md:  0 4px 24px rgba(15,23,42,.09), 0 1px 4px rgba(15,23,42,.05);
  --shadow-lg:  0 8px 40px rgba(15,23,42,.12);
  --blur:       blur(16px);
  --r-sm:       .625rem;
  --r-md:       1rem;
  --r-lg:       1.5rem;
  --transition: .28s cubic-bezier(.4,0,.2,1);
  --z-pre:      9000;
  --z-main:     10;

  /* Orbit geometry (controlled here for easy tweaking) */
  --orbit-r:    165px;     /* radius of the orbit circle            */
  --node-size:  88px;      /* width = height of each service card   */
  --node-half:  -44px;     /* = calc(var(--node-size) / -2)         */
  --orbit-dur:  18s;       /* full revolution duration              */
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  /* Subtle dot grid */
  background-image: radial-gradient(circle at 1px 1px, #d1d9e6 1px, transparent 0);
  background-size: 36px 36px;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-pre);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.75rem;
  transition: opacity .65s ease, visibility .65s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  animation: pulseScale 1.5s ease-in-out infinite;
}
.pre-logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
}
.pre-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: .05em;
  color: var(--muted);
}

.pre-track {
  width: min(300px, 78vw);
  height: 3px;
  background: var(--border2);
  border-radius: 99px;
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--amber2), var(--emerald));
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  transition: width .12s ease;
}

.pre-tip {
  font-size: .82rem;
  color: var(--muted2);
  letter-spacing: .04em;
}

/* =============================================
   MAIN LAYOUT
   ============================================= */
#main {
  position: relative;
  z-index: var(--z-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,247,250,.80);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  cursor: default;
}
.logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}
.logo-sep {
  width: 1px;
  height: 22px;
  background: var(--border2);
  flex-shrink: 0;
  margin: 0 .1rem;
}
.logo-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  color: #64748b;
  line-height: 1;
}
.logo-tld {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .03em;
  color: var(--muted2);
  margin-left: .02em;
  line-height: 1;
}

/* ── Header right group ── */
.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .2rem;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 99px;
  padding: .22rem .28rem;
}
.lang-btn {
  background: none;
  border: none;
  padding: .28rem .65rem;
  border-radius: 99px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--muted2);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lang-btn.active {
  background: var(--blue2);
  color: #fff;
  box-shadow: 0 2px 8px rgba(2,132,199,.22);
}
.lang-btn:hover:not(.active) {
  color: var(--text2);
  background: rgba(15,23,42,.06);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 99px;
  padding: .38rem .9rem;
  letter-spacing: .04em;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber2);
  box-shadow: 0 0 6px var(--amber2);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 3.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ── Left column ── */
.hero-left { display: flex; flex-direction: column; gap: 2rem; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem 1rem;
  background: rgba(217,119,6,.08);
  border: 1px solid rgba(217,119,6,.28);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .08em;
  width: fit-content;
}
.status-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber2);
  box-shadow: 0 0 6px var(--amber2);
  animation: blink 1.8s ease-in-out infinite;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
}
.title-line { display: block; }
.title-line.accent {
  color: var(--blue2);
}

.hero-desc {
  font-size: clamp(.92rem, 1.6vw, 1.08rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.8;
}

/* ── Service cards ── */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem .65rem;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}
.svc-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--icon-bg, rgba(14,165,233,.10));
  color: var(--icon-color, var(--blue));
  flex-shrink: 0;
}
.svc-icon svg { width: 20px; height: 20px; }
.svc-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text2);
}
.svc-tag {
  font-size: .62rem;
  color: var(--muted2);
  background: var(--bg);
  padding: .15rem .45rem;
  border-radius: 99px;
  border: 1px solid var(--border);
}

/* ── Notify form ── */
.notify-wrap { display: flex; flex-direction: column; gap: .65rem; }
.notify-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.notify-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.notify-input {
  flex: 1 1 210px;
  background: var(--card-solid);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  padding: .72rem 1rem;
  outline: none;
  transition: var(--transition);
  min-width: 0;
  box-shadow: var(--shadow-sm);
}
.notify-input::placeholder { color: var(--muted2); }
.notify-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.14);
}
.notify-btn {
  padding: .72rem 1.5rem;
  background: var(--blue2);
  border: none;
  border-radius: var(--r-sm);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(2,132,199,.30);
}
.notify-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(14,165,233,.35);
}
.notify-btn:active { transform: translateY(0); }
.notify-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.notify-success {
  display: none;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: var(--emerald);
  font-weight: 600;
}
.notify-success.show { display: flex; animation: fadeInUp .4s ease both; }
.notify-success svg { width: 17px; height: 17px; flex-shrink: 0; }

/* =============================================
   ORBIT MAINTENANCE ANIMATION (right column)
   =============================================
   Each .orbit-node sits at top:50% left:50%
   (pivot = screen center) and uses:
     rotate(Θ) translateX(r) rotate(-Θ) translate(half, half)
   so the card orbits while staying upright.
   ============================================= */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-scene {
  position: relative;
  /* diameter = 2*(orbit-r + node-size) */
  width: clamp(380px, 44vw, 500px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative rings */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.ring-mid {
  /* matches the orbit path exactly */
  width:  calc(var(--orbit-r) * 2);
  height: calc(var(--orbit-r) * 2);
  border: 1.5px dashed rgba(15,23,42,.12);
}
.ring-outer {
  width:  calc(var(--orbit-r) * 2 + 70px);
  height: calc(var(--orbit-r) * 2 + 70px);
  border: 1px solid rgba(15,23,42,.05);
}

/* Central hub card */
.orbit-hub {
  position: relative;
  z-index: 2;
  width: 136px; height: 136px;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1rem;
  animation: hubFloat 4.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hub-gear-wrap {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.hub-gear {
  width: 44px; height: 44px;
  color: var(--blue);
  opacity: .25;
  animation: spinCW 12s linear infinite;
  position: absolute;
}
.hub-wrench {
  width: 26px; height: 26px;
  color: var(--blue2);
  position: absolute;
  z-index: 1;
}

.hub-label {
  font-size: .6rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hub-bar-track {
  width: 74px; height: 3px;
  background: var(--bg);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hub-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  animation: barPulse 2.8s ease-in-out infinite;
}

/* ── Orbit nodes ── */
.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  animation: orbitCW var(--orbit-dur) linear infinite var(--od, 0s);
  /* transform-origin stays at 0 0 (the pivot = scene center) */
}

/* Service card inside each node */
.node-card {
  width: var(--node-size);
  height: var(--node-size);
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  /* counter-rotation keeps card upright */
  animation: counterCW var(--orbit-dur) linear infinite var(--od, 0s);
}

.node-icon-wrap {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--nb, rgba(14,165,233,.10));
  color: var(--nc, var(--blue));
}
.node-icon-wrap svg { width: 18px; height: 18px; }

.node-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Individual node orbit offsets (16s period → 4s per quarter) */
.n-flights      { --od: 0s;    } /* starts at 3 o'clock  */
.n-hotels       { --od: -4.5s; } /* starts at 6 o'clock  */
.n-cars         { --od: -9s;   } /* starts at 9 o'clock  */
.n-destinations { --od: -13.5s;} /* starts at 12 o'clock */

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem) 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  background: var(--card-solid);
}

.stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--blue2);
}
.stat-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 1.1rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--card-solid);
}

.footer-copy {
  font-size: .76rem;
  color: var(--muted2);
}
.footer-link {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--blue2); }

.social-links { display: flex; gap: .7rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--border2);
  color: var(--muted2);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.social-link:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(2,132,199,.28);
}
.social-link svg { width: 15px; height: 15px; }

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hubFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

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

@keyframes barPulse {
  0%        { width: 8%;  }
  50%       { width: 88%; }
  100%      { width: 8%;  }
}

/*
  Orbit math:
    rotate(Θ) translateX(r) rotate(-Θ) translate(half, half)

  - rotate(Θ): spin coordinate system
  - translateX(r): move along rotated X axis  → element traces circle of radius r
  - rotate(-Θ): counterrotate → element stays upright
  - translate(node-half, node-half): center the card on its orbital position
*/
@keyframes orbitCW {
  from { transform: rotate(0deg)   translateX(var(--orbit-r)) rotate(0deg)   translate(var(--node-half), var(--node-half)); }
  to   { transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg) translate(var(--node-half), var(--node-half)); }
}

/* Counter-rotation for the card inside each node */
@keyframes counterCW {
  from { transform: rotate(0deg);    }
  to   { transform: rotate(-360deg); }
}

/* =============================================
   MAINTENANCE DATE & ELAPSED COUNTER
   ============================================= */
.maint-since {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .9rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
}

.maint-since-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}
.maint-since-icon {
  width: 15px; height: 15px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: .15rem;
}
.maint-since-row strong {
  color: var(--text2);
  font-weight: 700;
}

.elapsed-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.elapsed-lbl {
  font-size: .72rem;
  color: var(--muted2);
  font-weight: 500;
  white-space: nowrap;
}
.elapsed-units {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.elapsed-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .3rem .65rem;
  min-width: 46px;
  gap: .05rem;
}
.elapsed-unit b {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue2);
  line-height: 1.2;
  letter-spacing: .02em;
}
.elapsed-unit span {
  font-size: .48rem;
  color: var(--muted2);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.elapsed-dot {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--muted2);
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1;
}

/* Entrance animation classes */
.anim-fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

.anim-fade-in {
  opacity: 0;
  transition: opacity .85s ease;
  transition-delay: var(--delay, 0s);
}
.anim-fade-in.visible { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-right { display: none; }
}

/* ── Tablet portrait (≤ 768px) ── */
@media (max-width: 768px) {
  /* Remove sticky so it doesn't overlap content while scrolling */
  .header {
    position: relative;
    padding: 1rem 1.25rem;
  }
  .header-badge { display: none; }
  .hero { padding: 1.75rem 1.25rem 2.5rem; gap: 1.5rem; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 3rem); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { gap: 2rem; padding: 1.5rem 1.25rem; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  /* Header */
  .header { padding: .85rem 1rem; }
  .logo-img  { width: 34px; height: 34px; }
  .logo-sep  { height: 18px; }
  .logo-brand { font-size: .88rem; }
  .logo-tld   { font-size: .82rem; }
  .lang-btn   { padding: .24rem .48rem; font-size: .64rem; }
  .lang-switcher { padding: .18rem .22rem; }

  /* Hero */
  .hero {
    padding: 1.1rem 1rem 1.75rem;
    gap: 1.25rem;
  }
  .hero-title {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
    letter-spacing: -.02em;
  }
  .hero-desc {
    font-size: .88rem;
    line-height: 1.7;
    max-width: 100%;
  }

  /* Maintenance since widget */
  .maint-since {
    padding: .75rem .9rem;
    gap: .55rem;
  }
  .maint-since-row { font-size: .78rem; gap: .4rem; }
  .elapsed-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
  }
  .elapsed-lbl { font-size: .7rem; }
  .elapsed-units { gap: .25rem; }
  .elapsed-unit  { min-width: 38px; padding: .25rem .5rem; }
  .elapsed-unit b { font-size: .88rem; }
  .elapsed-unit span { font-size: .44rem; }
  .elapsed-dot { font-size: .9rem; margin-bottom: 10px; }

  /* Service cards */
  .services { gap: .55rem; }
  .svc-card { padding: .85rem .5rem; gap: .4rem; }
  .svc-icon { width: 36px; height: 36px; }
  .svc-icon svg { width: 18px; height: 18px; }
  .svc-label { font-size: .7rem; }
  .svc-tag   { font-size: .58rem; }

  /* Fix: flex-basis becomes height in column layout */
  .notify-wrap { gap: .55rem; }
  .notify-label { font-size: .8rem; }
  .notify-form { flex-direction: column; gap: .5rem; }
  .notify-input {
    flex: 0 0 auto;   /* prevents 210px height bug in column flex */
    width: 100%;
    padding: .7rem .9rem;
    font-size: .9rem;
  }
  .notify-btn {
    width: 100%;
    padding: .72rem 1rem;
    font-size: .88rem;
  }

  /* Stats */
  .stats-bar {
    padding: 1.25rem 1rem;
    gap: 1rem 2rem;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-lbl { font-size: .68rem; }

  /* Footer */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: .75rem;
  }
  .footer-copy { font-size: .74rem; }
}

/* ── Very small screens (≤ 360px) ── */
@media (max-width: 360px) {
  .header { padding: .75rem .85rem; }
  .logo-brand { font-size: .8rem; }
  .hero { padding: 1rem .85rem 1.5rem; }
  .hero-title { font-size: 1.55rem; }
  .services { gap: .45rem; }
  .svc-card { padding: .75rem .4rem; }
  .elapsed-unit { min-width: 34px; padding: .22rem .4rem; }
}

/* ── TV / large displays (≥ 2000px) ── */
@media (min-width: 2000px) {
  :root { --orbit-r: 200px; --node-size: 110px; --node-half: -55px; }
  body { font-size: 1.1rem; }
  .hero { max-width: 1900px; padding: 4rem 7rem 5rem; }
  .orbit-scene { width: 640px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
