/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #F9F9F7;
  color: #0f0f0f;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid #1D9E75; outline-offset: 2px; }

/* ---------- Tokens ---------- */
:root {
  --ink: #0f0f0f;
  --paper: #F9F9F7;
  --green: #1D9E75;
  --max: 1200px;
}

h1, h2, h3, h4 {
  font-family: "Clash Display", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section--dark { background: #0f0f0f; color: #F9F9F7; }
.section--light { background: #F9F9F7; color: #0f0f0f; }
.section--green { background: #1D9E75; color: #fff; }

.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em;
  color: #1D9E75; font-weight: 500;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; transition: all .2s ease;
  border: 1px solid transparent;
}
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { opacity: .9; }
.btn--ghost-dark { border-color: #fff; color: #fff; background: transparent; }
.btn--ghost-dark:hover { background: #fff; color: #0f0f0f; }
.btn--ghost-light { border-color: rgba(0,0,0,.15); }
.btn--ghost-light:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }
.btn--ink { background: #0f0f0f; color: #fff; }
.btn--ink:hover { background: var(--green); }
.btn--white { background: #fff; color: #0f0f0f; }
.btn--white:hover { background: #0f0f0f; color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

.arrow { width: 16px; height: 16px; }
.arrow--sm { width: 14px; height: 14px; }
.arrow--lg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(15,15,15,.85);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,.05);
}
.nav__inner {
  height: 64px; max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: #F9F9F7;
}
@media (min-width: 1024px) { .nav__inner { padding: 0 40px; } }
.nav__logo { font-family: "Clash Display", sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav__links { display: none; gap: 32px; font-size: 14px; align-items: center; }
.nav__link { opacity: .8; transition: opacity .2s; position: relative; padding: 4px 0; }
.nav__link:hover, .nav__link.is-active { opacity: 1; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--green);
}
.nav__cta { display: none; }
.nav__toggle { display: inline-flex; padding: 8px; }
.nav__mobile { display: none; background: #0f0f0f; border-top: 1px solid rgba(255,255,255,.05); color: #F9F9F7; }
.nav__mobile.is-open { display: block; }
.nav__mobile-inner { padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.nav__mobile a { padding: 8px 0; }
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 120px; padding-bottom: 60px; }
@media (min-width: 768px) { .hero { padding-top: 160px; padding-bottom: 80px; } }
.hero__glow {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(29,158,117,.25), transparent 50%);
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero__title {
  margin-top: 24px; font-size: clamp(34px, 5.2vw, 68px); max-width: 720px; width: 100%;
}
@media (min-width: 768px) { .hero__title { width: 100%; } }
.hero__title em { font-style: italic; font-weight: 300; }
.hero__lede { margin-top: 28px; max-width: 620px; width: 100%; font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.6; }
@media (min-width: 768px) { .hero__lede { width: 100%; } }
.hero__ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
@media (max-width: 599px) {
  .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
}


.hero__video-wrap {
  margin-top: 60px; margin-left: auto; margin-right: auto; position: relative; aspect-ratio: 16/9; width: 100%; max-width: 1100px;
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) { .hero__video-wrap { margin-top: 60px; } }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(29,158,117,.3) 0%, transparent 60%);
}
.hero__mute {
  position: absolute; right: 24px; bottom: 24px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(0,0,0,.5); color: #fff; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero__mute:hover { background: rgba(0,0,0,.7); }
.hero__icon { width: 18px; height: 18px; }

.stats { margin: 60px auto 0; max-width: 1100px; width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; padding: 32px 0 0; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }
.stats > * { flex: 1 1 0; min-width: 140px; }
@media (min-width: 768px) { .stats { flex-wrap: nowrap; gap: 24px; } }
.stats > *:nth-child(4) .stat__num { font-size: clamp(20px, 2.6vw, 32px); white-space: nowrap; }
.stats--light { border-top-color: rgba(0,0,0,.1); }
.stat__num { font-family: "Clash Display", sans-serif; font-weight: 700; color: #fff; font-size: clamp(28px, 4vw, 48px); line-height: 1; }
.stats--light .stat__num { color: #0f0f0f; }
.stat__label { margin-top: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.stats--light .stat__label { color: rgba(0,0,0,.5); }

/* ---------- Section heads ---------- */
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 64px; align-items: flex-start; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 56px); max-width: 820px; }
.section-head p { max-width: 620px; color: rgba(0,0,0,.6); font-size: 18px; line-height: 1.6; }
.section--dark .section-head p { color: rgba(255,255,255,.6); }

/* ---------- Problem section ---------- */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.problem-card {
  background: #1C1C1C; border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 28px;
}
@media (min-width: 768px) { .problem-card { padding: 32px; } }
.problem-card p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.65; }
.problem-kicker {
  margin: 56px auto 0; max-width: 900px; text-align: center;
  font-family: "Clash Display", sans-serif; font-weight: 700; color: #fff;
  font-size: clamp(22px, 3vw, 32px); line-height: 1.2;
}

/* ---------- Process section ---------- */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.process-step__num {
  font-family: "Clash Display", sans-serif; font-weight: 700;
  color: var(--green); font-size: clamp(48px, 6vw, 72px); line-height: 1;
}
.process-step h3 { margin-top: 16px; font-size: 22px; }
.process-step p { margin-top: 12px; color: rgba(0,0,0,.6); font-size: 15px; line-height: 1.65; }
.process-note { margin: 56px auto 0; text-align: center; color: rgba(0,0,0,.55); font-size: 14px; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.1); border-radius: 16px; overflow: hidden;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid--3, .services-grid--lg { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: #F9F9F7; padding: 32px; height: 100%; transition: background .2s;
}
@media (min-width: 768px) { .service { padding: 40px; } }
.service:hover { background: #fff; }
.service__icon { width: 28px; height: 28px; color: var(--green); }
.service__icon--lg { width: 32px; height: 32px; }
.service h3 { margin-top: 24px; font-size: 24px; }
.services-grid--3 .service h3 { font-size: 20px; white-space: nowrap; }
.services-grid--lg .service h3 { font-size: 20px; white-space: nowrap; }
.service p { margin-top: 12px; color: rgba(0,0,0,.6); font-size: 15px; line-height: 1.7; text-align: left; }
.services-grid--lg .service p { font-size: 15px; }
.center { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- Work grid ---------- */
.work-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .work-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.work-card { display: block; text-align: left; width: 100%; }
.work-card__media {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polygon points='10 8 16 12 10 16 10 8' fill='rgba(255,255,255,0.35)' stroke='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.work-card--bento .work-card__media { aspect-ratio: 5/4; }
.work-card--bento.is-wide .work-card__media { aspect-ratio: 4/3; }
.work-card__media video, .work-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-card__shade { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .2s; }
.work-card:hover .work-card__shade { background: rgba(0,0,0,.4); }
.work-card__tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  background: rgba(0,0,0,.4); color: #fff; padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.work-card__hoverbody {
  position: absolute; inset: 0; padding: 20px; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity .2s;
}
.work-card:hover .work-card__hoverbody { opacity: 1; }
.work-card__hoverbody .work-card__cat { color: var(--green); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.work-card__hoverbody .work-card__title { font-family: "Clash Display", sans-serif; margin-top: 6px; font-size: 18px; font-weight: 600; line-height: 1.2; }
.work-card__hoverbody .work-card__view { margin-top: 8px; font-size: 12px; }

.work-card__foot { margin-top: 16px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.work-card__foot h3 { font-size: 16px; font-family: "Clash Display", sans-serif; font-weight: 600; }
.work-card__view-link { color: var(--green); font-size: 14px; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.work-card:hover .work-card__view-link { gap: 8px; }

/* ---------- Filters ---------- */
.filters { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  padding: 8px 16px; border-radius: 999px; font-size: 14px;
  border: 1px solid rgba(0,0,0,.15); background: transparent; transition: all .2s;
}
.filter:hover { border-color: rgba(0,0,0,.4); }
.filter.is-active { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }

/* ---------- Testimonials ---------- */
.testimonials { margin-top: 56px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
.testimonial {
  background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: 16px; padding: 32px; height: 100%;
}
@media (min-width: 768px) { .testimonial { padding: 40px; } }
.testimonial__quote-mark { font-family: "Clash Display", sans-serif; font-size: 48px; color: var(--green); line-height: 1; }
.testimonial blockquote { margin-top: 8px; font-family: "Clash Display", sans-serif; font-size: 18px; line-height: 1.5; }
@media (min-width: 768px) { .testimonial blockquote { font-size: 20px; } }
.testimonial figcaption { margin-top: 24px; font-size: 14px; }
.testimonial figcaption .name { font-weight: 600; }
.testimonial figcaption .org { color: rgba(0,0,0,.5); }

/* ---------- Pricing ---------- */
.pricing { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative; padding: 32px; border-radius: 16px; height: 100%;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) { .plan { padding: 40px; } }
.plan--featured { background: #fff; color: #0f0f0f; border: 2px solid var(--green); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 11px; text-transform: uppercase;
  letter-spacing: .15em; padding: 4px 12px; border-radius: 999px;
}
.plan h3 { font-size: 24px; }
.plan__price { margin-top: 16px; display: flex; align-items: baseline; gap: 4px; }
.plan__price .num { font-family: "Clash Display", sans-serif; font-weight: 700; font-size: 48px; line-height: 1; }
.plan__price .per { color: rgba(255,255,255,.5); }
.plan--featured .plan__price .per { color: rgba(0,0,0,.5); }
.plan__features { margin-top: 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.plan__features li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.8); }
.plan--featured .plan__features li { color: rgba(0,0,0,.8); }
.plan__features .check { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan .btn { margin-top: 32px; justify-content: center; }

/* Light-section plan overrides (retainer sections on light background) */
.section--light .plan:not(.plan--featured) {
  background: #fff;
  border-color: rgba(0,0,0,.1);
  color: #0f0f0f;
}
.section--light .plan:not(.plan--featured) .plan__features li { color: rgba(0,0,0,.75); }
.section--light .plan:not(.plan--featured) .plan__price .per { color: rgba(0,0,0,.5); }
.section--light .plan:not(.plan--featured) .plan__hours { color: rgba(0,0,0,.6) !important; }

/* Dark-section plan overrides — use dark grey instead of near-black */
.section--dark .plan:not(.plan--featured) {
  background: #1C1C1C;
  border-color: rgba(255,255,255,.08);
}
/* Dark-section featured plan — keep green border but match dark surface */
.section--dark .plan.plan--featured {
  background: #1C1C1C;
  color: #F9F9F7;
  border: 2px solid var(--green);
}
.section--dark .plan.plan--featured .plan__features li { color: rgba(255,255,255,.8); }
.section--dark .plan.plan--featured .plan__price .per { color: rgba(255,255,255,.5); }

/* One-off addon titles — keep on a single line */
.addon h3 { font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Addons ---------- */
.addons { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .addons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .addons { grid-template-columns: repeat(3, 1fr); } }
/* 7-card layout: 4 on row 1, 3 centered on row 2 */
@media (min-width: 1024px) {
  .addons--split { grid-template-columns: repeat(12, 1fr); }
  .addons--split > .addon,
  .addons--split > .reveal { grid-column: span 3; }
  .addons--split > .reveal:nth-child(n+5) { grid-column: span 4; }
}
.addon {
  background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: 16px; padding: 24px;
  height: 100%; transition: border-color .2s;
}
.addon:hover { border-color: var(--green); }
.addon__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.addon h3 { font-family: "Clash Display", sans-serif; font-size: 18px; font-weight: 600; color: #0f0f0f; }
.addon .from { color: var(--green); font-size: 14px; font-weight: 600; white-space: nowrap; }
.addon p { margin-top: 12px; font-size: 14px; color: rgba(0,0,0,.6); }

/* ---------- FAQ ---------- */
.faqs { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.faq { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq:last-child { border-bottom: 0; }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px 0; text-align: left; font-family: "Clash Display", sans-serif; font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) { .faq__q { font-size: 20px; } }
.faq__icon { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.faq__a { padding-bottom: 24px; color: rgba(255,255,255,.7); line-height: 1.7; margin-top: -8px; display: none; max-width: none; width: 100%; }
.contact .faq__a { max-width: none; margin-top: -8px; font-size: 16px; }
.faq.is-open .faq__a { display: block; }
.faq__icon-minus { display: none; }
.faq.is-open .faq__icon-minus { display: block; }
.faq.is-open .faq__icon-plus { display: none; }

/* ---------- Contact ---------- */
.contact { padding: 96px 0; }
@media (min-width: 768px) { .contact { padding: 128px 0; } }
.contact__head { max-width: 640px; }
.contact h2 { font-size: clamp(32px, 4.5vw, 56px); }
.contact p { margin-top: 24px; color: rgba(255,255,255,.7); font-size: 18px; max-width: 520px; }
.form { margin-top: 48px; display: grid; gap: 16px; max-width: 640px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 768px) { .form__row { grid-template-columns: 1fr 1fr; } }
.input, .textarea {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 14px 16px; color: #fff; width: 100%;
  transition: border-color .2s;
}
.input::placeholder, .textarea::placeholder { color: rgba(255,255,255,.4); }
.input:focus, .textarea:focus { outline: none; border-color: var(--green); }
.textarea { resize: vertical; min-height: 140px; }
.form__actions { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
@media (min-width: 640px) { .form__actions { flex-direction: row; align-items: center; } }
.socials { display: flex; gap: 20px; align-items: center; color: rgba(255,255,255,.6); }
@media (min-width: 640px) { .socials { margin-left: 16px; } }
.socials a { transition: color .2s; }
.socials a:hover { color: #fff; }
.socials svg { width: 20px; height: 20px; }
.form__status { font-size: 14px; }
.form__status--err { color: #f87171; }
.form__status--ok { color: var(--green); }

/* ---------- CTA strip ---------- */
.cta-strip {
  padding: 64px 0;
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center; align-items: center; text-align: center;
}
@media (min-width: 768px) {
  .cta-strip { padding: 80px 0; flex-direction: row; align-items: center; justify-content: center; gap: 40px; text-align: left; }
}
.cta-strip h2 { font-size: clamp(36px, 5vw, 72px); line-height: 1.05; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(255,255,255,.05); padding: 40px 0; }
.footer__inner {
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  justify-content: space-between; font-size: 14px; color: rgba(255,255,255,.6);
}
@media (min-width: 768px) { .footer__inner { flex-direction: row; } }
.footer__inner svg { width: 18px; height: 18px; }
.footer__inner a:hover { color: #fff; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.modal.is-open { display: flex; }
.modal__panel {
  background: #F9F9F7; max-width: 900px; width: 100%; border-radius: 16px; overflow: hidden;
  max-height: 90vh; overflow-y: auto;
}
.modal__media { aspect-ratio: 16/9; background: #000; }
.modal__media video, .modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: 32px; }
@media (min-width: 768px) { .modal__body { padding: 40px; } }
.modal__body h3 { margin-top: 12px; font-size: clamp(24px, 4vw, 36px); }
.modal__meta { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: var(--green); }
.modal__close { margin-top: 32px; padding: 10px 20px; border-radius: 999px; border: 1px solid rgba(0,0,0,.15); font-size: 14px; transition: all .2s; }
.modal__close:hover { background: #0f0f0f; color: #fff; }

/* ---------- Routes (hash-driven views) ---------- */
.view { display: none; }
.view.is-active { display: block; }

/* ---------- Reveal animation ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .8s ease-out forwards; }

/* ---------- Misc text colors ---------- */
.text-muted-dark { color: rgba(255,255,255,.7); }
.text-muted-light { color: rgba(0,0,0,.6); }
.text-green { color: var(--green); }

/* ---------- About: Story two-column ---------- */
@media (min-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ---------- Mobile breathing room ---------- */
@media (max-width: 767px) {
  body { line-height: 1.6; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  /* Hero */
  .hero { padding-top: 104px; padding-bottom: 48px; }
  .hero__title { font-size: clamp(30px, 8vw, 40px); line-height: 1.1; }
  .hero__lede { font-size: 16px; margin-top: 24px; line-height: 1.65; }
  .hero__ctas { margin-top: 32px; gap: 12px; }
  .hero__video-wrap { margin-top: 48px; border-radius: 12px; }

  .stats { margin-top: 48px; gap: 20px 16px; padding-top: 28px; }
  .stats > * { min-width: 120px; }
  .stat__num { font-size: 26px; }
  .stat__label { font-size: 11px; margin-top: 6px; line-height: 1.4; }

  /* Section heads */
  .section-head { margin-bottom: 48px; gap: 14px; }
  .section-head h2 { font-size: clamp(28px, 7.5vw, 36px); line-height: 1.15; }
  .section-head p { font-size: 16px; line-height: 1.65; }

  /* Problem */
  .problem-grid { gap: 16px; }
  .problem-card { padding: 24px; border-radius: 14px; }
  .problem-card p { font-size: 15px; line-height: 1.7; }
  .problem-kicker { margin-top: 44px; font-size: 22px; line-height: 1.3; }

  /* Process */
  .process-grid { gap: 36px; }
  .process-step__num {
    font-family: "Clash Display", "Space Grotesk", system-ui, sans-serif;
    font-weight: 700;
    color: var(--green);
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    display: block;
  }
  .process-step h3 { font-size: 20px; margin-top: 14px; }
  .process-step p { font-size: 14px; line-height: 1.7; margin-top: 10px; }
  .process-note { margin-top: 44px; }

  /* Services */
  .service { padding: 28px; }
  .service h3 { font-size: 20px; margin-top: 20px; }
  .service p { font-size: 14px; line-height: 1.75; margin-top: 14px; }
  .services-grid--3 .service h3,
  .services-grid--lg .service h3 { font-size: 18px; white-space: normal; }

  /* Work */
  .work-grid { gap: 20px; }
  .work-card__foot { margin-top: 14px; }
  .work-card__foot h3 { font-size: 15px; }

  /* Testimonials */
  .testimonials { margin-top: 44px; gap: 20px; }
  .testimonial { padding: 28px; border-radius: 14px; }
  .testimonial blockquote { font-size: 16px; line-height: 1.6; }
  .testimonial figcaption { margin-top: 20px; font-size: 13px; }
  .testimonial__quote-mark { font-size: 40px; }

  /* Pricing */
  .pricing { gap: 20px; }
  .plan { padding: 28px; border-radius: 14px; }
  .plan h3 { font-size: 22px; }
  .plan__price .num { font-size: 40px; }
  .plan__features { margin-top: 26px; gap: 14px; }
  .plan__features li { font-size: 14px; line-height: 1.6; }
  .plan .btn { margin-top: 28px; }

  /* Addons */
  .addons { gap: 16px; }
  .addon { padding: 22px; border-radius: 14px; }
  .addon h3 { font-size: 17px; white-space: normal; }
  .addon p { font-size: 14px; line-height: 1.65; margin-top: 12px; }

  /* FAQ */
  .faq__q { padding: 22px 0; font-size: 16px; gap: 14px; }
  .faq__a { padding-bottom: 22px; font-size: 15px; line-height: 1.75; }

  /* Contact */
  .contact { padding: 72px 0; }
  .contact h2 { font-size: clamp(28px, 7.5vw, 36px); }
  .contact p { font-size: 16px; margin-top: 20px; line-height: 1.65; }
  .form { margin-top: 40px; gap: 14px; }
  .input, .textarea { padding: 13px 15px; font-size: 15px; }

  /* CTA strip */
  .cta-strip { padding: 56px 0; gap: 20px; }
  .cta-strip h2 { font-size: clamp(30px, 8vw, 44px); line-height: 1.15; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer__inner { gap: 14px; font-size: 13px; }

  /* Filters */
  .filters { margin-top: 36px; }
  .filter { padding: 8px 14px; font-size: 13px; }
}
