/* ============================================================
   SHAHPORT GLOBAL — MAIN STYLESHEET
   Design: Warm saffron-gold on deep charcoal, with sandalwood
   cream accents. Evokes India's artisan incense heritage while
   feeling premium and globally trustworthy.
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold:       #C8860A;
  --gold-light: #E8A020;
  --gold-pale:  #FDF4E3;
  --charcoal:   #1A1612;
  --dark:       #231F1A;
  --text:       #2E2A26;
  --text-muted: #6B6257;
  --cream:      #FAF6F0;
  --white:      #FFFFFF;
  --border:     #E8E0D4;
  --red:        #C0392B;
  --green:      #1A7A4A;
  --whatsapp:   #25D366;

  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 2px 16px rgba(0,0,0,.08);
  --shadow-md:0 4px 32px rgba(0,0,0,.12);

  --max-w: 1200px;
  --section-py: 5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }

/* ── Skip link ── */
.skip-link { position: absolute; top:-99px; left:1rem; background:var(--gold); color:#fff; padding:.5rem 1rem; border-radius:var(--radius); z-index:9999; }
.skip-link:focus { top:1rem; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }
.text-gold  { color: var(--gold); }
.text-center{ text-align: center; }

/* ── Buttons ── */
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.7rem 1.6rem; border-radius:var(--radius); font-family:var(--font-body); font-size:.95rem; font-weight:600; cursor:pointer; transition:all .2s; border:2px solid transparent; text-decoration:none; }
.btn-primary  { background:var(--gold); color:#fff; border-color:var(--gold); }
.btn-primary:hover { background:var(--gold-light); border-color:var(--gold-light); color:#fff; }
.btn-outline  { background:transparent; color:var(--gold); border-color:var(--gold); }
.btn-outline:hover { background:var(--gold); color:#fff; }
.btn-dark     { background:var(--charcoal); color:#fff; border-color:var(--charcoal); }
.btn-dark:hover { background:var(--dark); }
.btn-whatsapp { background:var(--whatsapp); color:#fff; border-color:var(--whatsapp); }
.btn-whatsapp:hover { background:#20b857; color:#fff; }
.btn-sm { padding:.45rem 1rem; font-size:.85rem; }
.btn-lg { padding:.9rem 2rem; font-size:1.05rem; }

/* ── Section helpers ── */
.section       { padding: var(--section-py) 0; }
.section-dark  { background: var(--charcoal); color: var(--cream); }
.section-dark h2,
.section-dark h3 { color: var(--gold-light); }
.section-cream { background: var(--cream); }
.section-gold  { background: var(--gold); color: #fff; }
.section-gold h2,
.section-gold h3 { color: #fff; }

.section-header { text-align:center; margin-bottom:3rem; }
.section-header .eyebrow { display:inline-block; font-size:.8rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); margin-bottom:.6rem; }
.section-header p { color:var(--text-muted); max-width:600px; margin:1rem auto 0; font-size:1.05rem; }

/* ── Top Bar ── */
.topbar { background:var(--charcoal); color:var(--gold-pale); font-size:.8rem; padding:.35rem 0; }
.topbar-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.4rem; }
.topbar a { color:var(--gold-light); }
.topbar a:hover { color:#fff; }

/* ── Header ── */
.site-header { background:var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.07); position:sticky; top:0; z-index:100; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:.9rem 1.25rem; max-width:var(--max-w); margin:0 auto; }
.logo img { height:52px; width:auto; }

/* ── Nav ── */
.main-nav ul { display:flex; align-items:center; gap:.2rem; }
.main-nav a  { padding:.5rem .75rem; border-radius:var(--radius); color:var(--text); font-size:.9rem; font-weight:500; transition:background .2s; }
.main-nav a:hover,
.main-nav a[aria-current="page"] { background:var(--gold-pale); color:var(--gold); }
.nav-cta { margin-left:.5rem; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.4rem; }
.hamburger span { display:block; width:24px; height:2px; background:var(--charcoal); border-radius:2px; transition:all .3s; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--charcoal) 0%, #2D231A 60%, #3D2E1E 100%); color: #fff; padding: 6rem 0 5rem; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 70% 50%, rgba(200,134,10,.15) 0%, transparent 60%); pointer-events:none; }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; position:relative; }
.hero-badge { display:inline-flex; align-items:center; gap:.5rem; background:rgba(200,134,10,.2); border:1px solid rgba(200,134,10,.4); border-radius:999px; padding:.35rem .9rem; font-size:.8rem; font-weight:600; color:var(--gold-light); letter-spacing:.08em; text-transform:uppercase; margin-bottom:1.25rem; }
.hero h1 { color:#fff; margin-bottom:1rem; }
.hero h1 em { color:var(--gold-light); font-style:normal; }
.hero-sub { color:rgba(255,255,255,.75); font-size:1.1rem; margin-bottom:2rem; max-width:520px; }
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:2.5rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.1); }
.stat-item .num { font-family:var(--font-display); font-size:2rem; color:var(--gold-light); font-weight:700; }
.stat-item .lbl { font-size:.75rem; color:rgba(255,255,255,.6); letter-spacing:.05em; text-transform:uppercase; }
.hero-visual { position:relative; }
.hero-img-wrap { border-radius:var(--radius-lg); overflow:hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4); aspect-ratio:4/3; background:var(--dark); display:flex; align-items:center; justify-content:center; }
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; }
.hero-img-placeholder { color:var(--gold); text-align:center; padding:2rem; }
.trust-badges { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1.25rem; }
.trust-badge { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius); padding:.4rem .75rem; font-size:.75rem; color:rgba(255,255,255,.8); display:flex; align-items:center; gap:.4rem; }

/* ── Trust Bar ── */
.trust-bar { background:var(--gold-pale); border-top:3px solid var(--gold); border-bottom:1px solid var(--border); padding:1.5rem 0; }
.trust-bar-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1.5rem; }
.trust-item { text-align:center; }
.trust-icon { font-size:1.8rem; margin-bottom:.4rem; }
.trust-item strong { display:block; font-size:.9rem; color:var(--charcoal); }
.trust-item span { font-size:.78rem; color:var(--text-muted); }

/* ── Products grid ── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.75rem; }
.product-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:box-shadow .25s, transform .25s; }
.product-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.product-img { aspect-ratio:4/3; background:var(--cream); overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:3rem; }
.product-img img { width:100%; height:100%; object-fit:cover; }
.product-body { padding:1.25rem; }
.product-cat { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:.4rem; }
.product-body h3 { font-size:1.15rem; margin-bottom:.5rem; }
.product-body p  { font-size:.9rem; color:var(--text-muted); margin-bottom:1rem; }
.product-foot { display:flex; gap:.75rem; padding:.9rem 1.25rem; border-top:1px solid var(--border); background:var(--cream); }

/* ── Markets ── */
.markets-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1rem; }
.market-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:1rem 1.25rem; display:flex; align-items:flex-start; gap:.75rem; transition:background .2s; }
.market-card:hover { background:rgba(200,134,10,.15); }
.market-flag { font-size:2rem; line-height:1; flex-shrink:0; }
.market-info strong { display:block; font-size:.95rem; color:var(--gold-light); margin-bottom:.2rem; }
.market-info small { font-size:.78rem; color:rgba(255,255,255,.55); }

/* ── Why choose us ── */
.why-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:2rem; }
.why-item { text-align:center; padding:2rem 1.5rem; background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow); transition:box-shadow .25s; }
.why-item:hover { box-shadow:var(--shadow-md); }
.why-icon { font-size:2.5rem; margin-bottom:1rem; }
.why-item h3 { margin-bottom:.5rem; }
.why-item p  { font-size:.9rem; color:var(--text-muted); margin:0; }

/* ── Process steps ── */
.process-steps { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:2rem; counter-reset:steps; }
.process-step { text-align:center; padding:2rem 1.25rem; counter-increment:steps; }
.process-step::before { content:counter(steps,'0'counter(steps)); font-family:var(--font-display); font-size:3rem; color:rgba(200,134,10,.25); display:block; margin-bottom:.5rem; }
.process-step h3 { font-size:1rem; margin-bottom:.4rem; }
.process-step p  { font-size:.85rem; color:var(--text-muted); margin:0; }

/* ── Testimonial ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.75rem; }
.testimonial-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.75rem; position:relative; }
.testimonial-card::before { content:'"'; font-family:var(--font-display); font-size:4rem; color:var(--gold); line-height:1; position:absolute; top:.75rem; left:1.25rem; opacity:.4; }
.testimonial-text { padding-top:1.5rem; font-style:italic; color:var(--text-muted); margin-bottom:1rem; }
.testimonial-author strong { display:block; font-size:.95rem; }
.testimonial-author span   { font-size:.8rem; color:var(--text-muted); }
.stars { color:var(--gold); font-size:1rem; margin-bottom:.75rem; }

/* ── Blog ── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:2rem; }
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:box-shadow .2s; }
.blog-card:hover { box-shadow:var(--shadow-md); }
.blog-img { aspect-ratio:16/9; background:var(--cream); overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:2.5rem; }
.blog-img img { width:100%; height:100%; object-fit:cover; }
.blog-body { padding:1.25rem; }
.blog-meta { font-size:.78rem; color:var(--text-muted); margin-bottom:.6rem; }
.blog-body h3 { font-size:1.1rem; margin-bottom:.5rem; }
.blog-body p  { font-size:.88rem; color:var(--text-muted); margin-bottom:.75rem; }

/* ── Page hero (inner pages) ── */
.page-hero { background:linear-gradient(135deg,var(--charcoal),#2D231A); padding:4rem 0 3rem; color:#fff; text-align:center; }
.page-hero h1 { color:#fff; margin-bottom:.75rem; }
.page-hero p  { color:rgba(255,255,255,.7); max-width:600px; margin:0 auto; }
.breadcrumb { display:flex; gap:.5rem; justify-content:center; font-size:.82rem; color:rgba(255,255,255,.5); margin-top:1rem; }
.breadcrumb a { color:var(--gold-light); }
.breadcrumb span { color:rgba(255,255,255,.3); }

/* ── Contact / Forms ── */
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:3rem; align-items:start; }
.contact-info-card { background:var(--charcoal); color:var(--cream); border-radius:var(--radius-lg); padding:2rem; }
.contact-info-card h3 { color:var(--gold-light); margin-bottom:1.25rem; }
.contact-detail { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.25rem; }
.contact-detail-icon { font-size:1.4rem; flex-shrink:0; margin-top:.1rem; }
.contact-detail-text strong { display:block; font-size:.85rem; color:var(--gold-light); margin-bottom:.2rem; }
.contact-detail-text a { color:var(--cream); }
.contact-detail-text a:hover { color:var(--gold-light); }
.cert-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; margin-top:1.5rem; }
.cert-badge { background:rgba(255,255,255,.07); border:1px solid rgba(200,134,10,.3); border-radius:var(--radius); padding:.7rem; text-align:center; }
.cert-badge strong { display:block; font-size:.8rem; color:var(--gold-light); }
.cert-badge small  { font-size:.72rem; color:rgba(255,255,255,.5); }

.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-size:.88rem; font-weight:600; color:var(--text); margin-bottom:.4rem; }
.form-control { width:100%; padding:.7rem .9rem; border:1.5px solid var(--border); border-radius:var(--radius); font-family:var(--font-body); font-size:.95rem; color:var(--text); background:var(--white); transition:border-color .2s; }
.form-control:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,134,10,.12); }
textarea.form-control { resize:vertical; min-height:120px; }
select.form-control { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .75rem center; background-size:16px; padding-right:2.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-alert { padding:.9rem 1.2rem; border-radius:var(--radius); margin-bottom:1.25rem; font-size:.9rem; }
.form-alert-success { background:#d4edda; color:#155724; border:1px solid #c3e6cb; }
.form-alert-error   { background:#f8d7da; color:#721c24; border:1px solid #f5c6cb; }

/* ── About ── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-img { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:4/3; background:var(--cream); display:flex; align-items:center; justify-content:center; font-size:4rem; }
.about-img img { width:100%; height:100%; object-fit:cover; }
.about-features { margin-top:1.5rem; display:flex; flex-direction:column; gap:.75rem; }
.about-feature { display:flex; gap:.75rem; align-items:flex-start; }
.about-feature-icon { color:var(--gold); font-size:1.25rem; flex-shrink:0; margin-top:.1rem; }

/* ── Team cards ── */
.team-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:2rem; }
.team-card { text-align:center; }
.team-avatar { width:100px; height:100px; border-radius:50%; background:var(--gold-pale); border:3px solid var(--gold); margin:0 auto 1rem; display:flex; align-items:center; justify-content:center; font-size:2.5rem; overflow:hidden; }
.team-avatar img { width:100%; height:100%; object-fit:cover; }
.team-card h4 { margin-bottom:.2rem; }
.team-card span { font-size:.82rem; color:var(--text-muted); }

/* ── Certificate section ── */
.cert-display-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1.5rem; }
.cert-display-card { background:var(--white); border:2px solid var(--border); border-radius:var(--radius-lg); padding:1.5rem; text-align:center; transition:border-color .2s; }
.cert-display-card:hover { border-color:var(--gold); }
.cert-icon { font-size:2.5rem; margin-bottom:.75rem; }
.cert-display-card h4 { margin-bottom:.25rem; }
.cert-display-card p  { font-size:.82rem; color:var(--text-muted); margin:0; }
.cert-display-card img { width:100%; max-height:180px; object-fit:contain; margin:1rem auto 0; border-radius:var(--radius); border:1px solid var(--border); }

/* ── Single product/blog page ── */
.product-single { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; }
.product-single-img { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; background:var(--cream); display:flex; align-items:center; justify-content:center; font-size:5rem; }
.product-single-img img { width:100%; height:100%; object-fit:cover; }
.product-features ul { list-style:none; padding:0; }
.product-features li { display:flex; gap:.6rem; padding:.5rem 0; border-bottom:1px solid var(--border); font-size:.9rem; }
.product-features li::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; }
.product-cta-box { background:var(--gold-pale); border:1.5px solid var(--gold); border-radius:var(--radius-lg); padding:1.5rem; margin-top:1.5rem; }
.product-cta-box h4 { margin-bottom:.75rem; color:var(--charcoal); }

/* ── Blog single ── */
.blog-single { max-width:780px; margin:0 auto; }
.blog-single-img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius-lg); margin-bottom:2rem; }
.blog-content h2 { margin:2rem 0 .75rem; }
.blog-content p  { margin-bottom:1rem; line-height:1.75; }
.blog-content ul { list-style:disc; padding-left:1.5rem; margin-bottom:1rem; }
.blog-content li { margin-bottom:.4rem; }

/* ── Pagination ── */
.pagination { display:flex; gap:.5rem; justify-content:center; margin-top:3rem; }
.page-link { padding:.5rem .9rem; border:1.5px solid var(--border); border-radius:var(--radius); font-size:.88rem; color:var(--text); transition:all .2s; }
.page-link:hover, .page-link.active { background:var(--gold); border-color:var(--gold); color:#fff; }

/* ── WhatsApp float ── */
.whatsapp-float { position:fixed; bottom:1.5rem; right:1.5rem; background:var(--whatsapp); color:#fff; width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.4); z-index:999; transition:transform .2s; }
.whatsapp-float:hover { transform:scale(1.1); color:#fff; }

/* ── Footer ── */
.footer-cta-band { background:var(--gold); color:#fff; padding:3.5rem 0; text-align:center; }
.footer-cta-band h2 { color:#fff; margin-bottom:.75rem; }
.footer-cta-band p  { color:rgba(255,255,255,.85); margin-bottom:1.5rem; }
.footer-cta-btns   { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.footer-cta-btns .btn-primary { background:#fff; color:var(--gold); border-color:#fff; }
.footer-cta-btns .btn-primary:hover { background:var(--gold-pale); border-color:var(--gold-pale); }

.footer-main  { background:var(--charcoal); color:rgba(255,255,255,.7); padding:3.5rem 0; }
.footer-grid  { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.2fr; gap:2.5rem; }
.footer-brand p { font-size:.88rem; margin-top:.75rem; }
.footer-reg   { font-size:.78rem; margin-top:1rem; color:rgba(255,255,255,.45); }
.footer-reg strong { color:var(--gold-light); }
.footer-col h3 { color:var(--gold-light); font-size:1rem; margin-bottom:1rem; font-family:var(--font-body); font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.footer-col ul li { margin-bottom:.5rem; }
.footer-col a { color:rgba(255,255,255,.65); font-size:.88rem; transition:color .2s; }
.footer-col a:hover { color:var(--gold-light); }
.footer-col address { font-size:.88rem; }
.footer-col address p { margin-bottom:.6rem; }
.footer-col address a { color:rgba(255,255,255,.65); }
.footer-col address a:hover { color:var(--gold-light); }

.footer-bottom { background:#0E0B08; padding:1.1rem 0; }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.5rem; font-size:.8rem; color:rgba(255,255,255,.35); }
.footer-bottom a { color:rgba(255,255,255,.4); }
.footer-bottom a:hover { color:var(--gold-light); }

/* ── Utility ── */
.mb-0{margin-bottom:0} .mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem} .mb-4{margin-bottom:2rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.gap-1{gap:.5rem} .gap-2{gap:1rem}
.flex{display:flex} .flex-center{display:flex;align-items:center;justify-content:center} .items-center{align-items:center} .flex-wrap{flex-wrap:wrap}
.badge { display:inline-block; padding:.25rem .6rem; border-radius:999px; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.badge-gold { background:var(--gold-pale); color:var(--gold); }
.badge-green { background:#d4edda; color:#155724; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .contact-grid { grid-template-columns:1fr; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
}
@media (max-width: 768px) {
  :root { --section-py: 3rem; }
  .hamburger { display:flex; }
  .main-nav { display:none; position:absolute; top:100%; left:0; right:0; background:var(--white); box-shadow:var(--shadow-md); padding:1rem; }
  .main-nav.open { display:block; }
  .main-nav ul { flex-direction:column; gap:.25rem; }
  .main-nav a { display:block; }
  .about-grid, .product-single { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero-stats { grid-template-columns:1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns:1fr; }
  .hero-btns { flex-direction:column; }
  .hero-stats { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
