:root {
  --green: #0b421a;
  --green-soft: rgba(11, 66, 26, 0.08);
  --green-mid: rgba(11, 66, 26, 0.16);
  --cream: #ffffff;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: rgba(11, 66, 26, 0.68);
  --muted-strong: rgba(11, 66, 26, 0.82);
  --line: rgba(11, 66, 26, 0.18);
  --shadow-soft: 0 22px 60px rgba(11, 66, 26, 0.10);
  --shadow-strong: 0 38px 80px rgba(11, 66, 26, 0.20);
  --radius-card: 28px;
  --radius-button: 12px;
  --header-height: 76px;
  --page-gutter: clamp(18px, 4vw, 60px);
  --section-gap: clamp(72px, 8vw, 128px);
  --content-max: 1392px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

html,
body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  padding-top: var(--header-height);
  color: var(--green);
  font-family: Inter, Helvetica, Arial, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

button,
input,
select,
textarea { font: inherit; }

button { border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.92em;
}

::selection { background: rgba(11, 66, 26, 0.16); }

:focus-visible {
  outline: 3px solid rgba(11, 66, 26, 0.35);
  outline-offset: 4px;
}

h1,
h2,
.logo,
.loader-logo {
  font-family: "Noto Serif SC", Georgia, serif;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

.skip-link,
.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;
}

.skip-link:focus {
  position: fixed;
  z-index: 6000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-weight: 900;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.site-loader.is-exiting { transform: translateY(-100%); }

.loader-logo {
  width: min(426px, calc(100% - 48px));
  text-align: center;
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
}

.index-screen {
  background:
    radial-gradient(circle at 0 12%, rgba(11, 66, 26, 0.06), transparent 28%),
    radial-gradient(circle at 100% 34%, rgba(11, 66, 26, 0.05), transparent 26%),
    var(--paper);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 44px);
  background: var(--green);
  border-bottom: 2px solid rgba(247, 244, 238, 0.22);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.top-bar.is-scrolled {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  border-color: rgba(247, 244, 238, 0.16);
}

.logo {
  color: var(--cream);
  font-size: clamp(28px, 2.35vw, 35px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle,
.mobile-back { display: none; }

.nav {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 38px);
  flex: 1 1 auto;
  --nav-indicator-x: 0px;
  --nav-indicator-width: 38px;
  --nav-indicator-opacity: 0;
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 13px;
  width: var(--nav-indicator-width);
  height: 3px;
  transform: translateX(var(--nav-indicator-x));
  background: var(--cream);
  border-radius: 999px;
  opacity: var(--nav-indicator-opacity);
  pointer-events: none;
}

.nav.is-indicator-animating::after {
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), width 260ms ease, opacity 180ms ease;
}

.nav-link {
  position: relative;
  padding: 24px 4px 22px;
  background: transparent;
  color: rgba(247, 244, 238, 0.74);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--cream); }
.nav-link:hover { transform: translateY(-1px); }

.book-call,
.ghost-call,
.view-more,
.price-link,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-button);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.book-call {
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.book-call:hover,
.price-link:hover,
.view-more:hover,
.contact-form button:hover,
.ghost-call:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.book-call:active,
.price-link:active,
.view-more:active,
.contact-form button:active,
.ghost-call:active {
  transform: translateY(0);
  box-shadow: none;
}

.book-call img { width: 22px; height: 22px; }

.top-cta {
  width: clamp(148px, 13vw, 176px);
  min-height: 44px;
  flex: 0 0 auto;
  font-size: clamp(14px, 1vw, 16px);
}

.hero {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(70px, 5.5vw, 96px) var(--page-gutter) clamp(78px, 5.6vw, 104px);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(220px, 320px) minmax(220px, 320px);
  align-items: start;
  column-gap: clamp(36px, 4vw, 72px);
  row-gap: 64px;
}

.hero-copy { max-width: 735px; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(11, 66, 26, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.hero h1 strong { font-weight: 900; }

.hero p {
  margin: clamp(24px, 2.4vw, 34px) 0 0;
  max-width: 660px;
  font-size: clamp(15px, 1.14vw, 18px);
  line-height: 1.62;
  color: var(--muted);
}

.hero-actions {
  margin-top: clamp(34px, 3vw, 44px);
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: stretch;
  gap: 18px;
  justify-content: start;
}

.hero-cta,
.ghost-call {
  min-height: 56px;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.hero-cta {
  width: clamp(220px, 16vw, 264px);
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 18px 36px rgba(11, 66, 26, 0.18);
}

.hero-cta img { filter: brightness(0) invert(1); }

.ghost-call {
  width: clamp(170px, 13vw, 220px);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  box-shadow: 0 14px 28px rgba(11, 66, 26, 0.08), 0 2px 2px rgba(0, 0, 0, 0.08);
}

.video-card,
.work-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid var(--green);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.96), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(135deg, rgba(11, 66, 26, 0.05) 0 10px, transparent 10px 22px);
  color: var(--green);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-card:hover,
.work-card:hover,
.edit-card:hover,
.proof-card:hover,
.process-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.video-card {
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card-preview-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  background: #06140a;
  pointer-events: none;
}

.card-preview-video-upgrade {
  opacity: 0 !important;
  pointer-events: none !important;
}

.card-preview-video::-webkit-media-controls,
.card-preview-video::-webkit-media-controls-panel,
.card-preview-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
}

.video-card.has-card-preview,
.work-card.has-card-preview {
  padding: 0;
  opacity: 1 !important;
  transform: none !important;
  background: #06140a;
}

.video-card.has-card-preview.reveal,
.work-card.has-card-preview.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-card.has-card-preview > :not(.card-preview-video),
.work-card.has-card-preview > :not(.card-preview-video) {
  display: none !important;
}

.video-card.has-card-preview::after,
.work-card.has-card-preview::after {
  display: none !important;
  opacity: 0;
}

.video-card.has-card-preview .card-preview-video,
.work-card.has-card-preview .card-preview-video,
[data-video-player] {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal;
}

.video-card.has-card-preview::before,
.work-card.has-card-preview::before {
  content: attr(data-video-label);
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: auto;
  height: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 66, 26, 0.88);
  color: var(--cream);
  font: 900 12px/1 Inter, Helvetica, Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.video-card::before,
.video-card::after,
.work-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 9px;
  border-radius: 999px;
  background: rgba(11, 66, 26, 0.12);
}

.video-card::before { bottom: 82px; }
.video-card::after { bottom: 62px; right: 72px; }

.video-label,
.work-card span,
.card-number {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-number {
  width: max-content;
  height: 32px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 66, 26, 0.28);
  border-radius: 999px;
  background: rgba(11, 66, 26, 0.06);
  color: var(--green);
  box-shadow: none;
  font-size: 13px;
  letter-spacing: 0;
}

.video-label {
  position: absolute;
  top: 18px;
  left: 18px;
}

.video-card strong {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(50px, 4.8vw, 70px);
  line-height: 1;
  font-weight: 900;
}

.video-card small {
  margin-top: 14px;
  color: rgba(11, 66, 26, 0.56);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-card:not(.has-card-preview) strong,
.work-card:not(.has-card-preview) strong {
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.work-card:not(.has-card-preview) em {
  overflow-wrap: normal;
  word-break: normal;
}

.metrics {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  min-height: 136px;
  margin: 0 auto var(--section-gap);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  border: 2px solid var(--green);
  border-radius: var(--radius-card);
  background: rgba(247, 244, 238, 0.92);
  box-shadow: 0 20px 50px rgba(11, 66, 26, 0.07);
  overflow: hidden;
}

.metric {
  min-width: 0;
  padding: 16px clamp(12px, 2.4vw, 26px);
  text-align: center;
}

.metric strong {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.metric span {
  display: block;
  max-width: 300px;
  margin: 6px auto 0;
  font-size: clamp(15px, 1.6vw, 21px);
  line-height: 1.18;
  font-weight: 800;
}

.metric-line {
  width: 1px;
  height: min(92px, calc(100% - 44px));
  justify-self: center;
  background: rgba(11, 66, 26, 0.22);
}

.edit-section,
.brands,
.pricing,
.ready-cta,
.footer,
.process,
.faq,
.portfolio-setup {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.section-heading { text-align: center; }

.section-heading h1,
.section-heading h2,
.edit-section h2,
.testimonials h2,
.brands h2,
.work-section h1,
.work-section h2,
.pricing h2,
.process h2,
.faq h2,
.proof-section h2,
.portfolio-hero h1,
.portfolio-setup h2,
.legal-page h1 {
  margin: 0;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.section-heading p,
.portfolio-hero p,
.portfolio-setup p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.58;
}

.inverse .section-kicker,
.inverse h1,
.inverse h2,
.inverse p { color: var(--cream); }
.inverse .section-kicker,
.inverse p { opacity: 0.84; }

.edit-section {
  margin-bottom: var(--section-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.edit-section .section-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(24px, 3.6vw, 44px);
}

.edit-card,
.proof-card,
.process-card,
.price-card,
.testimonial-card,
.portfolio-setup,
.faq details {
  border: 2px solid var(--green);
  border-radius: var(--radius-card);
  background: rgba(247, 244, 238, 0.92);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.edit-card {
  min-height: 280px;
  padding: clamp(26px, 3vw, 36px) clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-content: start;
  align-items: center;
  column-gap: 14px;
  text-align: left;
}

.edit-card::before {
  display: none;
}

.edit-card h3,
.process-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.edit-card h3 {
  min-width: 0;
  white-space: nowrap;
}

.edit-card p,
.process-card p,
.proof-card span {
  margin: 0;
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.48;
  color: var(--muted);
}

.edit-card p {
  grid-column: 1 / -1;
  margin-top: 22px;
}

.process-card h3 { margin: 28px 0 14px; }

.proof-section {
  width: 100%;
  margin-bottom: var(--section-gap);
  padding: clamp(78px, 8vw, 126px) var(--page-gutter) clamp(82px, 8vw, 118px);
  background: var(--green);
}

.proof-section .section-heading {
  width: min(var(--content-max), 100%);
  margin: 0 auto clamp(32px, 4vw, 54px);
}

.proof-grid {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.proof-card {
  min-height: 230px;
  padding: clamp(26px, 3vw, 36px);
  background: var(--cream);
}

.proof-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  font-weight: 900;
}

.brands {
  margin-bottom: var(--section-gap);
  overflow: hidden;
}

.brands .section-heading { margin-bottom: clamp(46px, 5.8vw, 70px); }

.brand-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brand-row {
  --brand-gap: 120px;
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-marquee-left-to-right 34s linear infinite;
  will-change: transform;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: var(--brand-gap);
  flex: 0 0 auto;
  padding-right: var(--brand-gap);
}

@keyframes brand-marquee-left-to-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.brand-logo {
  width: auto;
  height: clamp(46px, 5vw, 74px);
  max-width: none;
  flex: 0 0 auto;
}

.work-section {
  width: 100%;
  margin-bottom: var(--section-gap);
  padding: clamp(70px, 7vw, 96px) max(var(--page-gutter), calc((100vw - var(--content-max)) / 2)) clamp(76px, 8vw, 104px);
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.6vw, 54px);
}

.work-section .section-heading,
.view-more { grid-column: 1 / -1; }
.work-section .section-heading { margin-bottom: clamp(22px, 3vw, 38px); }

.work-card {
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(11, 66, 26, 0.08)),
    var(--cream);
  cursor: default;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 42%);
}

.work-card::after {
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 58px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(11, 66, 26, 0.78) 0 32%, rgba(11, 66, 26, 0.18) 32% 42%, rgba(11, 66, 26, 0.48) 42% 72%, rgba(11, 66, 26, 0.22) 72% 100%);
}

.work-card span,
.work-card strong,
.work-card em { position: relative; z-index: 1; }

.work-card span {
  background: rgba(11, 66, 26, 0.10);
  color: rgba(11, 66, 26, 0.72);
}

.work-card strong {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.work-card em {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 96px;
  color: rgba(11, 66, 26, 0.56);
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  font-style: normal;
  font-weight: 800;
}

.work-card.is-ready em::before { content: "Preview • "; }
.work-card.is-missing em::before { content: "Preview pending • "; }

.view-more {
  justify-self: center;
  width: min(360px, 100%);
  min-height: 62px;
  margin-top: clamp(14px, 2vw, 24px);
  background: var(--green);
  color: var(--cream);
  font-size: 19px;
}

.process {
  margin-bottom: var(--section-gap);
}

.process .section-heading { margin-bottom: clamp(30px, 4vw, 54px); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.process-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-content: start;
  align-items: center;
  column-gap: 14px;
  background: var(--cream);
}

.process-card span {
  display: inline-flex;
  width: max-content;
  height: 32px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 66, 26, 0.28);
  border-radius: 999px;
  background: rgba(11, 66, 26, 0.06);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.process-card h3 {
  min-width: 0;
  margin: 0;
  white-space: nowrap;
}

.process-card p {
  grid-column: 1 / -1;
  margin-top: 22px;
}

.testimonials {
  width: 100%;
  margin-bottom: var(--section-gap);
  padding: clamp(78px, 8vw, 126px) var(--page-gutter) clamp(82px, 8vw, 118px);
  background: var(--green);
}

.testimonials .section-heading {
  width: min(var(--content-max), 100%);
  margin: 0 auto clamp(32px, 4vw, 54px);
}

.testimonial-grid {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.testimonial-card {
  min-height: 378px;
  padding: clamp(28px, 3vw, 38px) clamp(26px, 3vw, 40px);
  background: var(--cream);
}

.stars {
  margin-bottom: 30px;
  color: var(--green);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 2px;
  text-align: center;
}

.testimonial-card p {
  margin: 0 0 82px;
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  color: var(--muted-strong);
}

.person {
  position: absolute;
  left: clamp(26px, 3vw, 40px);
  right: clamp(26px, 3vw, 40px);
  bottom: 28px;
  min-height: 44px;
  padding-left: 56px;
}

.person span {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 14px;
  font-weight: 900;
}

.person strong,
.person small {
  display: block;
  font-size: 14px;
  line-height: 21px;
}

.person small { color: rgba(11, 66, 26, 0.56); }

.pricing {
  margin-bottom: clamp(62px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 4vw, 58px);
}

.pricing-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.price-card {
  min-height: 650px;
  padding: 78px 30px 30px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  overflow: visible;
  isolation: isolate;
}

.price-card.growth {
  min-height: 700px;
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
  box-shadow: 0 46px 80px rgba(11, 66, 26, 0.26);
}

.badge {
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  min-width: min(260px, calc(100% - 36px));
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0 24px;
  border: 2px solid var(--green);
  border-radius: 143px;
  background: var(--green);
  color: var(--cream);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 900;
  white-space: nowrap;
  z-index: 3;
}

.growth .badge { border: 0; background: var(--cream); color: var(--green); }

.price-card h3 {
  margin: 0;
  text-align: center;
  font-size: 33px;
  line-height: 1.1;
  font-weight: 900;
}

.plan-for {
  margin: 18px 0 28px;
  min-height: 68px;
  text-align: center;
  color: rgba(11, 66, 26, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.growth .plan-for { color: rgba(247, 244, 238, 0.72); }

.price {
  margin: 0 0 38px;
  text-align: center;
  color: var(--green);
}

.price strong {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
}

.price span {
  margin-left: 4px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(11, 66, 26, 0.56);
}

.growth .price { color: var(--cream); }
.growth .price span { color: rgba(247, 244, 238, 0.72); }

.price-card ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 17px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(11, 66, 26, 0.74);
}

.growth li { color: rgba(247, 244, 238, 0.84); }

.price-card li img {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  flex: 0 0 auto;
}

.price-link {
  width: 100%;
  min-height: 62px;
  margin-top: auto;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--cream);
  font-size: 19px;
}

.growth .price-link {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--green);
}

.faq {
  margin-bottom: var(--section-gap);
}

.faq .section-heading { margin-bottom: clamp(30px, 4vw, 54px); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.faq details {
  padding: 24px 28px;
  background: var(--cream);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
}

.faq p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.ready-cta {
  min-height: 316px;
  margin-bottom: clamp(56px, 5vw, 78px);
  padding: clamp(34px, 4vw, 56px) clamp(28px, 4.5vw, 60px);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 90% 10%, rgba(247, 244, 238, 0.14), transparent 25%),
    var(--green);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  box-shadow: var(--shadow-soft);
}

.ready-cta .section-kicker,
.ready-cta h2,
.ready-cta p { color: var(--cream); }
.ready-cta .section-kicker { opacity: 0.84; }

.ready-cta h2 {
  margin: 0 0 20px;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.12;
  font-weight: 900;
}

.ready-cta p {
  max-width: 780px;
  margin: 0;
  opacity: 0.84;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.ready-button {
  width: min(300px, 100%);
  min-height: 72px;
  justify-self: end;
  flex-direction: row;
  gap: 10px;
  font-size: 22px;
  line-height: 1;
}

.ready-button img {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.footer {
  min-height: 700px;
  margin-bottom: 50px;
  border: 2px solid var(--green);
  border-radius: 25px;
  background: var(--cream);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 617px);
  gap: clamp(40px, 7vw, 88px);
  padding: clamp(38px, 5vw, 70px) clamp(28px, 4vw, 42px) 96px;
  position: relative;
}

.footer-brand { max-width: 560px; }

.footer-brand h2 {
  margin: 0 0 20px;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.footer-brand p {
  max-width: 405px;
  margin: 0 0 32px;
  color: rgba(11, 66, 26, 0.62);
  font-size: 16px;
  line-height: 1.5;
}

.footer-brand a {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.footer-brand a:hover {
  transform: translateX(4px);
  color: rgba(11, 66, 26, 0.74);
}

.footer-brand img { width: 33px; max-height: 33px; }

.contact-form { width: 100%; }

.contact-form h3 {
  margin: 0 0 28px;
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1.18;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  height: 58px;
  margin-bottom: 14px;
  padding: 0 20px;
  border: 1px solid rgba(11, 66, 26, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green);
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  height: 150px;
  padding-top: 18px;
  resize: vertical;
  min-height: 130px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(11, 66, 26, 0.44); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 66, 26, 0.12);
}

.contact-form button {
  width: 100%;
  min-height: 62px;
  background: var(--green);
  color: var(--cream);
  font-size: 16px;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(11, 66, 26, 0.56);
  font-size: 13px;
  line-height: 1.4;
}

.footer-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 66px;
  padding: 18px clamp(22px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--green);
  color: rgba(247, 244, 238, 0.82);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: clamp(16px, 3vw, 35px);
  flex-wrap: wrap;
}

.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--cream); }

.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 20, 8, 0.78);
  backdrop-filter: blur(6px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(860px, calc(100vh - 40px));
  padding: 20px;
  border-radius: 26px;
  background: var(--cream);
  border: 2px solid var(--green);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.video-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
}

.video-modal video {
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 18px;
  background: #06140a;
}

.video-modal p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.video-modal.has-video [data-video-empty] { display: none; }
.video-modal:not(.has-video) video { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-hero {
  width: min(980px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(82px, 8vw, 132px) 0 clamp(46px, 6vw, 78px);
  text-align: center;
}

.portfolio-hero h1 {
  font-size: clamp(44px, 6vw, 86px);
}

.portfolio-hero .ghost-call {
  margin-top: 34px;
}

.portfolio-setup {
  margin-bottom: 34px;
  padding: clamp(24px, 3vw, 34px);
  text-align: center;
}

.portfolio-setup h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.portfolio-work {
  margin-bottom: 0;
  grid-template-columns: 1fr;
  gap: clamp(44px, 5vw, 72px);
}

.portfolio-category {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
}

.portfolio-category h3 {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(36px, 5.1vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.portfolio-page .work-card { min-height: 0; }

.portfolio-grid-podcast {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 3.16fr);
  align-items: center;
}

.portfolio-grid-podcast .work-card-wide {
  grid-column: auto;
  aspect-ratio: 16 / 9;
}

.work-card-wide::after {
  height: 34px;
  bottom: 18px;
}

.work-card-wide em { bottom: 64px; }

.work-card-wide strong {
  font-size: clamp(28px, 4vw, 44px);
  white-space: nowrap;
}

.legal-page {
  width: min(900px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(78px, 7vw, 120px) 0;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-page .ghost-call { margin-top: 28px; }

@media (max-width: 1180px) {
  :root {
    --page-gutter: clamp(22px, 4vw, 44px);
    --section-gap: clamp(64px, 7vw, 96px);
  }

  .hero {
    grid-template-columns: minmax(300px, 1fr) minmax(210px, 290px) minmax(210px, 290px);
    column-gap: 30px;
    row-gap: 48px;
  }

  .edit-section,
  .pricing,
  .footer,
  .proof-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.growth { min-height: 650px; }
}

@media (min-width: 981px) {
  .hero {
    padding-top: clamp(40px, 4.2vw, 64px);
    padding-bottom: clamp(34px, 3.8vw, 54px);
    grid-template-columns: minmax(420px, 1fr) repeat(2, minmax(200px, 270px));
    align-items: center;
    column-gap: clamp(32px, 3.6vw, 64px);
  }

  .hero-copy {
    max-width: 760px;
    align-self: center;
  }

  .hero .eyebrow { margin-bottom: 12px; }

  .hero h1 {
    max-width: 740px;
    font-size: clamp(52px, 4.7vw, 74px);
    line-height: 0.99;
  }

  .hero p {
    margin-top: clamp(18px, 1.6vw, 24px);
    max-width: 660px;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.52;
  }

  .hero-actions {
    margin-top: clamp(24px, 2.1vw, 32px);
    gap: 16px;
  }

  .hero-cta,
  .ghost-call {
    min-height: 52px;
    font-size: 15px;
  }

  .hero-cta { width: clamp(204px, 14vw, 236px); }
  .ghost-call { width: clamp(158px, 11vw, 196px); }

  .hero .video-card {
    width: min(100%, 270px);
    padding: 18px;
  }

  .metrics {
    min-height: 118px;
    margin-top: 0;
    margin-bottom: clamp(58px, 6vw, 88px);
  }

  .metric strong { font-size: clamp(34px, 3.3vw, 46px); }
  .metric span { font-size: clamp(14px, 1.25vw, 18px); }
}

@media (max-width: 980px) {
  :root { --header-height: 112px; }

  .top-bar {
    flex-wrap: wrap;
    gap: 18px;
    padding-block: 10px;
  }

  .top-cta {
    position: absolute;
    top: calc(50% - 22px);
    right: var(--page-gutter);
  }

  .nav {
    order: 3;
    width: 100%;
    min-height: 28px;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar { display: none; }

  .nav-link {
    flex: 0 0 auto;
    padding: 4px 0 8px;
    font-size: 14px;
    line-height: 1.1;
  }

  .nav::after { bottom: 0; }

  .hero {
    min-height: auto;
    padding-top: clamp(40px, 6vw, 64px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    grid-column: 1 / -1;
    max-width: 820px;
    justify-self: center;
    text-align: center;
  }

  .hero p { margin-inline: auto; }

  .hero-actions { justify-content: center; }

  .hero-video-one,
  .hero-video-two {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .work-section,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid-podcast {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .portfolio-grid-podcast .work-card-wide {
    grid-column: 1 / -1;
  }

  .portfolio-work {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portfolio-category h3 {
    font-size: clamp(24px, 6.6vw, 32px);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .work-card { min-height: 0; }

  .ready-cta,
  .footer { grid-template-columns: 1fr; }
  .ready-button { justify-self: start; }
}

@media (min-width: 721px) and (max-width: 980px) {
  .hero {
    padding-top: 22px;
    padding-bottom: 26px;
    grid-template-columns: minmax(320px, 1fr) repeat(2, minmax(120px, 150px));
    align-items: center;
    justify-content: stretch;
    column-gap: clamp(16px, 2.5vw, 24px);
    row-gap: 18px;
  }

  .hero-copy {
    grid-column: auto;
    max-width: 430px;
    justify-self: start;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: clamp(34px, 4.9vw, 44px);
    line-height: 1;
  }

  .hero p {
    margin-top: 12px;
    max-width: 410px;
    margin-inline: 0;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 16px;
    justify-content: start;
    gap: 10px;
  }

  .hero-cta,
  .ghost-call {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-cta { width: 168px; }
  .ghost-call { width: 128px; }

  .hero-video-one,
  .hero-video-two {
    width: 100%;
    max-width: 150px;
    justify-self: stretch;
  }

  .video-card.has-card-preview::before {
    top: 10px;
    left: 10px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .metrics {
    min-height: 96px;
    margin-bottom: 48px;
  }

  .metric { padding-block: 12px; }
  .metric strong { font-size: clamp(28px, 4vw, 36px); }
  .metric span { font-size: clamp(12px, 1.8vw, 15px); }
  .metric-line { height: min(66px, calc(100% - 28px)); }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
    --page-gutter: 18px;
    --radius-card: 24px;
    --radius-button: 14px;
  }

  body.nav-open { overflow: hidden; }

  .video-label,
  .video-card.has-card-preview::before,
  .work-card.has-card-preview::before {
    left: 50%;
    right: auto;
    max-width: calc(100% - 14px);
    padding: 6px 8px;
    transform: translateX(-50%);
    overflow: hidden;
    text-align: center;
    text-overflow: clip;
    white-space: nowrap;
    font-size: clamp(7px, 2.1vw, 10px);
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .top-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: var(--header-height);
    padding-block: 0;
  }

  .logo { font-size: 28px; }

  .menu-toggle {
    position: relative;
    order: -1;
    width: 42px;
    height: 42px;
    display: block;
    padding: 10px;
    border-radius: 12px;
    background: rgba(247, 244, 238, 0.10);
  }

  .mobile-back {
    position: relative;
    order: -1;
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 12px;
    background: rgba(247, 244, 238, 0.10);
  }

  .mobile-back::before,
  .mobile-back::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--cream);
  }

  .mobile-back::before {
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--cream);
    border-bottom: 2px solid var(--cream);
    background: transparent;
    transform: translate(-35%, -50%) rotate(45deg);
  }

  .mobile-back::after {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    transform: translate(-35%, -50%);
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--cream);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) { transform: translate(-50%, -50%) translateY(-7px); }
  .menu-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
  .menu-toggle span:nth-child(3) { transform: translate(-50%, -50%) translateY(7px); }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    min-height: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    overflow-y: auto;
    background: var(--green);
    border-bottom: 1px solid rgba(247, 244, 238, 0.18);
  }

  body.nav-open .nav { display: flex; }
  .nav::after { display: none; }

  .nav-link {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: rgba(247, 244, 238, 0.08);
    color: var(--cream);
    font-size: 16px;
  }

  .top-cta {
    position: static;
    width: auto;
    min-width: 118px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .book-call img { width: 18px; height: 18px; }

  .hero {
    padding-top: 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .hero h1 { font-size: clamp(44px, 12vw, 64px); }

  .hero p { font-size: 16px; }

  .hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-cta,
  .ghost-call { width: 100%; }

  .hero-video-one,
  .hero-video-two {
    grid-column: auto;
    justify-self: stretch;
    min-width: 0;
    max-width: none;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .metrics {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 54px;
  }

  .metric-line {
    width: calc(100% - 40px);
    height: 1px;
  }

  .metric { padding: 24px 16px; }

  .edit-section,
  .proof-grid,
  .process-grid,
  .testimonial-grid,
  .pricing,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .work-section,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-work {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portfolio-category h3 {
    font-size: clamp(24px, 6.6vw, 32px);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .edit-card,
  .proof-card,
  .process-card,
  .testimonial-card,
  .price-card,
  .price-card.growth {
    min-height: auto;
  }

  .work-card {
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }

  .work-card strong {
    left: 12px;
    right: 12px;
    font-size: clamp(22px, 7vw, 38px);
    line-height: 1.02;
  }

  .portfolio-page .work-card strong {
    font-size: clamp(17px, 4.8vw, 23px);
    line-height: 1.04;
    white-space: normal;
  }

  .portfolio-page .work-card-wide strong {
    font-size: clamp(18px, 5.2vw, 24px);
    white-space: normal;
  }

  .work-card em {
    left: 12px;
    right: 12px;
    overflow-wrap: anywhere;
    font-size: 11px;
  }

  .ready-cta { min-height: 0; }

  .ready-button {
    width: 100%;
    min-height: 62px;
  }

  .ready-button img { width: 1em; height: 1em; }

  .footer { padding-bottom: 132px; }

  .footer-brand a {
    font-size: 16px;
    word-break: break-word;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  :root {
    --header-height: 68px;
    --page-gutter: 16px;
    --section-gap: 56px;
    --radius-card: 18px;
    --radius-button: 13px;
  }

  .logo { font-size: 22px; }

  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .mobile-back {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .top-cta {
    min-width: 102px;
    min-height: 38px;
    gap: 5px;
    font-size: 12px;
  }

  .top-cta img { width: 15px; height: 15px; }

  .hero {
    padding: 38px 16px 52px;
    grid-template-columns: 1fr 1fr;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(38px, 12.2vw, 50px);
    line-height: 1.02;
  }

  .section-heading h1,
  .section-heading h2,
  .edit-section h2,
  .testimonials h2,
  .brands h2,
  .work-section h1,
  .work-section h2,
  .pricing h2,
  .process h2,
  .faq h2,
  .proof-section h2,
  .portfolio-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero p,
  .section-heading p,
  .portfolio-hero p,
  .portfolio-setup p,
  .ready-cta p,
  .footer-brand p,
  .edit-card p,
  .proof-card span,
  .process-card p,
  .faq p,
  .legal-page p,
  .legal-page li {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions { margin-top: 28px; }

  .hero-cta,
  .ghost-call {
    min-height: 50px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-video-one,
  .hero-video-two {
    padding: 12px;
    border-width: 1.5px;
  }

  .video-label {
    top: 12px;
    left: 50%;
    max-width: calc(100% - 10px);
    padding: 5px 7px;
    font-size: clamp(6.5px, 1.9vw, 8px);
  }

  .video-card strong {
    max-width: 100%;
    font-size: clamp(22px, 7vw, 34px);
    line-height: 1.04;
    text-align: center;
  }

  .video-card small { display: none; }

  .video-card::before,
  .video-card::after { display: none; }

  .metrics {
    width: calc(100% - 32px);
    border-width: 1.5px;
  }

  .metric strong { font-size: 36px; }
  .metric span { font-size: 15px; }

  .edit-card,
  .proof-card,
  .process-card,
  .faq details,
  .portfolio-setup {
    padding: 22px;
    border-width: 1.5px;
  }

  .card-number,
  .process-card span {
    height: 30px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .edit-card h3,
  .process-card h3,
  .proof-card strong {
    font-size: 23px;
  }

  .brand-row { --brand-gap: 44px; animation-duration: 24s; }
  .brand-logo { height: 34px; }

  .work-section {
    gap: 20px 12px;
    padding-inline: 16px;
  }

  .portfolio-grid { gap: 16px 12px; }

  .work-card {
    max-width: 100%;
    border-width: 1.5px;
  }

  .work-card strong { font-size: clamp(22px, 7vw, 32px); }
  .work-card em {
    bottom: 78px;
    font-size: 9.5px;
    line-height: 1.22;
  }

  .portfolio-category h3 {
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .portfolio-page .work-card strong {
    font-size: clamp(15px, 4.35vw, 20px);
    line-height: 1.04;
    white-space: normal;
  }

  .portfolio-page .work-card-wide strong {
    font-size: clamp(17px, 4.8vw, 22px);
    white-space: normal;
  }

  .price-card,
  .price-card.growth {
    padding: 58px 22px 24px;
    border-width: 1.5px;
  }

  .badge {
    top: -18px;
    min-height: 38px;
    font-size: 12px;
  }

  .price strong { font-size: 38px; }

  .price-card li {
    font-size: 14px;
    line-height: 1.5;
  }

  .ready-cta {
    width: calc(100% - 32px);
    padding: 24px;
    gap: 22px;
  }

  .ready-cta h2 { font-size: 32px; }
  .ready-button { min-height: 58px; font-size: 18px; }

  .footer {
    width: calc(100% - 32px);
    padding: 26px 20px 136px;
    border-width: 1.5px;
  }

  .footer-brand h2 { font-size: 34px; }
  .footer-brand a { gap: 12px; font-size: 14px; }
  .footer-brand img { width: 24px; max-height: 24px; }

  .contact-form h3 { font-size: 26px; }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    height: 52px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .contact-form textarea { height: 132px; padding-top: 16px; }
  .contact-form button { min-height: 54px; }

  .footer-bottom {
    min-height: 104px;
    padding: 16px 20px;
    font-size: 12px;
  }

  .footer-bottom div { gap: 12px 18px; }

  .portfolio-hero { padding-top: 48px; }
  .video-modal { padding: 12px; }
  .video-modal-panel { padding: 12px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal { opacity: 1; transform: none; }
  .brand-row { animation: none; transform: none; }
}
