:root {
  --bg: #09090C;
  --bg-soft: #0E0E12;
  --panel: #111116;
  --panel-2: #15151B;
  --text: #F0F0EE;
  --text-muted: rgba(240, 240, 238, 0.58);
  --text-faint: rgba(240, 240, 238, 0.34);
  --accent: #6EA8FE;
  --accent-soft: rgba(110, 168, 254, 0.14);
  --teal-soft: rgba(71, 207, 168, 0.12);
  --rose-soft: rgba(204, 88, 142, 0.10);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(110, 168, 254, 0.10) 0%, rgba(9, 9, 12, 0) 30%),
    linear-gradient(215deg, rgba(71, 207, 168, 0.08) 0%, rgba(9, 9, 12, 0) 28%),
    linear-gradient(180deg, #09090C 0%, #0B0B0F 46%, #09090C 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 80%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 0;
  background: rgba(9, 9, 12, 0.64);
  backdrop-filter: blur(18px);
  border-bottom: 0.5px solid var(--border);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.site-logo {
  display: block;
  width: 172px;
  height: auto;
}

.brand-line {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-faint);
  letter-spacing: 0.11em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: #08101D;
  font-weight: 500;
  white-space: nowrap;
  border: 0.5px solid rgba(110, 168, 254, 0.55);
  border-radius: var(--radius);
  background: var(--accent);
}

.site-nav .nav-cta:hover {
  color: #08101D;
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  border-right: 1.5px solid var(--text);
  border-bottom: 1.5px solid var(--text);
  transform: translateY(-64%) rotate(45deg);
}

.language-control select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 38px;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0 42px 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  cursor: pointer;
}

.language-control select:focus {
  border-color: rgba(110, 168, 254, 0.66);
}

.hero {
  position: relative;
  min-height: calc(112svh - 70px);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background:
    radial-gradient(circle at 64% 34%, rgba(110, 168, 254, 0.20), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(204, 88, 142, 0.16), transparent 28%),
    linear-gradient(120deg, #09090C 0%, #0B0B10 46%, #101018 100%);
  border-bottom: 0.5px solid var(--border);
}

.hero-backdrop {
  display: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 30% 24%, rgba(110, 168, 254, 0.18), transparent 34%),
    radial-gradient(circle at 68% 70%, rgba(204, 88, 142, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(9, 9, 12, 0.99) 0%, rgba(9, 9, 12, 0.96) 40%, rgba(9, 9, 12, 0.74) 58%, rgba(9, 9, 12, 0.18) 82%),
    linear-gradient(180deg, rgba(9, 9, 12, 0.06) 0%, rgba(9, 9, 12, 0.34) 56%, rgba(9, 9, 12, 0.96) 100%);
  animation: hero-gradient-pulse 10s ease-in-out infinite alternate;
}

.hero::after {
  z-index: 3;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.hero-image-wall {
  position: absolute;
  top: 88px;
  right: max(-180px, -9vw);
  bottom: -34px;
  z-index: 2;
  width: min(48vw, 820px);
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.86fr;
  gap: clamp(12px, 1.3vw, 22px);
  opacity: 0.94;
  transform: rotate(-1.4deg);
  pointer-events: auto;
}

.wall-column {
  display: grid;
  gap: clamp(12px, 1.3vw, 22px);
  animation: image-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.wall-column-b {
  padding-top: clamp(36px, 8vh, 92px);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

.wall-column-c {
  padding-top: clamp(12px, 4vh, 54px);
  animation-duration: 20s;
}

.wall-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 160px;
  aspect-ratio: 1 / 1;
  border: 0.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
  transition: transform 320ms ease, opacity 320ms ease, border-color 320ms ease;
  animation: card-breathe 8s ease-in-out infinite alternate;
}

.wall-card:hover {
  z-index: 5;
  opacity: 1;
  border-color: rgba(110, 168, 254, 0.36);
  transform: translateY(-8px) scale(1.025);
}

.wall-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 12, 0) 42%, rgba(9, 9, 12, 0.42) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}

.wall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.04);
  transition: transform 600ms ease;
}

.wall-card:hover img {
  transform: scale(1.10);
}

.wall-wide {
  aspect-ratio: 1.65 / 1;
}

.wall-tall {
  aspect-ratio: 0.72 / 1;
}

@keyframes image-drift {
  from {
    transform: translate3d(0, -18px, 0);
  }
  to {
    transform: translate3d(0, 34px, 0);
  }
}

@keyframes card-breathe {
  from {
    filter: saturate(1) brightness(0.92);
  }
  to {
    filter: saturate(1.12) brightness(1.04);
  }
}

@keyframes hero-gradient-pulse {
  from {
    opacity: 0.78;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

.hero-inner {
  position: relative;
  z-index: 4;
  min-height: calc(112svh - 70px);
  padding: clamp(72px, 10vh, 120px) 0 clamp(26px, 6vh, 58px);
  display: grid;
  align-content: center;
  gap: clamp(28px, 6vh, 58px);
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.package-kicker,
.audience-label {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.8vw, 88px);
  font-weight: 300;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.hero-lead,
.lead,
.section-heading-row p,
.proof-section .section-heading-row > p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-lead {
  margin-bottom: 32px;
  max-width: 570px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 0.5px solid var(--border-strong);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  cursor: pointer;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  color: #08101D;
  background: var(--accent);
  border-color: rgba(110, 168, 254, 0.55);
}

.button-quiet {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.media-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(110, 168, 254, 0.16), transparent 38%),
    linear-gradient(215deg, rgba(204, 88, 142, 0.12), transparent 35%),
    #101015;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 12, 0.02) 50%, rgba(9, 9, 12, 0.42) 100%),
    linear-gradient(90deg, rgba(9, 9, 12, 0.10), transparent 54%);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
}

.media-frame-hero {
  min-height: 680px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  animation: rise-in 760ms ease-out both;
}

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

.hero-testimonials,
.section-testimonials {
  width: min(820px, 100%);
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  animation: rise-in 700ms ease-out both;
  animation-delay: 180ms;
}

.section-testimonials {
  width: 100%;
  margin-left: 0;
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 18px;
}

.testimonial-card,
.metric,
.feature-card,
.package-card,
.check-item,
.audience-grid article,
.process-list li,
.contact-form {
  background: rgba(17, 17, 22, 0.76);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
}

.testimonial-card {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(110, 168, 254, 0.07), transparent 55%),
    rgba(12, 12, 16, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.hero-testimonials .testimonial-card:first-child {
  transform: translateY(18px);
}

.testimonial-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-card img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 0.5px solid var(--border-strong);
  border-radius: 8px;
}

.testimonial-card h3 {
  margin-bottom: 4px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.testimonial-card header p {
  margin-bottom: 0;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: clamp(14px, 1.22vw, 19px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0;
}

.metric {
  padding: 22px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1;
}

.metric span {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-faint);
  font-size: 12px;
  font-style: italic;
}

.section {
  padding: 86px 0;
  border-top: 0.5px solid var(--border);
  scroll-margin-top: 92px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 44px;
}

@media (min-width: 981px) {
  .split-section > div:last-child {
    padding-top: 54px;
  }
}

.eyebrow,
.section-label {
  margin-bottom: 24px;
}

.feature-grid,
.included-checklist,
.audience-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 92px;
}

.feature-card {
  padding: 28px;
}

.feature-card p,
.included-checklist p,
.audience-grid p,
.process-list p,
.package-for {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 0.5px solid rgba(110, 168, 254, 0.28);
  border-radius: 8px;
  background: rgba(110, 168, 254, 0.075);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.section-heading-row p {
  margin-bottom: 22px;
  font-size: 15px;
}

.section-heading-solo {
  display: block;
  max-width: 820px;
}

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

.package-card {
  padding: 30px;
}

.package-card-large {
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 42%),
    rgba(17, 17, 22, 0.82);
  border-color: rgba(110, 168, 254, 0.22);
}

.package-kicker {
  margin-bottom: 18px;
}

.price {
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.price span {
  color: var(--text-muted);
  font-size: 17px;
}

.price > span:first-child {
  color: var(--text);
  font-size: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

li {
  color: var(--text-muted);
}

.package-card li {
  padding: 11px 0;
  border-bottom: 0.5px solid var(--border);
}

.package-card li:first-child {
  color: var(--text);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--text-faint);
  font-size: 12px;
  font-style: italic;
}

.included-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.check-item {
  position: relative;
  padding: 24px 24px 24px 72px;
}

.check-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 0.5px solid rgba(110, 168, 254, 0.30);
  background:
    linear-gradient(135deg, rgba(110, 168, 254, 0.18), rgba(110, 168, 254, 0.04));
}

.check-item::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  width: 12px;
  height: 7px;
  border-left: 1.75px solid var(--accent);
  border-bottom: 1.75px solid var(--accent);
  transform: rotate(-45deg);
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.fit-image {
  min-height: 620px;
}

.fit-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.fit-panel article,
.fit-stats,
.fit-reason-card {
  background: rgba(17, 17, 22, 0.76);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
}

.fit-panel article,
.fit-reason-card {
  padding: 30px;
}

.fit-audience-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.fit-benefit-list {
  margin: auto 0 0;
  padding-top: 20px;
}

.fit-benefit-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-top: 0.5px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.fit-benefit-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 2px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

.audience-label {
  margin-bottom: 18px;
}

.fit-audience-card .audience-label {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.fit-stats {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background:
    linear-gradient(135deg, rgba(110, 168, 254, 0.12), transparent 50%),
    rgba(17, 17, 22, 0.76);
}

.fit-proof-stack {
  display: grid;
  gap: 18px;
}

.fit-reason-card {
  background:
    linear-gradient(135deg, rgba(110, 168, 254, 0.13), transparent 55%),
    rgba(17, 17, 22, 0.76);
}

.fit-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.fit-reason-grid span {
  padding: 12px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.section-testimonials {
  position: relative;
  align-content: center;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  inset: 12% 18% 10% -6%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(110, 168, 254, 0.14), transparent 68%);
}

.section-testimonials .testimonial-card {
  padding: clamp(22px, 3vw, 34px);
}

.section-testimonials .testimonial-card:nth-child(2) {
  margin-left: 0;
}

.section-testimonials .testimonial-card blockquote {
  font-size: clamp(18px, 1.45vw, 24px);
}

.fit-stats > span {
  padding: 4px 12px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fit-stats em {
  display: block;
  font-style: normal;
}

.fit-stats strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.proof-gallery {
  column-count: 3;
  column-gap: 18px;
}

.proof-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  min-height: 0;
  margin: 0 0 18px;
}

.proof-gallery .media-frame img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.proof-gallery .media-frame::after,
.proof-gallery .media-frame::before {
  border-radius: inherit;
}

.proof-gallery .gallery-wide,
.proof-gallery .gallery-tall {
  grid-column: auto;
  grid-row: auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
}

.process-list span {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.contact-form label span {
  color: var(--text);
  font-weight: 500;
}

.contact-form label span span:last-child {
  color: var(--text-faint);
  font-weight: 300;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0.5px solid var(--border-strong);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(110, 168, 254, 0.66);
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-status.is-success {
  color: #88D9B3;
}

.form-status.is-error {
  color: #FFB4B4;
}

.form-status a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 34px 0 52px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--text-faint);
  border-top: 0.5px solid var(--border);
}

.footer-logo {
  width: 150px;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 13px;
}

address {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-style: normal;
  font-size: 13px;
}

address a:hover {
  color: var(--text);
}

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

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

  .wall-column {
    transform: none;
  }
}

@media (max-width: 980px) {
  .split-section,
  .section-heading-row,
  .fit-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-wall {
    width: 72vw;
    right: -22vw;
    opacity: 0.58;
  }

  .hero-inner {
    min-height: calc(100svh - 70px);
    padding-top: 72px;
  }

  .hero-testimonials,
  .section-testimonials,
  .feature-grid,
  .included-checklist,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-gallery {
    column-count: 2;
  }

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

@media (max-width: 720px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    align-items: center;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .site-logo {
    width: 138px;
  }

  .site-nav .nav-cta {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .language-control select {
    min-height: 34px;
    padding-left: 9px;
    padding-right: 34px;
    font-size: 12px;
  }

  .language-control::after {
    right: 12px;
    width: 8px;
    height: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-wall {
    top: 300px;
    right: -250px;
    bottom: auto;
    width: 500px;
    height: 450px;
    opacity: 0.26;
    pointer-events: none;
  }

  .wall-column {
    animation-duration: 24s;
  }

  h1 {
    font-size: clamp(44px, 15vw, 78px);
  }

  h2 {
    font-size: clamp(33px, 11vw, 52px);
  }

  .hero-lead,
  .lead {
    font-size: 16px;
  }

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

  .hero-testimonials,
  .section-testimonials,
  .feature-grid,
  .package-grid,
  .included-checklist,
  .proof-gallery,
  .process-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .testimonial-card {
    padding: 18px;
  }

  .hero-testimonials .testimonial-card:first-child {
    transform: none;
  }

  .feature-grid {
    padding-bottom: 68px;
  }

  .package-card,
  .fit-panel article,
  .contact-form {
    padding: 22px;
  }

  .fit-image {
    min-height: 360px;
  }

  .fit-stats {
    grid-template-columns: 1fr;
  }

  .fit-panel,
  .proof-metrics-grid {
    grid-template-columns: 1fr;
  }

  .fit-panel article:first-child {
    min-height: 0;
  }

  .fit-panel article:nth-child(2),
  .section-testimonials .testimonial-card:nth-child(2) {
    margin-top: 0;
    margin-left: 0;
  }

  .proof-gallery {
    column-count: 1;
    column-gap: 0;
  }

  .gallery-item {
    margin-bottom: 14px;
  }

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

  address {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 20px, var(--max));
  }

  .site-logo {
    width: 112px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav .nav-cta,
  .language-control select {
    font-size: 11px;
  }

  .language-control select {
    padding-right: 30px;
  }

  .site-nav .nav-cta {
    padding-inline: 8px;
  }
}
