/* ===================================================
   HOPEFUL PACKERS & MOVERS — style.css (Glassmorphism)
   Deep dark background + frosted glass + glow accents
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --accent:       #6366f1;      /* indigo */
  --accent2:      #f97316;      /* orange */
  --accent3:      #06b6d4;      /* cyan  */
  --glow-indigo:  rgba(99,102,241,.55);
  --glow-orange:  rgba(249,115,22,.45);
  --glow-cyan:    rgba(6,182,212,.4);
  --glass-bg:     rgba(255,255,255,.07);
  --glass-border: rgba(255,255,255,.15);
  --glass-hover:  rgba(255,255,255,.13);
  --white:        #ffffff;
  --text-dim:     rgba(255,255,255,.65);
  --text-faint:   rgba(255,255,255,.40);
  --radius:       18px;
  --radius-lg:    24px;
  --transition:   .3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }

/* ── ANIMATED GRADIENT BODY ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  min-height: 100vh;
  background: #050814;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 10%,  rgba(99,102,241,.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 80%,  rgba(249,115,22,.2)  0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 50% 50%,  rgba(6,182,212,.12)  0%, transparent 60%);
  background-attachment: fixed;
  line-height: 1.65;
}

/* animated grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ── GLASS CARD MIXIN HELPER ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius);
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,8,20,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 40px rgba(99,102,241,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.logo-name {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  background: linear-gradient(90deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.logo-tagline {
  display: block;
  font-size: .68rem;
  color: var(--text-faint);
  letter-spacing: .04em;
}

/* Nav */
.nav { display: flex; gap: 26px; }
.nav a {
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  transition: color var(--transition);
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  border-radius: 2px;
  transition: right var(--transition);
}
.nav a:hover        { color: var(--white); }
.nav a:hover::after { right: 0; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px 10px;
  gap: 6px;
  backdrop-filter: blur(10px);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-dim);
  padding: 4px 10px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: .02em;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), #818cf8);
  color: var(--white);
  box-shadow: 0 0 14px var(--glow-indigo);
}
.lang-sep { color: rgba(255,255,255,.2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 80px;
}

/* Glowing orbs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  background: rgba(99,102,241,.35);
  top: -100px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  width: 400px; height: 400px;
  background: rgba(249,115,22,.25);
  bottom: -80px; right: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.06); }
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #050814, transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(99,102,241,.4);
  color: #a5b4fc;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  animation: fadeIn .8s ease both;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp .8s ease both .1s;
}

.hero-sub {
  font-size: clamp(.98rem, 2.4vw, 1.2rem);
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp .8s ease both .2s;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideUp .8s ease both .3s;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp .8s ease both .4s;
}

.badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: var(--text-dim);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  transition: background var(--transition);
}
.badge:hover { background: rgba(255,255,255,.12); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: transform .18s, box-shadow .2s;
  min-height: 52px;
  letter-spacing: .02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), #dc2626);
  color: var(--white);
  box-shadow: 0 4px 24px var(--glow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px var(--glow-orange);
}

.btn-outline {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
}

.btn-full { width: 100%; }

/* ── SECTIONS ── */
.section { padding: 80px 0; position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.35);
  color: #a5b4fc;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  background: linear-gradient(135deg, rgba(99,102,241,.3), rgba(6,182,212,.2));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: 0 8px 48px rgba(99,102,241,.3), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(99,102,241,.3), transparent 70%);
  filter: blur(30px);
}

.about-text .section-label { margin-bottom: 12px; }
.about-text p {
  color: var(--text-dim);
  margin-top: 16px;
  font-size: .96rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong {
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: .78rem; color: var(--text-faint); font-weight: 500; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  background: var(--glass-hover);
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 20px 60px rgba(99,102,241,.22), 0 0 0 1px rgba(99,102,241,.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(99,102,241,.5));
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c7d2fe;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .83rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ══════════════════════════════════
   HOW WE WORK
══════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249,115,22,.2);
  border-color: rgba(249,115,22,.35);
}

.step-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(249,115,22,.5));
}
.step-card h3 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dim);
  line-height: 1.45;
}

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-card {
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(6,182,212,.12));
  border: 1px solid rgba(99,102,241,.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(99,102,241,.15), transparent 70%);
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(99,102,241,.3);
}

.why-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 14px var(--glow-cyan));
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e0e7ff;
}

/* ══════════════════════════════════
   FLOATING ACTION BUTTONS (FAB)
══════════════════════════════════ */
.fab-container {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  text-decoration: none;
}
.fab svg { width: 26px; height: 26px; }

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
}
.fab-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 36px rgba(37,211,102,.65);
}

.fab-call {
  background: linear-gradient(135deg, var(--accent), #4338ca);
  box-shadow: 0 4px 24px var(--glow-indigo);
}
.fab-call:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 36px var(--glow-indigo);
}

/* Pulse ring on WhatsApp FAB */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ══════════════════════════════════
   ABOUT SVG ILLUSTRATION
══════════════════════════════════ */
.about-svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(99,102,241,.25);
  border: 1px solid rgba(255,255,255,.1);
}

/* ══════════════════════════════════
   SERVICES BANNER
══════════════════════════════════ */
.services-banner {
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 32px rgba(99,102,241,.18);
}
.services-banner svg { display: block; width: 100%; }

/* ══════════════════════════════════
   WHATSAPP BUTTON
══════════════════════════════════ */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  display: inline-flex;
  align-items: center;
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(37,211,102,.55);
}

/* ══════════════════════════════════
   CONTACT CARDS GRID (no form)
══════════════════════════════════ */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.contact-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--white);
}
.contact-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

/* colour-coded hover borders */
.contact-call:hover   { border-color: rgba(99,102,241,.5);  box-shadow: 0 14px 40px rgba(99,102,241,.2); }
.contact-wa:hover     { border-color: rgba(37,211,102,.5);  box-shadow: 0 14px 40px rgba(37,211,102,.2); }
.contact-email:hover  { border-color: rgba(249,115,22,.5);  box-shadow: 0 14px 40px rgba(249,115,22,.2); }
.contact-addr:hover   { border-color: rgba(6,182,212,.5);   box-shadow: 0 14px 40px rgba(6,182,212,.2); }
.contact-hours:hover  { border-color: rgba(250,204,21,.5);  box-shadow: 0 14px 40px rgba(250,204,21,.2); }
.contact-insta:hover  { border-color: rgba(236,72,153,.5);  box-shadow: 0 14px 40px rgba(236,72,153,.2); }
.contact-yt:hover     { border-color: rgba(239,68,68,.5);   box-shadow: 0 14px 40px rgba(239,68,68,.2); }

.cac-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.cac-icon svg { width: 24px; height: 24px; }
.contact-call  .cac-icon { background: rgba(99,102,241,.2);  color: #a5b4fc; }
.contact-wa    .cac-icon { background: rgba(37,211,102,.2);  color: #4ade80; }
.contact-email .cac-icon { background: rgba(249,115,22,.2);  color: #fb923c; }
.contact-addr  .cac-icon { background: rgba(6,182,212,.2);   color: #67e8f9; }
.contact-hours .cac-icon { background: rgba(250,204,21,.2);  color: #fde047; }
.contact-insta .cac-icon { background: rgba(236,72,153,.2);  color: #f472b6; }
.contact-yt    .cac-icon { background: rgba(239,68,68,.2);   color: #f87171; }

.contact-action-card strong {
  display: block; font-size: .78rem; font-weight: 700;
  color: #a5b4fc; margin-bottom: 3px; letter-spacing: .03em;
}
.contact-action-card p {
  font-size: .82rem; color: var(--text-dim); line-height: 1.4;
  word-break: break-word;
}

/* WhatsApp CTA Banner */
.wa-cta-banner {
  background: linear-gradient(135deg, rgba(37,211,102,.18), rgba(18,140,126,.12));
  border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(16px);
  flex-wrap: wrap;
}
.wa-cta-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.wa-cta-text p { font-size: .88rem; color: var(--text-dim); }

/* ══════════════════════════════════
   FOOTER (updated with links)
══════════════════════════════════ */
.footer {
  background: rgba(5,8,20,.95);
  border-top: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: .95rem;
  background: linear-gradient(90deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: #a5b4fc; }

.footer-copy { font-size: .78rem; color: var(--text-faint); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.animate-fade      { animation: fadeIn  .8s ease both; }
.animate-slide-up  { animation: slideUp .8s ease both; }

@keyframes fadeIn  {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .about-inner    { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: rgba(5,8,20,.97);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 22px 22px;
    gap: 4px;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 13px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .hamburger    { display: flex; }
  .header-inner { position: relative; }

  .hero           { min-height: 520px; padding: 110px 0 60px; }
  .section        { padding: 56px 0; }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { flex-direction: column; text-align: center; }
  .footer-links   { justify-content: center; }
  .wa-cta-banner  { flex-direction: column; text-align: center; padding: 24px 20px; }
  .fab-container  { right: 14px; bottom: 20px; }
  .fab            { width: 50px; height: 50px; }
}

@media (max-width: 420px) {
  .hero-btns      { flex-direction: column; align-items: center; }
  .why-grid       { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .hero-title     { font-size: 1.8rem; }
  .contact-cards-grid { grid-template-columns: 1fr; }
}