/* ============================================================
   6 Hands Media — Global Stylesheet
   Brand: purple -> magenta -> red gradient (from logo mark)
   ============================================================ */

:root {
  /* Brand */
  --purple: #8e1d9e;
  --magenta: #c31d5f;
  --red: #e8203c;
  --brand-gradient: linear-gradient(120deg, #8e1d9e 0%, #c31d5f 55%, #e8203c 100%);
  --brand-gradient-soft: linear-gradient(120deg, rgba(142,29,158,.12), rgba(232,32,60,.12));

  /* Neutrals */
  --ink: #14101a;         /* near-black with a purple hue */
  --ink-2: #3b3446;
  --muted: #6b6577;
  --line: #e9e5ee;
  --bg: #ffffff;
  --bg-soft: #faf8fc;
  --bg-dark: #140a1c;     /* dark hero base */
  --white: #ffffff;

  /* Type */
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(20,10,28,.06), 0 8px 24px rgba(20,10,28,.05);
  --shadow-md: 0 12px 40px rgba(20,10,28,.10);
  --shadow-brand: 0 12px 30px rgba(195,29,95,.30);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--magenta); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--brand-gradient-soft); }
.text-center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 14px;
}
.lead { font-size: 1.18rem; color: var(--ink-2); }
.muted { color: var(--muted); }

/* Gradient text accent */
.grad-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--brand-gradient); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(195,29,95,.42); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--magenta); color: var(--magenta); }
.btn-white { background: #fff; color: var(--ink); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.link-arrow { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.link-arrow:hover { color: var(--magenta); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand span { letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: inline-flex; align-items: center; gap: 4px; color: var(--ink-2);
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 10px 14px; border-radius: 10px;
}
.nav-links a.nav-link:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.nav-cta { margin-left: 6px; }

/* Dropdown */
.has-dropdown > button {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer;
  color: var(--ink-2); font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 10px 14px; border-radius: 10px;
}
.has-dropdown > button:hover { color: var(--ink); background: var(--bg-soft); }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .18s ease; list-style: none; margin: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--ink); font-weight: 600; font-family: var(--font-head); font-size: .93rem; }
.dropdown a:hover { background: var(--bg-soft); text-decoration: none; }
.dropdown a small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.dropdown .soon { color: var(--muted); font-weight: 600; }
.dropdown .soon span { font-size: .68rem; background: var(--bg-soft); border: 1px solid var(--line); padding: 1px 7px; border-radius: 999px; margin-left: 6px; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; border-radius: 2px; }

/* ---------- Mega menu ---------- */
.nav-links > li.has-mega { position: static; }
.mega-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  color: var(--ink-2); background: none; border: 0; cursor: pointer;
  padding: 10px 14px; border-radius: 10px; line-height: 1;
}
.mega-toggle:hover,
.has-mega:hover .mega-toggle,
.has-mega:focus-within .mega-toggle { color: var(--ink); background: var(--bg-soft); }
.mega-toggle .caret { transition: transform .2s ease; }
.has-mega:hover .mega-toggle .caret,
.has-mega:focus-within .mega-toggle .caret { transform: rotate(-135deg); margin-top: 2px; }
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index: 60;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 22px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.mega-col { display: flex; flex-direction: column; gap: 2px; }
.mega-head {
  font-family: var(--font-head); font-weight: 800; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mega-col a {
  padding: 8px 10px; border-radius: 9px; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: .93rem; line-height: 1.25;
}
.mega-col a:hover { background: var(--brand-gradient-soft); color: var(--magenta); text-decoration: none; }
.mega-col a small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .76rem; color: var(--muted); margin-top: 1px; }
.mega-all { color: var(--magenta) !important; font-weight: 800 !important; margin-top: 8px; }
.mega-feature {
  grid-column: 1 / -1; margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.mega-feature p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.mega-feature strong { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-dark); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(650px 400px at 15% 0%, rgba(142,29,158,.55), transparent 60%),
    radial-gradient(700px 500px at 90% 20%, rgba(232,32,60,.42), transparent 55%),
    radial-gradient(500px 500px at 70% 100%, rgba(195,29,95,.35), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { padding: 92px 0 96px; max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .subhead { font-size: 1.22rem; color: rgba(255,255,255,.82); max-width: 660px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-actions .btn-secondary-link { color: #fff; font-family: var(--font-head); font-weight: 700; opacity: .92; }
.hero-actions .btn-secondary-link:hover { opacity: 1; }
.hero.hero-page .hero-inner { padding: 70px 0 74px; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid rgba(255,255,255,.12); }
.trustbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.trust-item .num { font-size: 1.4rem; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-sep { width: 1px; height: 26px; background: rgba(255,255,255,.16); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-gradient-soft); margin-bottom: 16px; font-size: 1.5rem;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-2); margin-bottom: 0; font-size: .98rem; }

/* Industry card */
.industry-card { display: flex; flex-direction: column; }
.industry-card .tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; align-self: flex-start; margin-bottom: 14px; }
.industry-card .tag.live { background: rgba(46,160,86,.12); color: #1f8a4c; }
.industry-card .tag.soon { background: var(--bg-soft); color: var(--muted); border: 1px solid var(--line); }
.industry-card .card-foot { margin-top: auto; padding-top: 16px; }
.card-link { pointer: cursor; }
.card-disabled { opacity: .72; }

/* ---------- Feature list ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-2); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-gradient);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/16px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/16px no-repeat;
}
.x-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.x-list li { position: relative; padding-left: 34px; color: var(--muted); }
.x-list li::before {
  content: ""; position: absolute; left: 2px; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236b6577' d='M18.3 5.71 12 12l6.3 6.29-1.41 1.42L10.59 13.4 4.3 19.7 2.88 18.3 9.17 12 2.88 5.71 4.3 4.29l6.29 6.3 6.3-6.3z'/></svg>") center/11px no-repeat;
}

/* Two-tone qualification panels */
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.qual-panel { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); }
.qual-panel.yes { background: var(--brand-gradient-soft); border-color: rgba(195,29,95,.2); }
.qual-panel.no { background: var(--bg-soft); }
.qual-panel h3 { margin-bottom: 18px; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.step .num {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-gradient); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
}
.step h3 { margin-bottom: .25em; }
.step p { margin: 0; color: var(--ink-2); }

/* ---------- Testimonials ---------- */
.testi-grid { columns: 3; column-gap: 24px; }
.testi {
  break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.testi .quote { color: var(--ink-2); font-size: .98rem; margin-bottom: 16px; }
.testi .quote::before { content: "“"; font-family: Georgia, serif; font-size: 2.4rem; line-height: 0; color: var(--magenta); vertical-align: -.35em; margin-right: 4px; }
.testi .who { font-family: var(--font-head); font-weight: 800; color: var(--ink); }
.testi .role { color: var(--muted); font-size: .86rem; }
.testi .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; font-size: .9rem; }
.testi.feature { background: var(--bg-dark); color: #fff; border: 0; position: relative; overflow: hidden; }
.testi.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 260px at 90% -10%, rgba(232,32,60,.4), transparent 60%), radial-gradient(360px 260px at 0% 110%, rgba(142,29,158,.5), transparent 60%); }
.testi.feature .quote, .testi.feature .who, .testi.feature .role { position: relative; z-index: 1; }
.testi.feature .quote { color: rgba(255,255,255,.92); }
.testi.feature .who { color: #fff; }
.testi.feature .role { color: rgba(255,255,255,.7); }
.testi.feature .quote::before { color: #fff; }

/* Case study block */
.casestudy { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.stat .big { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { color: var(--muted); font-size: .85rem; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--magenta); border-radius: 2px; transition: transform .2s; }
.faq-q .plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-q .plus::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 20% 0%, rgba(142,29,158,.5), transparent 60%), radial-gradient(600px 320px at 90% 100%, rgba(232,32,60,.42), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--ink); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(195,29,95,.12); }
.field textarea { min-height: 100px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: #100816; color: rgba(255,255,255,.72); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.5); }

/* ---------- Misc ---------- */
.placeholder { background: repeating-linear-gradient(45deg, #fff6, #fff6 8px, #fbeef4 8px, #fbeef4 16px); border: 1px dashed var(--magenta); border-radius: 8px; padding: 2px 8px; color: var(--magenta); font-size: .85em; font-weight: 600; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--brand-gradient-soft); color: var(--magenta); font-family: var(--font-head); font-weight: 700; font-size: .82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .casestudy { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 74px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 12px 16px; box-shadow: var(--shadow-md);
  }
  .nav-links.open .has-dropdown > button { width: 100%; justify-content: space-between; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 4px 12px; }
  /* Mega menu on mobile: full-width toggle + stacked columns */
  .nav-links.open .has-mega { position: static; }
  .nav-links.open .mega-toggle { width: 100%; justify-content: space-between; }
  .nav-links.open .mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; display: none; background: transparent;
  }
  .has-mega.mobile-open .mega { display: block; }
  .nav-links.open .mega-inner { grid-template-columns: 1fr; gap: 10px; padding: 6px 0 6px 12px; }
  .nav-links.open .mega-feature { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .qual-grid, .form-row.cols-2 { grid-template-columns: 1fr; }
  .testi-grid { columns: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 64px 0; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}
