:root {
  --black: #070707;
  --ink: #171717;
  --muted: #666;
  --white: #fff;
  --soft: #fbfbfa;
  --line: #ecebea;
  --gold: #eadb9a;
  --gold-dark: #9a8448;
  --blue: #385f9d;
  --purple: #6650be;
  --red: #b8493f;
  --shadow: 0 18px 44px rgba(7, 7, 7, 0.065);
  --radius: 8px;
  --pill: 999px;
  --container: 1120px;
  --transition: 200ms ease;
}

* {
  box-sizing: border-box;
}

::selection {
  background: rgba(184, 154, 71, 0.42);
  color: var(--black);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 7, 7, 0.045);
}

.top-strip {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.top-strip a {
  color: var(--muted);
}

.top-strip-inner {
  width: min(100% - 32px, var(--container));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-strip a:hover,
.top-strip a:focus-visible {
  color: var(--black);
}

.news-banner {
  position: absolute;
  inset: 0 0 auto;
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(16px, calc((100% - var(--container)) / 2));
  background: rgba(7, 7, 7, 0.94);
  color: var(--white);
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
}

.news-banner.is-hidden {
  display: none;
}

.news-banner p {
  grid-column: 2;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  text-align: center;
}

.news-banner-close {
  grid-column: 3;
  justify-self: end;
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  line-height: 1;
}

.news-banner-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: var(--pill);
}

.news-banner-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-banner-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-banner-close:hover,
.news-banner-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.navbar {
  width: min(100% - 32px, var(--container));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name,
.brand-short {
  display: block;
}

.brand-name {
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
}

.brand-short {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-panel {
  display: contents;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(18px, 2.3vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-panel .button {
  justify-self: end;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.button-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 26px rgba(154, 132, 72, 0.16);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #f0e3ad;
}

.button-outline {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--black);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: visible;
  padding-top: 108px;
  background:
    radial-gradient(circle at 18% 22%, rgba(102, 80, 190, 0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(56, 95, 157, 0.2), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(234, 219, 154, 0.22), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7f5ff 46%, #fff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: 13%;
  right: 4%;
  background: rgba(76, 130, 210, 0.12);
}

.hero::after {
  width: 420px;
  height: 420px;
  left: 8%;
  bottom: 20%;
  background: rgba(184, 73, 63, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  min-height: calc(100vh - 108px);
  margin: 0 auto;
  padding: clamp(30px, 5vh, 58px) 0 70px;
  display: grid;
  gap: 22px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

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

.eyebrow {
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 0.72rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 12px;
  display: inline-block;
  border-radius: var(--pill);
  background: var(--gold);
}

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

h1,
h2 {
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 7vw, 6rem);
}

.text-highlight {
  --highlight-scale: 0;
  position: relative;
  z-index: 0;
  display: inline-block;
  color: inherit;
  font-weight: inherit;
  isolation: isolate;
}

.text-highlight::before {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.08em;
  z-index: -1;
  height: 0.32em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 219, 154, 0.08), rgba(234, 219, 154, 0.84), rgba(234, 219, 154, 0.34));
  transform: scaleX(var(--highlight-scale));
  transform-origin: left center;
  will-change: transform;
}

.text-highlight.is-highlighted {
  color: #111;
  font-weight: 500;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-subtitle {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: #444;
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-actions .button {
  width: auto;
}

.hero-phone-cta {
  gap: 9px;
}

.hero-phone-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 16px;
  justify-content: center;
  white-space: nowrap;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-proof span::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
}

.built-with {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.built-with div {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
}

.tech-logo {
  min-height: 36px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--gold-dark);
  box-shadow: 0 10px 28px rgba(7, 7, 7, 0.04);
  backdrop-filter: blur(12px);
}

.tech-logo svg {
  width: auto;
  height: 18px;
  display: block;
  fill: currentColor;
}

.tech-logo text {
  fill: currentColor;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-video-card {
  position: absolute;
  z-index: 2;
  top: calc(100% - 150px);
  bottom: auto;
  left: 50%;
  width: min(100vw - 32px, 1280px);
  height: clamp(250px, 34vw, 430px);
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 34px 100px rgba(56, 46, 106, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.hero-video-card.animate-fade-in {
  transform: translate(-50%, 10px);
}

.hero-video-card.animate-fade-in.in-view {
  transform: translate(-50%, 0);
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 26%, rgba(234, 219, 154, 0.5), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(102, 80, 190, 0.26), transparent 25%),
    linear-gradient(135deg, #121212 0%, #27222f 58%, #ede8dc 100%);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 34%, rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  opacity: 0.7;
}

.video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.video-play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 23px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--black);
}

.video-scene {
  position: absolute;
  inset: 0;
}

.video-scene i {
  position: absolute;
  display: block;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: videoFloat 7s ease-in-out infinite;
}

.video-scene i:nth-child(1) {
  width: 42%;
  height: 18%;
  left: 9%;
  top: 14%;
}

.video-scene i:nth-child(2) {
  width: 34%;
  height: 46%;
  right: 10%;
  top: 24%;
  animation-delay: -2s;
}

.video-scene i:nth-child(3) {
  width: 52%;
  height: 16%;
  left: 16%;
  bottom: 12%;
  animation-delay: -4s;
}

@keyframes videoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.process-section {
  padding-top: 68px;
}

.demo-video-section {
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.loop-demo-video {
  width: 100%;
  height: clamp(340px, 56vw, 760px);
  display: block;
  object-fit: cover;
  object-position: top center;
  background:
    radial-gradient(circle at 22% 18%, rgba(234, 219, 154, 0.18), transparent 28%),
    linear-gradient(135deg, #f8f6ef 0%, #ffffff 48%, #ece8dc 100%);
}

.hero-demo {
  position: relative;
  width: min(100%, 880px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 90px rgba(56, 46, 106, 0.16);
  backdrop-filter: blur(16px);
}

.hero-demo::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(234, 219, 154, 0.45), transparent);
  transform: translateX(-100%);
  animation: demoSheen 6s ease-in-out infinite;
  pointer-events: none;
}

.demo-topbar {
  position: relative;
  z-index: 1;
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.07);
}

.demo-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.18);
}

.demo-stage {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 18px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    rgba(255, 255, 255, 0.58);
  border-radius: 12px;
}

.demo-panel {
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  border: 1px solid rgba(7, 7, 7, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  box-shadow: 0 10px 28px rgba(7, 7, 7, 0.04);
  animation: demoFloat 7s ease-in-out infinite;
}

.demo-panel span {
  color: #555;
  font-size: 0.78rem;
  font-weight: 800;
}

.demo-panel strong {
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
}

.demo-panel-list {
  animation-delay: -1.4s;
}

.demo-panel-list i {
  display: block;
  height: 12px;
  border-radius: var(--pill);
  background: linear-gradient(90deg, rgba(102, 80, 190, 0.16), rgba(56, 95, 157, 0.12));
}

.demo-panel-list i:nth-child(3) {
  width: 82%;
}

.demo-panel-list i:nth-child(4) {
  width: 66%;
}

.demo-panel-radar {
  animation-delay: -2.8s;
  background:
    radial-gradient(circle at 75% 25%, rgba(56, 95, 157, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.78);
}

.demo-panel-lock {
  animation-delay: -4.2s;
  background:
    linear-gradient(135deg, rgba(234, 219, 154, 0.28), transparent),
    rgba(255, 255, 255, 0.82);
}

@keyframes demoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes demoSheen {
  0%,
  38% {
    transform: translateX(-110%);
  }
  62%,
  100% {
    transform: translateX(110%);
  }
}

.lead-form {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 7, 7, 0.075);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  font-size: 1.55rem;
}

.form-heading p {
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #dedbd4;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(234, 219, 154, 0.26);
}

.form-field textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 16px;
}

.trust-strip {
  background: #fbfbfa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}

.trust-strip span,
.pill-grid a,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-strip span {
  border-color: var(--line);
  background: var(--white);
  color: var(--muted);
}

.section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 68px 0;
  background: var(--white);
}

.section:nth-of-type(even) {
  background: var(--white);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

main > .section .section-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

#faq .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 0;
  margin-bottom: 0;
}

.mini-grid,
.process-grid,
.card-grid,
.mockup-grid {
  display: grid;
  gap: 16px;
}

.mini-card,
.process-card,
.simple-card,
.mockup-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(7, 7, 7, 0.075);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 7, 7, 0.032);
}

.mini-card p,
.simple-card p,
.mockup-card p {
  margin-bottom: 0;
}

.insight-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.insight-card:hover,
.insight-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(154, 132, 72, 0.32);
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.08);
}

.insight-card span {
  width: max-content;
  padding: 6px 10px;
  border-radius: var(--pill);
  background: rgba(234, 219, 154, 0.32);
  color: var(--gold-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.insight-card p {
  color: var(--muted);
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mockup-grid,
.mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.article-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 219, 154, 0.2), transparent 34rem),
    var(--soft);
}

.article-main {
  padding: 170px 24px 90px;
}

.article-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(7, 7, 7, 0.07);
}

.article-back,
.article-kicker,
.article-meta {
  font-family: "Poppins", Arial, sans-serif;
}

.article-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-kicker {
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: var(--pill);
  background: rgba(234, 219, 154, 0.34);
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-shell h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.72);
}

.article-tldr {
  margin: clamp(30px, 5vw, 46px) 0;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(154, 132, 72, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(234, 219, 154, 0.34), rgba(255, 255, 255, 0.72));
}

.article-tldr h2,
.article-content h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1;
}

.article-tldr h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-tldr p,
.article-content p {
  color: #424242;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.8;
}

.article-tldr p {
  margin: 0;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin-top: 38px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.article-content p {
  margin: 0 0 18px;
}

.legal-shell {
  width: min(960px, 100%);
}

.legal-disclaimer,
.legal-intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: #4f4f4f;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}

.legal-disclaimer {
  padding: 16px 18px;
  border: 1px solid rgba(154, 132, 72, 0.18);
  border-radius: 14px;
  background: rgba(234, 219, 154, 0.22);
}

.legal-page .article-content {
  margin-top: 40px;
}

.legal-page .article-content a {
  color: var(--gold-dark);
  font-weight: 700;
}

.values-shell {
  width: min(1080px, 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.value-card {
  min-height: 230px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(234, 219, 154, 0.26), transparent 32%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 40px rgba(7, 7, 7, 0.045);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value-card h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.value-card p {
  margin: 0;
  color: #4f4f4f;
  line-height: 1.75;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-links-missing {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.project-intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.project-intake-form .full {
  grid-column: 1 / -1;
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3e3e3e;
  font-size: 0.95rem;
}

.project-confirm input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-dark);
}

.project-thank-you {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(154, 132, 72, 0.22);
  border-radius: 16px;
  background: rgba(234, 219, 154, 0.22);
}

.project-thank-you h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.project-thank-you p {
  max-width: 650px;
  color: #4f4f4f;
}

.blog-route-grid {
  margin-top: 38px;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--container)) / 2));
  padding-left: max(16px, calc((100% - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(251, 251, 250, 0), #fbfbfa 46%, rgba(251, 251, 250, 0));
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.process-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.process-card h3 {
  margin-top: 34px;
}

.mockup-window {
  height: 170px;
  margin-bottom: 18px;
  border: 1px solid rgba(7, 7, 7, 0.075);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--white), var(--white)) 18px 20px / 52% 14px no-repeat,
    linear-gradient(var(--white), var(--white)) 18px 50px / 76% 9px no-repeat,
    linear-gradient(rgba(234, 219, 154, 0.48), rgba(234, 219, 154, 0.48)) 18px 92px / 38% 30px no-repeat,
    var(--soft);
}

.mockup-window.dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)) 18px 20px / 52% 16px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) 18px 52px / 76% 10px no-repeat,
    linear-gradient(rgba(234, 219, 154, 0.72), rgba(234, 219, 154, 0.72)) 18px 96px / 38% 34px no-repeat,
    var(--black);
}

.report-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: var(--black);
  border: 1px solid rgba(234, 219, 154, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.report-card div {
  min-height: 108px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.report-card span,
.report-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.report-card strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.report-card > p {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill-grid a:hover,
.pill-grid a:focus-visible {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 18px 44px rgba(7, 7, 7, 0.065);
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.92) brightness(1.08);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.28));
  pointer-events: none;
}

.map-marker {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -100%);
}

.map-marker::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 6px;
  background: var(--gold-dark);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(7, 7, 7, 0.2);
}

.map-marker span {
  display: block;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: var(--pill);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(7, 7, 7, 0.1);
}

.toronto {
  left: 53%;
  top: 57%;
}

.north-york {
  left: 53%;
  top: 43%;
}

.scarborough {
  left: 67%;
  top: 53%;
}

.etobicoke {
  left: 40%;
  top: 58%;
}

.vaughan {
  left: 47%;
  top: 29%;
}

.markham {
  left: 66%;
  top: 34%;
}

.mississauga {
  left: 32%;
  top: 67%;
}

.brampton {
  left: 26%;
  top: 42%;
}

.location-pills {
  margin-top: 18px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question,
summary {
  width: 100%;
  padding: 17px 18px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 800;
  font-family: inherit;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  position: relative;
  padding-right: 48px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(234, 219, 154, 0.48);
  color: var(--black);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform var(--transition), background var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  background: var(--gold);
  transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 48px 18px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.final-cta {
  padding: 40px 16px 86px;
  background:
    radial-gradient(circle at 22% 20%, rgba(102, 80, 190, 0.16), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(56, 95, 157, 0.16), transparent 32%),
    linear-gradient(180deg, #090909, #050505);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .text-highlight,
.final-cta .text-highlight.is-highlighted {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.problem-selector {
  width: min(100% - 32px, 920px);
  margin: 14px auto 0;
  display: grid;
  gap: 13px;
  text-align: center;
}

.selector-step {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.selector-step-heading {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.selector-step-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selector-step-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 0.86rem;
}

.selector-step-heading > span {
  display: none;
}

.industry-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.problem-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.selector-pill {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.problem-pill-grid .selector-pill {
  min-height: 29px;
  padding: 5px 10px;
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}

.industry-pill-row .selector-pill {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px) saturate(1.18);
}

.selector-pill:hover,
.selector-pill:focus-visible {
  border-color: rgba(234, 219, 154, 0.62);
  color: var(--white);
  transform: translateY(-1px);
}

.selector-pill.is-active,
.selector-pill[aria-pressed="true"] {
  border-color: rgba(234, 219, 154, 0.96);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 26px rgba(154, 132, 72, 0.2);
}

.selector-pill.is-active::before,
.selector-pill[aria-pressed="true"]::before {
  content: "✓ ";
  font-weight: 900;
}

.selector-button {
  justify-self: center;
  min-width: min(100%, 170px);
  min-height: 38px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: #050505;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 54px 0 36px;
  display: grid;
  gap: 28px;
}

.footer-logo .brand-name {
  color: var(--white);
}

.footer-logo .brand-short {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list,
.footer-column ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.contact-list,
.footer-column ul {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
}

.contact-list strong,
.footer-column h2 {
  color: var(--white);
}

.footer-column h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.contact-list a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 600;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--white);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-watermark {
  width: min(100% - 24px, 1280px);
  margin: 0 auto;
  padding: 16px 0 18px;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 12vw, 9.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
}

.contact-widget {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
}

.contact-toggle {
  width: 54px;
  height: 54px;
  border: 0;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(310px, calc(100vw - 44px));
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.contact-widget.is-open .contact-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-panel strong {
  color: var(--black);
}

.contact-panel p {
  margin: 8px 0 12px;
}

.contact-panel > a:not(.button) {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-panel .button {
  width: 100%;
  margin-top: 8px;
}

.contact-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--black);
  font-weight: 800;
}

.animate-fade-up,
.animate-fade-in,
.reveal {
  opacity: 0;
  transition: opacity 560ms ease, transform 560ms ease;
}

.animate-fade-up,
.reveal {
  transform: translateY(18px);
}

.animate-fade-in {
  transform: translateY(10px);
}

.animate-fade-up.in-view,
.animate-fade-in.in-view,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .animate-fade-up,
  .animate-fade-in,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .strategy-icon,
  .strategy-glow {
    animation: none !important;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: minmax(280px, 1.55fr) repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }

  .top-strip {
    display: none;
  }

  .navbar {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-inner {
    min-height: calc(100vh - 82px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

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

  .nav-links {
    display: grid;
    justify-self: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.98rem;
  }

  .nav-panel .button {
    width: 100%;
    justify-self: stretch;
  }

}

@media (max-width: 720px) {
  .article-main {
    padding: 122px 16px 70px;
  }

  .article-shell {
    border-radius: 14px;
  }

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

  .project-intake-form {
    grid-template-columns: 1fr;
  }

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

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

  .hero-inner {
    min-height: auto;
    padding: 28px 0 24px;
  }

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

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
  }

  .hero-actions .button-gold {
    width: auto;
    flex: 1 1 0;
    min-height: 48px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .hero-phone-cta {
    width: auto;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    border-color: transparent;
    background: #ff4248;
    color: var(--white);
    font-size: 0.72rem;
  }

  .hero-phone-cta span {
    display: inline;
  }

  .hero-phone-cta::after {
    content: none;
  }

  .hero-phone-cta svg {
    width: 19px;
    height: 19px;
  }

  .hero-proof {
    margin-top: 18px;
    gap: 7px;
    transform: scale(0.88);
    transform-origin: center;
  }

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

  .built-with {
    margin-top: 8px;
    transform: scale(0.84);
    transform-origin: center;
  }

  .built-with div {
    max-width: none;
    gap: 5px;
  }

  .tech-logo {
    min-height: 28px;
    padding: 5px 8px;
  }

  .tech-logo svg {
    height: 14px;
  }

  .hero-video-card {
    top: calc(100% - 98px);
    bottom: auto;
    width: calc(100vw - 24px);
    height: 216px;
    padding: 8px;
    border-radius: 24px;
  }

  .video-frame {
    border-radius: 17px;
  }

  .video-play {
    width: 56px;
    height: 56px;
  }

  .video-play::before {
    left: 23px;
    top: 18px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
  }

  .process-section {
    padding-top: 52px;
  }

  .loop-demo-video {
    height: clamp(220px, 58vw, 360px);
    min-height: 220px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: 2.25rem;
  }

  .button {
    width: 100%;
  }

  .location-pills {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .location-pills span {
    justify-content: center;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .process-card {
    min-height: 170px;
  }

  .report-card {
    grid-template-columns: 1fr;
  }

  .problem-selector {
    width: min(100% - 24px, 980px);
  }

  .selector-step {
    padding: 0;
  }

  .selector-step-heading {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .footer-watermark {
    white-space: normal;
  }

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

  .legal-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .social-links {
    justify-content: flex-start;
  }

  .hero-phone-cta {
    width: auto;
  }

  .past-work-section .mockup-scroll-sticky {
    overflow: hidden;
  }
}

@media (max-width: 430px) {
  .navbar,
  .hero-inner,
  .trust-strip-inner,
  .section,
  .footer-inner,
  .footer-bottom-inner {
    width: min(100% - 24px, var(--container));
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .lead-form {
    padding: 20px;
  }

}

/* Modern interaction pass */
.card-grid {
  align-items: start;
}

.service-hover {
  position: relative;
  min-height: 196px;
  overflow: hidden;
  transition: min-height 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-hover:hover,
.service-hover:focus-within {
  min-height: 286px;
  border-color: rgba(102, 80, 190, 0.34);
  box-shadow: 0 22px 52px rgba(7, 7, 7, 0.07);
  transform: translateY(-3px);
}

.service-symbol {
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  color: var(--black);
  border-radius: 50%;
  background: #f7f4e8;
}

.service-symbol svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-hover p,
.service-hover a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-hover p {
  max-width: 420px;
}

.service-hover a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 12px 26px rgba(154, 132, 72, 0.24);
}

.service-hover a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-hover:hover p,
.service-hover:hover a,
.service-hover:focus-within p,
.service-hover:focus-within a {
  opacity: 1;
  transform: translateY(0);
}

.mockup-marquee {
  overflow: hidden;
  padding: 4px 0 16px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mockup-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: mockupLoop 34s linear infinite;
}

.mockup-marquee:hover .mockup-track {
  animation-play-state: paused;
}

.mockup-track .mockup-card {
  flex: 0 0 clamp(280px, 32vw, 420px);
}

.mockup-window.blue {
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)) 18px 20px / 52% 16px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) 18px 52px / 76% 10px no-repeat,
    linear-gradient(rgba(111, 54, 255, 0.34), rgba(111, 54, 255, 0.34)) 18px 96px / 38% 34px no-repeat,
    linear-gradient(135deg, rgba(56, 95, 157, 0.16), rgba(214, 76, 82, 0.08)),
    var(--soft);
}

@keyframes mockupLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.mockup-showcase-section {
  width: min(1280px, calc(100% - 160px));
  max-width: 1280px;
  padding: 88px 0 76px;
  overflow: visible;
}

.mockup-showcase-section .section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

main > .mockup-showcase-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mockup-showcase-section .section-heading h2 {
  font-size: clamp(4.5rem, 6.1vw, 5.5rem);
  line-height: 0.98;
}

.mockup-showcase-section .section-heading p:not(.eyebrow) {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.mockup-section-cta {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.mockup-scroll-stage {
  position: relative;
  min-height: 170vh;
}

.mockup-scroll-sticky {
  position: sticky;
  top: 128px;
  min-height: calc(100vh - 176px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mockup-showcase-track {
  --mockup-card-width: clamp(500px, 48vw, 650px);
  display: flex;
  gap: 24px;
  padding: 10px max(0px, calc((100% - var(--mockup-card-width)) / 2)) 28px;
  will-change: transform;
}

.premium-mockup-card {
  flex: 0 0 var(--mockup-card-width);
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(7, 7, 7, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.premium-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 78px rgba(7, 7, 7, 0.13);
}

.mockup-media {
  position: relative;
  height: 310px;
  min-height: 310px;
  overflow: hidden;
  background: var(--soft);
}

.mockup-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.generated-restaurant,
.generated-home {
  height: 310px;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: var(--white);
}

.generated-restaurant {
  background:
    linear-gradient(90deg, rgba(38, 15, 8, 0.52), rgba(38, 15, 8, 0.04) 52%, rgba(38, 15, 8, 0.62)),
    linear-gradient(180deg, rgba(20, 12, 7, 0.12), rgba(20, 12, 7, 0.86)),
    radial-gradient(circle at 14% 14%, rgba(255, 234, 173, 0.52), transparent 24%),
    radial-gradient(circle at 76% 28%, rgba(255, 205, 128, 0.42), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #5a2616 0%, #ba7a31 46%, #111 100%);
}

.generated-home {
  background:
    linear-gradient(90deg, rgba(8, 16, 28, 0.5), rgba(8, 16, 28, 0.05) 54%, rgba(8, 16, 28, 0.62)),
    linear-gradient(180deg, rgba(8, 16, 28, 0.08), rgba(8, 16, 28, 0.86)),
    radial-gradient(circle at 82% 12%, rgba(231, 240, 255, 0.62), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.34), transparent 16%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px),
    linear-gradient(135deg, #dfe7ef 0%, #4f76a7 46%, #10151c 100%);
}

.generated-restaurant::before,
.generated-home::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  pointer-events: none;
}

.generated-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.generated-hero-copy span,
.mockup-label,
.mockup-category,
.industry-insight-kicker {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generated-hero-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.78);
}

.generated-hero-copy h4 {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  font-weight: 400;
  line-height: 0.98;
}

.generated-hero-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.generated-hero-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.generated-hero-copy b {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.mockup-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.mockup-card-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mockup-label,
.mockup-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
}

.mockup-label {
  background: var(--gold);
  color: var(--black);
}

.mockup-category {
  border: 1px solid rgba(7, 7, 7, 0.1);
  color: var(--muted);
}

.mockup-card-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 400;
}

.mockup-card-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mockup-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 30px 0 8px;
  text-align: center;
}

.mockup-section-cta h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
}

.hero-concept-card {
  flex-basis: min(86vw, 980px);
}

.hero-concept-card .mockup-card-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.mockup-scroll-stage {
  min-height: 280vh;
}

.mockup-showcase-track {
  --mockup-card-width: min(86vw, 980px);
}

.concept-hero {
  position: relative;
  height: clamp(560px, 72vh, 720px);
  min-height: 560px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 1fr);
  align-items: center;
  gap: 30px;
  isolation: isolate;
  color: var(--white);
  background: #111;
}

.concept-hero::before,
.concept-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.concept-hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
}

.concept-hero::after {
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
}

.concept-badge,
.concept-kicker,
.concept-nav span,
.concept-preview,
.concept-trust {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concept-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  backdrop-filter: blur(14px);
}

.concept-nav {
  position: absolute;
  top: 28px;
  left: 34px;
  right: 170px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.concept-nav strong {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.concept-nav span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
}

.concept-hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 530px;
  padding-bottom: 78px;
}

.concept-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
}

.concept-hero h4 {
  max-width: 620px;
  margin-bottom: 18px;
  color: inherit;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.55rem);
  font-weight: 400;
  line-height: 0.92;
}

.concept-hero p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.94rem, 1.35vw, 1.08rem);
  line-height: 1.65;
}

.concept-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.concept-actions b {
  min-height: 44px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.concept-actions b:first-child {
  border-color: transparent;
  background: var(--concept-accent, var(--gold));
  color: var(--concept-button-text, var(--black));
}

.hero-concept-card:hover .concept-actions b:first-child {
  transform: translateY(-2px);
}

.concept-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.6rem;
}

.concept-trust span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.concept-photo {
  position: relative;
  z-index: 1;
  min-height: 430px;
  align-self: stretch;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.18)),
    var(--photo-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 28px 70px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
}

.concept-photo::before,
.concept-photo::after,
.concept-photo span,
.concept-photo span::before,
.concept-photo span::after {
  content: "";
  position: absolute;
  display: block;
}

.concept-preview {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.concept-preview span {
  flex: 1;
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  backdrop-filter: blur(16px);
}

.apex-hero {
  --concept-accent: #ff6a2a;
  --concept-button-text: #101010;
  --photo-bg: radial-gradient(circle at 68% 18%, rgba(255, 106, 42, 0.42), transparent 24%), linear-gradient(135deg, #343434 0%, #121212 68%);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 106, 42, 0.28), transparent 28%),
    linear-gradient(135deg, #1d1d1d 0%, #090909 100%);
}

.fitness-photo::before {
  width: 42%;
  height: 52%;
  left: 40%;
  top: 21%;
  border-radius: 42% 42% 18% 18%;
  background: linear-gradient(180deg, #f0c0a5, #6f342a 48%, #111 49%);
  transform: rotate(-5deg);
}

.fitness-photo::after {
  width: 70%;
  height: 16px;
  left: 16%;
  top: 58%;
  border-radius: 999px;
  background: #0d0d0d;
  box-shadow: -62px 0 0 18px rgba(255, 106, 42, 0.82), 62px 0 0 18px rgba(255, 106, 42, 0.82);
}

.fitness-photo span {
  width: 34%;
  height: 46%;
  left: 13%;
  bottom: 10%;
  border-radius: 46% 46% 20% 20%;
  background: linear-gradient(180deg, #e9b699, #242424 38%, #0b0b0b);
}

.olive-hero {
  --concept-accent: #e8d2a5;
  --concept-button-text: #1d2418;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(49, 57, 39, 0.9), rgba(49, 57, 39, 0.38)),
    radial-gradient(circle at 78% 28%, rgba(232, 210, 165, 0.58), transparent 24%),
    linear-gradient(135deg, #efe1c8 0%, #606946 52%, #23291d 100%);
}

.restaurant-photo {
  --photo-bg: radial-gradient(circle at 50% 44%, #f3d6a3 0 16%, transparent 17%), radial-gradient(circle at 28% 62%, #9f3f28 0 11%, transparent 12%), radial-gradient(circle at 68% 68%, #eff0c9 0 13%, transparent 14%), linear-gradient(135deg, #4a3b29, #15150f);
  border-radius: 999px 999px 34px 34px;
}

.restaurant-photo::before {
  inset: 17% 12% 18%;
  border-radius: 50%;
  border: 18px solid rgba(255, 250, 230, 0.84);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 62%);
}

.restaurant-photo::after {
  width: 70%;
  height: 34%;
  left: 15%;
  bottom: 12%;
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(0, 0, 0, 0.18));
}

.shield-hero {
  --concept-accent: #245fa7;
  --concept-button-text: #fff;
  color: #102033;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.65)),
    radial-gradient(circle at 78% 12%, rgba(65, 135, 210, 0.28), transparent 28%),
    linear-gradient(135deg, #e8f2fb 0%, #ffffff 48%, #8ab3db 100%);
}

.shield-hero .concept-nav span,
.shield-hero .concept-kicker,
.shield-hero p,
.shield-hero .concept-trust {
  color: rgba(16, 32, 51, 0.72);
}

.shield-hero .concept-trust span,
.shield-hero .concept-preview span,
.shield-hero .concept-badge,
.dental-hero .concept-trust span,
.dental-hero .concept-preview span,
.dental-hero .concept-badge {
  border-color: rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(16, 32, 51, 0.72);
}

.roofing-photo {
  --photo-bg: linear-gradient(180deg, #a8c7e4 0 42%, #6c7e8c 43% 48%, #32455a 49% 100%);
}

.roofing-photo::before {
  width: 86%;
  height: 34%;
  left: 7%;
  bottom: 17%;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: linear-gradient(135deg, #2d5f91, #15385f);
}

.roofing-photo::after {
  width: 18%;
  height: 32%;
  right: 24%;
  top: 26%;
  border-radius: 38% 38% 14% 14%;
  background: linear-gradient(180deg, #ffcda2, #245fa7 42%, #172b43);
}

.dental-hero {
  --concept-accent: #7fb7dc;
  --concept-button-text: #0f2638;
  color: #101820;
  background:
    radial-gradient(circle at 75% 18%, rgba(127, 183, 220, 0.34), transparent 27%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #d9ecf8 100%);
}

.dental-hero .concept-nav span,
.dental-hero .concept-kicker,
.dental-hero p,
.dental-hero .concept-trust {
  color: rgba(16, 24, 32, 0.66);
}

.dental-photo {
  --photo-bg: radial-gradient(circle at 58% 24%, #ffffff 0 12%, transparent 13%), linear-gradient(135deg, #f8fdff, #aad4ec 72%, #5e9fc5);
}

.dental-photo::before {
  width: 44%;
  height: 54%;
  left: 43%;
  top: 18%;
  border-radius: 46% 46% 20% 20%;
  background: linear-gradient(180deg, #f5c3a5, #ffffff 42%, #d9eef8);
}

.dental-photo::after {
  width: 36%;
  height: 40%;
  left: 13%;
  bottom: 18%;
  border-radius: 46% 46% 20% 20%;
  background: linear-gradient(180deg, #d9a78e, #eff7fb 46%, #83b8d8);
}

.boxing-hero {
  --concept-accent: #9d1935;
  --concept-button-text: #fff;
  background:
    linear-gradient(90deg, rgba(70, 25, 24, 0.94), rgba(70, 25, 24, 0.42)),
    radial-gradient(circle at 76% 18%, rgba(214, 164, 105, 0.4), transparent 26%),
    linear-gradient(135deg, #321817 0%, #794032 50%, #c0976c 100%);
}

.boxing-photo {
  --photo-bg: linear-gradient(135deg, #ead1af, #814231 54%, #2d1514);
}

.boxing-photo::before {
  width: 36%;
  height: 58%;
  left: 12%;
  bottom: 10%;
  border-radius: 46% 46% 18% 18%;
  background: linear-gradient(180deg, #d6a083, #6c2d2d 40%, #1d1213);
}

.boxing-photo::after {
  width: 40%;
  height: 58%;
  right: 12%;
  bottom: 8%;
  border-radius: 46% 46% 18% 18%;
  background: linear-gradient(180deg, #e0ad8d, #9d1935 40%, #2b1718);
}

.boxing-photo span {
  width: 52%;
  height: 20px;
  left: 24%;
  top: 50%;
  border-radius: 999px;
  background: rgba(255, 239, 218, 0.84);
  transform: rotate(-10deg);
}

.ledger-hero {
  --concept-accent: #d9bd72;
  --concept-button-text: #101820;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 189, 114, 0.26), transparent 28%),
    linear-gradient(135deg, #081423 0%, #111d32 58%, #050a12 100%);
}

.ledger-photo {
  --photo-bg: linear-gradient(135deg, #1d2f4c 0%, #101a2d 62%, #d9bd72 63% 100%);
}

.ledger-photo::before {
  width: 72%;
  height: 46%;
  left: 14%;
  bottom: 13%;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(217, 189, 114, 0.72) 15% 17%, transparent 18% 38%, rgba(255, 255, 255, 0.5) 39% 41%, transparent 42% 100%),
    rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.ledger-photo::after {
  width: 32%;
  height: 50%;
  right: 12%;
  top: 14%;
  border-radius: 48% 48% 18% 18%;
  background: linear-gradient(180deg, #d9a782, #172238 42%, #0a101b);
}

.report-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  width: 100%;
  padding-right: max(16px, calc((100% - var(--container)) / 2));
  padding-left: max(16px, calc((100% - var(--container)) / 2));
}

.shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
}

.shape-purple {
  width: 170px;
  height: 170px;
  top: 24%;
  left: 11%;
  border-radius: 36% 64% 52% 48%;
  background: var(--purple);
}

.shape-blue {
  width: 250px;
  height: 110px;
  right: 13%;
  top: 18%;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-14deg);
}

.shape-red {
  width: 116px;
  height: 116px;
  right: 24%;
  bottom: 16%;
  border-radius: 16px;
  background: var(--red);
  transform: rotate(18deg);
}

.report-section .section-heading,
.report-section .report-card {
  position: relative;
  z-index: 1;
}

.report-section .report-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(7, 7, 7, 0.08);
  backdrop-filter: blur(12px);
}

.report-section .report-card div,
.report-section .report-card > p {
  border-color: rgba(7, 7, 7, 0.07);
  background: rgba(255, 255, 255, 0.54);
}

.report-section .report-card span,
.report-section .report-card p {
  color: var(--muted);
}

.report-section .report-card strong {
  color: var(--black);
}

.section.strategy-section {
  position: relative;
  max-width: none;
  width: 100%;
  overflow: hidden;
  padding: clamp(84px, 10vw, 142px) max(24px, calc((100% - var(--container)) / 2));
  background: #050505;
  color: var(--white);
}

.section.strategy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("assets/awa_bgimg.avif") center / cover no-repeat;
  opacity: 1;
}

.section.strategy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 78%, rgba(234, 219, 154, 0.24), transparent 34%),
    radial-gradient(circle at 24% 10%, rgba(95, 113, 232, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.78) 0%, rgba(12, 12, 16, 0.58) 48%, rgba(5, 5, 5, 0.9) 100%);
}

.strategy-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.strategy-copy {
  max-width: 690px;
}

.strategy-copy .eyebrow {
  border-color: rgba(234, 219, 154, 0.24);
  background: rgba(234, 219, 154, 0.1);
  color: var(--gold);
}

.strategy-copy h2 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.9rem);
}

.strategy-copy .text-highlight.is-highlighted {
  color: var(--white);
}

.strategy-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.8;
}

.strategy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.strategy-phone {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 26px rgba(154, 132, 72, 0.16);
}

.strategy-phone:hover,
.strategy-phone:focus-visible {
  border-color: #f0e3ad;
  background: #f0e3ad;
  color: var(--black);
}

.strategy-visual {
  position: relative;
  min-height: clamp(430px, 42vw, 580px);
  border-radius: 40px;
  isolation: isolate;
}

.strategy-glow {
  position: absolute;
  right: 4%;
  bottom: -9%;
  left: 7%;
  height: 46%;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(ellipse at center, rgba(234, 219, 154, 0.68) 0%, rgba(207, 170, 72, 0.28) 34%, transparent 70%);
  filter: blur(18px);
  opacity: 0.76;
  animation: strategyGlow 5.6s ease-in-out infinite;
}

.strategy-orbit {
  position: absolute;
  inset: 0;
}

.strategy-icon {
  position: absolute;
  width: clamp(78px, 8vw, 116px);
  height: clamp(78px, 8vw, 116px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), transparent 38%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    0 24px 70px rgba(0, 0, 0, 0.36);
  transform: translate3d(0, 0, 0) rotate(var(--tilt, 0deg));
  animation: strategyFloat var(--float-speed, 6s) ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.strategy-icon svg {
  width: 42%;
  height: 42%;
  fill: currentColor;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
}

.strategy-icon.support {
  --tilt: -8deg;
  --float-speed: 6.3s;
  top: 12%;
  left: 16%;
  color: #6f7bff;
  background-color: #dfe4ff;
}

.strategy-icon.trust {
  --tilt: 7deg;
  --float-speed: 7.2s;
  top: 5%;
  right: 16%;
  color: #a879ff;
  background-color: #efe5ff;
  animation-delay: -1.7s;
}

.strategy-icon.care {
  --tilt: 10deg;
  --float-speed: 5.8s;
  top: 41%;
  left: 5%;
  color: #f06875;
  background-color: #ffe1e4;
  animation-delay: -3s;
}

.strategy-icon.pro {
  --tilt: -5deg;
  --float-speed: 7.8s;
  top: 38%;
  right: 8%;
  color: #5e73d8;
  background-color: #dfe8ff;
  animation-delay: -2.4s;
}

.strategy-icon.revenue {
  --tilt: -12deg;
  --float-speed: 6.8s;
  bottom: 8%;
  left: 24%;
  color: #e25d69;
  background-color: #ffe3e5;
  animation-delay: -4.1s;
}

.strategy-icon.website {
  --tilt: 8deg;
  --float-speed: 6.1s;
  right: 28%;
  bottom: 2%;
  color: #8a63e8;
  background-color: #ebe2ff;
  animation-delay: -1.1s;
}

@keyframes strategyFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--tilt, 0deg));
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(var(--tilt, 0deg));
  }
}

@keyframes strategyGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(0.94);
  }
  50% {
    opacity: 0.88;
    transform: scaleX(1.04);
  }
}

@media (max-width: 980px) {
  .strategy-section {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .strategy-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .strategy-copy {
    max-width: 760px;
  }

  .strategy-visual {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .strategy-section {
    padding: 72px 24px 78px;
  }

  .strategy-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .strategy-copy p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.98rem;
  }

  .strategy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .strategy-visual {
    min-height: 360px;
    margin-top: 4px;
  }

  .strategy-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .strategy-icon.support {
    top: 9%;
    left: 10%;
  }

  .strategy-icon.trust {
    top: 3%;
    right: 9%;
  }

  .strategy-icon.care {
    top: 38%;
    left: 0;
  }

  .strategy-icon.pro {
    top: 35%;
    right: 2%;
  }

  .strategy-icon.revenue {
    bottom: 8%;
    left: 16%;
  }

  .strategy-icon.website {
    right: 18%;
    bottom: 0;
  }
}

#industries .pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

#industries .industry-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 20px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 18px 44px rgba(7, 7, 7, 0.085);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

#industries .industry-card:hover,
#industries .industry-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(7, 7, 7, 0.12);
}

#industries .industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 66, 0.24), rgba(16, 22, 66, 0.92)),
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.36), transparent 23%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 25%);
  z-index: 0;
}

#industries .restaurant::before {
  background:
    linear-gradient(180deg, rgba(16, 22, 66, 0.2), rgba(16, 22, 66, 0.92)),
    linear-gradient(135deg, rgba(219, 195, 111, 0.38), transparent 42%),
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.38), transparent 22%);
}

#industries .gym::before {
  background:
    linear-gradient(180deg, rgba(16, 22, 66, 0.18), rgba(16, 22, 66, 0.93)),
    linear-gradient(135deg, rgba(102, 80, 190, 0.34), transparent 45%),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.28), transparent 20%);
}

#industries .clinic::before {
  background:
    linear-gradient(180deg, rgba(16, 22, 66, 0.18), rgba(16, 22, 66, 0.93)),
    linear-gradient(135deg, rgba(56, 95, 157, 0.32), transparent 45%),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.3), transparent 20%);
}

#industries .contractor::before {
  background:
    linear-gradient(180deg, rgba(16, 22, 66, 0.18), rgba(16, 22, 66, 0.93)),
    linear-gradient(135deg, rgba(184, 73, 63, 0.25), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.28), transparent 20%);
}

#industries .home::before,
#industries .pro::before {
  background:
    linear-gradient(180deg, rgba(16, 22, 66, 0.18), rgba(16, 22, 66, 0.93)),
    linear-gradient(135deg, rgba(76, 130, 210, 0.22), rgba(219, 195, 111, 0.14)),
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.3), transparent 22%);
}

#industries .industry-card h3,
#industries .industry-card p,
#industries .industry-card span {
  position: relative;
  z-index: 1;
}

#industries .industry-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

#industries .industry-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

#industries .industry-card span {
  margin-top: 20px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.industry-insight-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.industry-insight-card {
  position: relative;
  min-height: 360px;
  grid-column: span 3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 26px 70px rgba(7, 7, 7, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.industry-insight-card:nth-child(3) {
  grid-column: span 2;
}

.industry-insight-card:nth-child(4),
.industry-insight-card:nth-child(5) {
  grid-column: span 2;
}

.industry-insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--industry-gradient);
  transition: transform 300ms ease, opacity 300ms ease;
}

.industry-insight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.72)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.38), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.16), transparent 24%);
}

.industry-insight-card:hover {
  transform: translateY(-5px);
  filter: saturate(1.08);
  box-shadow: 0 34px 90px rgba(7, 7, 7, 0.15);
}

.industry-insight-card:hover::before {
  transform: scale(1.04);
}

.gradient-fitness {
  --industry-gradient: linear-gradient(135deg, #a8352e 0%, #e6cd79 100%);
}

.gradient-arts {
  --industry-gradient: linear-gradient(135deg, #6543c8 0%, #f08bbd 100%);
}

.gradient-startups {
  --industry-gradient: linear-gradient(135deg, #2c77c9 0%, #7655d6 100%);
}

.gradient-restaurants {
  --industry-gradient: linear-gradient(135deg, #e4c96f 0%, #bd3f33 100%);
}

.gradient-home-services {
  --industry-gradient: linear-gradient(135deg, #3a79b8 0%, #e6cf82 100%);
}

.industry-insight-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  backdrop-filter: blur(10px);
}

.industry-insight-card h3 {
  max-width: 540px;
  margin-bottom: 16px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.industry-insight-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.industry-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.industry-tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
  .mockup-showcase-section {
    width: calc(100% - 96px);
    padding-top: 78px;
  }

  .mockup-showcase-section .section-heading h2 {
    font-size: clamp(3.5rem, 7vw, 4rem);
  }
}

@media (max-width: 980px) {
  .mockup-scroll-stage {
    min-height: auto;
  }

  .mockup-scroll-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .mockup-showcase-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 16px;
    padding-left: 16px;
    transform: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .mockup-showcase-track::-webkit-scrollbar {
    height: 0;
  }

  .premium-mockup-card {
    flex-basis: min(86vw, 620px);
    scroll-snap-align: center;
  }

  .mockup-media,
  .mockup-media img,
  .generated-restaurant,
  .generated-home {
    min-height: 340px;
  }

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

  .industry-insight-card,
  .industry-insight-card:nth-child(3),
  .industry-insight-card:nth-child(4),
  .industry-insight-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .hero::before {
    width: 260px;
    height: 260px;
    right: -80px;
    top: 13%;
  }

  .hero::after {
    width: 220px;
    height: 220px;
    left: -90px;
  }

  .service-hover,
  .service-hover:hover,
  .service-hover:focus-within {
    min-height: 260px;
  }

  .service-hover p,
  .service-hover a {
    opacity: 1;
    transform: none;
  }

  .mockup-showcase-section .section-heading {
    margin-bottom: 34px;
  }

  .mockup-showcase-section {
    width: calc(100% - 48px);
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .mockup-showcase-section .section-heading h2 {
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

  .premium-mockup-card {
    flex-basis: 88vw;
    border-radius: 22px;
  }

  .mockup-media,
  .mockup-media img,
  .generated-restaurant,
  .generated-home {
    min-height: 300px;
  }

  .generated-restaurant,
  .generated-home {
    padding: 24px;
  }

  .generated-restaurant::before,
  .generated-home::before {
    inset: 16px;
    border-radius: 18px;
  }

  .mockup-card-copy {
    padding: 22px;
  }

  .mockup-section-cta {
    display: grid;
    margin-top: 20px;
  }

  .industry-insight-grid {
    grid-template-columns: 1fr;
  }

  .industry-insight-card {
    min-height: 330px;
    padding: 24px;
    border-radius: 22px;
  }

  #industries .industry-card {
    min-height: 290px;
    padding: 26px;
    border-radius: 22px;
  }

  .map-panel {
    min-height: 360px;
    border-radius: 22px;
  }

  .map-marker span {
    display: none;
  }

  .map-marker::before {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 980px) {
  .hero-concept-card {
    flex-basis: min(88vw, 720px);
  }

  .hero-concept-card .concept-hero {
    min-height: 640px;
    height: auto;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 28px;
  }

  .hero-concept-card .concept-nav {
    left: 28px;
    right: 150px;
  }

  .hero-concept-card .concept-hero-content {
    max-width: 560px;
    padding-top: 58px;
    padding-bottom: 124px;
  }

  .hero-concept-card .concept-photo {
    position: absolute;
    inset: auto 24px 104px auto;
    width: min(44%, 260px);
    min-height: 240px;
    opacity: 0.62;
  }

  .hero-concept-card .concept-preview {
    left: 28px;
    right: 28px;
  }
}

@media (max-width: 720px) {
  .hero-concept-card {
    flex-basis: 88vw;
  }

  .hero-concept-card .concept-hero {
    min-height: 670px;
    padding: 22px;
  }

  .hero-concept-card .concept-hero::after {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-concept-card .concept-badge {
    top: 16px;
    right: 16px;
    max-width: 136px;
    text-align: center;
  }

  .hero-concept-card .concept-nav {
    top: 22px;
    left: 22px;
    right: 22px;
    display: block;
  }

  .hero-concept-card .concept-nav span {
    display: none;
  }

  .hero-concept-card .concept-hero-content {
    padding-top: 74px;
    padding-bottom: 160px;
  }

  .hero-concept-card .concept-hero h4 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-concept-card .concept-hero p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-concept-card .concept-actions b {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .hero-concept-card .concept-trust {
    gap: 6px;
  }

  .hero-concept-card .concept-trust span {
    padding: 6px 8px;
    font-size: 0.54rem;
  }

  .hero-concept-card .concept-photo {
    inset: auto 18px 122px auto;
    width: 46%;
    min-height: 190px;
    border-radius: 22px;
  }

  .hero-concept-card .concept-preview {
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
  }

  .hero-concept-card .concept-preview span {
    min-height: 42px;
    font-size: 0.56rem;
  }
}

.past-work-section {
  padding-bottom: 72px;
}

.past-work-section .section-heading {
  margin-bottom: 42px;
}

.past-work-section .mockup-scroll-stage {
  min-height: auto;
}

.past-work-section .mockup-scroll-sticky {
  position: relative;
  top: auto;
  min-height: auto;
  display: block;
  overflow: visible;
}

.past-work-section .mockup-showcase-track {
  --mockup-card-width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  transform: none !important;
}

.past-work-section .premium-mockup-card {
  width: 100%;
  min-width: 0;
  flex: initial;
}

.past-work-section .past-work-duplicate {
  display: none;
}

.past-work-section .mockup-media {
  height: clamp(220px, 28vw, 320px);
  min-height: 0;
  padding: 12px;
  background: #f8f8f4;
}

.past-work-section .mockup-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  background: var(--white);
}

.mockup-result-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: min(78%, 330px);
  padding: 10px 14px;
  border: 1px solid rgba(234, 219, 154, 0.56);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.76);
  color: var(--gold);
  box-shadow: 0 16px 34px rgba(7, 7, 7, 0.22);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

.past-work-section .mockup-card-copy {
  min-height: auto;
  padding: 18px 20px 20px;
  text-align: center;
}

.past-work-section .mockup-card-copy h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.pinned-showcase {
  --showcase-card-width: clamp(220px, 22vw, 320px);
  --showcase-gap: clamp(18px, 2.4vw, 34px);
  --showcase-scroll-distance: 860px;
  --showcase-panel-height: clamp(560px, 48vw, 700px);
  position: relative;
  height: calc(var(--showcase-panel-height) + var(--showcase-scroll-distance));
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(234, 219, 154, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f4ed 52%, #ffffff 100%);
}

.pinned-showcase-sticky {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--showcase-panel-height);
  display: grid;
  align-items: start;
  justify-items: stretch;
  overflow: hidden;
}

.pinned-showcase.is-pinning .pinned-showcase-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.pinned-showcase.is-after .pinned-showcase-sticky {
  position: absolute;
  top: auto;
  bottom: 0;
}

.pinned-showcase-rows {
  width: 100%;
  display: grid;
  gap: clamp(18px, 2.4vw, 32px);
  padding: clamp(28px, 4vw, 52px) 0 clamp(10px, 1.4vw, 18px);
}

.pinned-showcase-row {
  display: flex;
  gap: var(--showcase-gap);
  width: max-content;
  will-change: transform;
  transform: translate3d(var(--row-offset, 0px), 0, 0);
}

.pinned-showcase-row:nth-child(1),
.pinned-showcase-row:nth-child(3) {
  padding-left: 6vw;
}

.pinned-showcase-row:nth-child(2) {
  padding-left: 0;
  transform: translate3d(calc(var(--row-offset, 0px) - 18vw), 0, 0);
}

.pinned-showcase-row img {
  width: var(--showcase-card-width);
  aspect-ratio: 16 / 9;
  display: block;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.pinned-showcase.is-reduced {
  height: auto;
  overflow: hidden;
}

.pinned-showcase.is-reduced .pinned-showcase-sticky {
  position: relative;
  min-height: auto;
}

.pinned-showcase.is-reduced .pinned-showcase-row {
  width: auto;
  overflow-x: auto;
  padding-bottom: 6px;
  transform: none !important;
  scrollbar-width: none;
}

.pinned-showcase.is-reduced .pinned-showcase-row::-webkit-scrollbar {
  display: none;
}

@media (max-width: 600px) {
  .past-work-section {
    width: 100%;
    padding-bottom: 18px;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
    contain: paint;
  }

  .past-work-section .section-heading {
    width: calc(100% - 48px);
  }

  .past-work-section .mockup-scroll-stage,
  .past-work-section .mockup-scroll-sticky {
    overflow: visible;
  }

  .past-work-section .mockup-showcase-track {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 20px;
    overflow-x: hidden;
    animation: none;
    transform: none !important;
    will-change: auto;
  }

  .past-work-section .premium-mockup-card {
    width: 100%;
    flex: initial;
  }

  .past-work-section .past-work-duplicate {
    display: none;
  }

  .past-work-section .mockup-media,
  .past-work-section .mockup-media img {
    height: clamp(210px, 54vw, 260px);
    min-height: 0;
  }

  .past-work-section .mockup-media {
    padding: 8px;
  }

  .past-work-section .mockup-media img {
    object-fit: cover;
    border-radius: 14px;
  }

  .mockup-result-badge {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 8px 11px;
    font-size: 0.66rem;
  }

  .past-work-section .mockup-card-copy {
    padding: 14px 14px 16px;
  }

  .past-work-section .mockup-card-copy h3 {
    font-size: 1.35rem;
  }

  .pinned-showcase {
    --showcase-card-width: clamp(132px, 42vw, 180px);
    --showcase-gap: 12px;
    --showcase-scroll-distance: 520px;
    --showcase-panel-height: 340px;
  }

  .pinned-showcase-sticky {
    align-items: start;
  }

  .pinned-showcase-rows {
    gap: 12px;
    padding: 8px 0 8px;
  }

  .pinned-showcase-row img {
    border-radius: 10px;
  }
}

@keyframes pastWorkMobileLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
