@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-VariableFont_wght.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff4f01;
  --white: #fff;
  --black: #000;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.1);
  --font: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  /* native smooth scrolling disabled in favor of Lenis JS-based smooth scroll */
  scroll-behavior: auto;
}

/* Lenis smooth scroll — required styles.
   `lenis` classes are added to <html> by the runtime once Lenis initializes. */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: var(--font);
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
  /* `clip` hides horizontal overflow without turning <body> into a scroll
     container (which `hidden` does, breaking Lenis' window-level smoothing). */
  overflow-x: clip;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.overflow-hidden {
  overflow-x: clip;
}

.top-blur {
  position: fixed;
  inset: 0 0 auto;
  height: 240px;
  background: radial-gradient(
    circle at 50% 0,
    rgba(255, 79, 1, 0.22),
    transparent 56%
  );
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 100%;
  max-width: 1600px;
  padding: 16px clamp(12px, 2vw, 24px);
  transition: all 0.25s ease;
}

.nav-frame {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand-mark {
  width: 77px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  padding: 20px 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 79, 1, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(50px);
  position: relative;
}

.desktop-nav:after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -38px;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(25px);
  z-index: -1;
}

.desktop-nav a,
.mega-trigger {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mega-trigger:hover,
.desktop-nav .active {
  color: var(--orange);
  font-weight: 700;
}

.gradient-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  color: #fff;
  background: linear-gradient(
    91deg,
    rgba(255, 79, 1, 0) 0.6%,
    rgba(255, 79, 1, 0.5) 44.15%,
    rgba(255, 79, 1, 0) 88.36%
  );
  backdrop-filter: blur(17.5px);
  transition: transform 0.25s ease;
}

.gradient-button:hover {
  transform: scale(1.05);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.gradient-button:hover .arrow-icon {
  transform: rotate(45deg);
}

.site-header.scrolled {
  padding-top: 10px;
}

.site-header.scrolled .nav-frame {
  padding: 10px 20px;
  background: rgba(24, 24, 24, 0.98);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(20px);
}

.site-header.scrolled .desktop-nav {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.site-header.scrolled .desktop-nav:after {
  display: none;
}

.site-header.scrolled .brand-mark {
  width: 60px;
  height: 60px;
}

.mobile-menu-button {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mega-panel {
  position: fixed;
  top: 88px;
  left: 50%;
  width: min(980px, calc(100vw - 72px));
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 910;
}

.mega-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  gap: 18px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(20, 18, 16, 0.96);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 79, 1, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.mega-feature {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 79, 1, 0.15),
      transparent 40%
    ),
    linear-gradient(160deg, #0a0908, #1a1210 70%, #ff4f01 200%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 79, 1, 0.16);
}

.mega-feature h3 {
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
}

.mega-feature p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.mega-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 12px;
  margin-top: 10px;
}

.mega-stat strong {
  font-size: 20px;
  display: block;
}

.mega-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.mega-columns {
  display: grid;
  gap: 14px;
}

.mega-col-label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.mega-col-label:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 79, 1, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 79, 1, 0.08);
}

.mega-link {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  transition: all 0.25s ease;
}

.mega-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 1, 0.2);
  box-shadow: 0 12px 32px rgba(255, 79, 1, 0.08);
}

.mega-link strong {
  display: block;
  font-size: 17px;
  line-height: 1.12;
}

.mega-link span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.drawer-backdrop,
.mobile-drawer {
  display: none;
}

.hero-section {
  max-width: 1280px;
  margin: 160px auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pill {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 79, 1, 0.12) 0.13%,
    rgba(255, 79, 1, 0.12) 51.89%,
    rgba(255, 79, 1, 0.12) 104.45%
  );
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.hero-pill p {
  margin: 0;
  color: var(--orange);
  font-size: 14px;
}

.mini-stars {
  display: flex;
  gap: 8px;
}

.mini-stars span {
  width: 15px;
  height: 15px;
  background: var(--orange);
  clip-path: polygon(
    50% 0,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: heroStarPop 0.4s ease-out both;
}

.hero-section h1 {
  margin: 24px 0;
  font-size: clamp(45px, 6vw, 70px);
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(
    90deg,
    #fff,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section em {
  color: var(--orange);
  font-style: italic;
  -webkit-text-fill-color: var(--orange);
}

.hero-copy {
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  z-index: 2;
}

.glow-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  transition: transform 0.2s ease;
  box-shadow: 0 2px 12px rgba(255, 79, 1, 0.25);
}

.glow-button:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--orange);
  clip-path: polygon(7% 11%, 89% 0, 100% 25%, 98% 83%, 17% 89%, 0 68%, 0 31%);
  z-index: -1;
}

.glow-button:hover {
  transform: scale(1.05);
}

.outline-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 44px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  transition: all 0.2s ease;
}

.outline-button:hover {
  transform: scale(1.05);
  color: #ff6b35;
  border-color: #ff6b35;
}

.hero-carousel {
  margin-top: 32px;
  width: 100%;
  min-height: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-chip {
  border: 1px solid rgba(255, 79, 1, 0.25);
  background: rgba(255, 79, 1, 0.08);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.work-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -144px 0 80px;
}

.work-glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 500px;
  height: 1011px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ff4f01 0%,
    rgba(255, 79, 1, 0.2) 60%,
    transparent 100%
  );
  filter: blur(50px);
  z-index: -10;
}

.work-shell {
  position: relative;
  overflow: hidden;
  width: min(1100px, 90%);
  min-height: 750px;
  margin-top: 50px;
  padding: 2px;
  border: 0.2px solid #494949;
  border-radius: 24px;
  background: #000;
  backdrop-filter: blur(12.5px);
}

.animated-line {
  position: absolute;
  z-index: 0;
  background: radial-gradient(
    circle at center,
    #ff4f01 0%,
    rgba(249, 110, 55, 0.7) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border-radius: 50%;
  width: 90%;
  height: 90%;
  top: 0;
  left: 0;
  animation: go-around 6s linear infinite;
}

.work-inner {
  position: relative;
  z-index: 2;
  min-height: 750px;
  background: #000;
  border-radius: 24px;
  padding: 40px;
}

.small-heading {
  font-size: 18px;
  margin: 0;
}

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.select-wrap {
  position: relative;
}

.sort-button,
.tab-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(255, 79, 1, 0.06),
    rgba(255, 79, 1, 0.36),
    rgba(255, 79, 1, 0.06)
  );
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease;
}

.sort-button:hover,
.tab-list button:hover {
  transform: scale(1.05);
}

.sort-button {
  width: max-content;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 16px;
  font: 400 16px var(--font);
  line-height: 1.5;
}

.sort-button span {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.sort-button .work-sort-chevron {
  width: 16px;
  height: 16px;
  opacity: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sort-button.open .work-sort-chevron {
  transform: rotate(180deg);
}

.sort-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: 140px;
  background: #000;
  border: 1px solid #494949;
  border-radius: 12px;
  overflow: hidden;
}

.sort-menu.open {
  display: block;
}

.sort-menu button {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 10px 16px;
}

.sort-menu button:hover,
.sort-menu button.active {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.05);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tab-list button {
  background: linear-gradient(
    90deg,
    rgba(255, 79, 1, 0.1),
    rgba(255, 79, 1, 0.2),
    rgba(255, 79, 1, 0.1)
  );
  color: rgba(255, 255, 255, 0.7);
}

.tab-list button.active {
  background: linear-gradient(
    90deg,
    rgba(255, 79, 1, 0.2),
    rgba(255, 79, 1, 0.6),
    rgba(255, 79, 1, 0.2)
  );
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-top: 32px;
}

.project-card {
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.project-title-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.project-title-row img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.project-title-row strong {
  display: block;
  font-size: 14px;
}

.project-title-row p {
  margin: 4px 0 0;
  color: #d1d5db;
  font-size: 13px;
}

.project-tag {
  background: #fff;
  color: #cc3f00;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.company-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1152px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #000;
}

.company-carousel > p {
  text-align: center;
  font-size: 20px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-fade {
  position: absolute;
  top: 0;
  height: 100%;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.carousel-fade.left {
  left: 0;
  background: linear-gradient(to right, #000 70%, transparent);
}

.carousel-fade.right {
  right: 0;
  background: linear-gradient(to left, #000 70%, transparent);
}

.company-glow {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translateX(-50%);
  width: 465px;
  height: 331px;
  border-radius: 50%;
  filter: blur(125px);
  background: linear-gradient(180deg, #ff4f01, #7bc5c7);
}

.company-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  align-items: center;
  animation: scroll 25s linear infinite;
}

.company-item {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 24px;
  flex-shrink: 0;
}

.company-item img {
  width: max-content;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.spark {
  width: 17px;
  height: 10px;
  background: #fff;
  opacity: 0.9;
  clip-path: polygon(
    39% 0,
    58% 32%,
    100% 39%,
    65% 64%,
    61% 100%,
    42% 72%,
    0 64%,
    31% 43%
  );
}

.section,
.section-wide,
.section-left {
  position: relative;
  margin: 96px auto;
  padding: 0 16px;
  max-width: 1323px;
  text-align: center;
}

.section-wide {
  max-width: 1300px;
}

.section-left {
  text-align: left;
}

.subtext {
  display: flex;
  width: max-content;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--orange);
  background: linear-gradient(
    90deg,
    rgba(255, 79, 1, 0.12),
    rgba(255, 79, 1, 0.12),
    rgba(255, 79, 1, 0.12)
  );
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(255, 255, 255, 0.1);
}

.section-left .subtext {
  margin-left: 0;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 32px;
  font-weight: 700;
}

.section-lede {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.55;
  color: #fff;
  margin: 0 auto 64px;
  max-width: 1000px;
}

.section-lede.left {
  margin-left: 0;
  max-width: 960px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #666;
  border-radius: 48px;
  background: var(--glass);
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(17.5px);
}

.about-panel {
  text-align: left;
  padding: 50px;
}

.about-panel p {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.about-panel ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.about-panel li {
  display: flex;
  gap: 12px;
  font-size: 20px;
  line-height: 1.55;
}

.about-panel li:before {
  content: "?";
  color: var(--orange);
  font-weight: 700;
  font-size: 24px;
}

.panel-blur {
  position: absolute;
  left: -180px;
  top: -160px;
  width: 600px;
  height: 420px;
  background: linear-gradient(135deg, #ff4f01, #477a7a);
  filter: blur(80px);
  opacity: 0.7;
}

.services-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
  text-align: left;
}

.service-row {
  display: grid;
  gap: 42px;
}

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

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

.lead-card,
.bento-card,
.service-card,
.why-card,
.process-card,
.case-card,
.testimonial-card,
.faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #666;
  background: var(--glass);
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(17.5px);
}

.lead-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border-radius: 48px;
  padding: 50px 24px;
  background: rgba(255, 255, 255, 0.05);
}

.lead-card h3 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
  margin: 0;
  max-width: 390px;
}

.lead-card p {
  font-size: 24px;
  line-height: 1.45;
}

.lead-card img {
  width: 96px;
  height: 96px;
}

.bento-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-radius: 48px;
  padding: 48px 24px;
  color: #fff;
  min-height: 100%;
}

.bento-card h3,
.service-card h3 {
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  margin: 0 0 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 200, 176, 0.36),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.circle-arrow {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 5px;
  font-size: 50px;
  flex: 0 0 auto;
}

.service-card {
  border-radius: 48px;
  padding: 30px;
  min-height: 410px;
}

.service-card:before,
.bento-card:before,
.lead-card:before,
.why-card:before,
.process-card:before,
.case-card:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 390px;
  height: 330px;
  background: linear-gradient(135deg, #ff560a, #ff4f01, #ffc8b0);
  filter: blur(70px);
  opacity: 0.42;
  pointer-events: none;
}

.service-card > * {
  position: relative;
}

.service-card .kicker {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 12px;
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(255, 79, 1, 0.12);
}

.dots {
  display: flex;
  gap: 8px;
  margin: 0 0 20px;
}

.dots span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.dots span:nth-child(1) {
  background: var(--orange);
}

.dots span:nth-child(2) {
  background: #ffc8b0;
}

.dots span:nth-child(3) {
  background: #ffede6;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0 20px;
}

.case-section h2,
.video-testimonials h2,
.text-testimonials h2 {
  text-align: center;
}

.case-card {
  border-radius: 48px;
  margin-bottom: 48px;
  padding: 32px;
  text-align: left;
}

.case-card .category {
  font-size: 12px;
}

.case-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-direction: row;
}

.case-copy {
  width: 60%;
}

.case-copy h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
  margin: 24px 0;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
}

.icon-row span {
  width: 58px;
  height: 58px;
  margin-left: -10px;
  border: 3px solid #000;
  border-radius: 12px;
  background: #333030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-row img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.case-visual {
  width: 38%;
  position: relative;
}

.case-visual img {
  border-radius: 16px;
  margin-top: 44px;
  width: 100%;
  height: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
}

.video-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-col:nth-child(2) {
  margin-top: 64px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a1a;
  height: 496px;
}

.video-card.small {
  height: 356px;
}

.video-card.tall {
  height: 601px;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.video-controls {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.video-controls .stars {
  letter-spacing: 1px;
  color: var(--orange);
}

.video-card h3 {
  margin: 4px 0;
  font-size: 18px;
}

.video-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.icon-button {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
}

.play-toggle {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.process-card {
  min-height: 500px;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 24px;
  flex: 1 1 42%;
  text-align: left;
}

.process-card:nth-child(1),
.process-card:nth-child(4) {
  flex-basis: 50%;
}

.process-card h3 {
  font-size: 24px;
  margin: 0 0 20px;
}

.process-card p {
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}

.process-card img {
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  border-radius: 48px;
  padding: 32px;
  min-height: 260px;
  text-align: left;
}

.why-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.why-card.stack {
  grid-column: span 2;
}

.why-card.half {
  grid-column: span 2;
}

.why-card img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: clamp(24px, 3vw, 40px);
  margin: 0 0 16px;
}

.why-card.large h3 {
  font-size: clamp(32px, 5vw, 70px);
}

.why-card p {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.6;
}

.text-testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: auto;
  text-align: left;
}

.text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-col:nth-child(1) {
  margin-top: 64px;
}

.text-col:nth-child(2) {
  margin-top: 128px;
}

.testimonial-card {
  border-radius: 16px;
  padding: 24px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.stars {
  color: var(--orange);
  font-size: 20px;
  letter-spacing: 2px;
}

.single-review {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 16px;
}

.review-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 572px;
  height: 300px;
  border-radius: 50%;
  filter: blur(200px);
  background: linear-gradient(
    113deg,
    rgba(255, 79, 1, 0.5),
    rgba(255, 79, 1, 0.25)
  );
}

.single-review blockquote {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 32px;
  font-size: clamp(18px, 3vw, 30px);
  line-height: 1.6;
  font-weight: 500;
}

.review-author {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong,
.review-author span {
  display: block;
  text-align: left;
}

.review-author span {
  color: #9ca3af;
  font-size: 12px;
}

.faq-section {
  position: relative;
  padding: 80px 16px;
  text-align: center;
}

.faq-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(36px, 5vw, 52px);
}

.faq-section h2 em {
  color: var(--orange);
  font-style: normal;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto 48px;
  text-align: left;
}

.faq-card {
  border-radius: 28px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  padding: 32px;
}

.faq-head {
  display: flex;
  gap: 16px;
}

.faq-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 1, 0.4);
  background: rgba(255, 79, 1, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.45);
}

.faq-card h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.faq-card p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.centered {
  width: max-content;
  margin: 0 auto;
}

.contact-form {
  padding: 48px;
  margin-top: 64px;
  text-align: left;
}

.contact-form:before {
  content: "";
  position: absolute;
  left: -220px;
  top: -180px;
  width: 600px;
  height: 420px;
  background: linear-gradient(135deg, #ff4f01, #477a7a);
  filter: blur(80px);
  opacity: 0.7;
}

.contact-form > * {
  position: relative;
}

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

.contact-form input,
.contact-form textarea,
.select-button,
.phone-row {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(107, 114, 128, 0.6);
  padding: 18px 4px;
  outline: 0;
  font-size: clamp(15px, 2vw, 24px);
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.phone-row:focus-within {
  border-color: var(--orange);
}

.contact-form textarea {
  resize: none;
  line-height: 1.45;
}

.phone-row {
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.country-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: #d1d5db;
  padding-right: 12px;
  white-space: nowrap;
}

.phone-row input {
  border: 0;
  padding-left: 14px;
}

.country-menu,
.option-menu {
  display: none;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  z-index: 40;
}

.country-menu.open,
.option-menu.open {
  display: block;
}

.country-menu {
  position: absolute;
  width: 320px;
  max-height: 300px;
  overflow: auto;
}

.country-menu button,
.option-menu button {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 10px 14px;
}

.country-menu button:hover,
.option-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.custom-selects {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.select-label {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(15px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.82);
}

.select-wrap-form {
  position: relative;
}

.select-button {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.option-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 8px;
}

.privacy-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  color: #d1d5db;
  line-height: 1.55;
}

.privacy-row input {
  width: 20px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.privacy-row a {
  color: var(--orange);
}

.form-submit {
  display: flex;
  margin: 36px auto 0;
  max-width: 300px;
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ── Form validation states ── */
.lf-field {
  position: relative;
}

.field-err {
  display: block;
  margin-top: 8px;
  color: #ff6b6b;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.4;
}

.contact-form input.field-invalid,
.contact-form textarea.field-invalid,
.select-button.field-invalid,
.phone-row.field-invalid {
  border-bottom-color: #ff6b6b;
}

.privacy-row.field-invalid {
  color: #ff8a8a;
}

.privacy-row.field-invalid input {
  accent-color: #ff6b6b;
  outline: 1px solid #ff6b6b;
}

.form-success {
  text-align: center;
  padding: 40px 16px;
  color: #fff;
  outline: 0;
}

.form-success-tick {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.form-success h3 {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
}

.sitemap-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px;
}

.sitemap-section > div:not(.sitemap-top) {
  border-top: 0;
}

.sitemap-top {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-bottom: 32px;
}

.sitemap-top div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sitemap-top span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.sitemap-top h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sitemap-top a {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.sitemap-group {
  margin-bottom: 32px;
}

.sitemap-group h3 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 12px;
}

.sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.sitemap-group a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.sitemap-group a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section {
  margin: 30px 0 100px;
  padding: 0 24px;
}

.footer-hero {
  position: relative;
  overflow: hidden;
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 150px;
  height: 138px;
  border-radius: 50%;
  background: #fff;
  filter: blur(45px);
  z-index: 1;
}

.footer-hero img {
  position: absolute;
  bottom: -20px;
  width: 15vw;
  height: 15vw;
  object-fit: contain;
  opacity: 0.7;
}

.stroke-text {
  position: relative;
  z-index: 2;
  color: #121212;
  text-align: center;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
  font-size: 15vw;
  font-weight: 900;
  line-height: 1.2;
}

.footer-content {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 50px auto 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer-brand strong {
  font-size: 48px;
}

.copyright {
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong {
  font-size: 24px;
}

.footer-links a {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links img {
  width: 48px;
  height: 48px;
}

.reveal {
  animation: fadeScale 0.5s ease-out both;
}

.reveal-down {
  animation: slideDown 0.6s ease-out both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

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

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }

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

@keyframes heroStarPop {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes go-around {
  0% {
    transform: translate(0, -50%);
  }

  25% {
    transform: translate(100%, -50%);
  }

  50% {
    transform: translate(100%, 50%);
  }

  75% {
    transform: translate(0, 50%);
  }

  100% {
    transform: translate(0, -50%);
  }
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

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

  .nav-cta {
    margin-left: auto;
  }

  .site-header.scrolled .nav-frame {
    border-radius: 34px;
  }

  .drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.55);
    backdrop-filter: blur(12px) saturate(1.4);
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.4s ease;
  }

  .drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 10001;
    flex-direction: column;
    background: #0a0a0a;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.52s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
  }

  .mobile-drawer.open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .drawer-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
  }

  .drawer-header img {
    width: 40px;
    height: 40px;
  }

  .drawer-header button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 28px;
  }

  .drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 24px 16px 16px;
  }

  .drawer-title {
    padding: 0 12px;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .drawer-link,
  .drawer-expand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 16px 12px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
  }

  .drawer-link:hover,
  .drawer-expand:hover {
    background: rgba(255, 79, 1, 0.05);
  }

  .drawer-sub {
    display: none;
    padding-left: 12px;
  }

  .drawer-sub.open {
    display: block;
  }

  .drawer-sub a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .drawer-sub a:hover {
    background: rgba(255, 79, 1, 0.05);
  }

  .drawer-sub strong {
    font-size: 15px;
  }

  .drawer-sub span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
  }

  .drawer-group-label {
    padding: 10px 12px 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 79, 1, 0.6);
  }

  .drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6), #0a0a0a);
  }

  .outline-action,
  .solid-action {
    display: flex;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 600;
  }

  .outline-action {
    border: 1.5px solid rgba(255, 255, 255, 0.12);
  }

  .solid-action {
    background: var(--orange);
    color: #000;
  }

  .drawer-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 20px;
  }

  .drawer-footer a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
  }

  .drawer-footer span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
  }

  .mega-panel {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-section {
    margin: 140px auto;
  }

  .hero-section h1 {
    line-height: 1.25;
  }

  .hero-actions {
    flex-direction: column;
  }

  .work-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .project-card > img {
    height: 120px;
  }

  .service-row.two,
  .service-row.three,
  .form-row,
  .faq-grid,
  .text-testimonial-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .lead-card,
  .bento-card {
    border-radius: 24px;
    padding: 28px;
    align-items: flex-start;
  }

  .bento-card {
    gap: 18px;
  }

  .circle-arrow {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .service-card {
    border-radius: 24px;
  }

  .case-layout {
    flex-direction: column-reverse;
  }

  .case-copy,
  .case-visual {
    width: 100%;
  }

  .video-col:nth-child(2),
  .text-col:nth-child(1),
  .text-col:nth-child(2) {
    margin-top: 0;
  }

  .process-grid {
    gap: 24px;
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(4) {
    flex: 1 1 100%;
  }

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

  .why-card.large,
  .why-card.stack,
  .why-card.half {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .form-row {
    gap: 24px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-hero {
    height: 18vh;
  }

  .footer-hero img {
    width: 25vw;
    height: 25vw;
  }

  .social-links img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    display: none;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .about-panel {
    padding: 25px;
    border-radius: 20px;
  }

  .about-panel p,
  .about-panel li {
    font-size: 16px;
  }

  .section,
  .section-wide,
  .section-left {
    margin: 72px auto;
  }

  .company-carousel {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .work-section {
    margin-top: -120px;
  }

  .work-inner {
    padding: 20px;
  }

  .project-grid {
    gap: 24px 16px;
  }

  .project-card > img {
    height: 100px;
  }

  .project-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    font-size: 15px;
  }

  .tab-list {
    gap: 10px;
  }

  .tab-list button,
  .sort-button {
    padding: 9px 14px;
  }

  .faq-card {
    padding: 22px;
  }

  .faq-head {
    flex-direction: column;
  }

  .footer-brand strong {
    font-size: 36px;
  }

  .copyright,
  .footer-links a {
    font-size: 18px;
  }

  .stroke-text {
    -webkit-text-stroke-width: 2px;
  }

  .video-card,
  .video-card.small,
  .video-card.tall {
    height: 430px;
  }
}

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

/* Fidelity pass: restore SVG icon sizing and original carousel/vector behavior */
.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.arrow-svg {
  width: 16px;
  height: 15px;
  transition: transform 0.3s ease;
}

.gradient-button:hover .arrow-svg,
.glow-button:hover .arrow-svg {
  transform: rotate(45deg);
}

.chevron-svg {
  width: 12px;
  height: 12px;
  opacity: 0.65;
}

.desktop-nav .mega-trigger {
  gap: 6px;
}

.hero-carousel {
  position: relative;
  max-width: 100%;
  margin: 32px auto 0;
  overflow: hidden;
  display: block;
  min-height: 24px;
}

.hero-carousel-inner {
  display: flex;
  width: max-content;
  animation: carousel 20s linear infinite;
}

.hero-carousel:before,
.hero-carousel:after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-carousel:before {
  left: 0;
  background: linear-gradient(to right, #000 70%, transparent);
}

.hero-carousel:after {
  right: 0;
  background: linear-gradient(to left, #000 70%, transparent);
}

.hero-carousel-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-carousel-item img {
  width: 24px;
  height: 24px;
}

.hero-carousel-item span {
  font-size: 16px;
  color: #fff;
}

.video-card .icon-button,
.video-card .play-toggle {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.video-card .icon-button svg,
.video-card .play-toggle svg {
  width: 48px;
  height: 48px;
}

.circle-arrow svg {
  width: 100%;
  height: 100%;
}

.vector {
  position: absolute;
  pointer-events: none;
  display: none;
}

.left-vector {
  top: -40px;
  width: 430px;
  height: 672px;
}

.right-vector {
  top: 200px;
  right: 0;
  width: 269px;
  height: 543px;
}

@media (min-width: 768px) {
  .vector {
    display: block;
  }

  .left-vector {
    left: -300px;
  }

  .right-vector {
    right: 0;
  }
}

@media (min-width: 1024px) {
  .left-vector {
    left: -48px;
  }
}

@media (min-width: 768px) {
  .hero-carousel {
    max-width: 576px;
    margin-top: 24px;
  }

  .hero-carousel:before,
  .hero-carousel:after {
    width: 64px;
  }
}

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

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

.mini-stars span {
  background: transparent;
  clip-path: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-stars span svg {
  width: 15px;
  height: 15px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
}

.stars .svg-icon {
  width: 20px;
  height: 19px;
}

.single-review > .stars {
  justify-content: center;
}

.solid-action .arrow-svg {
  width: 13px;
  height: 13px;
}

.solid-action .arrow-svg path {
  fill: currentColor;
}

/* Fidelity pass: match React bento buttons and About check artwork */
.bento-card:before {
  display: none;
}

.bento-card {
  background: rgba(0, 0, 0, 0.18);
}

.about-panel li:before {
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"%3E%3Cpath d="M21.2752 1.90537C18.1114 4.64362 15.4346 7.25024 12.984 10.6511C11.9032 12.1511 10.7014 13.9166 9.91573 15.5835C9.46723 16.4674 8.65873 17.8485 8.3831 19.1764C6.8756 17.7739 5.25635 16.182 3.5996 14.9351C2.41873 14.0467 -0.982523 15.858 0.401977 16.8997C2.88335 18.7661 4.94698 21.0907 7.36048 23.0404C8.36998 23.8549 10.6072 22.086 11.133 21.3439C12.8587 18.8989 13.0946 15.9101 14.3524 13.2431C16.2727 9.16424 19.6785 5.81362 23.0411 2.90399C25.269 0.826116 22.968 0.442866 21.2786 1.90537" fill="%23FF4F01"/%3E%3C/svg%3E');
}

.about-panel li {
  align-items: flex-start;
}

/* Nav fidelity fix: remove misplaced top-center glow, soften nav border, match React scroll motion */
.top-blur {
  display: none !important;
}

.desktop-nav {
  border-color: rgba(255, 255, 255, 0.06) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25) !important;
}

.desktop-nav:after {
  left: 24px !important;
  bottom: -38px !important;
  background: linear-gradient(
    180deg,
    rgba(255, 79, 1, 0.9),
    rgba(255, 79, 1, 0.9)
  ) !important;
}

.site-header:not(.scrolled) .nav-frame {
  animation: navFadeIn 0.3s ease-in-out both;
}

.site-header.scrolled .nav-frame {
  animation: navZoomIn 0.3s ease-out both;
  background: #181818f9 !important;
  border: 0 !important;
}

.site-header.scrolled .desktop-nav {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header.scrolled .desktop-nav:after {
  display: none !important;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes navZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Nav CTA fix: prevent the consultation button from compressing in the header */
.nav-cta {
  flex: 0 0 auto !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  padding: 10px 15px !important;
  gap: 10px !important;
}

.nav-cta span:last-child {
  white-space: nowrap;
  font-size: 16px !important;
}

.nav-cta .arrow-svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.site-header.scrolled .nav-cta span:last-child {
  font-size: clamp(0.9rem, 3vw, 0.95rem) !important;
}

@media (min-width: 1024px) {
  .nav-cta {
    padding: 15px 20px !important;
  }
}

/* Keep the header CTA visible on tablet/mobile, matching the React navbar. */
@media (max-width: 1180px) {
  .nav-cta {
    display: flex !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 767px) {
  .nav-frame {
    gap: 8px !important;
  }

  .nav-cta .arrow-svg,
  .nav-cta .arrow-icon {
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
  }
}

/* Primary CTA SVG background fidelity: match React GlowButton */
.glow-button {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 12px !important;
  isolation: isolate;
}

.glow-button:before {
  display: none !important;
}

.glow-button-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-button-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.glow-button .arrow-svg,
.glow-button .svg-icon:not(.glow-button-bg svg) {
  position: relative;
  z-index: 1;
}

.glow-button span:not(.glow-button-bg):not(:first-child) {
  position: relative;
  z-index: 1;
}

.form-submit {
  border: 0 !important;
}

.solid-action {
  gap: 8px;
}

/* Services bento fidelity: match React DynamicServices layout and card rhythm */
.services-section {
  max-width: 1323px;
}

.services-grid {
  gap: 24px;
}

.service-row {
  gap: 24px;
}

.service-row.two,
.service-row.three {
  align-items: stretch;
}

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

.service-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.service-stack .bento-card {
  flex: 1;
}

.lead-card {
  min-height: 100%;
  padding: 50px 24px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(79px);
  border-color: #666;
}

.lead-card h3 {
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.1;
  font-weight: 500;
  max-width: 390px;
}

.lead-card p {
  font-size: 24px;
  line-height: 1.35;
  margin: 24px 0;
}

.lead-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.bento-card {
  min-height: 100%;
  padding: 24px 16px;
  border-radius: 48px;
  background: transparent !important;
  border: 1px solid #666;
  box-shadow: none !important;
  backdrop-filter: blur(79px);
}

.bento-card h3 {
  font-size: clamp(40px, 4.4vw, 50px);
  line-height: 1.08;
  font-weight: 600;
  max-width: 400px;
  margin-bottom: 20px;
}

.bento-card .tag-list {
  max-width: 100%;
  margin-top: 20px;
}

.circle-arrow {
  width: 105px;
  height: 105px;
  min-width: 105px;
}

.service-card {
  height: 100%;
  min-height: 100%;
  padding: 30px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid #666;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
  backdrop-filter: blur(17.5px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card h3 {
  font-size: clamp(40px, 4.4vw, 50px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

.service-card .kicker {
  margin: 0;
  width: max-content;
  background: linear-gradient(
    90deg,
    rgba(255, 79, 1, 0.12) 0.13%,
    rgba(255, 79, 1, 0.12) 51.89%,
    rgba(255, 79, 1, 0.12) 104.45%
  );
}

.service-card .divider {
  margin: 0;
}

.service-card .tag-list {
  margin-top: 0;
}

.service-card:before,
.lead-card:before {
  display: block !important;
}

.bento-card:before {
  display: none !important;
}

.tag {
  font-size: 0.8rem;
  padding: 8px 10px;
  margin: 1px;
}

.services-grid .glow-button {
  width: max-content;
}

@media (min-width: 1024px) {
  .services-grid {
    gap: 42px;
  }

  .service-row {
    gap: 42px;
  }

  .service-stack {
    gap: 24px;
  }

  .bento-card {
    padding: 48px 24px;
  }

  .service-card {
    padding: 30px;
  }

  .circle-arrow {
    width: 105px;
    height: 105px;
    min-width: 105px;
  }
}

@media (max-width: 900px) {
  .service-row.two,
  .service-row.three {
    grid-template-columns: 1fr;
  }

  .service-stack {
    gap: 24px;
  }

  .lead-card,
  .bento-card,
  .service-card {
    border-radius: 24px;
  }

  .circle-arrow {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .bento-card h3,
  .service-card h3 {
    font-size: 40px;
  }

  .lead-card h3 {
    font-size: 40px;
  }

  .lead-card p {
    font-size: 20px;
  }
}

/* Services bento correction: do not force every BentoButton to full section height */
.services-section {
  position: relative;
}

.services-section:before {
  content: "";
  position: absolute;
  top: 700px;
  left: -100px;
  width: 572px;
  height: 391px;
  border-radius: 9999px;
  background: linear-gradient(
    113deg,
    #ff4f01 7.22%,
    rgba(255, 79, 1, 0.5) 113.72%
  );
  filter: blur(250px);
  pointer-events: none;
  z-index: 0;
}

.services-section > .subtext,
.services-section > h2,
.services-section > .section-lede,
.services-section > .services-grid {
  position: relative;
  z-index: 1;
}

.services-grid {
  overflow: hidden;
}

.bento-card {
  height: auto !important;
  min-height: 0 !important;
}

.service-stack {
  height: auto !important;
  align-self: stretch !important;
  justify-content: stretch !important;
}

.service-stack .bento-card {
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
}

.bento-card h3 {
  line-height: 1.25 !important;
}

.lead-card {
  height: 100% !important;
  min-height: 100% !important;
  gap: 8px !important;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .bento-card h3,
  .service-card h3 {
    font-size: 60px !important;
  }
}

@media (min-width: 1280px) {
  .bento-card h3,
  .service-card h3 {
    font-size: 50px !important;
  }
}

/* TagButton fidelity inside services bento */
.services-grid .tag-list {
  gap: 0 !important;
}

.services-grid .tag {
  margin: 4px !important;
  line-height: 1.5 !important;
}

/* React xl breakpoint parity for services grid */
.services-grid .service-row.two,
.services-grid .service-row.three {
  grid-template-columns: 1fr !important;
}

@media (max-width: 1023px) {
  .services-grid .bento-card h3,
  .services-grid .service-card h3 {
    font-size: 40px !important;
  }
}

@media (min-width: 1280px) {
  .services-grid .service-row.two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .services-grid .service-row.three {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* First services card content alignment: match React my-auto copy block */
.services-grid .lead-card {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
}

.services-grid .lead-card > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  margin-top: auto !important;
  margin-bottom: auto !important;
  text-align: left !important;
  position: relative;
  z-index: 1;
}

.services-grid .lead-card h3,
.services-grid .lead-card p {
  text-align: left !important;
}

.services-grid .lead-card .glow-button {
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-self: flex-start !important;
}

.services-grid .lead-card > img {
  position: relative;
  z-index: 1;
  flex: 0 0 auto !important;
}

/* Homepage QA fidelity pass: section-specific spacing and card structure */
.hero-actions .outline-button {
  height: 40px !important;
}

.about-section h2 {
  margin-bottom: 64px !important;
}

.about-panel {
  margin-top: 48px !important;
  border-color: #fff !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
}

.about-panel p {
  font-size: 22px !important;
  line-height: 1.625 !important;
  margin-bottom: 16px !important;
}

.about-panel li {
  font-size: 22px !important;
  line-height: 1.625 !important;
  gap: 12px !important;
  align-items: center !important;
}

.about-panel li:before {
  margin-top: 4px !important;
}

.work-inner {
  min-height: 750px !important;
}

.project-grid {
  gap: 32px !important;
}

.project-meta {
  gap: 12px !important;
}

.project-title-row strong {
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.project-title-row p {
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.project-tag {
  font-size: 14px !important;
  line-height: 1.25 !important;
  min-width: max-content !important;
}

.case-section.section-wide {
  max-width: none !important;
  padding: 0 32px !important;
  margin: 96px auto !important;
}

.case-card {
  max-width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 32px !important;
  border-radius: 48px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
}

.case-card .category {
  display: block;
  margin-bottom: 24px !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.case-layout {
  gap: 32px !important;
  align-items: flex-start !important;
}

.case-copy {
  width: 60vw !important;
  max-width: 760px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.case-copy h3 {
  font-size: 36px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

.case-copy .divider {
  margin: 0 !important;
}

.case-copy .tag-list {
  max-width: 50% !important;
  gap: 16px !important;
  margin: 0 !important;
}

.case-copy br {
  display: none !important;
}

.case-copy .glow-button {
  align-self: flex-end !important;
  margin-top: -58px !important;
}

.case-visual {
  width: 35vw !important;
  max-width: 420px !important;
  margin-top: 10px !important;
  position: relative !important;
}

.case-visual img {
  margin-top: 48px !important;
  border-radius: 16px !important;
}

.video-testimonials.section-wide {
  max-width: none !important;
  margin: 0 auto !important;
  padding: 96px 48px !important;
}

.video-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 20px !important;
}

.video-col {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  gap: 16px !important;
}

.video-col:nth-child(2) {
  margin-top: 64px !important;
}

.video-card {
  margin-top: 0 !important;
  border-radius: 16px !important;
}

.video-card.small {
  height: 356px !important;
}

.video-card {
  height: 496px !important;
}

.video-card.tall {
  height: 601px !important;
}

.how-section.section-left {
  max-width: 1300px !important;
  margin: 96px auto !important;
  padding: 32px 48px !important;
}

.how-section h2,
.how-section h1 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

.how-section .section-lede {
  margin-top: 20px !important;
  margin-bottom: 64px !important;
  font-size: 24px !important;
  line-height: 1.5 !important;
}

.process-grid {
  max-width: 1000px !important;
  gap: 48px !important;
  justify-content: center !important;
  align-items: center !important;
}

.process-card {
  min-height: 500px !important;
  padding: 24px !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) !important;
}

.process-card:nth-child(1),
.process-card:nth-child(4) {
  flex: 0 1 50% !important;
}

.process-card:nth-child(2),
.process-card:nth-child(3) {
  flex: 0 1 40% !important;
}

.process-card h3 {
  font-size: 24px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

.process-card p {
  font-size: 18px !important;
  line-height: 40px !important;
  opacity: 0.8 !important;
}

.why-section.section-left {
  max-width: 1300px !important;
  margin: 96px auto !important;
  padding: 32px 48px !important;
}

.why-section h2 {
  margin-top: 0 !important;
  margin-bottom: 64px !important;
  text-align: left !important;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  max-width: 1300px !important;
}

.why-card {
  padding: 32px !important;
  border-radius: 48px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
}

.why-card:nth-child(-n + 3) {
  border-color: #000 !important;
}

.why-card:nth-child(n + 4) {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.why-card img {
  width: 128px !important;
  height: 128px !important;
  margin-bottom: 24px !important;
}

.why-card h3 {
  margin: 0 0 16px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}

.why-card p {
  font-size: 18px !important;
  line-height: 1.625 !important;
  color: #d1d5db !important;
}

.text-testimonials.section-wide {
  max-width: none !important;
  margin: 96px auto !important;
  padding: 32px 24px !important;
  overflow: hidden !important;
}

.text-testimonial-grid {
  max-width: 1152px !important;
  gap: 24px !important;
}

.text-col {
  gap: 24px !important;
}

.text-col:nth-child(1) {
  margin-top: 64px !important;
}

.text-col:nth-child(2) {
  margin-top: 128px !important;
}

.text-col:nth-child(3) {
  margin-top: 0 !important;
}

.testimonial-card {
  border-radius: 16px !important;
  border-color: #666 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
  padding: 24px !important;
}

.testimonial-card p {
  font-size: 18px !important;
  line-height: 1.625 !important;
}

.faq-section {
  padding: 64px 32px 80px !important;
  margin: 0 !important;
  position: relative !important;
}

.faq-section h2 {
  font-size: 48px !important;
  line-height: 1.5 !important;
  letter-spacing: 0.18em !important;
  margin-bottom: 48px !important;
}

.faq-grid {
  max-width: 1152px !important;
  gap: 24px !important;
  margin-bottom: 48px !important;
}

.faq-card {
  position: relative !important;
  padding: 32px !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 1px 24px rgba(255, 255, 255, 0.08) inset !important;
  backdrop-filter: blur(20px) !important;
}

.faq-card:before {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  top: 0 !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 79, 1, 0.6),
    transparent
  ) !important;
  box-shadow: 0 0 20px rgba(255, 79, 1, 0.35) !important;
  display: block !important;
}

.faq-number {
  width: 56px !important;
  height: 56px !important;
}

.faq-card .label {
  margin: 0 0 12px !important;
}

.faq-card h3 {
  font-size: 24px !important;
  line-height: 1.25 !important;
  margin: 0 !important;
}

.faq-card p {
  font-size: 16px !important;
  line-height: 28px !important;
  margin: 0 !important;
}

.contact-section.section-wide {
  max-width: 1300px !important;
  margin: 96px auto !important;
  padding: 0 48px !important;
}

.contact-section h2 {
  margin-top: 16px !important;
  margin-bottom: 4px !important;
}

.contact-form {
  max-width: 1300px !important;
  margin-top: 96px !important;
  margin-bottom: 48px !important;
  padding: 40px !important;
  border-radius: 48px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
}

.contact-form:after {
  content: "";
  display: block;
  height: 48px;
}

.contact-form input,
.contact-form textarea,
.select-button,
.phone-row {
  font-size: 24px !important;
  padding: 12px 4px !important;
}

.form-row {
  gap: 96px !important;
}

.custom-selects {
  gap: 24px !important;
  margin-top: 40px !important;
}

.privacy-row {
  margin-top: 40px !important;
}

.form-submit {
  margin-top: 40px !important;
}

.sitemap-section {
  max-width: 1300px !important;
  padding: 48px 24px !important;
}

.sitemap-top {
  padding-top: 40px !important;
  margin-bottom: 32px !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-section {
  margin: 100px 0 !important;
  padding: 0 24px !important;
}

.footer-hero {
  height: 25vh !important;
}

.footer-line {
  margin: 90px auto !important;
}

.footer-content {
  max-width: 1300px !important;
}

.footer-links a {
  font-size: 24px !important;
}

.social-links img {
  width: 48px !important;
  height: 48px !important;
}

@media (max-width: 1279px) {
  .case-copy {
    width: 60% !important;
  }

  .case-visual {
    width: 35% !important;
  }
}

@media (max-width: 900px) {
  .about-section h2 {
    margin-bottom: 32px !important;
  }

  .about-panel {
    margin-top: 24px !important;
  }

  .about-panel p,
  .about-panel li {
    font-size: 16px !important;
  }

  .case-section.section-wide,
  .video-testimonials.section-wide,
  .how-section.section-left,
  .why-section.section-left,
  .contact-section.section-wide {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .case-copy,
  .case-visual {
    width: 100% !important;
    max-width: none !important;
  }

  .case-copy .tag-list {
    max-width: 100% !important;
  }

  .case-copy .glow-button {
    align-self: flex-start !important;
    margin-top: 0 !important;
  }

  .video-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    flex: 1 1 100% !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-section h2 {
    font-size: 40px !important;
    line-height: 1.2 !important;
  }

  .contact-form {
    margin-top: 48px !important;
    padding: 24px !important;
  }

  .contact-form input,
  .contact-form textarea,
  .select-button,
  .phone-row {
    font-size: 18px !important;
  }

  .footer-section {
    margin: 30px 0 100px !important;
  }
}

/* QA follow-up: prevent mobile service-card width pressure and match lower-section vertical rhythm */
.services-grid .lead-card,
.services-grid .bento-card,
.services-grid .service-card {
  min-width: 0 !important;
  max-width: 100% !important;
}

.services-grid .lead-card > div,
.services-grid .bento-card > div,
.services-grid .service-card > * {
  min-width: 0 !important;
}

.services-grid h3 {
  overflow-wrap: break-word !important;
}

.services-grid .service-row.two,
.services-grid .service-row.three {
  grid-template-columns: minmax(0, 1fr) !important;
}

@media (min-width: 1280px) {
  .services-grid .service-row.two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .services-grid .service-row.three {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.case-card {
  min-height: 529px !important;
}

.case-card:first-of-type {
  min-height: 554px !important;
}

.contact-form {
  padding: 136px 40px 88px !important;
}

.contact-form:after {
  display: none !important;
}

.sitemap-section {
  min-height: 1110px !important;
}

@media (max-width: 900px) {
  .case-card,
  .case-card:first-of-type {
    min-height: 0 !important;
  }

  .contact-form {
    padding: 24px !important;
  }

  .sitemap-section {
    min-height: 0 !important;
  }
}

/* Case study React decorations and video testimonial text alignment */
.case-card {
  overflow: hidden !important;
}

.case-visual {
  position: relative !important;
  overflow: visible !important;
}

.case-study-decoration {
  position: absolute !important;
  right: -35px !important;
  top: -30px !important;
  width: 515px !important;
  height: 356px !important;
  max-width: none !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.case-image-wrap {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 48px !important;
}

.case-image-wrap > img {
  margin-top: 0 !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  object-fit: cover !important;
}

.case-bottom-mark {
  position: relative !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px !important;
  border-radius: 10px !important;
  background: rgba(255, 79, 1, 0.1) !important;
  transform: translate(24px, 48px) !important;
}

.case-bottom-mark img {
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
}

.video-controls > div {
  text-align: left !important;
  align-items: flex-start !important;
}

.video-controls .stars {
  justify-content: flex-start !important;
}

.video-card h3,
.video-card p {
  text-align: left !important;
}

@media (max-width: 1023px) {
  .case-study-decoration {
    display: none !important;
  }

  .case-bottom-mark {
    transform: translate(24px, 24px) !important;
  }
}

/* Nav CTA icon rotation fidelity: prevent parent + SVG double-rotation */
.nav-cta .arrow-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: none !important;
  transform: none !important;
}

.nav-cta:hover .arrow-icon {
  transform: none !important;
}

.nav-cta:hover .arrow-svg {
  transform: rotate(45deg) !important;
}

/* Why Luminous first card fidelity */
.why-section.section-left {
  overflow: visible !important;
}

.why-grid:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 572px;
  height: 391px;
  border-radius: 999px;
  background: linear-gradient(
    113deg,
    #ff4f01 7.22%,
    rgba(255, 79, 1, 0.5) 113.72%
  );
  filter: blur(250px);
  pointer-events: none;
  z-index: -1;
}

.why-card {
  display: flex !important;
  min-height: 260px !important;
}

.why-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-card.large {
  border-color: #000 !important;
  min-height: 544px !important;
}

.why-card.large:before {
  display: none !important;
}

.why-card.large .why-card-content {
  height: 100%;
  justify-content: center !important;
}

.why-card.large p {
  font-size: 20px !important;
  line-height: 1.625 !important;
}

.why-main-gradient {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  width: 504px;
  height: 363px;
  max-width: none;
}

@media (max-width: 900px) {
  .why-grid:before {
    left: -40px;
    width: 572px;
    height: 391px;
  }

  .why-card.large {
    min-height: 360px !important;
  }

  .why-card.large p {
    font-size: 16px !important;
  }

  .why-main-gradient {
    width: 420px;
    height: auto;
    right: -120px;
  }
}

/* Full Why Luminous section parity with React SecondServices */
.why-section.section-left {
  width: 100% !important;
  max-width: none !important;
  margin: 96px 0 !important;
  padding: 32px max(16px, calc((100% - 1300px) / 2)) !important;
  overflow: visible !important;
  text-align: left !important;
}

.why-section .subtext {
  margin-left: 0 !important;
  margin-bottom: 18px !important;
}

.why-section h2 {
  width: 100% !important;
  margin: 0 0 64px !important;
  font-size: 64px !important;
  line-height: 96px !important;
  font-weight: 700 !important;
  text-align: left !important;
}

.why-grid {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}

.why-grid:before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: -40px !important;
  width: 572px !important;
  height: 391px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    113deg,
    #ff4f01 7.22%,
    rgba(255, 79, 1, 0.5) 113.72%
  ) !important;
  filter: blur(250px) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.why-left {
  grid-column: span 2 !important;
  grid-row: span 2 !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

.why-right-stack {
  grid-column: span 2 !important;
  grid-row: span 2 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  min-width: 0 !important;
}

.why-right-stack > .reveal-on-scroll {
  flex: 1 1 0 !important;
  display: flex !important;
  min-height: 0 !important;
}

.why-bottom-row {
  grid-column: span 4 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  min-width: 0 !important;
}

.why-bottom-row > .reveal-on-scroll {
  display: flex !important;
  min-width: 0 !important;
}

.why-card {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 32px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 48px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
  backdrop-filter: blur(17.5px) !important;
  overflow: hidden !important;
  text-align: left !important;
}

.why-card:before {
  display: none !important;
}

.why-left .why-card,
.why-right-stack .why-card {
  border-color: #000 !important;
}

.why-bottom-row .why-card {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.why-card-content {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.why-icon-wrap {
  margin: 0 0 24px !important;
  width: 128px !important;
  height: 128px !important;
  flex: 0 0 auto !important;
}

.why-card img {
  width: 128px !important;
  height: 128px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

.why-card h3 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: 36px !important;
  line-height: 54px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.why-card.large h3 {
  font-size: 70px !important;
  line-height: 105px !important;
}

.why-card p {
  margin: 0 !important;
  color: #d1d5db !important;
  font-size: 18px !important;
  line-height: 29.25px !important;
  font-weight: 400 !important;
}

.why-card.large p {
  font-size: 20px !important;
  line-height: 32.5px !important;
}

.why-main-gradient {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 0 !important;
  width: 504px !important;
  height: 363px !important;
  max-width: none !important;
  pointer-events: none !important;
}

.why-secondary-gradients,
.why-secondary-main,
.why-secondary-slim {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 0 !important;
  max-width: none !important;
  pointer-events: none !important;
}

.why-secondary-main {
  width: 374px !important;
  height: 333px !important;
}

.why-secondary-slim {
  width: 145px !important;
  height: 356px !important;
}

@media (max-width: 1279px) {
  .why-section h2 {
    font-size: 48px !important;
    line-height: 72px !important;
  }

  .why-card h3 {
    font-size: 30px !important;
    line-height: 45px !important;
  }

  .why-card.large h3 {
    font-size: 45px !important;
    line-height: 67.5px !important;
  }

  .why-icon-wrap,
  .why-card img {
    width: 96px !important;
    height: 96px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .why-section.section-left {
    margin: 96px 0 !important;
    padding: 32px 24px !important;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .why-left {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .why-right-stack {
    grid-column: auto !important;
    grid-row: auto !important;
    gap: 16px !important;
  }

  .why-bottom-row {
    grid-column: span 2 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .why-card {
    border-radius: 48px !important;
  }
}

@media (max-width: 767px) {
  .why-section.section-left {
    margin: 72px 0 !important;
    padding: 32px 16px !important;
  }

  .why-section h2 {
    font-size: 36px !important;
    line-height: 54px !important;
    margin-bottom: 24px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .why-left,
  .why-right-stack,
  .why-bottom-row {
    grid-column: auto !important;
    grid-row: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .why-card {
    border-radius: 20px !important;
    padding: 24px !important;
    min-height: 0 !important;
  }

  .why-card h3,
  .why-card.large h3 {
    font-size: 24px !important;
    line-height: 36px !important;
  }

  .why-card p,
  .why-card.large p {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .why-main-gradient {
    width: 420px !important;
    height: auto !important;
    right: -120px !important;
  }

  .why-grid:before {
    left: -40px !important;
    width: 572px !important;
    height: 391px !important;
  }
}

/* Why Luminous row-height correction: let stacked cards size like React */
.why-card.large {
  min-height: 0 !important;
}

.why-right-stack > .reveal-on-scroll {
  flex: 0 0 auto !important;
  display: block !important;
  min-height: 0 !important;
}

.why-bottom-row > .reveal-on-scroll {
  display: block !important;
}

/* Video testimonial width parity with React GridTestimonials */
.video-testimonials h2 {
  padding: 8px !important;
  font-size: 64px !important;
  line-height: 96px !important;
  margin-bottom: 64px !important;
}

@media (min-width: 1280px) {
  .video-col {
    flex: 0 0 400px !important;
    width: 400px !important;
    max-width: 400px !important;
  }

  .video-card {
    width: 100% !important;
    min-width: 400px !important;
  }
}

@media (max-width: 1279px) {
  .video-card {
    min-width: 0 !important;
  }
}

/* Mega menu CTA and chevron parity with React navbar */
.mega-feature-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  opacity: 0.7;
  z-index: 0;
}

.mega-feature > .eyebrow,
.mega-feature > h3,
.mega-feature > p,
.mega-feature > .mega-stat-grid,
.mega-feature > .mega-cta {
  position: relative;
  z-index: 1;
}

.mega-feature .eyebrow:before,
.mega-col-label:before {
  display: none !important;
}

.mega-feature .eyebrow span,
.mega-col-label span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 8px;
}

.mega-feature .eyebrow span {
  box-shadow: 0 0 0 6px rgba(255, 79, 1, 0.16);
}

.mega-col-label span {
  background: rgba(255, 79, 1, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 79, 1, 0.08);
}

.mega-stat-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mega-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    gap 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.mega-cta:hover {
  gap: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.mega-arrow-svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.mega-link-grid {
  display: grid;
  gap: 10px;
}

.chevron-svg {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
  opacity: 0.6;
}

.mega-trigger:hover .chevron-svg,
.mega-trigger:focus .chevron-svg,
.mega-trigger.mega-active .chevron-svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Case study background glow parity with React CaseStudyCard */
.case-card:before {
  display: none !important;
}

.case-card > .category,
.case-card > .case-layout {
  position: relative !important;
  z-index: 1 !important;
}

.case-bg-glow {
  position: absolute !important;
  top: 0 !important;
  max-width: none !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.case-bg-glow-left {
  left: 200px !important;
  width: 485px !important;
  height: 321px !important;
}

.case-bg-glow-right {
  right: 320px !important;
  width: 485px !important;
  height: 286px !important;
}

@media (max-width: 900px) {
  .case-bg-glow-left {
    left: 80px !important;
  }

  .case-bg-glow-right {
    right: 120px !important;
  }
}

/* How We Work card glow parity with React ServiceProcess */
.process-card:before {
  display: none !important;
}

.process-card {
  position: relative !important;
  overflow: hidden !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) !important;
}

.process-card h3,
.process-card p,
.process-card > img {
  position: relative !important;
  z-index: 2 !important;
}

.process-card h3 {
  margin: 0 !important;
}

.process-card p {
  margin: 0 0 16px !important;
}

.process-card > img {
  width: 100% !important;
  height: 220px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  bottom: -100px !important;
  object-fit: contain !important;
}

.process-glows {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.process-glow-left {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 206px !important;
  height: 220px !important;
  max-width: none !important;
}

.process-glow-right {
  position: absolute !important;
  right: 0 !important;
  top: -40px !important;
  width: 378px !important;
  height: 185px !important;
  max-width: none !important;
}

.process-glow-center {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 144px !important;
  height: 157px !important;
  background: #ffdcdc !important;
  filter: blur(70px) !important;
  z-index: -1 !important;
}

/* Text testimonial grid parity with React SecondTestimonialsContent */
.text-testimonials.section-wide {
  max-width: none !important;
  margin: 96px auto !important;
  padding: 32px 16px !important;
  overflow: visible !important;
}

.text-testimonials > .subtext {
  margin-bottom: 20px !important;
}

.text-testimonials h2 {
  font-size: 64px !important;
  line-height: 96px !important;
  margin-bottom: 0 !important;
}

.text-testimonial-grid {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  max-width: 1152px !important;
  margin: 48px auto 0 !important;
  text-align: left !important;
}

.text-col {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.text-col:nth-child(2) {
  margin-top: 64px !important;
}

.text-col:nth-child(3) {
  margin-top: 128px !important;
}

.text-col:nth-child(4) {
  margin-top: 0 !important;
}

.testimonial-card {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid #666 !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
  backdrop-filter: blur(20px) !important;
  padding: 24px !important;
  color: #fff !important;
}

.testimonial-content {
  position: relative !important;
  z-index: 1 !important;
}

.testimonial-copy {
  margin-bottom: 24px !important;
}

.testimonial-copy p {
  font-size: 18px !important;
  line-height: 1.625 !important;
  margin: 0 !important;
}

.testimonial-copy p + p {
  margin-top: 24px !important;
}

.testimonial-stars {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-bottom: 16px !important;
  color: var(--orange) !important;
  letter-spacing: 0 !important;
}

.testimonial-stars svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
}

.testimonial-author {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 0 !important;
}

.testimonial-author img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  overflow: hidden !important;
  flex: 0 0 40px !important;
}

.testimonial-author strong {
  display: block !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}

.testimonial-author span {
  display: block !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  opacity: 0.8 !important;
  color: #fff !important;
}

.testimonial-glow {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  max-width: none !important;
}

.testimonial-glow-even-left {
  top: 0 !important;
  left: 0 !important;
}

.testimonial-glow-even-right {
  top: 0 !important;
  right: 0 !important;
}

.testimonial-glow-odd {
  right: 0 !important;
  bottom: 0 !important;
}

.testimonial-glow svg {
  display: block !important;
  max-width: none !important;
}

.testimonial-center-decoration {
  position: absolute !important;
  left: 50% !important;
  top: -20px !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  width: 477px !important;
  height: 496px !important;
  pointer-events: none !important;
}

.testimonial-center-decoration svg {
  width: 477px !important;
  height: 496px !important;
  max-width: none !important;
}

.testimonial-center-decoration img {
  position: absolute !important;
  width: 100% !important;
  height: 220px !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -75%) !important;
  object-fit: contain !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .text-testimonials h2 {
    font-size: 40px !important;
    line-height: 1.2 !important;
  }

  .text-testimonial-grid {
    grid-template-columns: 1fr !important;
    margin-top: 48px !important;
  }

  .text-col:nth-child(2),
  .text-col:nth-child(3),
  .text-col:nth-child(4) {
    margin-top: 0 !important;
  }

  .testimonial-center-decoration {
    top: 250px !important;
  }

  .process-glow-right {
    right: -120px !important;
  }
}

/* How We Work card height parity with React */
.process-card {
  height: 500px !important;
  min-height: 500px !important;
  max-height: 500px !important;
}

/* How We Work bottom decorative SVG/image placement parity */
.process-card > img {
  position: absolute !important;
  left: 24px !important;
  right: auto !important;
  bottom: -100px !important;
  transform: none !important;
  width: 100% !important;
  height: 220px !important;
  margin: 0 !important;
  object-fit: contain !important;
  z-index: 2 !important;
}

/* Contact form and footer parity with React */
.contact-section.section-wide {
  max-width: 1300px !important;
  margin: 96px auto !important;
  padding: 0 48px !important;
  text-align: center !important;
}

.contact-section h2 {
  margin: 0 0 4px !important;
  font-size: 64px !important;
  line-height: 96px !important;
  font-weight: 700 !important;
}

.contact-section .section-lede {
  margin: 0 auto !important;
  font-size: 24px !important;
  line-height: 1.625 !important;
  color: #fff !important;
  max-width: 1000px !important;
}

.contact-form {
  position: relative !important;
  overflow: hidden !important;
  max-width: 1300px !important;
  margin: 96px auto 48px !important;
  padding: 136px 40px 88px !important;
  border: 1px solid #666 !important;
  border-radius: 48px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
  backdrop-filter: blur(17.5px) !important;
  text-align: left !important;
  color: #fff !important;
}

.contact-form:before,
.contact-form:after {
  display: none !important;
}

.contact-bg-blur {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 598px !important;
  height: 412px !important;
  max-width: none !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.contact-form > *:not(.contact-bg-blur) {
  position: relative !important;
  z-index: 1 !important;
}

.contact-form .form-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 96px !important;
}

.contact-form .form-row + textarea {
  margin-top: 40px !important;
}

.contact-form input,
.contact-form textarea,
.phone-row {
  width: 100% !important;
  background: transparent !important;
  color: #fff !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(107, 114, 128, 0.6) !important;
  padding: 12px 4px !important;
  outline: 0 !important;
  font-size: 24px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  transition: border-color 0.3s ease !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af !important;
  opacity: 1 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.phone-row:focus-within,
.select-button:focus {
  border-color: var(--orange) !important;
}

.contact-form textarea {
  resize: none !important;
  min-height: 108px !important;
}

.phone-row {
  display: flex !important;
  align-items: center !important;
  margin: 40px 0 !important;
}

.country-button {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  flex-shrink: 0 !important;
  padding: 12px 8px 12px 4px !important;
  border: 0 !important;
  background: transparent !important;
  color: #d1d5db !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}

.phone-row:before {
  content: "" !important;
  width: 1px !important;
  height: 24px !important;
  background: rgba(107, 114, 128, 0.4) !important;
  order: 2 !important;
  margin: 0 8px !important;
}

.phone-row input {
  order: 3 !important;
  border: 0 !important;
  padding: 12px 4px !important;
}

.country-button {
  order: 1 !important;
}

.custom-selects {
  display: grid !important;
  gap: 24px !important;
  margin-top: 40px !important;
}

.custom-selects > div {
  display: grid !important;
  gap: 8px !important;
}

.select-label {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 24px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

.custom-selects > div:first-child .select-label {
  color: #fff !important;
}

.select-button {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: space-between !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(107, 114, 128, 0.6) !important;
  background: transparent !important;
  color: #fff !important;
  padding: 12px 12px 12px 4px !important;
  text-align: left !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
}

.select-button b,
.country-button span {
  font-weight: 400 !important;
  color: #fff !important;
  transition: transform 0.2s ease !important;
}

.privacy-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-top: 40px !important;
  color: #d1d5db !important;
  font-size: 14px !important;
  line-height: 1.625 !important;
}

.privacy-row input {
  width: 20px !important;
  height: 20px !important;
  margin-top: 6px !important;
  accent-color: var(--orange) !important;
  flex: 0 0 20px !important;
}

.form-submit {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 300px !important;
  margin: 40px auto 0 !important;
}

.form-note {
  margin: 8px 0 0 !important;
  text-align: center !important;
  color: #9ca3af !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.contact-form .honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-section {
  margin: 100px 0 !important;
  padding: 0 24px !important;
}

.footer-hero {
  height: 25vh !important;
  min-height: calc(15vw * 1.32) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-glow {
  width: 150px !important;
  height: 138px !important;
  bottom: 0 !important;
  filter: blur(45.5px) !important;
  z-index: 20 !important;
}

.footer-hero img {
  width: 15vw !important;
  height: 15vw !important;
  bottom: -20px !important;
  z-index: 0 !important;
  opacity: 0.7 !important;
}

.stroke-text {
  position: relative !important;
  z-index: 20 !important;
  color: #121212 !important;
  text-align: center !important;
  -webkit-text-stroke-width: 3px !important;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5) !important;
  font-size: 15vw !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  padding: 0 !important;
}

@media (max-width: 1023px) {
  .contact-section.section-wide {
    padding: 0 16px !important;
  }

  .contact-section h2 {
    margin-top: 16px !important;
    font-size: 48px !important;
    line-height: 72px !important;
  }

  .contact-section .section-lede {
    font-size: 20px !important;
    line-height: 32.5px !important;
  }

  .contact-form {
    margin-top: 48px !important;
    padding: 60px 40px 64px !important;
    border-radius: 24px !important;
  }

  .contact-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .contact-form input,
  .contact-form textarea,
  .phone-row,
  .select-label {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .country-button,
  .select-button {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .contact-bg-blur {
    width: 598px !important;
    height: 412px !important;
  }

  .footer-section {
    margin: 30px 0 100px !important;
  }

  .footer-hero {
    height: 17vh !important;
    min-height: 0 !important;
  }

  .footer-hero img {
    width: 20vw !important;
    height: 20vw !important;
  }
}

@media (max-width: 767px) {
  .contact-section.section-wide {
    margin: 72px auto !important;
  }

  .contact-form {
    padding: 36px 16px 40px !important;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-form input,
  .contact-form textarea,
  .phone-row,
  .select-label {
    font-size: 14px !important;
    line-height: 21px !important;
  }

  .country-button,
  .select-button {
    font-size: 14px !important;
    line-height: 21px !important;
  }

  .contact-section h2 {
    font-size: 36px !important;
    line-height: 54px !important;
  }

  .contact-section .section-lede {
    font-size: 18px !important;
    line-height: 29.25px !important;
  }

  .footer-hero {
    height: 16vh !important;
  }

  .footer-hero img {
    width: 30vw !important;
    height: 30vw !important;
  }

  .stroke-text {
    -webkit-text-stroke-width: 3px !important;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .footer-hero {
    height: 25vh !important;
  }

  .footer-hero img {
    width: 20vw !important;
    height: 20vw !important;
  }
}

@media (min-width: 1024px) {
  .contact-section h2 {
    margin-top: 0 !important;
  }

  .contact-form {
    border-radius: 48px !important;
  }
}

@media (min-width: 1536px) {
  .footer-hero {
    height: 35vh !important;
  }
}

/* Shared DynamicServices mobile parity with React */
.services-grid .lead-card {
  padding: 50px 24px !important;
  border-radius: 24px !important;
  gap: 8px !important;
}

.services-grid .lead-card h3 {
  font-size: 36px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
  max-width: none !important;
}

.services-grid .lead-card p {
  font-size: 16px !important;
  line-height: 24px !important;
  margin: 24px 0 !important;
}

.services-grid .lead-card > img {
  width: 80px !important;
  height: 80px !important;
}

.services-grid .bento-card {
  padding: 24px 16px !important;
  border-radius: 24px !important;
  gap: 32px !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.services-grid .bento-card h3,
.services-grid .service-card h3 {
  font-size: 32px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

.services-grid .bento-card .tag-list {
  max-width: 180px !important;
  margin-top: 20px !important;
}

.services-grid .circle-arrow {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  flex: 0 0 45px !important;
  outline: 2px solid rgba(255, 255, 255, 0.6) !important;
  outline-offset: 5px !important;
}

.services-grid .circle-arrow svg {
  width: 48px !important;
  height: 48px !important;
}

.services-grid .service-card {
  padding: 20px !important;
  border-radius: 24px !important;
  gap: 20px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 1px 40px rgba(255, 255, 255, 0.1) inset !important;
}

.services-grid .service-card .kicker {
  display: flex !important;
  width: max-content !important;
  max-width: 100% !important;
  padding: 10px 20px !important;
  font-size: 12px !important;
  line-height: 18px !important;
}

.services-grid .service-card .dots {
  gap: 8px !important;
  margin: 0 0 16px !important;
}

.services-grid .service-card .dots span {
  width: 20px !important;
  height: 20px !important;
}

.services-grid .service-card .divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.3) !important;
}

.services-grid .service-card .tag-list {
  display: flex !important;
  flex-wrap: wrap !important;
}

@media (min-width: 480px) {
  .services-grid .lead-card h3,
  .services-grid .bento-card h3,
  .services-grid .service-card h3 {
    font-size: 40px !important;
  }

  .services-grid .lead-card h3 {
    max-width: 300px !important;
  }

  .services-grid .lead-card > img {
    width: 128px !important;
    height: 128px !important;
  }
}

@media (min-width: 768px) {
  .services-grid .lead-card,
  .services-grid .bento-card,
  .services-grid .service-card {
    border-radius: 48px !important;
  }

  .services-grid .lead-card h3 {
    font-size: 48px !important;
    max-width: 450px !important;
  }

  .services-grid .bento-card {
    padding: 48px 24px !important;
  }

  .services-grid .bento-card .tag-list {
    max-width: 300px !important;
  }

  .services-grid .circle-arrow {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    flex-basis: 70px !important;
  }

  .services-grid .circle-arrow svg {
    width: 76px !important;
    height: 76px !important;
  }
}

@media (min-width: 1024px) {
  .services-grid .lead-card h3 {
    font-size: 64px !important;
    max-width: none !important;
  }

  .services-grid .lead-card p {
    font-size: 24px !important;
    line-height: 36px !important;
  }

  .services-grid .lead-card > img {
    width: 96px !important;
    height: 96px !important;
  }

  .services-grid .bento-card h3,
  .services-grid .service-card h3 {
    font-size: 60px !important;
  }

  .services-grid .service-card {
    padding: 30px !important;
  }

  .services-grid .circle-arrow {
    width: 105px !important;
    height: 105px !important;
    min-width: 105px !important;
    flex-basis: 105px !important;
  }

  .services-grid .circle-arrow svg {
    width: 112px !important;
    height: 112px !important;
  }
}

@media (min-width: 1280px) {
  .services-grid .bento-card h3,
  .services-grid .service-card h3 {
    font-size: 50px !important;
  }

  .services-grid .lead-card h3 {
    max-width: 390px !important;
  }
}

/* Video testimonial heading parity with React GridTestimonials */
.video-testimonials h2 {
  padding: 8px !important;
  color: #fff !important;
  text-align: center !important;
  font-family: var(--font) !important;
  font-weight: 700 !important;
  font-size: 36px !important;
  line-height: 40px !important;
  margin: 0 0 32px !important;
}

@media (min-width: 768px) {
  .video-testimonials h2 {
    font-size: 48px !important;
    line-height: 48px !important;
  }
}

@media (min-width: 1024px) {
  .video-testimonials h2 {
    font-size: 60px !important;
    line-height: 60px !important;
    margin-bottom: 64px !important;
  }
}

/* Mobile navbar parity with React */
@media (max-width: 1023px) {
  .site-header {
    max-width: none !important;
    padding: 16px 16px 0 !important;
  }
  .site-header .nav-frame {
    max-width: 1300px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    overflow: visible !important;
  }
  .site-header:not(.scrolled) .nav-frame {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
  }
  .site-header.scrolled {
    padding-top: 10px !important;
  }
  .site-header.scrolled .nav-frame {
    padding: 10px 20px !important;
    background: rgba(24, 24, 24, 0.976) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35) !important;
    border-radius: 999px !important;
    backdrop-filter: blur(20px) !important;
  }
  .brand-mark {
    width: 60px !important;
    height: 60px !important;
    flex: 0 0 60px !important;
  }
  .site-header.scrolled .brand-mark {
    width: 50px !important;
    height: 50px !important;
    flex-basis: 50px !important;
  }
  .nav-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 15px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }
  .nav-cta span:last-child {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .site-header.scrolled .nav-cta span:last-child {
    font-size: clamp(0.9rem, 3vw, 0.95rem) !important;
  }
  .mobile-menu-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    flex: 0 0 32px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }
  .mobile-menu-button svg {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    overflow: visible !important;
  }
  .mobile-menu-button span {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex !important;
  }
  .mobile-menu-button {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .site-header .nav-frame {
    gap: 8px !important;
  }
  .site-header.scrolled .nav-frame {
    padding: 10px 14px !important;
  }
  .brand-mark {
    width: 54px !important;
    height: 54px !important;
    flex-basis: 54px !important;
  }
  .site-header.scrolled .brand-mark {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }
  .nav-cta {
    padding: 10px 12px !important;
  }
  .nav-cta span:last-child {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* Responsive bento arrow icon sizing */
.services-grid .circle-arrow svg {
  width: 48px !important;
  height: 48px !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}
@media (min-width: 768px) {
  .services-grid .circle-arrow svg {
    width: 76px !important;
    height: 76px !important;
  }
}
@media (min-width: 1024px) {
  .services-grid .circle-arrow svg {
    width: 112px !important;
    height: 112px !important;
  }
}

/* Mobile drawer active states and React chevron parity */
@media (max-width: 1023px) {
  .drawer-link,
  .drawer-expand {
    letter-spacing: -0.01em !important;
    transition:
      background 0.2s ease,
      color 0.2s ease !important;
  }
  .drawer-link.active,
  .drawer-expand.active {
    color: #ff4f01 !important;
  }
  .drawer-link .drawer-chevron,
  .drawer-expand .drawer-chevron {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
    transition:
      transform 0.3s ease,
      stroke 0.3s ease !important;
  }
  .drawer-expand.open .drawer-chevron {
    transform: rotate(90deg) !important;
    stroke: #ff4f01 !important;
  }
  .solid-action {
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 2px 12px rgba(255, 79, 1, 0.25) !important;
  }
  .solid-action .drawer-cta-arrow {
    display: block !important;
    width: 13px !important;
    height: 13px !important;
    flex: 0 0 13px !important;
  }
}

/* React footer parity: exact FooterContent.tsx + index.css measurements */
.footer-section {
  margin: 30px 0 !important;
  padding: 0 24px !important;
}

.footer-hero {
  position: relative !important;
  overflow: hidden !important;
  height: 16vh !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-fade {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: 250px !important;
  height: 12px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(to top, #0b0b0b, transparent) !important;
  z-index: 30 !important;
  pointer-events: none !important;
}

.footer-glow {
  position: absolute !important;
  left: 50% !important;
  bottom: -66.666667% !important;
  width: 150px !important;
  height: 138px !important;
  border-radius: 9999px !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  filter: blur(45.5px) !important;
  z-index: 20 !important;
}

.footer-hero img {
  position: absolute !important;
  bottom: -20px !important;
  width: 30vw !important;
  height: 30vw !important;
  margin: auto !important;
  object-fit: contain !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.stroke-text {
  position: relative !important;
  z-index: 20 !important;
  color: #121212 !important;
  text-align: center !important;
  -webkit-text-stroke-width: 3px !important;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5) !important;
  font-family: var(--font) !important;
  font-size: 15vw !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 120% !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 400px) {
  .footer-hero {
    height: 14vh !important;
  }

  .footer-hero img {
    width: 25vw !important;
    height: 25vw !important;
  }
}

@media (min-width: 640px) {
  .footer-hero {
    height: 25vh !important;
  }

  .footer-glow {
    bottom: -20px !important;
  }

  .footer-hero img {
    width: 20vw !important;
    height: 20vw !important;
  }
}

@media (min-width: 768px) {
  .footer-hero {
    height: 17vh !important;
  }
}

@media (min-width: 1024px) {
  .footer-section {
    margin: 100px 0 !important;
  }

  .footer-hero {
    height: 25vh !important;
  }

  .footer-fade {
    height: 8px !important;
  }

  .footer-glow {
    bottom: 0 !important;
  }

  .footer-hero img {
    width: 15vw !important;
    height: 15vw !important;
  }
}

@media (min-width: 1536px) {
  .footer-hero {
    height: 35vh !important;
  }
}
