/* ============================================================
   GSP.CSS — Gavy Sidhu Productions shared stylesheet
   Premium dark/gold brand · mobile-first · accessible
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg:       #0a0a14;
  --bg2:      #111122;
  --panel:    rgba(255,255,255,.04);
  --border:   rgba(255,255,255,.10);
  --gold:     #e8b95a;
  --gold2:    #f5d68a;
  --violet:   #7c6cf0;
  --text:     #f4f4fa;
  --muted:    #a7a7bd;
  --radius:   20px;
  --max:      1320px;   /* main content width — wider, edge-to-edge feel */
  --wide:     1560px;   /* full-bleed bands (marquee, footer)            */
  --gutter:   clamp(20px, 5vw, 72px);  /* responsive side padding        */
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo { font-family: 'Righteous', cursive; letter-spacing: .5px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(72px,9vw,120px) var(--gutter); max-width: var(--max); margin: 0 auto; }
[id] { scroll-margin-top: 110px; }   /* offset anchored sections below fixed nav */
.section-full { padding: 100px 0; }
.section-full > .container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography ---------- */
.kicker {
  display: block;
  color: var(--gold);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 14px;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.12; margin-bottom: 22px; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin-bottom: 40px; }
.sub  { color: var(--muted); max-width: 640px; margin-bottom: 48px; }
.grad {
  background: linear-gradient(120deg, var(--gold2), var(--gold) 45%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: .92rem;
  cursor: pointer; transition: all .25s ease; border: none;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9942e);
  color: #14100a;
  box-shadow: 0 8px 30px rgba(232,185,90,.35);
}
.btn-gold:hover { box-shadow: 0 12px 40px rgba(232,185,90,.55); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-wrap { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

/* ---------- Navigation ---------- */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(var(--wide), calc(100% - 40px)); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px; border-radius: 60px;
  background: rgba(10,10,20,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled { background: rgba(10,10,20,.92); }
.logo { font-size: 1.1rem; color: var(--gold); white-space: nowrap; }
.logo span { color: var(--text); }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: .84rem; color: var(--muted);
  transition: color .2s; padding: 4px 0; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { padding: 9px 20px; font-size: .82rem; }
.burger { display: none; padding: 6px; }
.burger svg { width: 24px; height: 24px; stroke: var(--text); }
.nav-links { gap: 22px; }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
}

/* Mobile drawer */
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,20,.97); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  backdrop-filter: blur(20px);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Righteous', cursive; font-size: 1.5rem;
  color: var(--muted); transition: color .2s;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .close-btn {
  position: absolute; top: 24px; right: 24px;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
#mobile-menu .close-btn svg { width: 20px; height: 20px; stroke: var(--text); }

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px;
  position: relative;
}
#c3d { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.hero-tagline {
  font-family: 'Righteous', cursive; letter-spacing: .5px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem); color: var(--text);
  margin: 0 auto 22px; max-width: 640px;
}
.badge {
  display: inline-block; padding: 8px 20px; border-radius: 40px;
  border: 1px solid var(--border); background: var(--panel);
  backdrop-filter: blur(10px); font-size: .78rem;
  color: var(--muted); margin-bottom: 28px;
}
.badge b { color: var(--gold); }
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 36px; }

/* Page hero (non-homepage) */
.page-hero {
  padding: 160px 24px 80px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,108,240,.15) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 50%, rgba(232,185,90,.08) 0%, transparent 55%);
}
.page-hero .breadcrumb { margin-bottom: 16px; }
.page-hero .lead { margin: 0 auto 36px; text-align: center; }

/* ---------- Stats strip ---------- */
.stats {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-top: 64px;
}
.stat {
  padding: 18px 26px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--border);
  backdrop-filter: blur(12px); min-width: 140px; text-align: center;
  transition: transform .25s, border-color .25s;
}
.stat:hover { transform: translateY(-5px); border-color: rgba(232,185,90,.4); }
.stat b { display: block; font-size: 1.55rem; font-family: 'Righteous'; color: var(--gold); }
.stat span { font-size: .76rem; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 16px 0;
  background: rgba(255,255,255,.02);
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll 30s linear infinite; width: max-content;
}
.marquee-track span { color: var(--muted); font-size: .88rem; }
.marquee-track b { color: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Intro block ---------- */
.intro-section { padding-top: clamp(56px,6vw,80px); padding-bottom: clamp(40px,5vw,64px); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px);
  max-width: 1040px; margin: 0 auto; position: relative;
}
.intro-grid::before {            /* gold rule above the intro */
  content: ''; position: absolute; top: calc(-1 * clamp(28px,3vw,44px)); left: 0;
  width: 56px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.intro-grid p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; margin: 0; }
@media (max-width: 760px) { .intro-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  padding: 32px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  transition: transform .15s ease, border-color .3s;
  transform-style: preserve-3d;
}
.card:hover { border-color: rgba(232,185,90,.45); }
.card .icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(232,185,90,.18), rgba(124,108,240,.18));
  margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.card ul li {
  font-size: .84rem; color: var(--muted);
  padding: 4px 0 4px 22px; position: relative;
}
.card ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 10px; height: 2px; background: var(--gold);
}

/* ---------- Gear grid ---------- */
.gear {
  padding: 22px; border-radius: 16px;
  background: var(--panel); border: 1px solid var(--border);
  transition: all .25s;
}
.gear:hover { border-color: rgba(232,185,90,.4); transform: translateY(-4px); }
.gear small {
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 2px; font-size: .66rem; font-weight: 600;
}
.gear h3 { font-size: .98rem; margin: 6px 0 4px; }
.gear p { color: var(--muted); font-size: .80rem; }

/* ---------- Pricing ---------- */
.price {
  position: relative; padding: 34px 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: transform .15s ease, border-color .3s;
  transform-style: preserve-3d;
}
.price:hover { border-color: rgba(232,185,90,.5); }
.price.featured { border: 1px solid var(--gold); box-shadow: 0 0 60px rgba(232,185,90,.12); }
.tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #c9942e); color: #14100a;
  font-size: .7rem; font-weight: 700; padding: 5px 16px; border-radius: 30px; letter-spacing: 1px;
}
.price h3 { font-size: 1.05rem; margin-bottom: 6px; }
.amount { font-family: 'Righteous'; font-size: 2.2rem; color: var(--gold); }
.amount small { font-size: .82rem; color: var(--muted); font-family: 'Poppins'; }
.price > p { color: var(--muted); font-size: .86rem; margin: 8px 0 16px; }
.price ul { flex: 1; margin-bottom: 22px; }
.price li {
  font-size: .84rem; color: var(--muted);
  padding: 5px 0 5px 24px; position: relative;
}
.price li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price .btn { justify-content: center; }

/* ---------- About split ---------- */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about-wrap { grid-template-columns: 1fr; } }
.about-visual {
  position: relative; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); margin: 0;
  background: radial-gradient(circle at 30% 30%, rgba(124,108,240,.25), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(232,185,90,.25), transparent 60%), var(--bg2);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
  aspect-ratio: 4 / 5;
}
.about-visual::after {           /* subtle gold edge glow on hover */
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(232,185,90,.12); pointer-events: none;
  transition: box-shadow .4s;
}
.about-visual:hover::after { box-shadow: inset 0 0 0 1px rgba(232,185,90,.4); }
.about-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.about-visual:hover .about-photo { transform: scale(1.04); }
.about-text p { color: var(--muted); font-size: .93rem; margin-bottom: 14px; }
.awards { margin-top: 22px; display: grid; gap: 10px; }
.award { display: flex; gap: 12px; align-items: flex-start; font-size: .83rem; color: var(--muted); }
.award svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.review-card {
  padding: 26px 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 12px; }
.review-card blockquote {
  color: var(--muted); font-size: .9rem; line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
  border-left: 2px solid var(--gold); padding-left: 14px;
}
.reviewer { display: flex; gap: 10px; align-items: center; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Righteous'; font-size: .9rem; color: #14100a; flex-shrink: 0;
}
.reviewer-name { font-size: .86rem; font-weight: 600; }
.reviewer-service { font-size: .75rem; color: var(--muted); }

/* ---------- Chips / tags ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 20px; border-radius: 40px;
  border: 1px solid var(--border); background: var(--panel);
  color: var(--muted); font-size: .83rem; transition: all .25s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .95rem; font-weight: 600; text-align: left;
  color: var(--text); gap: 16px;
}
.faq-q svg {
  width: 20px; height: 20px; stroke: var(--gold);
  flex-shrink: 0; transition: transform .3s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--muted); font-size: .9rem; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* ---------- Areas served ---------- */
.areas-box {
  padding: 40px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--border);
}
.areas-box h3 { margin-bottom: 16px; }

/* ---------- Contact box / CTA ---------- */
.contact-box {
  padding: 64px 40px; border-radius: 28px; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(232,185,90,.14), transparent 55%),
              linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid var(--border);
}
.contact-box h2 { margin-bottom: 16px; }
.contact-box .lead { margin: 0 auto 36px; }

/* ---------- Contact form ---------- */
.form-grid {
  display: grid; gap: 16px; max-width: 680px; margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--text);
  font-family: inherit; font-size: .9rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,185,90,.12);
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { grid-column: 1/-1; display: flex; justify-content: center; margin-top: 8px; }

/* ---------- Info cards ---------- */
.info-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
}
.info-card svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info-card h3 { font-size: 1rem; margin-bottom: 5px; }
.info-card p, .info-card a { color: var(--muted); font-size: .88rem; }
.info-card a:hover { color: var(--gold); }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 0; max-width: 760px; }
.step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(232,185,90,.2), rgba(124,108,240,.2));
  border: 1px solid var(--gold); display: flex; align-items: center;
  justify-content: center; font-family: 'Righteous'; font-size: .9rem; color: var(--gold);
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .88rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: .78rem; color: var(--muted); justify-content: center;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '›'; }

/* ---------- Inline CTA banner ---------- */
.cta-banner {
  margin: 60px 0 0; padding: 40px; border-radius: var(--radius);
  border: 1px dashed rgba(232,185,90,.4); background: var(--panel);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 20px;
}
.cta-banner h3 { margin-bottom: 6px; }
.cta-banner p { color: var(--muted); font-size: .9rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Main wrapper ---------- */
main { position: relative; z-index: 2; background: linear-gradient(180deg, transparent 0, var(--bg) 300px); }
main.page-main { background: var(--bg); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border); padding: 48px 24px 32px;
  position: relative; z-index: 2; background: var(--bg);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: .85rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 10px;
  color: var(--muted); font-size: .78rem;
}
.footer-bottom a { color: var(--muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.center { text-align: center; }
.center .sub, .center .lead { margin-left: auto; margin-right: auto; }

/* ---------- 404 ---------- */
.not-found {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.not-found h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--gold); margin-bottom: 0; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: #14100a;
  padding: 12px 20px; border-radius: 0 0 8px 8px;
  font-weight: 700; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   PREMIUM POLISH LAYER  (v7 redesign — additive only)
   ============================================================ */

/* Subtle depth behind everything */
body {
  background:
    radial-gradient(1200px 600px at 50% -8%, rgba(124,108,240,.10), transparent 60%),
    radial-gradient(1000px 500px at 100% 12%, rgba(232,185,90,.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

/* Tighter, more confident headings */
h1, h2 { letter-spacing: .25px; }
h2 { line-height: 1.18; }

/* Section heading rhythm: kicker → h2 → sub spacing */
.kicker { margin-bottom: 16px; }
.sub { font-size: 1.04rem; line-height: 1.75; }

/* Generous, premium grids on wide screens */
@media (min-width: 1024px) {
  .grid { gap: 28px; }
  .g4 { gap: 22px; }
}

/* Cards: cleaner surface, refined hover lift + shadow */
.card, .price {
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 18px 40px -28px rgba(0,0,0,.7);
}
.card { padding: 34px 32px; }
.card:hover, .price:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, 0 30px 60px -30px rgba(0,0,0,.85);
}

/* Gear tiles: a touch more refined */
.gear { border-radius: 18px; }
.gear:hover { box-shadow: 0 22px 44px -30px rgba(0,0,0,.8); }

/* Pricing featured: warmer, less neon */
.price.featured { box-shadow: 0 0 0 1px var(--gold), 0 30px 70px -36px rgba(232,185,90,.45); }
.amount { letter-spacing: .5px; }

/* Stats: align baseline, premium feel */
.stat { padding: 20px 28px; border-radius: 18px; }
.stat b { font-size: 1.7rem; line-height: 1.1; }

/* Buttons: slightly crisper */
.btn { letter-spacing: .2px; }
.btn-gold { box-shadow: 0 10px 30px -8px rgba(232,185,90,.45); }

/* Contact CTA: bigger presence */
.contact-box { padding: clamp(48px,6vw,80px) clamp(28px,5vw,64px); border-radius: 30px; }

/* Hero: lift the type, calmer sub width */
#hero .badge { margin-bottom: 26px; }
.hero-sub { font-size: 1.08rem; max-width: 660px; }

/* Marquee: full-bleed band that reads as a divider */
.marquee { padding: 18px 0; }

/* Reviews/Elfsight breathing room */
.elfsight-app-94616f48-3722-4ea2-b09f-c0044ba6cf9e { margin-top: 8px; }
