/* ═══════════════════════════════════════════════════════
   SKYLAR INDIA — Minimal Lead-Gen Redesign
   Theme: Warm cream light + deep charcoal + amber gold
   Fonts: Playfair Display (hero) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════ */

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

/* ── Tokens ────────────────────────────────────────────── */
:root {
  --cream:      #faf8f4;
  --cream-2:    #f4f1eb;
  --cream-3:    #ede9e0;
  --ink:        #18160f;
  --ink-2:      #3a3628;
  --ink-muted:  #7a7565;
  --ink-dim:    #b0a99a;

  --amber:      #e8930a;
  --amber-2:    #f5a742;
  --amber-light:#ffd27a;
  --amber-glow: rgba(232,147,10,.15);
  --amber-soft: rgba(232,147,10,.08);

  --green:      #2a9d5c;
  --wa:         #25d366;

  --border:     rgba(24,22,15,.1);
  --border-2:   rgba(24,22,15,.06);
  --shadow-sm:  0 2px 12px rgba(24,22,15,.07);
  --shadow-md:  0 8px 32px rgba(24,22,15,.10);
  --shadow-lg:  0 24px 64px rgba(24,22,15,.13);

  --r:          12px;
  --r-lg:       20px;
  --r-pill:     999px;
  --nav-h:      68px;
  --wrap:       1100px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --spring:     cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, select { font: inherit; }

/* ── Typography ─────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.025em;
}
h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.02em;
}
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: .95rem; font-weight: 700; }

.label-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-soft);
  border: 1px solid rgba(232,147,10,.2);
  padding: .3rem .8rem; border-radius: var(--r-pill);
}

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.2rem,5vw,2.5rem); }
section { padding-block: clamp(4.5rem,8vw,7rem); }
.alt { background: var(--cream-2); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .92rem; font-weight: 700; border-radius: var(--r-pill);
  padding: .85rem 2rem; transition: all .22s var(--ease); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--amber); color: #fff;
  box-shadow: 0 4px 20px rgba(232,147,10,.35);
}
.btn-primary:hover {
  background: var(--amber-2);
  box-shadow: 0 8px 32px rgba(232,147,10,.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-wa {
  background: var(--wa); color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn-wa:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-ink {
  background: var(--ink); color: var(--cream);
}
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,244,.9);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-2);
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled {
  background: rgba(250,248,244,.98);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; gap: 2.5rem;
}
.logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; stroke: var(--amber-2); stroke-width: 2; }
.logo-name {
  font-weight: 800; font-size: .98rem; color: var(--ink); line-height: 1.2;
}
.logo-sub { font-size: .62rem; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .08em; }

.nav-links { display: flex; gap: .2rem; margin-left: auto; }
.nav-links a {
  font-size: .88rem; font-weight: 600; color: var(--ink-muted);
  padding: .4rem .9rem; border-radius: var(--r-pill); transition: all .18s;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2); }

.nav-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-phone {
  font-size: .88rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.nav-phone:hover { color: var(--amber); }
.nav-phone svg { width: 15px; height: 15px; stroke: var(--amber); flex-shrink: 0; }

/* Hamburger */
#menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--cream-2); color: var(--ink);
  border: 1px solid var(--border); margin-left: auto;
}
#menu-toggle svg { width: 18px; height: 18px; }

/* ── Mobile Menu ────────────────────────────────────────── */
.menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 110;
  background: rgba(24,22,15,.5); backdrop-filter: blur(4px);
}
.menu-overlay.active { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: -110%; z-index: 120;
  width: min(300px, 86vw); height: 100dvh;
  background: var(--cream); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 5rem 1.5rem 2rem; gap: .2rem;
  transition: right .32s var(--ease); box-shadow: var(--shadow-lg);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 1.05rem; font-weight: 600; color: var(--ink-muted);
  padding: .85rem 1rem; border-radius: var(--r); transition: all .18s;
}
.mobile-menu a:hover { color: var(--ink); background: var(--cream-2); }
.mobile-menu .btn { margin-top: .5rem; }
.menu-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--cream-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.menu-close svg { width: 16px; height: 16px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}

/* Warm sun texture on right half */
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background:
    radial-gradient(ellipse 70% 80% at 70% 40%, rgba(232,147,10,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(245,167,66,.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Subtle dot grid */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(24,22,15,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 1;
  padding: clamp(3rem,6vw,6rem) clamp(1.5rem,5vw,2.5rem) clamp(3rem,6vw,6rem) clamp(1.5rem,5vw,5rem);
  display: flex; flex-direction: column; gap: 1.6rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-soft);
  border: 1px solid rgba(232,147,10,.2);
  padding: .35rem .9rem; border-radius: var(--r-pill); width: fit-content;
  animation: fadeDown .5s var(--ease) both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 6px var(--amber);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-heading {
  animation: fadeUp .6s .08s var(--ease) both;
}
.hero-heading .display {
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: var(--ink);
  display: block;
}
.hero-heading .line-amber {
  color: var(--amber);
  display: block;
}
.hero-heading .line-outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  display: block;
}

.hero-sub {
  font-size: 1.05rem; color: var(--ink-muted); max-width: 440px; line-height: 1.72;
  animation: fadeUp .6s .16s var(--ease) both;
}

.hero-actions {
  display: flex; gap: .75rem; flex-wrap: wrap;
  animation: fadeUp .6s .22s var(--ease) both;
}

/* Subsidy pill strip */
.subsidy-strip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ink); color: var(--amber-light);
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  padding: .6rem 1.2rem; border-radius: var(--r);
  width: fit-content;
  animation: fadeUp .6s .28s var(--ease) both;
}
.subsidy-strip svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .7; }

/* Hero stats row */
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: .4rem; border-top: 1px solid var(--border);
  animation: fadeUp .6s .34s var(--ease) both;
}
.stat-item { display: flex; flex-direction: column; gap: .15rem; }
.stat-val {
  font-size: 1.45rem; font-weight: 800; color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-lbl { font-size: .68rem; font-weight: 600; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .08em; }

/* Hero right — solar panel illustration */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: clamp(2rem,5vw,4rem) clamp(1.5rem,4vw,4rem) clamp(2rem,5vw,4rem) 0;
  animation: fadeUp .7s .1s var(--ease) both;
}

.solar-card {
  width: 100%; max-width: 420px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232,147,10,.06);
  overflow: hidden;
}
.sc-top {
  background: var(--ink); padding: 1.6rem;
  position: relative; overflow: hidden;
}
.sc-top::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,147,10,.3), transparent 70%);
}
.sc-top-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); opacity: .8; margin-bottom: .4rem;
}
.sc-power {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 3.5rem; color: #fff; line-height: 1;
}
.sc-power span { font-size: 1.2rem; font-weight: 700; color: var(--amber-2); vertical-align: super; }
.sc-power-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .3rem; font-weight: 500; }

/* Live indicator */
.sc-live {
  position: absolute; top: 1.4rem; right: 1.4rem;
  display: flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); background: rgba(42,157,92,.15);
  border: 1px solid rgba(42,157,92,.3);
  padding: .3rem .7rem; border-radius: var(--r-pill);
}
.sc-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 1.4s infinite;
}

.sc-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--border);
}
.sc-metric {
  padding: 1.1rem; text-align: center; border-right: 1px solid var(--border);
}
.sc-metric:last-child { border-right: none; }
.sc-m-val {
  font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.sc-m-lbl { font-size: .6rem; font-weight: 600; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .07em; margin-top: .25rem; }

.sc-bars { padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.sc-bar-row { display: flex; flex-direction: column; gap: .3rem; }
.sc-bar-head { display: flex; justify-content: space-between; font-size: .75rem; font-weight: 600; color: var(--ink-muted); }
.sc-bar-head strong { color: var(--amber); }
.sc-bar-track { height: 5px; background: var(--cream-3); border-radius: var(--r-pill); overflow: hidden; }
.sc-bar-fill {
  height: 100%; border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  animation: barIn 1.4s var(--ease) both;
}
@keyframes barIn { from { width: 0 !important; } }

.sc-subsidy {
  margin: 0 1.4rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--amber-soft); border: 1px solid rgba(232,147,10,.18);
  border-radius: var(--r); padding: .9rem 1.1rem;
}
.sc-sub-label { font-size: .75rem; font-weight: 700; color: var(--amber); }
.sc-sub-amt { font-size: 1.2rem; font-weight: 800; color: var(--ink); }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 1rem;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.65);
  padding: .5rem 1.8rem;
}
.trust-item svg { width: 15px; height: 15px; stroke: var(--amber-2); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── Services ────────────────────────────────────────────── */
.services-head { margin-bottom: 3rem; }
.services-head h2 { margin-top: .6rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem;
}
.svc-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: .85rem;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,147,10,.25);
}
/* accent corner */
.svc-card::after {
  content: attr(data-tag);
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-soft);
  border: 1px solid rgba(232,147,10,.2);
  padding: .2rem .65rem; border-radius: var(--r-pill);
}
.svc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--amber-2); stroke-width: 1.8; }
.svc-card h3 { font-size: 1.2rem; }
.svc-card p { font-size: .9rem; color: var(--ink-muted); line-height: 1.65; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--amber);
  transition: gap .18s;
}
.svc-card:hover .svc-link { gap: .7rem; }
.svc-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Testimonials Strip ──────────────────────────────────── */
.testi-section {
  padding-block: clamp(3rem,5vw,4.5rem);
  background: var(--cream-2);
}
.testi-head { margin-bottom: 2rem; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.testi-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: .8rem; right: 1.3rem;
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: var(--cream-3); line-height: 1; pointer-events: none;
}
.testi-stars { display: flex; gap: .2rem; }
.testi-stars svg { width: 13px; height: 13px; fill: var(--amber); }
.testi-text { font-size: .92rem; color: var(--ink-muted); line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--amber-2);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.testi-name { font-size: .88rem; font-weight: 700; }
.testi-loc  { font-size: .75rem; color: var(--ink-dim); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-left h2 { font-size: clamp(1.6rem,3vw,2.3rem); margin-top: .5rem; }
.contact-left p  { color: var(--ink-muted); font-size: .97rem; }

.contact-details { display: flex; flex-direction: column; gap: .75rem; }
.cd-item {
  display: flex; align-items: center; gap: .85rem;
  font-size: .9rem; color: var(--ink-muted);
}
.cd-item svg { width: 16px; height: 16px; stroke: var(--amber); flex-shrink: 0; }
.cd-item a { color: var(--ink); font-weight: 600; transition: color .18s; }
.cd-item a:hover { color: var(--amber); }
.cd-item strong { color: var(--ink); font-weight: 600; }

.wa-block {
  background: var(--ink); border-radius: var(--r-lg);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .9rem;
}
.wa-block p { font-size: .85rem; color: rgba(255,255,255,.55); }
.wa-block .btn-wa { align-self: flex-start; }

/* Form */
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 0 0 var(--r-pill) var(--r-pill);
}
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-label { font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-muted); }
.form-field {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 10px; padding: .82rem 1.1rem;
  color: var(--ink); font-size: .95rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-field::placeholder { color: var(--ink-dim); }
.form-field:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
  background: #fff;
}
select.form-field { cursor: pointer; }
.form-submit {
  width: 100%; padding: 1rem; font-size: .95rem; margin-top: .4rem;
  border-radius: 10px;
}
.form-note {
  text-align: center; font-size: .75rem; color: var(--ink-dim);
  margin-top: .8rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink); padding-block: 2.5rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo .logo-mark { background: rgba(255,255,255,.08); }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-sub { color: rgba(255,255,255,.35); }
.footer-links-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links-row a {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.4);
  transition: color .18s;
}
.footer-links-row a:hover { color: var(--amber-2); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ── Floating WhatsApp ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .25s var(--spring), box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.65); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: waRipple 2.2s ease-out infinite;
}
@keyframes waRipple { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.55);opacity:0} }

/* ── Reveal ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.stagger.in > *:nth-child(1) { opacity:1;transform:none;transition-delay:.04s; }
.stagger.in > *:nth-child(2) { opacity:1;transform:none;transition-delay:.12s; }
.stagger.in > *:nth-child(3) { opacity:1;transform:none;transition-delay:.20s; }
.stagger.in > *:nth-child(4) { opacity:1;transform:none;transition-delay:.28s; }

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes fadeDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:none} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(18px)}  to{opacity:1;transform:none} }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  #menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3.5rem 1.5rem 2.5rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .footer-copy { margin-top: .25rem; }
}
@media (max-width: 640px) {
  .trust-inner { flex-direction: column; gap: .3rem; }
  .trust-sep { display: none; }
  .hero-stats { gap: 1.4rem; }
  .nav-phone { display: none; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--cream-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-dim); }
