:root {
  --ink: #1a3622;
  --ink-2: #102719;
  --paper: #f5f2eb;
  --surface: #fffaf0;
  --muted: #66705f;
  --line: rgba(26, 54, 34, 0.16);
  --white: #ffffff;
  --teal: #13a58a;
  --lime: #ffdf00;
  --coral: #ff6b00;
  --amber: #f7b733;
  --blue: #385df8;
  --shadow: 0 24px 80px rgba(26, 54, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 5vw;
  color: var(--ink);
  background: rgba(245, 242, 235, 0.82);
  border-bottom: 1px solid rgba(26, 54, 34, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 8.4rem;
  height: 2.8rem;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 0.16rem;
  color: rgba(26, 54, 34, 0.66);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: rgba(26, 54, 34, 0.74);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.header-link:hover,
.text-link:hover {
  color: var(--coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switch {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.18rem;
  background: rgba(26, 54, 34, 0.08);
  border: 1px solid rgba(26, 54, 34, 0.12);
  border-radius: 8px;
}

.lang-button {
  min-width: 2.25rem;
  min-height: 2rem;
  color: rgba(26, 54, 34, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.header-link {
  color: rgba(26, 54, 34, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  color: var(--white);
  font-weight: 800;
  background: var(--ink);
  border: 1px solid rgba(26, 54, 34, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--coral);
}

.button-small {
  min-height: 2.45rem;
  padding: 0 0.85rem;
  font-size: 0.84rem;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(26, 54, 34, 0.18);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.4rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 5vw 1.2rem;
  background: rgba(245, 242, 235, 0.97);
  border-bottom: 1px solid rgba(26, 54, 34, 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(26, 54, 34, 0.08);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav-cta {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 223, 0, 0.2) 0 14%, transparent 14% 100%),
    linear-gradient(150deg, transparent 0 60%, rgba(255, 107, 0, 0.14) 60% 72%, transparent 72% 100%),
    var(--paper);
  isolation: isolate;
}

.hero-canvas,
.hero-texture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-canvas {
  opacity: 0.46;
}

.hero-texture {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(26, 54, 34, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 54, 34, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 72%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(34rem, 1.06fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100svh - 4.6rem);
  padding: 8.2rem 5vw 5.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.hero-identity {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(26, 54, 34, 0.14);
  border-radius: 8px;
}

.hero-identity img {
  width: 9.6rem;
  height: 5.6rem;
  object-fit: contain;
  object-position: left center;
}

.hero-identity span {
  color: rgba(26, 54, 34, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.results-strip h2,
.contact-section h2 {
  margin: 0;
  font-family:
    "Space Grotesk",
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 48rem;
  color: var(--ink);
  font-family:
    Syncopate,
    "Space Grotesk",
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: clamp(2.9rem, 4.7vw, 4.65rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 37rem;
  margin: 1.4rem 0 0;
  color: rgba(26, 54, 34, 0.76);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 45rem;
  perspective: 1200px;
}

[data-scroll-speed] {
  will-change: transform;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-watermark {
  position: absolute;
  top: -1.8rem;
  right: -2.8rem;
  width: 21rem;
  opacity: 0.1;
  filter: blur(0.2px);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  right: 1.4rem;
  top: 1.2rem;
  width: 76%;
  height: 37rem;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(26, 54, 34, 0.16);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(26, 54, 34, 0.25);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 54%, rgba(16, 39, 25, 0.72)),
    linear-gradient(90deg, rgba(255, 223, 0, 0.18), transparent 38%);
}

.photo-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  min-width: min(18rem, calc(100% - 2.4rem));
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(16, 39, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.photo-caption strong {
  font-size: 1.05rem;
}

.photo-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.hero-device,
.hero-card,
.hero-flow {
  position: absolute;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(26, 54, 34, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 65px rgba(26, 54, 34, 0.18);
  backdrop-filter: blur(16px);
}

.hero-device {
  left: 0;
  bottom: 2.8rem;
  width: 22rem;
  padding: 1rem;
  animation: heroFloat 9s ease-in-out -1.8s infinite;
}

.device-topline,
.device-footer,
.hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.device-topline span,
.device-footer span,
.hero-card span {
  color: rgba(26, 54, 34, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.device-topline strong {
  color: var(--coral);
}

.device-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.48rem;
  align-items: end;
  height: 10rem;
  margin: 1rem 0;
  padding: 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(26, 54, 34, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.5);
  background-size: 100% 2.5rem;
  border-radius: 8px;
}

.device-chart span {
  min-height: 1rem;
  background: linear-gradient(180deg, var(--lime), var(--coral));
  border-radius: 6px 6px 2px 2px;
  transform-origin: bottom;
  animation: chartPulse 2.8s ease-in-out infinite;
}

.device-chart span:nth-child(2n) {
  animation-delay: 320ms;
}

.device-chart span:nth-child(3n) {
  animation-delay: 640ms;
}

.device-footer strong {
  font-size: 1.65rem;
}

.hero-card {
  min-width: 10.5rem;
  padding: 0.9rem 1rem;
  animation: heroFloat 7.5s ease-in-out -0.8s infinite;
}

.hero-card strong {
  color: var(--coral);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-card-roas {
  top: 3.7rem;
  left: 1.2rem;
}

.hero-card-leads {
  right: 0;
  bottom: 8.2rem;
  animation-delay: -2.4s;
}

.hero-card-experience {
  top: 16rem;
  right: 0.4rem;
  min-width: 11.8rem;
}

.hero-card-experience strong {
  color: var(--ink);
}

.hero-flow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  right: 8.4rem;
  bottom: 0.8rem;
  padding: 0.75rem;
  color: var(--white);
  background: var(--ink);
}

.hero-flow span {
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-flow i {
  width: 2.1rem;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-flow i::after {
  display: block;
  width: 55%;
  height: 100%;
  content: "";
  background: var(--lime);
  animation: flowLine 1.7s ease-in-out infinite;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(26, 54, 34, 0.16);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 3.8rem;
  padding: 0 2rem;
  font-family:
    Syncopate,
    "Space Grotesk",
    Inter,
    sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.ticker-track span:nth-child(3n) {
  color: var(--lime);
}

.ticker-track span:nth-child(4n) {
  color: #ff9b45;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(-0.6deg);
  }
}

@keyframes chartPulse {
  0%,
  100% {
    transform: scaleY(0.86);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes flowLine {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(210%);
  }
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.results-strip {
  padding: 4rem 5vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 184, 169, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 255, 90, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

.results-strip h2 {
  max-width: 46rem;
  font-size: 3.1rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.metric {
  min-height: 11rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--lime);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  max-width: 14rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.metric.accent strong {
  color: var(--coral);
}

.section {
  padding: 6rem 5vw;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
  gap: 4rem;
  background: var(--surface);
}

.section-copy h2,
.section-heading h2,
.method-intro h2,
.about-copy h2,
.contact-copy h2 {
  font-size: 3rem;
}

.problem-copy {
  align-self: end;
  color: #3d4240;
  font-size: 1.05rem;
  line-height: 1.8;
}

.problem-copy p {
  margin: 0;
}

.problem-copy p + p {
  margin-top: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  max-width: 48rem;
}

.services-section {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.case-card {
  min-height: 18rem;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(16, 19, 20, 0.04);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ink);
  font-weight: 900;
  background: var(--amber);
  border-radius: 8px;
}

.service-card:nth-child(2) .service-number {
  background: var(--teal);
}

.service-card:nth-child(3) .service-number {
  background: var(--lime);
}

.service-card:nth-child(4) .service-number {
  color: var(--white);
  background: var(--blue);
}

.service-card h3,
.case-card h3,
.method-list h3 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.25rem;
  line-height: 1.18;
}

.service-card p,
.case-card span,
.method-list p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
  gap: 3rem;
  color: var(--white);
  background: var(--ink-2);
}

.method-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.method-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.2rem;
  min-height: 8rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.method-list li > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.method-list h3 {
  margin-top: 0.2rem;
}

.method-list p {
  color: rgba(255, 255, 255, 0.68);
}

.cases-section {
  background: var(--surface);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
}

.case-card p {
  width: fit-content;
  margin: 0;
  padding: 0.48rem 0.6rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(0, 184, 169, 0.16);
  border-radius: 8px;
}

.case-card:nth-child(2) p {
  background: rgba(255, 112, 77, 0.18);
}

.case-card:nth-child(3) p {
  background: rgba(78, 124, 255, 0.16);
}

.case-card strong {
  display: block;
  margin: auto 0 1rem;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.2;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 0.75rem;
  background: var(--ink-2);
  border-radius: 8px;
}

.case-metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.case-metric-item > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-metric-item > strong {
  display: block;
  margin: 0;
  color: var(--lime);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.8fr);
  gap: 4rem;
  align-items: center;
  background: var(--paper);
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 36rem;
  object-fit: cover;
  object-position: 54% 45%;
}

.about-copy p + p {
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 0.18rem;
  text-underline-offset: 0.28rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 0.92fr);
  gap: 3rem;
  padding: 6rem 5vw;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 112, 77, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(0, 184, 169, 0.12) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 72px 72px, auto;
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 0.55rem;
}

.lead-form span,
.lead-form legend {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 3.45rem;
  padding: 0 0.9rem;
  color: var(--ink);
  background: #fbfaf4;
  border: 1px solid rgba(16, 19, 20, 0.16);
  border-radius: 8px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 184, 169, 0.16);
}

.lead-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.radio-grid label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.75rem 0.85rem;
  background: #fbfaf4;
  border: 1px solid rgba(16, 19, 20, 0.14);
  border-radius: 8px;
  cursor: pointer;
}

.radio-grid input {
  width: 1rem;
  height: 1rem;
  margin: 0 0.65rem 0 0;
  accent-color: var(--teal);
}

.radio-grid input:checked + span {
  color: var(--ink);
}

.radio-grid label:has(input:checked) {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 2px rgba(0, 184, 169, 0.14);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-note.is-success {
  color: #217568;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 5vw;
  color: rgba(255, 255, 255, 0.68);
  background: #080a0a;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-link {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 7.5rem;
  }

  .hero h1 {
    max-width: 50rem;
    font-size: 3.65rem;
  }

  .hero-stage {
    min-height: 39rem;
  }

  .hero-photo {
    right: 0;
    width: 72%;
    height: 31rem;
  }

  .hero-device {
    bottom: 4.4rem;
  }

  .hero-card-experience {
    top: 13rem;
  }

  .metrics-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-section,
  .method-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .method-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 7rem;
    height: 2.45rem;
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding: 6.8rem 1rem 5rem;
  }

  .hero h1,
  .results-strip h2,
  .section-copy h2,
  .section-heading h2,
  .method-intro h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-identity {
    max-width: 100%;
  }

  .hero-identity img {
    width: 7.4rem;
    height: 4.3rem;
  }

  .hero-identity span {
    font-size: 0.68rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 36rem;
    margin-top: 2rem;
  }

  .hero-photo {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 24rem;
  }

  .hero-watermark {
    top: -2rem;
    right: -3rem;
    width: 15rem;
  }

  .hero-device {
    right: 0;
    bottom: 0.4rem;
    left: auto;
    width: min(100%, 20rem);
  }

  .hero-card {
    min-width: 8.6rem;
    padding: 0.75rem 0.85rem;
  }

  .hero-card strong {
    font-size: 1.65rem;
  }

  .hero-card-roas {
    top: 0.9rem;
    left: 0.8rem;
  }

  .hero-card-leads {
    right: 0.8rem;
    bottom: 14.4rem;
  }

  .hero-card-experience {
    top: 10.4rem;
    right: 0.8rem;
    min-width: 9.8rem;
  }

  .hero-flow {
    right: auto;
    bottom: 12.1rem;
    left: 0.8rem;
  }

  .photo-caption {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: min(15rem, calc(100% - 1.6rem));
  }

  .ticker-track span {
    min-height: 3.2rem;
    padding: 0 1.1rem;
    font-size: 0.72rem;
  }

  .results-strip,
  .section,
  .contact-section {
    padding: 4rem 1rem;
  }

  .metrics-grid,
  .services-grid,
  .cases-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .service-card,
  .case-card {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .method-list li {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 25rem;
  }

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

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

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