:root {
  --off-white: #f7f6f2;
  --paper: #ffffff;
  --ink: #1c2733;
  --ink-soft: #5b6774;
  --steel: #3e6690;
  --teal: #4fb8a8;
  --teal-deep: #2c7a6b;
  --line: rgba(28, 39, 51, 0.12);
  --bg-dark: #16202b;
  --bg-dark-soft: #202d3b;
  --radius: 3px;
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
section {
  position: relative;
}
::selection {
  background: var(--teal);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
header .logo img {
  height: 60px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-deep);
  transition: width 0.25s ease;
}
nav a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: var(--teal-deep);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}
.hero {
  padding: 88px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1150px;
  max-width: 130vw;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-line .dash {
  width: 28px;
  height: 1.5px;
  background: var(--teal-deep);
}
.eyebrow-line span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.eyebrow-line.hero-signature {
  margin-top: 40px;
  margin-bottom: 0;
  opacity: 0.65;
}
.eyebrow-line.hero-signature span {
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.eyebrow-line.hero-signature .dash {
  width: 18px;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-deep);
}
.hero .sub {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 490px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 16px 28px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.btn-ghost:hover {
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.hero-visual {
  position: relative;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-bg-graphic {
  position: absolute;
  width: 480px;
  top: -7%;
  left: -33%;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}
.hero-bg-graphic img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 490px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(28, 39, 51, 0.35);
  line-height: 0;
  z-index: 1;
}
.hero-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 39, 51, 0) 60%,
    rgba(22, 32, 43, 0.4) 100%
  );
}
.tools-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(22, 32, 43, 0.88);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  font-size: 11.5px;
  max-width: 170px;
  line-height: 1.4;
}
.tools-badge .lab {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.tools-badge .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tools-badge .stack span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  color: var(--ink);
}
.section-head p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 16px;
}
.problem {
  padding: 96px 0 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.problem .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 96px;
}
.problem p.lead {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 600;
}
.problem p.lead + p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 0;
}
.thoughts {
  position: relative;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.thoughts::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--steel), var(--teal));
  transition: height 1.1s ease;
}
.thoughts.in-view::before {
  height: calc(100% - 8px);
}
.thought {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.thought:first-child {
  padding-top: 0;
}
.thought .idx {
  flex-shrink: 0;
  font-family: "Space Grotesk";
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal-deep);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  padding: 4px 7px;
  margin-top: 2px;
}
.thought p {
  font-size: 16.5px;
  color: var(--ink);
  font-style: italic;
}
.thought:nth-child(even) p {
  font-weight: 600;
  font-style: normal;
}
.problem-statement {
  position: relative;
  background: var(--ink);
  padding: 56px 0;
}
.problem-statement .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}
.problem-statement .statement-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--steel), var(--teal));
  transform: rotate(45deg);
  border-radius: 4px;
}
.problem-statement p {
  font-family: "Space Grotesk";
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  max-width: 720px;
}
.solution {
  padding: 100px 0;
}
.solution .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.solution p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 18px;
}
.solution p:last-of-type {
  margin-bottom: 0;
}
.flow {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(79, 184, 168, 0.04) 0px,
      rgba(79, 184, 168, 0.04) 1px,
      transparent 1px,
      transparent 26px
    ),
    var(--bg-dark);
  border-radius: 6px;
  padding: 40px 32px;
  color: #fff;
}
.flow::before {
  content: "";
  position: absolute;
  top: -14px;
  right: 34px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--steel), var(--teal-deep));
  border-radius: 3px;
  transform: rotate(45deg);
  opacity: 0.7;
}
.flow::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 8px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--steel), var(--teal));
  border-radius: 4px;
  transform: rotate(45deg);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.flow-title {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 38px;
  bottom: -14px;
  width: 0;
  border-left: 1.5px dashed rgba(79, 184, 168, 0.45);
}
.flow-dot {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--bg-dark-soft);
  border: 1.5px solid var(--teal);
  transform: rotate(45deg) scale(0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: "Space Grotesk";
  color: var(--teal);
  opacity: 0.3;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.5s ease,
    color 0.5s ease,
    box-shadow 0.5s ease;
}
.flow-dot span {
  transform: rotate(-45deg);
}
.flow.in-view .flow-dot {
  opacity: 1;
  transform: rotate(45deg) scale(1);
  background: linear-gradient(135deg, var(--steel), var(--teal));
  color: #16202b;
  box-shadow: 0 0 0 5px rgba(79, 184, 168, 0.22);
}
.flow-step:nth-child(1) .flow-dot {
  transition-delay: 0s;
}
.flow-step:nth-child(2) .flow-dot {
  transition-delay: 0.12s;
}
.flow-step:nth-child(3) .flow-dot {
  transition-delay: 0.24s;
}
.flow-step:nth-child(4) .flow-dot {
  transition-delay: 0.36s;
}
.flow-step:nth-child(5) .flow-dot {
  transition-delay: 0.48s;
}
.flow-step span.txt {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.92);
}
.benefits {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
}
.benefit-main {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}
.benefit-main::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 340px;
  height: 340px;
  background: url("../img/bg-hero.png") no-repeat center / contain;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}
.benefit-num-xl {
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: "Space Grotesk";
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  z-index: 0;
}
.benefit-main-body {
  position: relative;
  z-index: 1;
}
.benefit-main-body h3 {
  font-size: 27px;
  color: #fff;
  margin-bottom: 16px;
  max-width: 380px;
}
.benefit-main-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  max-width: 400px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.tag {
  border: 1px solid rgba(79, 184, 168, 0.4);
  border-radius: 3px;
  padding: 8px 14px;
}
.tag-label {
  display: block;
  font-family: "Space Grotesk";
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}
.tag-desc {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.benefits-side {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
}
.benefits-side::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--steel), var(--teal));
}
.benefit-line {
  display: flex;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-line:first-child {
  padding-top: 4px;
}
.benefit-line:last-child {
  border-bottom: none;
}
.benefit-line .num {
  flex-shrink: 0;
  font-family: "Space Grotesk";
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-deep);
}
.benefit-line h3 {
  font-size: 18.5px;
  margin-bottom: 10px;
}
.benefit-line p {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.portfolio {
  padding: 100px 0;
}
.case-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.case {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.case.in-view {
  opacity: 1;
  transform: translateY(0);
}
.case-reverse {
  grid-template-columns: 1fr 1.2fr;
}
.case-reverse .case-thumb {
  order: 2;
}
.case-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--steel), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: "Space Grotesk";
  text-align: center;
  padding: 20px;
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
}
.case-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--ink);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.case-tag {
  font-size: 12.5px;
  color: var(--teal-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.case h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.case-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.case-cols div p.k {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.case-cols div p.v {
  font-size: 14px;
  color: var(--ink);
}
.portfolio-note {
  margin-top: 48px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-style: italic;
}
.proof {
  padding: 80px 0;
  background: var(--bg-dark);
  color: #fff;
}
.proof .section-head h2 {
  color: #fff;
}
.proof .section-head p {
  color: rgba(255, 255, 255, 0.6);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}
.proof-item {
  background: var(--bg-dark-soft);
  padding: 32px 28px;
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin-bottom: 14px;
}
.mini-bars span {
  width: 7px;
  border-radius: 1.5px;
  background: linear-gradient(180deg, var(--steel), var(--teal));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s ease;
}
.mini-bars span:nth-child(1) {
  height: 40%;
}
.mini-bars span:nth-child(2) {
  height: 70%;
  transition-delay: 0.1s;
}
.mini-bars span:nth-child(3) {
  height: 100%;
  transition-delay: 0.2s;
}
.proof.in-view .mini-bars span {
  transform: scaleY(1);
}
.proof.in-view .mini-bars span:nth-child(3) {
  animation: ecBarPulse 2.6s ease-in-out 0.9s infinite;
}
@keyframes ecBarPulse {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.82);
  }
}
.proof-item .v {
  font-family: "Space Grotesk";
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 8px;
}
.proof-item .l {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.cta-final {
  padding: 110px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-final .wrap {
  max-width: 720px;
}
.cta-final h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
}
.cta-final p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.cta-graphic {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  max-width: 46vw;
  opacity: 0.9;
  pointer-events: none;
}
.cta-graphic img {
  width: 100%;
  height: auto;
  display: block;
}
.faq {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Space Grotesk";
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 500;
}
.faq-q .plus {
  font-size: 20px;
  color: var(--teal-deep);
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 640px;
}
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img {
  height: 30px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}
.footer-col h4 {
  font-family: "Space Grotesk";
  font-size: 13px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 11px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--teal);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 200;
  max-width: 520px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: 22px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: none;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-actions button {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.cookie-accept {
  background: var(--teal);
  color: var(--ink);
}
.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}
@media (max-width: 920px) {
  nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  nav.open {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: flex;
  }
  .hero .wrap,
  .problem .grid,
  .solution .grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 48px;
  }
  .hero-photo-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  .tools-badge {
    bottom: 10px;
    right: 10px;
    padding: 10px 12px;
  }
  .hero-bg-graphic {
    max-width: 340px;
    top: -6%;
    left: -16%;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-num-xl {
    font-size: 90px;
  }
  .benefits-side {
    margin-top: 16px;
  }
  .case,
  .case-reverse {
    grid-template-columns: 1fr;
  }
  .case-reverse .case-thumb {
    order: 0;
  }
  .problem-statement .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cta-graphic {
    display: none;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-cols {
    grid-template-columns: 1fr;
  }
  .tag-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
