:root {
  --ink: #090b10;
  --ink-soft: #11151d;
  --paper: #f4f2eb;
  --paper-bright: #fbfaf6;
  --line: rgba(9, 11, 16, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #696b70;
  --muted-light: #a5a8b1;
  --lime: #c7ff3d;
  --violet: #7c5cff;
  --cyan: #58e6ff;
  --coral: #ff7657;
  --white: #fff;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1240px;
  --header-height: 88px;
  --shadow: 0 28px 80px rgba(9, 11, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  min-width: 280px;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 140px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #616269;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(199, 255, 61, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.card-link:focus-visible,
.footer-socials a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover {
  background: #d5ff70;
}

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

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

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

.button-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(9, 11, 16, 0.1);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 620;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(9, 11, 16, 0.3);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    height 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(9, 11, 16, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 44px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-symbol {
  display: flex;
  width: 34px;
  height: 38px;
  align-items: stretch;
  gap: 4px;
}

.brand-symbol span {
  position: relative;
  width: 5px;
  border: 2px solid currentColor;
}

.brand-symbol span:nth-child(2) {
  border-right: 0;
  border-radius: 0 16px 16px 0;
}

.brand-symbol span:nth-child(3) {
  border: 0;
  background: currentColor;
}

.brand-symbol span:nth-child(4) {
  border-right: 0;
  border-radius: 0 16px 16px 0;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  min-width: 0;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 540;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.mobile-nav-contact {
  display: none;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 960px;
  padding-top: calc(var(--header-height) + 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 75% 38%, rgba(124, 92, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #080a0f 0%, #0c1018 55%, #090b10 100%);
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 25%, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 110px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: rgba(88, 230, 255, 0.055);
}

.hero-glow-two {
  bottom: 80px;
  left: -220px;
  width: 520px;
  height: 520px;
  background: rgba(199, 255, 61, 0.045);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding-bottom: 58px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(4.5rem, 6.7vw, 7rem);
}

.hero-accent {
  display: block;
  color: var(--lime);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.hero-trust span {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(199, 255, 61, 0.8);
  content: "";
}

.orbit-outer {
  width: 520px;
  height: 520px;
  animation: spin 28s linear infinite;
}

.orbit-outer::before {
  top: 40px;
  left: 95px;
}

.orbit-outer::after {
  right: 36px;
  bottom: 118px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(88, 230, 255, 0.8);
}

.orbit-middle {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: spin-reverse 22s linear infinite;
}

.orbit-middle::before {
  top: 72px;
  right: 14px;
  background: var(--violet);
  box-shadow: 0 0 20px rgba(124, 92, 255, 0.8);
}

.orbit-middle::after {
  bottom: -4px;
  left: 170px;
}

.orbit-inner {
  width: 255px;
  height: 255px;
  background: rgba(255, 255, 255, 0.015);
}

.orbit-inner::before {
  top: 28px;
  left: 22px;
}

.orbit-inner::after {
  display: none;
}

.visual-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 180px;
  height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 36% 30%, rgba(199, 255, 61, 0.38), transparent 22%),
    linear-gradient(145deg, #222a1b, #11150e);
  border: 1px solid rgba(199, 255, 61, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(199, 255, 61, 0.12),
    inset 0 0 30px rgba(199, 255, 61, 0.08);
  transform: translate(-50%, -50%);
}

.core-label {
  font-size: 2.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
}

.core-sub {
  margin-top: 10px;
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-node {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  padding: 14px 18px;
  background: rgba(15, 18, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.visual-node::before {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.visual-node strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.015em;
}

.node-index {
  display: block;
  margin-bottom: 3px;
  color: var(--lime);
  font-family: Consolas, monospace;
  font-size: 0.58rem;
}

.node-one {
  top: 17%;
  left: 0;
}

.node-one::before,
.node-four::before {
  right: -38px;
}

.node-two {
  top: 12%;
  right: 0;
}

.node-two::before,
.node-three::before {
  left: -38px;
}

.node-three {
  right: -4%;
  bottom: 15%;
}

.node-four {
  bottom: 9%;
  left: -3%;
}

.signal {
  position: absolute;
  z-index: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(70px);
}

.signal-one {
  top: 20%;
  right: 8%;
  background: rgba(124, 92, 255, 0.2);
}

.signal-two {
  bottom: 14%;
  left: 10%;
  background: rgba(88, 230, 255, 0.12);
}

.signal-three {
  top: 42%;
  left: 34%;
  background: rgba(199, 255, 61, 0.08);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-item {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 18px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--lime);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.proof-item span {
  max-width: 125px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.logo-cloud {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.logo-cloud-inner {
  display: grid;
  min-height: 145px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 46px;
}

.logo-cloud p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}

.client-logos span {
  color: #797a7d;
  font-size: clamp(0.68rem, 0.9vw, 0.85rem);
  font-weight: 720;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  filter: grayscale(1);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 72px;
}

.section-heading h2,
.method-copy h2,
.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 6vw, 6rem);
}

.section-intro {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

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

.service-card {
  position: relative;
  display: flex;
  min-height: 500px;
  grid-column: span 3;
  flex-direction: column;
  padding: 34px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  border-color: rgba(9, 11, 16, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-featured {
  grid-column: span 6;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(199, 255, 61, 0.16), transparent 38%),
    var(--ink);
  border-color: var(--ink);
}

.service-featured:hover {
  border-color: var(--lime);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: #888a8e;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
}

.service-featured .service-number {
  color: rgba(255, 255, 255, 0.5);
}

.service-tag {
  padding: 5px 10px;
  color: var(--lime);
  border: 1px solid rgba(199, 255, 61, 0.34);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 40px 0 32px;
  place-items: center;
  color: var(--ink);
  background: #e7e4dc;
  border-radius: 50%;
}

.service-featured .service-icon {
  color: var(--lime);
  background: rgba(199, 255, 61, 0.08);
  border: 1px solid rgba(199, 255, 61, 0.25);
}

.ai-icon {
  position: relative;
}

.ai-icon span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
}

.ai-icon span:nth-child(1) {
  top: 21px;
  left: 24px;
}

.ai-icon span:nth-child(2) {
  top: 38px;
  right: 21px;
}

.ai-icon span:nth-child(3) {
  bottom: 18px;
  left: 27px;
}

.ai-icon::before,
.ai-icon::after {
  position: absolute;
  width: 27px;
  height: 1px;
  background: currentColor;
  content: "";
}

.ai-icon::before {
  transform: rotate(38deg);
}

.ai-icon::after {
  transform: rotate(-51deg);
}

.code-icon {
  font-family: Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 700;
}

.growth-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.growth-icon span {
  width: 7px;
  background: currentColor;
  border-radius: 4px 4px 0 0;
}

.growth-icon span:nth-child(1) { height: 14px; }
.growth-icon span:nth-child(2) { height: 25px; }
.growth-icon span:nth-child(3) { height: 36px; }

.brand-icon span {
  width: 30px;
  height: 30px;
  border: 7px solid currentColor;
  border-radius: 50% 50% 50% 12%;
  transform: rotate(-20deg);
}

.mail-icon {
  position: relative;
}

.mail-icon::before {
  width: 32px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 5px;
  content: "";
}

.mail-icon::after {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 25px;
  height: 25px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.media-icon {
  position: relative;
}

.media-icon::before {
  width: 34px;
  height: 27px;
  border: 3px solid currentColor;
  border-radius: 6px;
  content: "";
}

.media-icon span:first-child {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.media-icon span:last-child {
  position: absolute;
  right: 19px;
  bottom: 21px;
  width: 20px;
  height: 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skewX(-32deg);
}

.immersive-icon {
  position: relative;
  transform-style: preserve-3d;
}

.immersive-icon span {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
}

.immersive-icon span:first-child {
  transform: translate(-7px, -6px) rotate(30deg) skewY(-12deg);
}

.immersive-icon span:nth-child(2) {
  transform: translate(8px, 2px) rotate(30deg) skewY(-12deg);
}

.immersive-icon span:last-child {
  width: 8px;
  height: 8px;
  background: currentColor;
  border: 0;
  border-radius: 50%;
  transform: translate(7px, -12px);
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
  line-height: 1;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-featured p {
  color: rgba(255, 255, 255, 0.6);
}

.service-list {
  display: grid;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.service-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.service-meta {
  margin-top: auto;
  padding-top: 24px;
  color: #77797e;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.025em;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 650;
}

.service-meta + .card-link {
  margin-top: 14px;
  padding-top: 18px;
}

.service-featured .card-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.card-link span,
.compact-arrow,
.case-arrow {
  transition: transform 0.25s ease;
}

.service-card:hover .card-link span,
.service-card:hover .compact-arrow,
.case-card:hover .case-arrow {
  transform: translate(4px, -4px);
}

.service-compact {
  min-height: 500px;
  grid-column: span 3;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.service-compact h3 {
  margin: 40px 0 18px;
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-compact p {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.compact-arrow {
  margin-left: auto;
  font-size: 1.1rem;
}

.work-section {
  color: var(--white);
  background: var(--ink);
}

.work-heading {
  align-items: end;
}

.work-heading .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.work-heading .button {
  justify-self: end;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.case-card {
  display: block;
  overflow: hidden;
  color: inherit;
  background: #141820;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.case-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-7px);
}

.case-large {
  grid-column: 1 / -1;
}

.case-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.case-large .case-visual {
  min-height: 520px;
}

.fashion-visual {
  display: flex;
  align-items: center;
  padding: 70px;
  background:
    linear-gradient(105deg, rgba(22, 10, 26, 0.35), rgba(22, 10, 26, 0)),
    linear-gradient(135deg, #b37975 0%, #e1b0a4 43%, #401f38 100%);
}

.fashion-visual::after {
  position: absolute;
  right: 11%;
  bottom: -25%;
  width: 34%;
  height: 110%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.25), rgba(38, 5, 32, 0.8));
  border-radius: 45% 45% 0 0;
  box-shadow: -30px 0 80px rgba(55, 18, 43, 0.3);
  content: "";
  transform: rotate(8deg);
}

.case-word {
  position: relative;
  z-index: 2;
  color: #fff8ee;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  letter-spacing: -0.06em;
  line-height: 0.77;
}

.fashion-orb {
  position: absolute;
  top: 13%;
  right: 29%;
  width: 200px;
  height: 200px;
  background: rgba(255, 207, 190, 0.72);
  border-radius: 50%;
  filter: blur(2px);
}

.fashion-line {
  position: absolute;
  right: 7%;
  bottom: 13%;
  width: 35%;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-18deg);
}

.print-visual {
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(145deg, #e44f2a, #ff7c32 50%, #f6bc3f);
}

.print-sheet {
  position: absolute;
  display: grid;
  width: 220px;
  height: 275px;
  place-items: center;
  color: #1c2031;
  background: #f9f1df;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 30px 60px rgba(79, 22, 7, 0.25);
}

.sheet-one {
  top: 40px;
  left: 17%;
  transform: rotate(-9deg);
}

.sheet-two {
  top: 75px;
  right: 14%;
  color: #f7efdc;
  background: #272e5c;
  transform: rotate(10deg);
}

.print-dot {
  position: absolute;
  right: 31%;
  bottom: 12%;
  width: 54px;
  height: 54px;
  background: var(--lime);
  border-radius: 50%;
}

.loverz-visual {
  background: #130b24;
}

.loverz-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 14, 0.05), rgba(5, 4, 14, 0.34)),
    radial-gradient(circle at 76% 22%, rgba(255, 88, 93, 0.2), transparent 30%);
  content: "";
}

.loverz-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.case-card:hover .loverz-visual img {
  transform: scale(1.045);
}

.loverz-label {
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 38px;
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}

.loverz-signal {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.loverz-signal::before,
.loverz-signal::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
}

.loverz-signal::before {
  inset: 10px;
}

.loverz-signal::after {
  inset: 23px;
  background: #ff5b68;
  border: 0;
  box-shadow: 0 0 24px rgba(255, 91, 104, 0.72);
}

.case-content {
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
}

.case-category {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 0;
  font-size: 2rem;
}

.case-result {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--lime);
}

.case-result strong {
  font-size: 2rem;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.case-result span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.case-arrow {
  font-size: 1.4rem;
}

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

.method-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.method-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-copy h2 {
  margin-bottom: 34px;
}

.method-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-step {
  display: grid;
  min-height: 180px;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: #8c8d90;
  font-family: Consolas, monospace;
  font-size: 0.72rem;
}

.method-step h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.method-step p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-time {
  padding: 7px 12px;
  color: #6d6e73;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.answer-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 60px 60px;
  overflow: hidden;
}

.answer-glow {
  position: absolute;
  bottom: -300px;
  left: -120px;
  width: 700px;
  height: 700px;
  background: rgba(124, 92, 255, 0.12);
  border-radius: 50%;
  filter: blur(80px);
}

.answer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  align-items: start;
  gap: 100px;
}

.answer-copy h2 {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

.answer-copy h2 span {
  color: var(--lime);
}

.answer-panel {
  padding: 42px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
}

.answer-question {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1.35;
}

.answer-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.answer-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 36px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.answer-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.answer-points i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(199, 255, 61, 0.7);
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.testimonial-featured {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
}

.quote-mark {
  height: 68px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

.testimonial-card:not(.testimonial-featured) .quote-mark {
  color: var(--violet);
}

.testimonial-card blockquote {
  margin: 20px 0 35px;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.testimonial-featured blockquote {
  font-size: 1.42rem;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 750;
}

.avatar-alt {
  color: var(--white);
  background: var(--violet);
}

.avatar-warm {
  color: var(--white);
  background: var(--coral);
}

.testimonial-card figcaption span:last-child {
  display: grid;
}

.testimonial-card strong {
  font-size: 0.86rem;
}

.testimonial-card small {
  color: var(--muted);
  font-size: 0.7rem;
}

.testimonial-featured small {
  color: rgba(255, 255, 255, 0.62);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 120px;
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 30px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 300px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 1.1rem;
  font-weight: 630;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item p {
  max-width: 700px;
  margin: -2px 60px 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  position: relative;
  padding: 140px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 35%, rgba(124, 92, 255, 0.2), transparent 27%),
    #0a0c12;
  overflow: hidden;
}

.contact-section::after {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(199, 255, 61, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(199, 255, 61, 0.02),
    0 0 0 140px rgba(199, 255, 61, 0.015);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.contact-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
}

.contact-copy h2 span {
  color: var(--lime);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.contact-details address {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.contact-form {
  padding: 42px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  backdrop-filter: blur(18px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form label > span:first-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  outline: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--lime);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.contact-form .consent {
  display: flex;
  max-width: 340px;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 3px 0 0;
  accent-color: var(--lime);
}

.contact-form .consent span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 12px 15px;
  color: var(--lime);
  background: rgba(199, 255, 61, 0.08);
  border: 1px solid rgba(199, 255, 61, 0.2);
  border-radius: 10px;
  font-size: 0.8rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #ffb4b4;
  background: rgba(255, 90, 90, 0.08);
  border-color: rgba(255, 120, 120, 0.28);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-footer {
  padding: 64px 0 30px;
  color: var(--white);
  background: #07090d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 54px;
}

.footer-brand {
  justify-self: start;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-socials a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer-socials a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    gap: 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 900px;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8.2vw, 6.6rem);
  }

  .hero-visual {
    min-height: 500px;
    transform: scale(0.9);
  }

  .proof-item {
    padding-inline: 18px;
  }

  .proof-item span {
    font-size: 0.63rem;
  }

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

  .service-card,
  .service-featured,
  .service-compact {
    grid-column: auto;
  }

  .service-card:last-child {
    grid-column: span 2;
  }

  .section-heading,
  .answer-grid,
  .contact-grid {
    gap: 60px;
  }

  .method-grid {
    gap: 70px;
  }

  .faq-grid {
    gap: 70px;
  }

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

  .testimonial-featured {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 100px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 48px;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(12px, 2.5vh, 22px);
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding:
      max(calc(var(--header-height) + 42px), calc(env(safe-area-inset-top) + 96px))
      max(24px, calc(env(safe-area-inset-right) + 24px))
      max(34px, calc(env(safe-area-inset-bottom) + 24px))
      max(24px, calc(env(safe-area-inset-left) + 24px));
    background: rgba(9, 11, 16, 0.98);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .main-nav.is-open {
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    flex: 0 0 auto;
    font-size: clamp(1.75rem, 8vw, 3.8rem);
    font-weight: 560;
    letter-spacing: -0.05em;
    line-height: 1.1;
  }

  .main-nav a::after {
    bottom: -4px;
  }

  .main-nav .mobile-nav-contact {
    display: inline-flex;
    width: min(100%, 430px);
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding: 0 22px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 720;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .main-nav .mobile-nav-contact::after {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
  }

  .header-cta {
    position: relative;
    z-index: 30;
    min-height: 44px;
    padding-inline: 15px;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

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

  .hero-copy {
    padding-bottom: 15px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.7rem, 12vw, 6.4rem);
  }

  .hero-lead {
    max-width: 590px;
  }

  .hero-visual {
    min-height: 530px;
    margin-top: -20px;
    transform: scale(0.9);
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .proof-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-bottom: 0;
  }

  .proof-item:nth-child(3) {
    padding-left: 0;
  }

  .logo-cloud-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section-heading,
  .method-grid,
  .answer-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 35px;
    margin-bottom: 54px;
  }

  .section-intro {
    max-width: 620px;
  }

  .work-heading .button {
    justify-self: start;
  }

  .case-large .case-visual {
    min-height: 440px;
  }

  .method-grid,
  .answer-grid,
  .faq-grid,
  .contact-grid {
    gap: 65px;
  }

  .method-copy {
    position: static;
  }

  .answer-copy h2 {
    max-width: 700px;
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 82px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    padding-top: env(safe-area-inset-top);
  }

  .brand-symbol {
    width: 30px;
    height: 34px;
  }

  .brand-name {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .header-cta {
    min-width: 92px;
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0;
    gap: 8px;
  }

  .header-cta::before {
    content: "Contact";
    font-size: 0.75rem;
  }

  .header-cta span {
    font-size: 0.82rem;
  }

  .main-nav {
    padding-top: max(104px, calc(env(safe-area-inset-top) + 88px));
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-trust {
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 420px;
    margin: -25px -50px 0;
    transform: scale(0.72);
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item {
    min-height: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px;
  }

  .proof-item:first-child,
  .proof-item:nth-child(3) {
    padding-left: 0;
  }

  .proof-item strong {
    font-size: 2rem;
  }

  .proof-item span {
    max-width: 110px;
  }

  .section-heading h2,
  .method-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.85rem, 13vw, 4.3rem);
  }

  .services-grid,
  .case-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-compact:last-child,
  .service-card:last-child,
  .service-featured,
  .case-large,
  .testimonial-featured {
    grid-column: auto;
  }

  .service-card {
    min-height: 430px;
    padding: 28px;
  }

  .case-visual,
  .case-large .case-visual {
    min-height: 330px;
  }

  .fashion-visual {
    padding: 35px;
  }

  .print-sheet {
    width: 150px;
    height: 200px;
    font-size: 5.5rem;
  }

  .case-content {
    min-height: 125px;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .case-result {
    width: 100%;
    justify-content: space-between;
  }

  .method-step {
    min-height: 175px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .step-time {
    display: none;
  }

  .method-step h3 {
    font-size: 1.6rem;
  }

  .answer-panel,
  .contact-form {
    padding: 28px;
  }

  .answer-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .testimonial-card,
  .testimonial-featured {
    min-height: 340px;
  }

  .testimonial-featured blockquote {
    font-size: 1.2rem;
  }

  .faq-item summary {
    min-height: 90px;
    font-size: 1rem;
  }

  .faq-item p {
    margin-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .form-footer .button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: grid;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    gap: 7px;
  }

  .brand-symbol {
    width: 27px;
    height: 31px;
  }

  .header-cta {
    min-width: 84px;
    padding-inline: 11px;
  }

  .main-nav {
    padding-inline: 18px;
  }

  .main-nav a {
    font-size: clamp(1.55rem, 8.5vw, 2.4rem);
  }

  .main-nav .mobile-nav-contact {
    min-height: 54px;
    padding-inline: 18px;
    font-size: 0.92rem;
  }

  .button {
    max-width: 100%;
    padding-inline: 19px;
  }

  .answer-panel,
  .contact-form,
  .service-card,
  .testimonial-card {
    padding: 22px;
  }
}

@media (max-width: 820px) and (max-height: 560px) {
  .main-nav {
    gap: 10px;
    padding-top: max(82px, calc(env(safe-area-inset-top) + 76px));
    padding-bottom: 16px;
  }

  .main-nav a {
    font-size: clamp(1.4rem, 6vh, 2rem);
  }

  .main-nav .mobile-nav-contact {
    min-height: 48px;
    margin-top: 8px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.contact-form select option {
  color: #111827;
  background: #ffffff;
}
