@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #fbf7f2;
  --bg-soft: #f4ebe2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fff9f4;
  --surface-accent: #f7e4db;
  --text: #231f1c;
  --text-soft: rgba(35, 31, 28, 0.74);
  --line: rgba(35, 31, 28, 0.1);
  --line-strong: rgba(35, 31, 28, 0.18);
  --accent: #e97145;
  --accent-strong: #d95f36;
  --accent-soft: rgba(233, 113, 69, 0.14);
  --shadow-lg: 0 28px 70px rgba(90, 52, 37, 0.14);
  --shadow-md: 0 18px 42px rgba(90, 52, 37, 0.1);
  --shadow-sm: 0 10px 24px rgba(90, 52, 37, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 40px));
  --header-height: 96px;
  --hero-space: clamp(7rem, 10vw, 10rem);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111111;
  --bg-soft: #171f27;
  --surface: rgba(19, 26, 34, 0.82);
  --surface-strong: rgba(24, 32, 40, 0.94);
  --surface-accent: #202a34;
  --text: #f6efe7;
  --text-soft: rgba(246, 239, 231, 0.74);
  --line: rgba(246, 239, 231, 0.1);
  --line-strong: rgba(246, 239, 231, 0.18);
  --accent: #ff9462;
  --accent-strong: #ffb184;
  --accent-soft: rgba(255, 148, 98, 0.18);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

body::before {
  content: none;
}

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

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

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

button {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section--tight {
  padding-top: clamp(3.5rem, 5vw, 5rem);
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.section--dense {
  padding-top: clamp(4rem, 5.5vw, 5.5rem);
  padding-bottom: clamp(4rem, 5.5vw, 5.5rem);
}

.section-tag,
.eyebrow {
  display: inline-block;
  margin: 0 0 1.15rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.9);
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.section-intro--center,
.faq-wrap .section-intro {
  text-align: center;
  margin-inline: auto;
}

.section-intro h2,
.problem-panel h2,
.split-panel__intro h2,
.cta-panel h2,
.about-card h2,
.contact-card h2,
.hero h1,
.modal__body h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span,
.problem-panel h2 span,
.split-panel__intro h2 span {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  color: var(--text);
}

.hero h1 span,
.hero .hero__rotating {
  background: linear-gradient(135deg, #f18b59 0%, #db6239 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero h1 .hero__rotating {
  display: block;
}

.hero__rotating {
  position: relative;
  display: block;
  width: fit-content;
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.hero__rotating::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: #f18b59;
  animation: heroCaretBlink 1s steps(1, end) infinite;
}

.section-intro h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.03;
}

p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li {
  margin: 0;
  line-height: 1.55;
  color: var(--text-soft);
}

.button {
  --button-shadow: 0 16px 30px rgba(217, 95, 54, 0.24);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
}

.button:focus-visible,
.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.faq-trigger:focus-visible,
.project-card__link:focus-visible,
.modal__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.theme-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle__track {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(18, 16, 14, 0.08);
  overflow: hidden;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.theme-toggle__track::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 218, 146, 0.36), transparent 56%),
    radial-gradient(circle at 72% 50%, rgba(233, 113, 69, 0.24), transparent 62%);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 220ms ease,
    transform 320ms ease;
}

.theme-toggle__thumb {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%) scale(var(--toggle-thumb-scale, 1));
  background: var(--text);
  box-shadow: 0 8px 20px rgba(18, 16, 14, 0.16);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    box-shadow 220ms ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
  transform: translateY(-50%) translateX(18px) scale(var(--toggle-thumb-scale, 1));
  background: #e97145;
}

.theme-toggle:hover .theme-toggle__track,
.theme-toggle:focus-visible .theme-toggle__track,
.theme-toggle.theme-toggle--pulse .theme-toggle__track {
  box-shadow: 0 12px 28px rgba(18, 16, 14, 0.12);
}

.theme-toggle:hover .theme-toggle__track::before,
.theme-toggle:focus-visible .theme-toggle__track::before,
.theme-toggle.theme-toggle--pulse .theme-toggle__track::before {
  opacity: 0.92;
  transform: scale(1);
}

.theme-toggle.theme-toggle--pulse {
  --toggle-thumb-scale: 1.12;
}

.theme-toggle--menu {
  display: none;
}

.theme-toggle__label {
  display: none;
}

.button--primary {
  background: linear-gradient(135deg, #f18b59 0%, #db6239 100%);
  color: #fff;
  box-shadow: var(--button-shadow);
}

.button--ghost {
  border: 1px solid rgba(35, 31, 28, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.hero .section-tag {
  color: #71d8ff;
}

.hero .button--primary {
  --button-shadow: 0 18px 38px rgba(217, 95, 54, 0.28);
  border-color: rgba(233, 113, 69, 0.22);
  background: linear-gradient(135deg, #f18b59 0%, #db6239 100%);
  color: #fff;
}

.hero .button--ghost {
  border-color: rgba(133, 185, 215, 0.22);
  background: rgba(10, 16, 24, 0.72);
  color: #eef8ff;
}

.button--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button--cta-panel {
  gap: 0.85rem;
  min-height: 58px;
  padding: 0.6rem 0.6rem 0.6rem 1.35rem;
  background: #fff;
  color: #ef6438;
  border: 0;
  box-shadow: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.button--cta-panel__arrow {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7d1f 0%, #f44b40 100%);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

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

.button--compact {
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  font-size: 0.96rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  padding: 0.45rem 0 0;
  transition: background-color 220ms ease;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled .site-header__inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header:not(.is-scrolled) .site-header__inner {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 6;
}

.brand img,
.site-footer__brand img {
  width: auto;
  height: 52px;
}

.site-header .brand img {
  display: block;
  filter: none;
}

.site-header.is-on-dark .brand img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.site-nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: clamp(1.6rem, 2.2vw, 2.7rem);
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled .site-nav__links {
  padding: 0.85rem 1.4rem;
  background: rgba(255, 250, 245, 0.88);
  border-color: rgba(35, 31, 28, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-soft);
}

.site-header:not(.is-scrolled) .site-nav__links a {
  color: rgba(228, 239, 250, 0.82);
}

.site-header:not(.is-scrolled):not(.is-on-dark) .site-nav__links a {
  color: rgba(35, 31, 28, 0.72);
}

.site-nav .button--primary {
  color: #fff;
}

.site-header:not(.is-scrolled) .site-nav .button--primary {
  border-color: rgba(233, 113, 69, 0.22);
  background: linear-gradient(135deg, #f18b59 0%, #db6239 100%);
  box-shadow: 0 18px 40px rgba(217, 95, 54, 0.28);
  color: #fff;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(35, 31, 28, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.site-header:not(.is-scrolled) .nav-toggle {
  border-color: rgba(120, 204, 224, 0.22);
  background: transparent;
  box-shadow: none;
}

.site-header:not(.is-scrolled):not(.is-on-dark) .nav-toggle {
  border-color: rgba(35, 31, 28, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: #f3fbff;
}

.site-header:not(.is-scrolled):not(.is-on-dark) .nav-toggle span {
  background: var(--text);
}

.nav-toggle span:first-child {
  top: 18px;
}

.nav-toggle span:last-child {
  top: 28px;
}

.nav-open .nav-toggle span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 173, 132, 0.28), transparent 18%),
    radial-gradient(circle at 82% 28%, rgba(255, 233, 183, 0.32), transparent 24%),
    linear-gradient(180deg, #fff8f2 0%, #f7efe6 54%, #f1e7dc 100%);
  overflow: clip;
}

html[data-theme="dark"] .hero {
  background: #111111;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: auto;
  opacity: 0.68;
}

html[data-theme="dark"] .hero__particles {
  opacity: 1;
}

.particles-js-canvas-el {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: auto;
  mix-blend-mode: multiply;
}

html[data-theme="dark"] .particles-js-canvas-el {
  mix-blend-mode: normal;
}

.hero__inner {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(1.5rem, 3vw, 2.6rem));
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}

.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: translateY(clamp(-2.8rem, -4vh, -1.8rem));
}

.hero__copy {
  max-width: 52rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 3vw, 2.4rem);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 214, 229, 0.72);
}

.scroll-cue__line {
  width: 2px;
  height: 86px;
  background: linear-gradient(180deg, rgba(120, 180, 216, 0.16), rgba(88, 209, 255, 0.76));
  border-radius: 999px;
  animation: pulseLine 2.4s ease-in-out infinite;
}

.intro-statement {
  background: transparent;
  padding-top: clamp(6.5rem, 9vw, 9rem);
}

.intro-statement__inner {
  max-width: 68rem;
  text-align: center;
}

.intro-statement__lead {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: rgba(35, 31, 28, 0.88);
  text-wrap: balance;
}

.intro-statement__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes heroCaretBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.client-showcase__inner {
  position: relative;
}

.client-showcase__intro {
  margin-bottom: 2.35rem;
  text-align: center;
}

.client-showcase__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 0.7rem 0.65rem;
  border: 1px solid rgba(35, 31, 28, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.logo-card img {
  max-width: min(100%, 164px);
  max-height: 62px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.problem-panel {
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
  background: transparent;
}

.problem-panel__copy {
  display: grid;
  gap: 1.15rem;
  max-width: 68rem;
}

.problem-panel__copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.problem-panel__copy p {
  max-width: 40rem;
  margin: 1.4rem auto 0;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  width: min(100%, 920px);
}

.problem-item {
  padding: 1.35rem;
  border-radius: 22px;
  background: #fffaf6;
  border: 1px solid rgba(35, 31, 28, 0.08);
  box-shadow: 0 12px 28px rgba(35, 31, 28, 0.05);
  text-align: left;
}

.problem-item h3,
.service-card h3,
.benefit-item h3,
.step-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.problem-panel__action {
  display: flex;
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
  gap: 1.25rem;
}

.service-card,
.step-card {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(35, 31, 28, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(233, 113, 69, 0.1), transparent 36%),
    rgba(255, 248, 243, 0.94);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.service-card:focus-within,
.step-card:hover,
.step-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 113, 69, 0.2);
}

.service-card__badge,
.service-card__meta {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  letter-spacing: 0.14em;
  background: none;
}

.service-card__meta {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(233, 113, 69, 0.12);
  letter-spacing: 0.06em;
}

.service-card__meta {
  margin-top: 1.1rem;
}

.service-card h3,
.step-card h3 {
  margin-top: 0.9rem;
}

.service-card p {
  margin-bottom: 1rem;
}

.service-card ul {
  display: grid;
  gap: 0.6rem;
}

.quote-strip {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 56rem;
  margin: 3.2rem auto 0.35rem;
  padding: 1.7rem 1.5rem 1.25rem;
  border: 1px solid rgba(35, 31, 28, 0.08);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 243, 0.96));
  box-shadow: 0 18px 36px rgba(35, 31, 28, 0.06);
  text-align: center;
}

.quote-strip--featured {
  width: min(100%, 920px);
  max-width: 920px;
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-strip--featured .quote-strip__body {
  gap: 1.1rem;
}

.quote-strip--featured blockquote {
  max-width: 100%;
  color: #403a36;
}

.quote-strip--featured blockquote p {
  font-size: clamp(2.4rem, 5.44vw, 3.84rem) !important;
  line-height: 0.95 !important;
  color: #403a36;
}

.quote-strip--featured .quote-strip__avatar {
  width: 96px;
  height: 96px;
  margin-top: 0.2rem;
}

.quote-strip__identity {
  margin-top: 0.1rem;
}

.quote-strip__avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 228, 219, 0.9));
  box-shadow: var(--shadow-sm);
  color: var(--accent-strong);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.quote-strip__avatar--photo {
  display: block;
  object-fit: cover;
  background: #f3ebe5;
  color: inherit;
  letter-spacing: normal;
}

.quote-strip__body {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.quote-strip blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: #564f4a;
}

.quote-strip footer {
  margin-top: 0.55rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-soft);
}

.quote-strip__name,
.quote-strip__role {
  display: block;
}

.quote-strip__name {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

.quote-strip__role {
  margin-top: 0.2rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-soft);
}

.quote-strip--detail {
  width: min(100%, 920px);
  max-width: 920px;
  margin: 6rem auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-strip--detail blockquote {
  max-width: 100%;
  color: #403a36;
}

.quote-strip--detail blockquote p {
  font-size: clamp(1.95rem, 3.7vw, 2.75rem) !important;
  line-height: 1.22 !important;
  color: #403a36;
}

.quote-strip--detail .quote-strip__avatar {
  width: 96px;
  height: 96px;
  margin-top: 0.2rem;
}

.quote-strip--detail blockquote p strong {
  font-weight: 700;
  color: inherit;
}

.quote-strip--detail .quote-strip__name {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

.quote-strip--detail .quote-strip__role {
  font-size: 0.98rem;
  font-weight: 400;
}

.project-section-label {
  margin: 0 0 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  max-width: 1180px;
}

.project-card__link {
  display: block;
  width: 100%;
  text-align: left;
}

.project-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 0.86;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 18px 36px rgba(35, 31, 28, 0.08);
  transform: translateY(var(--parallax-shift, 0px));
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0), rgba(16, 14, 12, 0.72));
  pointer-events: none;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card__visual,
.project-card:focus-within .project-card__visual {
  transform: translateY(var(--parallax-shift, 0px));
  box-shadow: 0 24px 46px rgba(35, 31, 28, 0.12);
}

.project-card:hover .project-card__image,
.project-card:focus-within .project-card__image {
  transform: scale(1.018);
  filter: saturate(1.03) contrast(1.02);
}

.project-card:hover .project-card__overlay,
.project-card:focus-within .project-card__overlay {
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.04), rgba(16, 14, 12, 0.8));
}

.project-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.28rem;
  padding: 1.15rem 1.1rem 1.05rem;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card__content,
.project-card:focus-within .project-card__content {
  transform: translateY(-6px);
}

.project-card__eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.project-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-align: left;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(35, 31, 28, 0.08);
  box-shadow: var(--shadow-sm);
}

.split-panel--benefits {
  grid-template-columns: 1fr;
  gap: 2.2rem;
  justify-items: center;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.split-panel--benefits .split-panel__intro {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.split-panel__intro h2 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.5vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.split-panel--benefits .split-panel__intro h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.split-panel__intro h2 span {
  display: block;
  margin-top: 0.18em;
}

.split-panel__lead {
  max-width: 31rem;
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-soft);
}

.split-panel--benefits .split-panel__lead {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

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

.split-panel--benefits .benefit-list {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-item {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 2.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(35, 31, 28, 0.1);
  background: rgba(255, 253, 250, 0.98);
  box-shadow:
    0 16px 32px rgba(35, 31, 28, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.benefit-item::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.28rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f18b59, #db6239);
  box-shadow: 0 0 0 6px rgba(233, 113, 69, 0.12);
}

.about-card,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: transparent;
}

.about-card__media,
.contact-card__media {
  display: grid;
  place-items: end center;
  min-height: 420px;
  background: transparent;
  overflow: hidden;
}

.about-card__media img,
.contact-card__media img {
  width: min(100%, 520px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.about-card__copy {
  max-width: 40rem;
}

.about-card__copy h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.about-card__wave {
  font-size: 0.85em;
}

.about-card__copy p {
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.55;
}

.about-card__copy p + p {
  margin-top: 0.9rem;
}

.about-card__highlight {
  font-weight: 600;
}

.about-card__highlight--violet {
  color: #8b60ff;
}

.about-card__highlight--pink {
  color: #ef63a0;
}

.about-card__actions,
.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-card {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  max-width: 72rem;
  padding: clamp(2.8rem, 5vw, 4.4rem) clamp(1.6rem, 4vw, 3.4rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.66), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #fde4db 0%, #fff5f0 56%, #fffdfa 100%);
  border: 1px solid rgba(35, 31, 28, 0.08);
  box-shadow:
    0 34px 90px rgba(242, 134, 101, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: center;
}

.contact-card__copy {
  width: 100%;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.contact-card__copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-card__copy h2 span {
  display: block;
  margin-top: 0.18em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--accent);
}

.contact-card__lead {
  max-width: 37rem;
  margin: 1.45rem auto 0;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-soft);
}

.contact-card__actions {
  justify-content: center;
  margin-top: 2.2rem;
}

.contact-mail {
  min-width: min(100%, 25rem);
  padding-inline: 1.65rem;
}

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

.contact-mail__text {
  font-size: clamp(1.06rem, 1.45vw, 1.16rem);
  font-weight: 700;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 92rem;
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 4vw, 3rem);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 30% 36%, rgba(255, 132, 24, 0.28), transparent 18%),
    linear-gradient(135deg, #f74339 0%, #f64b3d 52%, #fb7b10 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(244, 86, 49, 0.24);
  text-align: center;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -6% -28% auto;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
}

.cta-panel p,
.cta-panel h2 {
  position: relative;
  z-index: 1;
  color: inherit;
}

.cta-panel__label {
  margin-bottom: 1.2rem;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.cta-panel h2 {
  max-width: 20ch;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.6vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.cta-panel__text {
  max-width: 42rem;
  margin: 1.6rem auto 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
}

.cta-panel .button {
  margin-top: 2rem;
}

.websitecheck-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 2rem auto 0;
}

.websitecheck-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.websitecheck-field {
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.websitecheck-field__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.websitecheck-field input {
  width: 100%;
  min-height: 58px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.websitecheck-field input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.websitecheck-field input:focus {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.websitecheck-form .button {
  justify-self: center;
  margin-top: 0.5rem;
}

.websitecheck-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.websitecheck-status.is-error {
  color: rgba(255, 243, 216, 0.98);
}

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

.step-card__number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(233, 113, 69, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
}

.faq-wrap {
  max-width: 56rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(35, 31, 28, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  overflow: clip;
}

.faq-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.2rem;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-weight: 700;
}

.faq-trigger__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-trigger__icon::before,
.faq-trigger__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.faq-trigger[aria-expanded="true"] .faq-trigger__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-panel {
  padding: 0 1.2rem 1.15rem;
}

.js-enabled .faq-panel {
  display: none;
}

.js-enabled .faq-item.is-open .faq-panel {
  display: block;
}

.faq-note {
  margin-top: 1rem;
  text-align: center;
}

.faq-note a {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 4.5rem;
}

.site-footer__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(35, 31, 28, 0.08);
}

.site-footer__brand img {
  height: clamp(44px, 8vw, 92px);
}

.site-footer__meta {
  display: grid;
  gap: 0.8rem;
  max-width: 20rem;
  text-align: right;
}

.site-footer__links {
  display: inline-flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__links a {
  color: var(--text-soft);
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f18b59 0%, #d8613b 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(217, 95, 54, 0.32);
}

.mobile-cta.is-visible {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 16, 0.56);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  display: grid;
  gap: 1.2rem;
  width: min(920px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 1.2rem;
  border-radius: 28px;
  background: #fffaf6;
  box-shadow: 0 24px 80px rgba(21, 18, 16, 0.26);
}

.modal__media {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(247, 228, 219, 0.9);
}

.modal__media img {
  width: 100%;
  height: auto;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(35, 31, 28, 0.07);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal__body {
  display: grid;
  gap: 0.7rem;
  padding: 0 0.4rem 0.4rem;
}

.legal-page {
  background: linear-gradient(180deg, #fbf7f2 0%, #f6efe7 100%);
}

.legal-main {
  padding: 9rem 0 4rem;
}

.legal-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(35, 31, 28, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.legal-card h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
}

.legal-card h2 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.legal-card ul {
  display: grid;
  gap: 0.35rem;
}

html[data-theme="dark"] .brand img,
html[data-theme="dark"] .site-footer__brand img {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .button--ghost {
  border-color: var(--line);
  background: rgba(24, 32, 40, 0.88);
  color: var(--text);
}

html[data-theme="dark"] .button--cta-panel {
  background: rgba(255, 248, 243, 0.96);
  color: #ef6438;
}

html[data-theme="dark"] .site-header.is-scrolled .site-nav__links {
  background: rgba(19, 26, 34, 0.9);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .logo-card {
  border-color: rgba(246, 239, 231, 0.08);
  background: #ffffff;
}

html[data-theme="dark"] .problem-item,
html[data-theme="dark"] .benefit-item,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .modal__dialog {
  border-color: var(--line);
  background: rgba(24, 32, 40, 0.92);
  box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .split-panel {
  border-color: var(--line);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 148, 98, 0.16), transparent 36%),
    rgba(24, 32, 40, 0.92);
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .split-panel--benefits {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .quote-strip:not(.quote-strip--featured):not(.quote-strip--detail) {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.94), rgba(19, 26, 34, 0.96));
  box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .quote-strip blockquote,
html[data-theme="dark"] .quote-strip--featured blockquote,
html[data-theme="dark"] .quote-strip--detail blockquote,
html[data-theme="dark"] .quote-strip--featured blockquote p,
html[data-theme="dark"] .quote-strip--detail blockquote p {
  color: var(--text);
}

html[data-theme="dark"] .quote-strip__avatar {
  background: linear-gradient(135deg, rgba(255, 177, 132, 0.28), rgba(24, 32, 40, 0.92));
  color: var(--accent-strong);
}

html[data-theme="dark"] .quote-strip__avatar--photo {
  background: rgba(24, 32, 40, 0.96);
}

html[data-theme="dark"] .contact-card {
  border-color: var(--line);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(255, 148, 98, 0.14), transparent 22%),
    linear-gradient(135deg, #1a222b 0%, #1f2a35 56%, #151c24 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .contact-card__lead,
html[data-theme="dark"] .intro-statement__lead,
html[data-theme="dark"] .problem-panel__copy p {
  color: var(--text);
}

html[data-theme="dark"] .site-footer__inner {
  border-top-color: var(--line);
}

html[data-theme="dark"] .modal__media {
  background: rgba(255, 148, 98, 0.12);
}

html[data-theme="dark"] .modal__close {
  background: rgba(246, 239, 231, 0.08);
  color: var(--text);
}

html[data-theme="dark"] .legal-page {
  background: linear-gradient(180deg, #10161d 0%, #171f27 100%);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .problem-panel,
  .split-panel,
  .about-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 100%);
    --header-height: 82px;
  }

  .site-header {
    padding-top: 0.8rem;
  }

  .site-header__inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .js-enabled .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .js-enabled .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0.6rem;
    padding: 0.9rem;
    border: 1px solid rgba(35, 31, 28, 0.1);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(249, 241, 233, 0.96));
    box-shadow: 0 24px 50px rgba(18, 16, 14, 0.22);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav > .theme-toggle:not(.theme-toggle--menu):not(.theme-toggle--legal) {
    display: none;
  }

  .site-nav .theme-toggle--menu {
    display: flex;
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.54);
  }

  .site-nav .theme-toggle__label {
    display: inline;
    color: rgba(24, 20, 18, 0.96);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .site-nav__links {
    position: static;
    left: auto;
    transform: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__links a,
  .site-nav > a {
    padding: 0.95rem 1rem;
  }

  .site-header:not(.is-scrolled) .site-nav__links a,
  .js-enabled .site-nav__links a {
    color: rgba(24, 20, 18, 0.96);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
  }

  .js-enabled .site-nav__links a::after {
    background: var(--accent);
  }

  .js-enabled .site-nav__links a:hover,
  .js-enabled .site-nav__links a:focus-visible {
    background: rgba(255, 255, 255, 0.82);
  }

  html[data-theme="dark"] .js-enabled .site-nav {
    border-color: var(--line);
    background: linear-gradient(180deg, rgba(19, 26, 34, 0.98), rgba(24, 32, 40, 0.96));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  }

  html[data-theme="dark"] .site-nav .theme-toggle--menu {
    background: rgba(246, 239, 231, 0.06);
  }

  html[data-theme="dark"] .site-nav .theme-toggle__label,
  html[data-theme="dark"] .site-header:not(.is-scrolled) .site-nav__links a,
  html[data-theme="dark"] .js-enabled .site-nav__links a {
    color: var(--text);
  }

  html[data-theme="dark"] .site-header:not(.is-scrolled) .site-nav__links a,
  html[data-theme="dark"] .js-enabled .site-nav__links a {
    background: rgba(246, 239, 231, 0.06);
  }

  html[data-theme="dark"] .js-enabled .site-nav__links a:hover,
  html[data-theme="dark"] .js-enabled .site-nav__links a:focus-visible {
    background: rgba(246, 239, 231, 0.12);
  }

  .js-enabled .site-nav > .button--primary {
    margin-top: 0.25rem;
    min-height: 58px;
    font-size: 1rem;
  }

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

  .legal-page .site-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-scrolled .site-nav__links {
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-open .site-header__inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .intro-statement__actions,
  .about-card__actions,
  .contact-card__actions {
    justify-content: stretch;
  }

  .intro-statement__actions .button,
  .about-card__actions .button,
  .contact-card__actions .button {
    width: 100%;
  }

  .logo-grid,
  .service-grid,
  .steps-grid,
  .problem-list {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-list,
  .split-panel--benefits .benefit-list {
    grid-template-columns: 1fr 1fr;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 620px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .quote-strip,
  .quote-strip {
    grid-template-columns: 1fr;
    text-align: center;
    width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
  }

  .quote-strip__avatar {
    margin-inline: auto;
  }

  .about-card__media,
  .contact-card__media {
    min-height: 260px;
  }

  .site-footer__inner,
  .site-footer__meta {
    text-align: center;
    justify-items: center;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
  }

  .site-footer__links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-top: 0.35rem;
  }

  .site-header__inner {
    min-height: var(--header-height);
    padding: 0.45rem 0.1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .site-header__inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand img,
  .site-footer__brand img {
    height: 36px;
  }

  .nav-toggle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.9);
    box-shadow: 0 10px 28px rgba(35, 31, 28, 0.08);
  }

  .theme-toggle--legal .theme-toggle__track {
    box-shadow: 0 10px 28px rgba(35, 31, 28, 0.08);
  }

  .site-header:not(.is-scrolled) .nav-toggle {
    border-color: rgba(120, 204, 224, 0.24);
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle span {
    left: 50%;
    right: auto;
    width: 24px;
    transform: translateX(-50%);
  }

  .site-header:not(.is-scrolled) .nav-toggle span {
    background: #f3fbff;
  }

  .nav-toggle span:first-child {
    top: 21px;
  }

  .nav-toggle span:last-child {
    top: 31px;
  }

  .nav-open .nav-toggle span:first-child,
  .nav-open .nav-toggle span:last-child {
    top: 26px;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateX(-50%) rotate(-45deg);
  }

  html[data-theme="dark"] .nav-toggle,
  html[data-theme="dark"] .theme-toggle--legal .theme-toggle__track {
    border-color: var(--line);
    background: rgba(19, 26, 34, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 0.6rem);
  }

  .hero__center {
    gap: 0.8rem;
    transform: translateY(clamp(-3.4rem, -5vh, -2.3rem));
  }

  .section-tag,
  .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(3rem, 10.5vw, 3.8rem);
    line-height: 0.94;
  }

  .quote-strip--featured blockquote {
    max-width: 100%;
  }

  .quote-strip--featured blockquote p {
    font-size: clamp(1.76rem, 6.88vw, 2.56rem) !important;
    line-height: 0.98 !important;
  }

  .quote-strip--detail blockquote p {
    font-size: clamp(1.45rem, 5.8vw, 2rem) !important;
    line-height: 1.28 !important;
  }

  .intro-statement__lead {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.22;
  }

  .intro-statement__actions {
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.55rem;
  }

  .intro-statement__actions .button {
    width: auto;
    min-width: min(100%, 18.5rem);
    min-height: 50px;
    padding: 0.88rem 1.55rem;
    font-size: 0.98rem;
  }

  .scroll-cue {
    bottom: 1.2rem;
    gap: 0.55rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .scroll-cue__line {
    height: 62px;
  }

  .logo-grid,
  .service-grid,
  .steps-grid,
  .problem-list {
    grid-template-columns: 1fr;
  }

  .quote-strip {
    width: calc(100% - 0.85rem);
    padding: 1.45rem 1.1rem 1.1rem;
  }

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

  .logo-card {
    min-height: 86px;
    padding: 0.7rem 0.55rem;
  }

  .logo-card img {
    max-width: min(100%, 148px);
    max-height: 62px;
  }

  .benefit-list,
  .split-panel--benefits .benefit-list {
    grid-template-columns: 1fr;
  }

  .client-showcase__intro {
    margin-bottom: 1.7rem;
  }

  .problem-panel,
  .split-panel,
  .about-card,
  .contact-card,
  .cta-panel,
  .legal-card {
    border-radius: 24px;
  }

  .cta-panel h2 {
    max-width: 13ch;
  }

  .button--cta-panel {
    width: 100%;
    justify-content: space-between;
  }

  .websitecheck-form__row {
    grid-template-columns: 1fr;
  }

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

  .project-grid {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 1.45rem;
  }

  .project-card__visual {
    aspect-ratio: 0.98;
    border-radius: 0;
  }

  .modal__dialog {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .mobile-cta {
    display: inline-flex;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .project-card__visual {
    transform: none !important;
  }

  .hero__rotating::after {
    animation: none;
  }
}
