/* ==========================================================================
   SHAHZAIB AUTOS — Design System
   Palette:  Void Black #0A0A0B | Charcoal #16171A | Steel #232529
             Ash White #F2F1EE | Signal Orange #FF5A1F | Ember #FFB020
   Type:     Display — Oswald (condensed, industrial)
             Body    — Inter
             Utility — JetBrains Mono (specs, numbers, labels)
   ========================================================================== */

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

:root{
  --void:      #0A0A0B;
  --charcoal:  #16171A;
  --steel:     #212327;
  --steel-2:   #2B2E33;
  --ash:       #F2F1EE;
  --ash-dim:   #B7B7B3;
  --orange:    #FF5A1F;
  --orange-2:  #FF7A3D;
  --ember:     #FFB020;
  --line:      rgba(242,241,238,0.09);

  --display: 'Oswald', sans-serif;
  --body:    'Inter', sans-serif;
  --mono:    'JetBrains Mono', monospace;

  --container: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  background:var(--void);
  color:var(--ash);
  font-family:var(--body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

::selection{ background:var(--orange); color:var(--void); }

:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height:1.08;
}
h1{ font-size:clamp(2.6rem, 6vw, 5rem); font-weight:700; }
h2{ font-size:clamp(2rem, 4vw, 3rem); }
h3{ font-size:clamp(1.25rem, 2.2vw, 1.6rem); }
p{ color:var(--ash-dim); }
.lede{ font-size:1.15rem; line-height:1.7; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--mono);
  font-size:0.78rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--orange);
}

.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Layout rhythm ---------- */
section{ padding:104px 0; position:relative; }
@media (max-width:768px){ section{ padding:72px 0; } }

.section-alt{ background:var(--charcoal); }

.divider-chevron{
  height:14px;
  width:100%;
  background:var(--void);
  --c: var(--steel);
  background-image:
    linear-gradient(135deg, var(--c) 25%, transparent 25.5%),
    linear-gradient(-135deg, var(--c) 25%, transparent 25.5%);
  background-size:28px 28px;
  background-position:center;
  opacity:0.6;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  font-family:var(--display);
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border:1px solid transparent;
  border-radius:var(--radius);
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--orange);
  color:var(--void);
}
.btn-primary:hover{ background:var(--orange-2); transform:translateY(-2px); }
.btn-outline{
  background:transparent;
  border-color:rgba(242,241,238,0.28);
  color:var(--ash);
}
.btn-outline:hover{
  border-color:var(--orange);
  color:var(--orange);
  transform:translateY(-2px);
}
.btn-block{ width:100%; }
.btn-wa{
  background:#20BA5A;
  color:#0A0A0B;
}
.btn-wa:hover{ background:#28d267; transform:translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(10,10,11,0.82);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:background .3s ease;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:46px; width:auto; }
.brand-text{
  font-family:var(--display);
  font-weight:700;
  font-size:1.15rem;
  letter-spacing:0.03em;
}
.brand-text span{ color:var(--orange); }

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links a{
  font-family:var(--mono);
  font-size:0.8rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ash-dim);
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background:var(--orange);
  transition:width .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active{ color:var(--ash); }
.nav-links a:hover::after,
.nav-links a.active::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-cta .btn{ padding:11px 22px; font-size:0.82rem; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:8px;
}
.nav-toggle span{
  width:24px; height:2px;
  background:var(--ash);
  transition:transform .25s ease, opacity .25s ease;
}

@media (max-width:960px){
  .nav-links{
    position:fixed;
    top:73px; left:0; right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:var(--charcoal);
    border-bottom:1px solid var(--line);
    max-height:0;
    overflow:hidden;
    transition:max-height .35s var(--ease);
  }
  .nav-links.open{ max-height:520px; }
  .nav-links a{ width:100%; padding:16px 24px; border-bottom:1px solid var(--line); }
  .nav-links a::after{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  padding-top:140px;
  padding-bottom:80px;
  position:relative;
  background:
    radial-gradient(1100px 620px at 82% 18%, rgba(255,90,31,0.14), transparent 60%),
    linear-gradient(180deg, var(--void) 0%, #0d0d0f 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}
@media (max-width:900px){
  .hero{ min-height:auto; }
  .hero-grid{ grid-template-columns:1fr; gap:44px; }
}
.hero h1{ margin-bottom:22px; }
.hero-rev{
  position:relative;
  height:3px;
  width:220px;
  background:var(--steel-2);
  margin-bottom:26px;
  overflow:hidden;
}
.hero-rev::after{
  content:"";
  position:absolute; top:0; left:0; bottom:0;
  width:0%;
  background:linear-gradient(90deg, var(--orange), var(--ember));
  animation:rev-sweep 1.6s var(--ease) 0.3s forwards;
}
@keyframes rev-sweep{ to{ width:100%; } }

.hero-desc{ max-width:520px; margin-bottom:36px; font-size:1.05rem; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-stats{
  display:flex;
  gap:32px;
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.hero-stat{
  font-family:var(--display);
  font-weight:600;
  font-size:0.98rem;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--ash);
  position:relative;
  padding-left:18px;
}
.hero-stat::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width:8px; height:8px;
  transform:translateY(-50%);
  background:var(--orange);
  border-radius:50%;
}

/* Large, faint logo mark behind the hero heading.
   Anchored to .hero-content (the text column) rather than the full-width
   .hero section, so it stays locked to the text at any screen width/zoom
   instead of drifting relative to it. */
.hero-content{ position:relative; }
.hero-watermark{
  position:absolute;
  z-index:-1;
  top:50%;
  left:-24px;
  width:420px;
  max-width:120%;
  transform:translateY(-50%);
  opacity:0.06;
  filter:grayscale(1);
  pointer-events:none;
}
.hero-watermark img{ width:100%; height:auto; }
@media (max-width:900px){
  .hero-watermark{ display:none; }
}

/* Hero visual: abstract mechanical panel (no stock photo needed) */
.hero-visual{
  position:relative;
  aspect-ratio:4/5;
  border:1px solid var(--line);
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 26px),
    linear-gradient(160deg, var(--steel) 0%, var(--charcoal) 60%, var(--void) 100%);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual svg{ width:78%; height:auto; }
.hero-visual::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.65) 100%);
}
.hero-tag{
  position:absolute;
  bottom:20px; left:20px;
  font-family:var(--mono);
  font-size:0.72rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--orange);
  border:1px solid var(--orange);
  padding:8px 14px;
  background:rgba(10,10,11,0.7);
  z-index:2;
}

.hero-logo-panel{
  position:absolute; inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,90,31,0.14), transparent 62%),
    linear-gradient(160deg, var(--steel) 0%, var(--charcoal) 60%, var(--void) 100%);
}
.hero-logo-panel img{
  width:100%;
  max-width:420px;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}

/* ---------- Spec tag (signature element) ---------- */
.spec-tag{
  display:inline-flex;
  align-items:center;
  font-family:var(--mono);
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ember);
  border:1px solid rgba(255,176,32,0.35);
  padding:5px 10px;
  border-radius:var(--radius);
}

/* ---------- Cards: Services / Parts / Values ---------- */
.grid{
  display:grid;
  gap:24px;
}
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:960px){
  .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:620px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
}

.card{
  background:var(--charcoal);
  border:1px solid var(--line);
  padding:32px 26px;
  position:relative;
  transition:transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,90,31,0.4);
  background:#191a1e;
}
.card::before{
  content:"";
  position:absolute; top:0; left:0;
  width:0; height:2px;
  background:var(--orange);
  transition:width .3s var(--ease);
}
.card:hover::before{ width:100%; }

.card-icon{
  width:46px; height:46px;
  border:1px solid var(--steel-2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  color:var(--orange);
}
.card h3{ margin-bottom:10px; font-size:1.15rem; }
.card p{ font-size:0.94rem; }

.card-num{
  font-family:var(--mono);
  font-size:0.72rem;
  color:var(--ash-dim);
  letter-spacing:0.1em;
  position:absolute;
  top:26px; right:26px;
}

/* Parts card variant with image slot */
.part-card{
  background:var(--charcoal);
  border:1px solid var(--line);
  overflow:hidden;
  transition:transform .3s var(--ease), border-color .3s var(--ease);
}
.part-card:hover{ transform:translateY(-6px); border-color:rgba(255,90,31,0.4); }
.part-media{
  aspect-ratio:1/1;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,90,31,0.16), transparent 55%),
    linear-gradient(150deg, var(--steel) 0%, var(--void) 100%);
  display:flex; align-items:center; justify-content:center;
  border-bottom:1px solid var(--line);
  position:relative;
}
.part-media svg{ width:44%; height:auto; color:var(--ash-dim); opacity:0.9; }
.part-body{ padding:18px 20px 22px; }
.part-body h3{ font-size:1rem; margin-bottom:4px; }
.part-body span{
  font-family:var(--mono);
  font-size:0.72rem;
  color:var(--orange);
  letter-spacing:0.08em;
}

/* Image placeholder block (legacy, kept for compatibility) */
.img-slot{
  aspect-ratio:16/10;
  border:1px dashed rgba(242,241,238,0.22);
  background:linear-gradient(150deg, var(--charcoal), var(--void));
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
  gap:8px;
  text-align:center;
  padding:20px;
}
.img-slot span{
  font-family:var(--mono);
  font-size:0.7rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ash-dim);
}

/* Photo slot: shows a real photo once it exists at the given path;
   falls back to a labeled placeholder (via onerror in the markup) until then. */
.photo-slot{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
  border:1px solid var(--line);
  background:var(--charcoal);
}
.photo-slot.hero-visual{ aspect-ratio:4/5; border:1px solid var(--line); }
.photo-slot.part-media{ aspect-ratio:1/1; border:none; border-bottom:1px solid var(--line); }
/* When a photo-slot is nested inside .hero-visual (rather than being it),
   force it to fill the parent — flex centering doesn't stretch children by default. */
.hero-visual > .photo-slot{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:none;
}
.photo-slot img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.photo-slot .slot-fallback{
  position:absolute; inset:0;
  display:none;
  align-items:center; justify-content:center;
  flex-direction:column;
  gap:10px;
  text-align:center;
  padding:20px;
  background:linear-gradient(150deg, var(--steel), var(--void));
  border:1px dashed rgba(242,241,238,0.22);
}
.photo-slot.slot-empty .slot-fallback{ display:flex; }
.photo-slot .slot-fallback span{
  font-family:var(--mono);
  font-size:0.7rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ash-dim);
  line-height:1.6;
  word-break:break-word;
}

/* ---------- Why choose us / checklist ---------- */
.check-list{ display:flex; flex-direction:column; gap:18px; }
.check-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.check-mark{
  flex:none;
  width:30px; height:30px;
  border:1px solid var(--orange);
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono);
  font-size:0.85rem;
}
.check-item h4{
  font-family:var(--body);
  text-transform:none;
  font-weight:600;
  font-size:1.02rem;
  margin-bottom:4px;
  color:var(--ash);
}
.check-item p{ font-size:0.92rem; margin:0; }

/* ---------- Testimonials ---------- */
.testi-card{
  background:var(--charcoal);
  border:1px solid var(--line);
  padding:30px 28px;
  position:relative;
}
.testi-stars{ color:var(--ember); font-size:0.95rem; letter-spacing:2px; margin-bottom:14px; }
.testi-quote{ color:var(--ash); font-size:1rem; line-height:1.7; margin-bottom:22px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px;
  border-radius:50%;
  background:linear-gradient(150deg, var(--orange), var(--ember));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display);
  font-weight:600;
  color:var(--void);
}
.testi-person b{ display:block; font-size:0.92rem; }
.testi-person span{ font-family:var(--mono); font-size:0.72rem; color:var(--ash-dim); }

/* ---------- FAQ accordion ---------- */
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:24px 4px;
  background:none;
  border:none;
  color:var(--ash);
  text-align:left;
  font-family:var(--display);
  font-size:1.02rem;
  letter-spacing:0.01em;
  text-transform:none;
  font-weight:500;
}
.faq-q .plus{
  flex:none;
  width:26px; height:26px;
  border:1px solid var(--steel-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--orange);
  font-family:var(--mono);
  transition:transform .3s var(--ease);
}
.faq-item.open .plus{ transform:rotate(45deg); border-color:var(--orange); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s var(--ease);
}
.faq-a-inner{ padding:0 4px 26px; max-width:760px; }
.faq-a-inner p{ font-size:0.95rem; }

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:48px;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

.info-card{
  display:flex;
  gap:16px;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}
.info-icon{
  flex:none;
  width:44px; height:44px;
  border:1px solid var(--steel-2);
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.info-card h4{
  font-family:var(--body);
  text-transform:none;
  font-size:1rem;
  font-weight:600;
  margin-bottom:4px;
}
.info-card p{ font-size:0.92rem; margin:0; }
.info-card a{ color:var(--ash); transition:color .2s ease; }
.info-card a:hover{ color:var(--orange); }

.form-group{ margin-bottom:20px; }
.form-group label{
  display:block;
  font-family:var(--mono);
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ash-dim);
  margin-bottom:8px;
}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  background:var(--charcoal);
  border:1px solid var(--steel-2);
  color:var(--ash);
  padding:14px 16px;
  border-radius:var(--radius);
  font-size:0.95rem;
  transition:border-color .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{ border-color:var(--orange); outline:none; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }

.map-frame{
  aspect-ratio:16/9;
  border:1px solid var(--line);
  overflow:hidden;
}
.map-frame iframe{ width:100%; height:100%; border:0; filter:grayscale(0.4) invert(0.92) contrast(0.85); }

.hours-table{ width:100%; border-collapse:collapse; margin-top:8px; }
.hours-table td{ padding:10px 0; border-bottom:1px solid var(--line); font-size:0.92rem; }
.hours-table td:first-child{ color:var(--ash); font-weight:500; }
.hours-table td:last-child{ text-align:right; color:var(--ash-dim); font-family:var(--mono); font-size:0.85rem; }

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg, #1b1c1f 0%, var(--void) 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:72px 0;
}
.cta-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cta-band h2{ margin-bottom:6px; }
.cta-band .actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{
  padding:168px 0 64px;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(255,90,31,0.12), transparent 60%),
    var(--void);
  border-bottom:1px solid var(--line);
}
.breadcrumb{
  font-family:var(--mono);
  font-size:0.78rem;
  color:var(--ash-dim);
  letter-spacing:0.06em;
  margin-bottom:18px;
}
.breadcrumb a{ color:var(--ash-dim); }
.breadcrumb a:hover{ color:var(--orange); }
.breadcrumb .sep{ margin:0 8px; color:var(--steel-2); }
.page-hero p{ max-width:600px; margin-top:16px; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--charcoal);
  border-top:1px solid var(--line);
  padding:72px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid var(--line);
}
@media (max-width:860px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
}
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ font-size:0.9rem; max-width:280px; }
.footer-col h4{
  font-family:var(--mono);
  font-size:0.76rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--ash-dim);
  margin-bottom:18px;
  font-weight:500;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:0.92rem; color:var(--ash-dim); transition:color .2s ease; }
.footer-col a:hover{ color:var(--orange); }

.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-icon{
  width:38px; height:38px;
  border:1px solid var(--steel-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--ash-dim);
  transition:all .2s ease;
}
.social-icon:hover{ color:var(--void); background:var(--orange); border-color:var(--orange); }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:26px;
  flex-wrap:wrap;
  gap:12px;
  font-family:var(--mono);
  font-size:0.76rem;
  color:var(--ash-dim);
}

/* ---------- WhatsApp floating button ---------- */
.wa-float{
  position:fixed;
  bottom:24px; right:24px;
  z-index:900;
  width:58px; height:58px;
  border-radius:50%;
  background:#20BA5A;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  animation:wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg{ width:28px; height:28px; }
@keyframes wa-pulse{
  0%,100%{ box-shadow:0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(32,186,90,0.5); }
  50%{ box-shadow:0 10px 30px rgba(0,0,0,0.4), 0 0 0 12px rgba(32,186,90,0); }
}

/* ---------- Reveal on scroll (cinematic: blur + scale + rise) ---------- */
.reveal{
  opacity:0;
  transform:translateY(30px) scale(0.97);
  filter:blur(6px);
  transition:opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
  will-change:opacity, transform, filter;
}
.reveal.in{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }

/* Staggered delays so items in the same grid/row animate in sequence,
   like frames playing one after another rather than all at once. */
.grid > .reveal:nth-child(1){ transition-delay:0ms; }
.grid > .reveal:nth-child(2){ transition-delay:80ms; }
.grid > .reveal:nth-child(3){ transition-delay:160ms; }
.grid > .reveal:nth-child(4){ transition-delay:240ms; }
.grid > .reveal:nth-child(5){ transition-delay:320ms; }
.grid > .reveal:nth-child(6){ transition-delay:400ms; }
.grid > .reveal:nth-child(7){ transition-delay:480ms; }
.grid > .reveal:nth-child(8){ transition-delay:560ms; }
.grid > .reveal:nth-child(9){ transition-delay:640ms; }
.grid > .reveal:nth-child(10){ transition-delay:720ms; }
.grid > .reveal:nth-child(11){ transition-delay:800ms; }
.grid > .reveal:nth-child(n+12){ transition-delay:880ms; }

@media (prefers-reduced-motion: reduce){
  .reveal{ filter:none; }
}

/* ---------- Utilities ---------- */
.text-center{ text-align:center; }
.mt-8{ margin-top:8px; } .mt-16{ margin-top:16px; } .mt-24{ margin-top:24px; } .mt-40{ margin-top:40px; }
.flex{ display:flex; }
.items-center{ align-items:center; }
.gap-12{ gap:12px; }
