:root {
  --bg: #050806;
  --bg-soft: #0a110d;
  --panel: #101914;
  --panel-light: #14231b;
  --green: #173f2b;
  --green-bright: #9ccc62;
  --green-moss: #6f8f3e;
  --green-forest: #123421;
  --green-aqua: #57cfa0;
  --text: #f4f7f3;
  --muted: #a6b4aa;
  --line: rgba(244, 247, 243, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(156, 204, 98, 0.14), transparent 28rem),
    linear-gradient(135deg, #050806 0%, #0a120d 48%, #020302 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 12% 24%, rgba(111, 143, 62, 0.28), transparent 18rem),
    radial-gradient(circle at 88% 36%, rgba(87, 207, 160, 0.055), transparent 20rem),
    radial-gradient(circle at 48% 82%, rgba(18, 52, 33, 0.5), transparent 24rem);
  animation: background-drift 18s ease-in-out infinite alternate;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(156, 204, 98, 0.048) 18% 19%, transparent 19% 42%, rgba(111, 143, 62, 0.13) 42% 43%, transparent 43% 100%),
    linear-gradient(60deg, transparent 0 58%, rgba(244, 247, 243, 0.026) 58% 59%, transparent 59% 100%);
  background-size: 780px 780px, 620px 620px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.18));
  opacity: 0.72;
  animation: line-drift 28s linear infinite;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.logo img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.canada-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 1.7rem;
  border: 1px solid rgba(244, 247, 243, 0.16);
  border-radius: 5px;
  background: rgba(244, 247, 243, 0.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.canada-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1120px, calc(100% - 2rem));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-content {
  max-width: 700px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand img {
  width: clamp(2.6rem, 6vw, 4.4rem);
  height: clamp(2.6rem, 6vw, 4.4rem);
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-28px);
  animation: headline-swipe 900ms cubic-bezier(0.2, 0.78, 0.24, 1) 160ms forwards;
}

.hero-title::after {
  content: "";
  position: absolute;
  inset: -0.08em -0.12em;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(87, 207, 160, 0.055) 20%,
    rgba(244, 247, 243, 0.9) 48%,
    rgba(156, 204, 98, 0.1) 76%,
    transparent 100%
  );
  transform: translateX(-115%);
  animation: headline-shine 920ms cubic-bezier(0.34, 0.75, 0.28, 1) 280ms forwards;
  pointer-events: none;
  mix-blend-mode: screen;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green-bright);
  color: #031007;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(244, 247, 243, 0.04);
  color: var(--text);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 52, 33, 0.96), rgba(5, 8, 6, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.mockup-topbar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.mockup-topbar span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(244, 247, 243, 0.28);
}

.mockup-screen {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.mockup-hero {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-height: 8rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid rgba(156, 204, 98, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(111, 143, 62, 0.24), rgba(244, 247, 243, 0.04)),
    rgba(5, 8, 6, 0.34);
}

.mockup-hero span,
.mockup-grid span,
.mockup-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.mockup-hero strong {
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.05;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.mockup-grid div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 7.8rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(244, 247, 243, 0.06);
}

.mockup-mini-card svg {
  box-sizing: border-box;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0.42rem;
  border: 1px solid rgba(156, 204, 98, 0.26);
  border-radius: 50%;
  background: rgba(17, 31, 22, 0.72);
  color: rgba(156, 204, 98, 0.72);
  fill: currentColor;
  opacity: 0.95;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.mockup-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(5, 8, 6, 0.44);
}

.mockup-card strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.2;
}

.mockup-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 34%, rgba(244, 247, 243, 0.22), transparent 0.58rem),
    linear-gradient(145deg, rgba(111, 143, 62, 0.34), rgba(18, 52, 33, 0.9));
  box-shadow: inset 0 0 0 1px rgba(244, 247, 243, 0.08);
  overflow: hidden;
}

.mockup-mark::before,
.mockup-mark::after {
  content: "";
  position: absolute;
  background: rgba(3, 16, 7, 0.84);
}

.mockup-mark::before {
  top: 0.72rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
}

.mockup-mark::after {
  bottom: 0.56rem;
  width: 1.75rem;
  height: 1rem;
  border-radius: 1rem 1rem 0.35rem 0.35rem;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.section-copy p,
.lead-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.canadian-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto minmax(0, 0.95fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.canadian-section .section-heading {
  margin-bottom: 0;
}

.canadian-flag {
  display: grid;
  place-items: center;
  width: clamp(5.6rem, 10vw, 8rem);
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(244, 247, 243, 0.14);
  border-radius: 8px;
  background: rgba(244, 247, 243, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.canadian-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.audience-grid,
.services-grid,
.work-grid,
.pricing-grid,
.process {
  display: grid;
  gap: 1rem;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.process {
  grid-template-columns: repeat(3, 1fr);
}

.audience-grid article,
.service-card,
.work-card,
.pricing-card,
.process article {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 22, 0.76);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0);
  transform: translateY(16px);
  animation: card-rise 700ms ease forwards;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.audience-grid article:nth-child(2),
.process article:nth-child(2),
.work-grid .work-card:nth-child(2),
.pricing-grid .pricing-card:nth-child(2),
.services-grid .service-card:nth-child(2) {
  animation-delay: 90ms;
}

.audience-grid article:nth-child(3),
.process article:nth-child(3),
.pricing-grid .pricing-card:nth-child(3),
.services-grid .service-card:nth-child(3) {
  animation-delay: 180ms;
}

.services-grid .service-card:nth-child(4) {
  animation-delay: 270ms;
}

.audience-grid article::before,
.service-card::before,
.work-card::before,
.pricing-card::before,
.process article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(156, 204, 98, 0.11) 38%,
    transparent 72%
  );
  opacity: 0;
  transform: translateX(-65%);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
  pointer-events: none;
}

.audience-grid article:hover,
.audience-grid article:focus-within,
.service-card:hover,
.service-card:focus-within,
.work-card:hover,
.work-card:focus-within,
.pricing-card:hover,
.pricing-card:focus-within,
.process article:hover,
.process article:focus-within {
  border-color: rgba(156, 204, 98, 0.34);
  background: rgba(18, 52, 33, 0.92);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
}

.audience-grid article:hover::before,
.audience-grid article:focus-within::before,
.service-card:hover::before,
.service-card:focus-within::before,
.work-card:hover::before,
.work-card:focus-within::before,
.pricing-card:hover::before,
.pricing-card:focus-within::before,
.process article:hover::before,
.process article:focus-within::before {
  opacity: 1;
  transform: translateX(65%);
}

.audience-grid article h3,
.service-card h3,
.work-card h3,
.pricing-card h3,
.process article h3,
.audience-grid article p,
.service-card p,
.work-card p,
.pricing-card p,
.process article p,
.process article span {
  position: relative;
  z-index: 1;
}

.service-card {
  color: inherit;
  cursor: pointer;
}

.service-card:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 4px;
}

.audience-grid p,
.service-card p,
.work-card p,
.pricing-card p,
.process p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.work-card {
  display: grid;
  gap: 1.15rem;
}

.work-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 11rem;
  border: 1px solid rgba(244, 247, 243, 0.1);
  border-radius: 6px;
  background: rgba(5, 8, 6, 0.72);
}

.work-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  opacity: 0.92;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.work-card:hover .work-preview img,
.work-card:focus-within .work-preview img {
  opacity: 1;
  transform: scale(1.025);
}

.work-card .button {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card.featured {
  border-color: rgba(156, 204, 98, 0.42);
  background: linear-gradient(180deg, rgba(18, 52, 33, 0.96), rgba(10, 17, 13, 0.88));
}

.price {
  color: var(--text);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 900;
  line-height: 1.15;
}

.pricing-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.pricing-card li {
  position: relative;
  padding-left: 1.15rem;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green-bright);
}

.pricing-card .button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 1.25rem auto 0;
  color: var(--muted);
  text-align: center;
}

.process article {
  background: linear-gradient(180deg, rgba(18, 52, 33, 0.86), rgba(10, 17, 13, 0.82));
}

.process span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--green-bright);
  font-weight: 900;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headline-swipe {
  from {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes headline-shine {
  from {
    transform: translateX(-115%);
  }

  to {
    transform: translateX(115%);
  }
}

@keyframes scroll-rise {
  from {
    opacity: 0.28;
    transform: translateY(26px) scale(0.99);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes background-drift {
  from {
    transform: translate3d(-1.5rem, -1rem, 0) scale(1);
  }

  to {
    transform: translate3d(1.5rem, 1rem, 0) scale(1.04);
  }
}

@keyframes line-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 160px 220px, -140px 180px;
  }
}

@supports (animation-timeline: view()) {
  .section > *,
  .section-heading > *,
  .section-copy,
  .lead-intro > *,
  .lead-form,
  .form-row {
    animation: scroll-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
  }

  .section-heading h2,
  .lead-intro h2 {
    animation-range: entry 8% cover 36%;
  }

  .section-copy,
  .lead-intro p,
  .lead-form {
    animation-range: entry 12% cover 38%;
  }

  .form-row {
    animation-range: entry 0% cover 20%;
  }

  .lead-form .form-row {
    animation-name: none;
  }

  .audience-grid article h3,
  .audience-grid article p,
  .process article span,
  .process article h3,
  .process article p,
  .pricing-card h3,
  .pricing-card p,
  .pricing-card li,
  .service-card h3,
  .service-card p {
    animation: scroll-rise linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 22, 0.88);
  box-shadow: var(--shadow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(244, 247, 243, 0.04);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(156, 204, 98, 0.42);
  background: rgba(111, 143, 62, 0.13);
  transform: translateY(-2px);
}

.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(244, 247, 243, 0.16);
  border-radius: 6px;
  background: rgba(5, 8, 6, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 0.85rem 0.9rem;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(156, 204, 98, 0.14);
}

::placeholder {
  color: rgba(166, 180, 170, 0.65);
}

.hidden-field {
  display: none;
}

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

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 31, 22, 0), rgba(17, 31, 22, 0.3)),
    var(--bg);
  text-align: center;
}

.footer-brand {
  color: rgba(244, 247, 243, 0.92);
  font-weight: 850;
}

.footer-copyright {
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 22, 0.9);
  box-shadow: var(--shadow);
}

.thanks-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  color: var(--text);
  font-weight: 850;
  letter-spacing: 0.04em;
}

.thanks-logo img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.thanks-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .canadian-section,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 620px;
  }

  .audience-grid,
  .process,
  .work-grid,
  .pricing-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    margin-left: 0;
  }

  .canada-badge {
    margin-left: auto;
  }

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

  .audience-grid,
  .process,
  .work-grid,
  .pricing-grid,
  .services-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .mockup-grid div {
    min-height: 4rem;
  }

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

  .mockup-topbar {
    padding: 0.75rem;
  }

  .mockup-screen {
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .mockup-hero {
    min-height: 5.6rem;
    padding: 0.9rem;
  }

  .mockup-hero strong {
    font-size: 1.15rem;
  }

  .mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
  }

  .mockup-grid div {
    min-height: 4.8rem;
    padding: 0.55rem;
  }

  .mockup-mini-card svg {
    width: 2.15rem;
    height: 2.15rem;
    padding: 0.32rem;
  }

  .mockup-grid span {
    font-size: 0.68rem;
  }

  .mockup-card {
    padding: 0.8rem;
  }

  .social-links a {
    flex: 1 1 100%;
  }
}

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

  .audience-grid article,
  body::before,
  body::after,
  .section > *,
  .section-heading > *,
  .section-copy,
  .lead-intro > *,
  .lead-form,
  .form-row,
  .audience-grid article h3,
  .audience-grid article p,
  .hero-title,
  .hero-title::after,
  .process article span,
  .process article h3,
  .process article p,
  .work-card,
  .work-card h3,
  .work-card p,
  .pricing-card,
  .pricing-card h3,
  .pricing-card p,
  .pricing-card li,
  .service-card,
  .service-card h3,
  .service-card p,
  .process article {
    animation: none;
    transform: none;
    transition: none;
  }

  .hero-title {
    opacity: 1;
    clip-path: none;
  }

  .audience-grid article::before,
  .service-card::before,
  .work-card::before,
  .pricing-card::before,
  .process article::before {
    display: none;
  }

  .button:hover,
  .button:focus-visible,
  .audience-grid article:hover,
  .audience-grid article:focus-within,
  .service-card:hover,
  .service-card:focus-within,
  .work-card:hover,
  .work-card:focus-within,
  .pricing-card:hover,
  .pricing-card:focus-within,
  .process article:hover,
  .process article:focus-within,
  .social-links a:hover,
  .social-links a:focus-visible {
    transform: none;
  }
}
