/* ===================================================================
   Fast Fiber Pvt Ltd — Stylesheet
   Brand: Deep Amethyst Violet #124E66 / Neon Coral #F2E9E4
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --violet: #124E66;
  --violet-deep: #0A2E3D;
  --violet-700: #1A6685;
  --violet-400: #2D8FAF;
  --violet-200: #7EC8E3;
  --coral: #F2E9E4;
  --coral-light: #E8DAD4;
  --accent: #124E66;
  --accent-mid: #1A6685;

  --ink: #1d1230;
  --body: #4b4660;
  --muted: #7a7390;
  --line: #e9e4f0;
  --bg: #ffffff;
  --bg-soft: #EFF6F9;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 16px rgba(59, 28, 86, 0.08);
  --shadow-md: 0 14px 40px rgba(59, 28, 86, 0.14);
  --shadow-coral: 0 12px 30px rgba(18, 78, 102, 0.25);

  --grad-coral: linear-gradient(135deg, #F2E9E4 0%, #E8DAD4 100%);
  --grad-violet: linear-gradient(135deg, #1A6685 0%, #124E66 60%, #0A2E3D 100%);

  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }

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

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-coral); color: #0A2E3D; box-shadow: var(--shadow-coral); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(242, 233, 228, 0.45); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--violet); border-color: var(--line); }
.btn-outline:hover { border-color: var(--violet-400); color: var(--violet-400); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 14px;
}
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-pad { padding: 96px 0; }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, height .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand img { height: 42px; width: auto; }
.brand .logo-light { display: block; }
.brand .logo-dark { display: none; }
.site-header.scrolled .brand .logo-light { display: none; }
.site-header.scrolled .brand .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 600; font-size: 0.96rem; color: rgba(255,255,255,0.9);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--coral); transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--violet); }
.nav-links a:hover { color: var(--violet-400); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--violet); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   PARALLAX BACKGROUNDS
   =================================================================== */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background-image: url("../assets/backgrounds/hero-network.svg");
  color: #fff; position: relative; overflow: hidden;
  padding-top: var(--header-h);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(37,15,58,0.55) 0%, rgba(37,15,58,0.15) 60%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding-block: 60px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(242,233,228,0.16); border: 1px solid rgba(242,233,228,0.5);
  color: #BDD8E8; padding: 8px 18px; border-radius: 999px;
  font-weight: 700; font-size: 0.84rem; letter-spacing: 0.04em; margin-bottom: 26px;
}
.badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--violet-400); box-shadow: 0 0 0 0 rgba(242,233,228,0.7); animation: pulse 2s infinite; }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05; margin-bottom: 22px;
}
.hero h1 .accent { background: var(--grad-coral); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .slogan { font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--violet-200); font-weight: 600; margin-bottom: 14px; font-style: italic; }
.hero p.lead { font-size: 1.12rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--coral); border-radius: 2px; transform: translateX(-50%); animation: scrollWheel 1.8s infinite; }

/* ===================================================================
   STATS / MILESTONES
   =================================================================== */
.stats { background: var(--grad-violet); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 16px; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.15); }
.stat .num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1; }
.stat .num .suffix { color: var(--coral); }
.stat .label { margin-top: 10px; color: var(--violet-200); font-weight: 600; font-size: 0.98rem; }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-coral); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(18,78,102,0.08); color: var(--violet); margin-bottom: 22px;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { font-size: 0.97rem; color: var(--muted); }

/* ===================================================================
   PACKAGES
   =================================================================== */
.packages { background: var(--bg-soft); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 26px; display: flex; flex-direction: column; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s; position: relative;
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pkg.featured { background: var(--grad-violet); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.pkg.featured .pkg-speed, .pkg.featured .pkg-price .amount { color: #fff; }
.pkg.featured .pkg-feat li { color: rgba(255,255,255,0.85); }
.pkg-tag {
  position: absolute; top: 18px; right: 18px; background: var(--grad-coral); color: var(--violet-deep);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px;
}
.pkg-speed { font-size: 2rem; font-weight: 800; color: var(--violet); }
.pkg-speed .unit { font-size: 1rem; color: var(--muted); font-weight: 600; }
.pkg-name { color: var(--muted); font-weight: 600; margin-bottom: 18px; font-size: 0.92rem; }
.pkg.featured .pkg-name { color: var(--violet-200); }
.pkg-price { margin-bottom: 22px; }
.pkg-price .amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.pkg-price .currency { font-size: 1rem; font-weight: 700; color: var(--violet); vertical-align: super; }
.pkg-price .per { display: block; font-size: 0.85rem; color: var(--muted); }
.pkg.featured .pkg-price .per { color: var(--violet-200); }
.pkg-feat { text-align: left; margin-bottom: 26px; display: grid; gap: 12px; flex: 1; align-self: center; }
.pkg-feat li { font-size: 0.93rem; display: flex; gap: 10px; align-items: flex-start; color: var(--body); }
.pkg-feat li svg { flex: none; width: 18px; height: 18px; color: var(--violet); margin-top: 2px; }
.pkg.featured .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.pkg.featured .btn-outline:hover { background: #fff; color: var(--violet); }
.pkg-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 30px; }

/* ===================================================================
   COVERAGE (parallax)
   =================================================================== */
.coverage {
  background-image: url("../assets/backgrounds/fiber-lines.svg");
  color: #fff;
}
.coverage::after { content: ""; position: absolute; inset: 0; background: transparent; z-index: 0; }
.coverage .container { position: relative; z-index: 1; }
.coverage .section-head h2 { color: #fff; }
.coverage .section-head p { color: var(--violet-200); }
.cov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cov-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius);
  padding: 32px 28px; text-align: center; transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.cov-card:hover { transform: translateY(-6px); background: rgba(242,233,228,0.14); border-color: rgba(242,233,228,0.5); }
.cov-card .pin { width: 54px; height: 54px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(242,233,228,0.18); color: var(--coral); }
.cov-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.cov-card p { color: var(--violet-200); font-size: 0.92rem; }
.cov-banner { text-align: center; margin-top: 44px; font-size: 1.15rem; font-weight: 700; color: #fff; }
.cov-banner .hl { color: var(--coral); }

/* ===================================================================
   CLIENTS
   =================================================================== */
.clients { background: var(--bg); }
.client-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center;
}
.client-logo {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: grid; place-items: center; min-height: 120px;
  filter: grayscale(1); opacity: 0.7; transition: filter .3s, opacity .3s, transform .3s, box-shadow .3s;
}
.client-logo img { max-height: 64px; }
.client-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-sm); }

/* ===================================================================
   ABOUT
   =================================================================== */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.about-media .float-card {
  position: absolute; bottom: -24px; left: -24px; background: #fff; border-radius: var(--radius);
  padding: 18px 24px; box-shadow: var(--shadow-md); display: flex; gap: 14px; align-items: center;
}
.about-media .float-card .big { font-size: 1.8rem; font-weight: 800; color: var(--violet); line-height: 1; }
.about-media .float-card .small { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.about-body h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.about-body > p { color: var(--body); margin-bottom: 18px; }
.about-list { display: grid; gap: 16px; margin: 26px 0; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .tick { flex: none; width: 28px; height: 28px; border-radius: 8px; background: rgba(18,78,102,0.10); color: var(--violet); display: grid; place-items: center; }
.about-list .tick svg { width: 16px; height: 16px; }
.about-list strong { color: var(--ink); display: block; }
.about-list span { font-size: 0.92rem; color: var(--muted); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { flex: none; width: 50px; height: 50px; border-radius: 12px; background: var(--grad-violet); color: #fff; display: grid; place-items: center; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.info-item a, .info-item p { color: var(--muted); font-size: 0.96rem; }
.info-item a:hover { color: var(--violet-400); }
.map-embed {
  margin-top: 8px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--grad-violet); min-height: 180px; display: grid; place-items: center; color: var(--violet-200);
  text-align: center; padding: 24px; position: relative;
}
.map-embed .pin-lg { color: var(--violet); margin-bottom: 8px; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.96rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet-400); background: #fff; box-shadow: 0 0 0 4px rgba(18,78,102,0.12);
}
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; background: rgba(242,233,228,0.10); border: 1px solid rgba(242,233,228,0.4);
  color: var(--violet); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 18px; font-weight: 600;
}
.form-success.show { display: block; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--violet-deep); color: rgba(255,255,255,0.7); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.94rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.94rem; transition: color .2s; }
.footer-col a:hover { color: var(--coral-light); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.94rem; margin-bottom: 11px; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--coral); margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; transition: transform .25s var(--ease), background .25s;
}
.socials a svg { width: 20px; height: 20px; }
.socials a:hover { transform: translateY(-4px); }
.socials a.wa:hover { background: #25D366; }
.socials a.fb:hover { background: #1877F2; }
.socials a.ig:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.88rem;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Animations ---------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(242,233,228,0.6); } 70% { box-shadow: 0 0 0 10px rgba(242,233,228,0); } 100% { box-shadow: 0 0 0 0 rgba(242,233,228,0); } }
@keyframes scrollWheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .cards, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; padding: 12px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s var(--ease); z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--violet); width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta .btn { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 460px; }
  .section-pad { padding: 72px 0; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .cards, .pkg-grid, .cov-grid, .client-strip, .stats-grid { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
  /* fixed backgrounds are unreliable on mobile — fall back to scroll */
  .parallax { background-attachment: scroll; }

  /* ---- Center content blocks that read as unbalanced when full-width ---- */
  /* Hero */
  .hero-inner { text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-actions { align-items: center; }

  /* Service cards: icon + text centered in their now full-width column */
  .card { text-align: center; }
  .card .icon { margin-inline: auto; }

  /* About: center the copy block; keep the checklist readable, just centered as a group */
  .about-body { text-align: center; }
  .about-body > p { margin-inline: auto; }
  .about-list { justify-items: center; max-width: 360px; margin-inline: auto; }
  .about-list li { text-align: left; }

  /* Contact info: stack icon above text and center each item */
  .info-item { flex-direction: column; align-items: center; text-align: center; }

  /* Footer: center every column, the brand blurb, socials and bottom bar */
  .footer-grid { text-align: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-contact li { justify-content: center; }
  .socials { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
