:root {
  --bg: #000000;
  --card: #0d0d0d;
  --card-border: #1e1e1e;
  --text: #ffffff;
  --muted: #9a9a9a;
  --accent: #b3a4f0;
  --accent-strong: #9f8df2;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2 { font-weight: 200; letter-spacing: -0.02em; line-height: 1.08; }
h1 { font-size: clamp(2.5rem, 4.6vw, 4.2rem); }
h1 em { font-style: italic; color: var(--accent); }
h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h3 { font-weight: 400; font-size: 1.35rem; }

.muted { color: var(--muted); line-height: 1.6; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'Jockey One', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.nav-links a { opacity: 0.95; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-toggle { display: none; }

/* ---------- Smoke background ---------- */
.smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.smoke-hero {
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}
.smoke-footer {
  mask-image: linear-gradient(to top, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 65%, transparent 100%);
}
.smoke::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/grain.png');
  opacity: 0.06;
  mix-blend-mode: screen;
}
.smoke i {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.14), rgba(179,164,240,0.05) 40%, transparent 68%);
  animation: drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
.smoke i:nth-child(1) { top: 5%; left: -15%; animation-duration: 26s; }
.smoke i:nth-child(2) { top: 35%; right: -20%; animation-duration: 32s; animation-delay: -8s; }
.smoke i:nth-child(3) { bottom: -10%; left: 20%; animation-duration: 24s; animation-delay: -15s; }

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(8vw, -6vh) scale(1.15); }
  100% { transform: translate(-6vw, 5vh) scale(0.95); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 48px 60px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero-sub {
  color: var(--muted);
  max-width: 540px;
  margin: 22px 0 30px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-line {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.hero-media {
  position: relative;
  height: 560px;
}
.hero-media .hm {
  position: absolute;
  width: 52%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-media .hm-1 { top: 0; left: -3%; transform: rotate(-6deg); z-index: 1; }
.hero-media .hm-2 { top: 4%; right: -3%; transform: rotate(5deg); z-index: 1; }
.hero-media .hm-3 { bottom: 0; left: 24%; transform: rotate(-1.5deg); z-index: 2; }
.hero-media .hm-1:hover {
  transform: rotate(-3deg) scale(1.07);
  z-index: 5;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 30px rgba(179,164,240,0.15);
}
.hero-media .hm-2:hover {
  transform: rotate(2.5deg) scale(1.07);
  z-index: 5;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 30px rgba(179,164,240,0.15);
}
.hero-media .hm-3:hover {
  transform: rotate(-0.5deg) scale(1.04);
  z-index: 5;
}

/* ---------- Badges / eyebrows ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(179,164,240,0.07);
  border: 1px solid rgba(179,164,240,0.22);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(179,164,240,0.9);
}
.dot-live { background: #7bd88f; box-shadow: 0 0 8px rgba(123,216,143,0.9); }
.eyebrow, .eyebrow-sub {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 400;
  background: transparent;
  box-shadow: 0 0 14px rgba(255,255,255,0.1), inset 0 0 8px rgba(255,255,255,0.04);
  transition: box-shadow .25s, background .25s, border-color .25s, color .25s;
}
.btn:hover {
  background: rgba(179,164,240,0.1);
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(179,164,240,0.3);
}
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  font-weight: 500;
  box-shadow: 0 0 24px rgba(179,164,240,0.35);
}
.btn-accent:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #0a0a0a;
  box-shadow: 0 0 32px rgba(179,164,240,0.55);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
  color: var(--muted);
}
.btn-ghost:hover { color: #fff; }
.cta-row { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }

/* ---------- Stats ---------- */
.stats { max-width: 1200px; margin: 0 auto; padding: 40px 48px 10px; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-num {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 200;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}
.stat p { color: var(--muted); line-height: 1.5; max-width: 280px; margin: 0 auto; }
.stat-source { margin-top: 34px; font-size: 0.75rem; color: #555; }

/* ---------- Pricing ---------- */
.pricing { max-width: 1440px; margin: 0 auto; padding: 100px 48px 60px; }
.pricing-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.pricing-head h2 { margin-bottom: 16px; }
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.price-card { display: flex; flex-direction: column; padding: 38px 32px; }
.price-card.featured { border-color: rgba(179,164,240,0.5); box-shadow: 0 0 40px rgba(179,164,240,0.12); }
.promo-badge {
  align-self: flex-start;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(179,164,240,0.1);
  border: 1px solid rgba(179,164,240,0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.price-card h3 { font-size: 1.6rem; border: none; padding: 0; margin: 0 0 10px; }
.tier-sub { color: var(--muted); line-height: 1.55; margin-bottom: 24px; min-height: 72px; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price { font-size: 2.6rem; font-weight: 300; letter-spacing: -0.02em; }
.price-old { font-size: 1.4rem; color: var(--muted); text-decoration: line-through; }
.price-unit { color: var(--muted); }
.price-note { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.tier-features { list-style: none; margin: 26px 0 30px; flex-grow: 1; }
.tier-features li {
  color: var(--muted);
  line-height: 1.5;
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tier-features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.tier-ctas { display: flex; flex-direction: column; gap: 12px; }
.tier-ctas .btn { justify-content: center; text-align: center; }
.tier-email {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tier-email:hover { color: var(--accent); }

/* ---------- Quiz ---------- */
.quiz { padding: 90px 24px 40px; max-width: 1100px; margin: 0 auto; }
.quiz-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 300; margin: 6px 0 8px; }
.quiz iframe {
  width: 100%;
  height: 800px;
  border: none;
  margin-top: 28px;
  border-radius: var(--radius);
}

/* ---------- Generic two-column section ---------- */
.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 48px;
}
.section.panel {
  background: #050505;
  border-radius: 32px;
  margin: 40px auto;
  padding: 64px 56px;
}
.section-copy h2 { margin-bottom: 24px; }
.section-media img { border-radius: var(--radius); width: 100%; }
.section-media.light {
  background: #ececea;
  border-radius: var(--radius);
  padding: 28px;
}
.section-media.light img {
  mix-blend-mode: multiply;
  max-height: 520px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
/* Media panels that are direct grid children fill the full column height */
.section > .section-media.light {
  align-self: stretch;
  padding: 0;
  overflow: hidden;
  display: flex;
}
.section > .section-media.light img {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: cover;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 1.1rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Projects carousel ---------- */
.projects { padding: 110px 48px; max-width: 1440px; margin: 0 auto; }
.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(179,164,240,0.25);
}
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel img {
  width: calc(25% - 15px);
  min-width: 280px;
  border-radius: 12px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tags span {
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 48px 90px;
}
@media (max-width: 1080px) { .cards { grid-template-columns: 1fr; max-width: 640px; } }
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  transition: border-color .3s;
}
.card:hover { border-color: rgba(179,164,240,0.35); }
.card-icon { width: 30px; height: 30px; margin-bottom: 18px; color: var(--accent); }
.card-icon svg { width: 100%; height: 100%; }
.card h3 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}
.card p { color: var(--muted); line-height: 1.6; }
.svc-list { list-style: none; margin-top: 22px; }
.svc-list li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
  padding: 11px 0 11px 30px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.svc-list li:first-child { border-top: none; }

/* ---------- Services stacked layout ---------- */
#services { align-items: start; }
#existing-merch { grid-template-columns: 1fr; }
#existing-merch .section-copy { max-width: 760px; margin: 0 auto; }
.svc-stack { display: flex; flex-direction: column; gap: 20px; margin: 30px 0 34px; }
.section > .section-media.light.services-media {
  align-self: start;
  position: sticky;
  top: 100px;
  padding: 28px;
  display: block;
}
.section > .section-media.light.services-media img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.audit-offer {
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(179,164,240,0.32);
  border-radius: var(--radius);
  background: rgba(179,164,240,0.06);
}
.audit-offer h3 { color: var(--accent); margin-bottom: 12px; }
.audit-offer p { color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.audit-offer .btn { display: inline-flex; }

/* ---------- Message from Daniel (video) ---------- */
.section-video {
  max-width: 940px;
  margin: 40px auto;
  padding: 48px 24px 24px;
  text-align: center;
}
.section-video h2 { margin-bottom: 34px; }
.video-wrap {
  width: min(880px, 100%);
  margin: 0 auto;
  background: #000;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-wrap video { width: 100%; height: auto; display: block; }
.svc-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 13px;
  height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Process steps ---------- */
.steps { display: flex; flex-direction: column; gap: 24px; margin-top: 44px; }
.step-num {
  position: absolute;
  top: 22px; right: 22px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(179,164,240,0.4);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ---------- FAQ ---------- */
.faq-section { align-items: start; }
.faq-media { margin: 36px 0 0; max-width: 480px; }
.accordion details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.accordion details[open] { border-color: rgba(179,164,240,0.3); }
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 30px;
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
  user-select: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--muted);
  transition: transform .2s;
}
.accordion details[open] summary::after { content: "×"; color: var(--accent); }
.accordion details p {
  padding: 0 30px 26px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: 160px 24px 40px;
  text-align: center;
  overflow: hidden;
}
.footer-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.footer h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 300; margin-bottom: 40px; }
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 120px auto 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 24px; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px 24px 80px;
}
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; font-weight: 400; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }
.legal .back { display: inline-block; margin-top: 48px; color: var(--accent); }

/* ---------- Promo popup ---------- */
.promo-overlay[hidden] { display: none; }
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.promo-modal {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(179,164,240,0.4);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(179,164,240,0.18), 0 30px 80px rgba(0,0,0,0.8);
  max-width: 440px;
  width: 100%;
  padding: 38px 34px;
}
.promo-modal { text-align: center; }
.promo-modal h3 { font-size: 1.5rem; margin-bottom: 12px; }
.promo-modal .price-row { margin: 18px 0 24px; justify-content: center; }
.promo-dismiss {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px;
}
.promo-dismiss:hover { color: #fff; }

/* ---------- Projects: view all ---------- */
.projects-more { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Past Works page ---------- */
.work-header { text-align: center; padding: 160px 24px 30px; max-width: 760px; margin: 0 auto; }
.work-header h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 16px; }
.work-section { max-width: 1440px; margin: 0 auto; padding: 40px 48px; }
.work-section-head { margin-bottom: 12px; }
.work-section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 10px; }
.work-disclaimer { color: #666; font-size: 0.85rem; margin-bottom: 8px; }
.work-project { padding: 34px 0; border-bottom: 1px solid var(--card-border); }
.work-project h3 { font-size: 1.4rem; margin-bottom: 4px; }
.work-project .muted { font-size: 0.95rem; margin-bottom: 22px; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease;
}
.work-grid img:hover { transform: scale(1.02); }
.work-project .work-grid img:nth-child(n+9) { display: none; }
.work-project.expanded .work-grid img { display: block; }
.work-more {
  margin-top: 20px;
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--muted);
  padding: 10px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color .2s, color .2s;
}
.work-more:hover { border-color: var(--accent); color: var(--accent); }

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

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .nav { padding: 12px 20px; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.96);
    padding: 24px;
    gap: 20px;
    display: none;
    text-align: center;
    font-size: 1.3rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span { width: 26px; height: 2px; background: #fff; display: block; }

  .hero { padding: 110px 20px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { height: 400px; max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .section, .cards, .projects { padding-left: 20px; padding-right: 20px; }
  .stats { padding: 30px 20px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing { padding: 70px 20px 40px; }
  .price-cards { grid-template-columns: 1fr; }
  .tier-sub { min-height: 0; }
  .work-section { padding: 24px 20px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-header { padding-top: 120px; }
  .section { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
  .section.panel { padding: 40px 24px; }
  .section.panel.reverse .section-media { order: 2; }
  .section > .section-media.light.services-media { display: none; }
  .cards { grid-template-columns: 1fr; }
  .carousel img { width: 80%; }
  .quiz iframe { height: 860px; }
  .footer-bottom { flex-direction: column; }
}
