:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --ink: #0e2238;
  --muted: #536579;
  --primary: #145af3;
  --primary-deep: #0e44bb;
  --soft-blue: #e8f0ff;
  --soft-gray: #eef2f6;
  --line: #d8e0ea;
  --ok: #0a8f53;
  --shadow: 0 20px 45px rgba(13, 38, 70, 0.12);
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src:
    url("assets/fonts/manrope-latin-ext.woff2") format("woff2"),
    url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0100-02BA,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+1D00-1DBF,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2000-206F,
    U+20A0-20C0,
    U+20AB,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 0%, #ffffff 0, var(--bg) 44%, #f0f4f8 100%);
  line-height: 1.55;
}

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

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-wrap {
  min-height: 100dvh;
}

.section {
  padding: 82px 0;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section-soft {
  background: linear-gradient(180deg, #eff4f8, #f7f9fb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-accent {
  background: linear-gradient(130deg, #ddf2ff, #eef3ff);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #bad2ff;
  background: #f6f9ff;
  color: #2454c5;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #28425f;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 8px 2px;
  border-radius: 0;
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a.active {
  color: var(--primary-deep);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-links a:hover {
  color: #163b7b;
}

.nav-links .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(20, 90, 243, 0.18);
}

.nav-links .nav-cta:hover {
  color: #ffffff;
  background: var(--primary-deep);
}

.nav-links .nav-cta.active::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(180, 194, 219, 0.9);
  background: rgba(255, 255, 255, 0.72);
  color: #1f3f8f;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle:hover {
  border-color: rgba(31, 63, 143, 0.26);
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(20, 90, 243, 0.22);
  outline-offset: 3px;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(5.8px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

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

.hero-area {
  position: relative;
  padding: 10px 0 66px;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.46) 24%, rgba(255, 255, 255, 0) 54%),
    linear-gradient(115deg, rgba(238, 242, 248, 0.8) 0%, rgba(232, 237, 246, 0.68) 41%, rgba(226, 233, 244, 0.24) 59%, rgba(224, 231, 242, 0.06) 100%);
}

.hero-area::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(238, 242, 248, 0.5) 0%, rgba(238, 242, 248, 0.2) 36%, rgba(238, 242, 248, 0.06) 100%),
    url("assets/Nano_Banana_2_Create_a_visual_metaphor_representing_business_success_vs_stagnation__both_on_the_left.webp");
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.015);
  opacity: 0.44;
}

.hero-showcase {
  position: absolute;
  top: -56px;
  right: -150px;
  bottom: -180px;
  width: min(52vw, 780px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.96;
  transform: rotate(14deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 16%, rgba(0, 0, 0, 1) 82%, transparent 100%);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 245, 248, 0.42) 0%, rgba(243, 245, 248, 0.08) 14%, rgba(243, 245, 248, 0) 28%);
  z-index: 2;
}

.hero-showcase-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 22px;
  align-items: start;
}

.hero-showcase-column {
  display: grid;
  gap: 20px;
  align-content: start;
  will-change: transform;
}

.hero-showcase-stack {
  display: grid;
  gap: 20px;
}

.column-a {
  animation: heroShowcaseDown 38s linear infinite;
}

.column-b {
  padding-top: 120px;
  animation: heroShowcaseDown 44s linear infinite reverse;
}

.column-c {
  padding-top: 64px;
  animation: heroShowcaseDown 40s linear infinite;
}

.hero-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(207, 217, 230, 0.28);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 45px rgba(17, 35, 67, 0.12);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-shot-landscape {
  aspect-ratio: 1.2 / 1;
}

.hero-shot-portrait {
  aspect-ratio: 0.72 / 1;
}

.hero-shot-featured {
  box-shadow: 0 30px 60px rgba(12, 30, 60, 0.2);
}

.hero-area .container {
  position: relative;
  z-index: 3;
}

.hero-divider-graphic {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: clamp(158px, 18vw, 260px);
  z-index: 2;
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
}

.hero-divider-graphic img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
}

@keyframes heroShowcaseDown {
  0% {
    transform: translateY(-48%);
  }

  100% {
    transform: translateY(0%);
  }
}

.hero-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 620px;
  min-height: 620px;
}

.hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.hero-highlight {
  color: var(--primary);
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  max-width: 620px;
}

.case-study-sub {
  margin-top: -6px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  border: none;
  border-radius: 10px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-ghost {
  background: transparent;
  border: 1px solid #99b4e8;
  color: #2a4f96;
}

.hero-checks {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #2e4967;
  font-size: 0.95rem;
}

.hero-checks li {
  position: relative;
  padding-left: 22px;
}

.hero-checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}

.hero-showcase-mobile {
  display: none;
}

.hero-shot-mobile {
  width: clamp(144px, 32vw, 190px);
  aspect-ratio: 0.72 / 1;
  flex: 0 0 auto;
}

.hero-showcase-mobile-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: heroShowcaseMobileScroll 28s linear infinite;
}

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

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

.hero-divider {
  display: none;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-copy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 70ch;
}

.section-copy.left {
  max-width: 560px;
}

.case-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.case-card {
  background: var(--surface);
  border: 1px solid #d8e2ef;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(16, 36, 65, 0.07);
}

.case-card h3 {
  max-width: 36ch;
}

.compare {
  --compare-h: clamp(280px, 36vw, 500px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: var(--compare-h);
  width: min(100%, calc(var(--compare-h) * var(--compare-ratio, 0.707)));
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #cdd9ea;
  background: linear-gradient(180deg, #fbfdff, #f4f7fc);
}

.compare-base,
.compare-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.compare-base img,
.compare-overlay img,
.compare-base video,
.compare-overlay video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  filter: saturate(0.98) contrast(1.02);
}

.compare-overlay {
  width: 100%;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: #ffffff;
  transform: translateX(-1.5px);
  box-shadow: 0 0 0 1px rgba(16, 34, 56, 0.12);
  z-index: 2;
  cursor: ew-resize;
  touch-action: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  background: #145af3;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 12px;
  padding: 8px 14px 10px;
  box-shadow: 0 12px 22px rgba(20, 60, 120, 0.28);
  letter-spacing: 2px;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.compare-label {
  position: absolute;
  top: 10px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(20, 90, 243, 0.92);
  color: #ffffff;
}

.compare-label.before {
  left: 10px;
}

.compare-label.after {
  right: 10px;
}

.compare-range {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.case-card-strong {
  background: linear-gradient(165deg, #f9fcff, #edf3ff);
  border-color: #bcd1ff;
}

.case-tag {
  color: #3f5c8c;
  font-weight: 700;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.case-card h3 {
  margin-top: 10px;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
}

.case-card p {
  margin-top: 12px;
  color: var(--muted);
}

.case-card ul {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.case-card li {
  color: #11395d;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.case-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ok);
}

.insights-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.insights-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  background: var(--surface);
  border: 1px solid #d8e2ef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 36, 65, 0.06);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: #bcd1ff;
  box-shadow: 0 18px 38px rgba(16, 36, 65, 0.1);
}

.insight-media {
  display: block;
  background: linear-gradient(180deg, #fbfdff, #f4f7fc);
  border-bottom: 1px solid #e2eaf5;
}

.insight-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.insight-body {
  padding: 18px 18px 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.insight-body h3 {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

.insight-body h3 a:hover {
  color: var(--primary-deep);
}

.insight-body p {
  color: var(--muted);
  margin: 0;
}

.insight-link {
  margin-top: 6px;
  font-weight: 800;
  color: #1f3f8f;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.insight-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.insight-card:hover .insight-link::after {
  transform: translateX(2px);
}

.faq-wrap {
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 12px 28px rgba(16, 36, 65, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  color: #163555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #e9f0ff;
  color: #1f3f8f;
  flex: 0 0 auto;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: #dcebff;
}

.faq-answer {
  padding: 0 18px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.problem-list {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.problem-list li {
  background: var(--surface);
  border: 1px solid #d7e0ec;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
  color: #163555;
}

.dark-list li {
  background: rgba(255, 255, 255, 0.55);
}

.solution-box {
  background: linear-gradient(160deg, #122b57, #16376b);
  color: #dce7ff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.solution-box h3 {
  color: #ffffff;
  font-size: 1.3rem;
}

.solution-box p {
  margin-top: 14px;
  max-width: 62ch;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.intro-copy h2 {
  margin-top: 14px;
  max-width: 18ch;
}

.intro-offer {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid #c9d8f1;
  background: linear-gradient(160deg, #153766, #1b4380);
  color: #e3eeff;
  box-shadow: 0 20px 40px rgba(16, 36, 65, 0.12);
}

.intro-offer-label {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-offer p:last-child {
  margin-top: 10px;
}

.intro-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 760px;
  justify-self: stretch;
}

.about-video-screen {
  position: absolute;
  left: 13.1%;
  right: 11.8%;
  top: 3.8%;
  bottom: 10.4%;
  overflow: hidden;
  border-radius: 12px;
  background: #0e2238;
  z-index: 1;
}

.about-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #0e2238;
}

.about-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
}

.about-video-play {
  position: absolute;
  z-index: 4;
  border: none;
  cursor: pointer;
  font: inherit;
}

.about-video-play {
  left: 50%;
  top: 43.5%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(20, 90, 243, 0.9);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(20, 60, 120, 0.24);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  padding-left: 3px;
}

.about-video-card[data-video-state='playing'] .about-video-play {
  opacity: 0;
  pointer-events: none;
}

.about-video-play:hover {
  transform: translate(-50%, -50%) scale(1.02);
}

.case-study-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.case-study-head h2 {
  text-align: center;
  margin: 0;
}

.case-head-left,
.case-head-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.case-head-left img,
.case-head-right img {
  width: min(120px, 18vw);
  height: auto;
  display: block;
}

.case-study-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

.case-study-right,
.case-study-copy {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 14px;
  padding: 12px;
}

.case-study-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transform: scale(1.08);
  transform-origin: center;
}

.case-study-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-study-right {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #edf3ff 100%);
  overflow: hidden;
  height: 100%;
  min-height: 100%;
}

.case-carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.case-carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56%;
  aspect-ratio: 0.72 / 1;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d8e2ef;
  box-shadow: 0 22px 42px rgba(16, 36, 65, 0.12);
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
  transition:
    transform 0.7s cubic-bezier(0.22, 0.7, 0.2, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
}

.case-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: none;
}

.case-carousel-slide.is-active {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: none;
}

.case-carousel-slide.is-prev {
  z-index: 2;
  transform: translate(-88%, -47%) scale(0.82);
  opacity: 0.72;
  filter: saturate(0.92) blur(0.2px);
}

.case-carousel-slide.is-next {
  z-index: 2;
  transform: translate(-12%, -47%) scale(0.82);
  opacity: 0.72;
  filter: saturate(0.92) blur(0.2px);
}

.case-carousel-slide.is-off-center {
  z-index: 1;
  transform: translate(-50%, -48%) scale(0.76);
  opacity: 0;
  filter: blur(0.8px);
}

.case-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid #c9d8f1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #14365f;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 4;
  box-shadow: 0 14px 28px rgba(16, 36, 65, 0.12);
}

.case-carousel-prev {
  left: 16px;
}

.case-carousel-next {
  right: 16px;
}

.case-study-copy h3 {
  margin-top: 8px;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
}

.case-study-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.case-study-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e0e7f1;
}

.case-study-detail h4 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #163555;
}

.case-study-detail p {
  margin-top: 10px;
}

.case-study-proof {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  border: 1px solid #d8e3f3;
}

.case-proof-title {
  margin: 0;
  color: #163555;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.case-study-proof ul {
  margin-top: 12px;
}

.case-study-copy ul {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.case-study-copy li {
  color: #11395d;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.case-study-copy li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ok);
}

.process-timeline {
  --process-progress: 0%;
  margin-top: 32px;
  max-width: 860px;
  position: relative;
  padding-left: 0;
}

.process-line {
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: #d8e3f0;
}

.process-line-fill {
  width: 100%;
  height: var(--process-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, #22bce5 0%, #145af3 100%);
  transition: height 0.1s linear;
}

.process-step {
  position: relative;
  background: #ffffff;
  border: 1px solid #d8e3f0;
  border-radius: 14px;
  padding: 22px 22px 22px 88px;
  margin-bottom: 16px;
  opacity: 0.72;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-number {
  position: absolute;
  left: 24px;
  top: 22px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dcebff;
  color: #2050ba;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.process-icon {
  position: absolute;
  left: 52px;
  top: 20px;
  font-size: 1.15rem;
  line-height: 1;
}

.process-step-time {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid #cfddf5;
  color: #1f4aa8;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  margin-top: 0;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  padding-right: 92px;
}

.process-step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.process-points {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.process-points li {
  position: relative;
  padding-left: 20px;
  color: #11395d;
  font-weight: 600;
}

.process-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ok);
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: #b9cfee;
  box-shadow: 0 10px 24px rgba(20, 60, 110, 0.1);
}

.process-step.is-active .process-step-number {
  background: #145af3;
  color: #ffffff;
}

.offer-form {
  background: #ffffff;
  border: 1px solid #c8d8f4;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 9px;
}

.offer-form label {
  font-size: 0.85rem;
  color: #344c66;
  font-weight: 700;
}

.offer-form input {
  border: 1px solid #bfd0ea;
  border-radius: 10px;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
}

.offer-form input:focus {
  outline: 2px solid #9fc0ff;
  border-color: #89afe8;
}

.offer-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.2em;
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #f5f8fc;
  font-size: 0.9rem;
  color: #48627e;
}

.form-status[data-state='loading'] {
  border-color: #d4e0f5;
  background: #f4f8ff;
  color: #3f5c8c;
}

.form-status[data-state='success'] {
  border-color: #b7e2cc;
  background: #eefaf3;
  color: #0a8f53;
}

.form-status[data-state='error'] {
  border-color: #f1c5bc;
  background: #fff4f1;
  color: #b5472f;
}

.trust-box {
  text-align: center;
  max-width: 820px;
}

.trust-box p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
  text-align: left;
}

.about-media-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-media {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(16, 36, 65, 0.06);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.about-caption {
  margin-top: 10px;
  color: #48627e;
  font-size: 0.86rem;
  font-weight: 600;
}

.about-trust-card {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #d8e3f3;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 28px rgba(16, 36, 65, 0.05);
}

.about-copy p {
  margin-top: 12px;
  max-width: 70ch;
}

.about-copy p:first-child {
  margin-top: 0;
  font-weight: 700;
  color: #2b4766;
}

.about-checks {
  margin-top: 0;
  max-width: none;
}

.trust-points {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-points span {
  border: 1px solid #c9d8ee;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #ffffff;
}

.subpage-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.subpage-title {
  margin: 20px 0 12px;
}

.subpage-title h1 {
  margin-top: 14px;
  font-size: clamp(1.95rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 840px;
}

.blog {
  padding-top: 58px;
}

.blog-layout {
  max-width: 860px;
}

.blog-lead {
  margin-top: 14px;
  max-width: 70ch;
}

.blog-article {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(16, 36, 65, 0.06);
}

.blog-article p {
  margin-top: 14px;
  color: #2f4764;
  max-width: 72ch;
}

.blog-article p:first-child {
  margin-top: 0;
}

.blog-article h2 {
  margin-top: 26px;
}

.blog-article h3 {
  margin-top: 18px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.blog-list {
  margin-top: 14px;
  padding-left: 18px;
  color: #2f4764;
  max-width: 72ch;
  display: grid;
  gap: 8px;
}

.blog-cta {
  margin-top: 32px;
  background: linear-gradient(130deg, #ddf2ff, #eef3ff);
  border: 1px solid #c8d8f4;
  border-radius: 16px;
  padding: 22px;
}

.blog-cta p {
  color: var(--muted);
}

.legal {
  min-height: 54dvh;
}

.legal-copy h2 {
  margin-bottom: 18px;
}

.legal-copy h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.legal-copy h4 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-copy p {
  color: #2f4764;
}

.legal-list {
  margin-top: 10px;
  margin-left: 18px;
  display: grid;
  gap: 8px;
  color: #2f4764;
}

.legal-note {
  margin-top: 24px;
  font-weight: 700;
  color: #5b3411;
  background: #fff5dd;
  border: 1px solid #ebd8aa;
  border-radius: 10px;
  padding: 12px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.footer p,
.footer li,
.footer li a {
  color: #48627e;
  font-size: 0.9rem;
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #c9d8f1;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(16, 36, 65, 0.16);
  backdrop-filter: blur(10px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__copy strong {
  display: block;
  font-size: 1rem;
  color: #163555;
}

.cookie-banner__copy p {
  margin-top: 6px;
  max-width: 62ch;
  color: #48627e;
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

@media (max-width: 1000px) {
  .hero-area {
    min-height: auto;
  }

  .hero-showcase {
    right: -210px;
    width: min(62vw, 620px);
    opacity: 0.34;
  }

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

  .case-study-grid {
    grid-template-columns: 1fr;
  }

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

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

  .case-study-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-items: stretch;
    text-align: left;
    gap: 10px;
    margin-bottom: 18px;
  }

  .case-head-left img,
  .case-head-right img {
    width: min(112px, 20vw);
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .hero-area {
    padding-bottom: 36px;
    background:
      radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0) 60%),
      linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  }

  .hero-showcase {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    max-width: 100%;
    gap: 22px;
  }

  .hero-copy {
    display: grid;
    gap: 0;
  }

  .hero-showcase-mobile {
    display: block;
    margin-top: 22px;
    margin-right: -4vw;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, transparent 100%);
  }

  .case-card {
    padding: 16px 14px 18px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-copy h2 {
    max-width: none;
  }

  .intro-offer {
    padding: 18px;
  }

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

  .about-video-card {
    aspect-ratio: 16 / 9;
    width: 100%;
    justify-self: stretch;
  }

  .about-video-play {
    width: 54px;
    height: 54px;
  }

  .compare {
    --compare-h: clamp(360px, 92vw, 560px);
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .compare-line {
    width: 2px;
    transform: translateX(-1px);
  }

  .compare-handle {
    font-size: 1.22rem;
    border-radius: 999px;
    padding: 7px 11px 8px;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 18px rgba(20, 60, 120, 0.18);
  }

  .compare-label {
    top: 8px;
    padding: 4px 9px;
    border: 1px solid rgba(20, 90, 243, 0.16);
    background: rgba(255, 255, 255, 0.88);
    color: #2454c5;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
  }

  .compare-label.before {
    left: 8px;
  }

  .compare-label.after {
    right: 8px;
  }

  .case-study-right {
    height: clamp(340px, 72vw, 560px);
  }

  .case-study-head {
    gap: 8px;
    margin-bottom: 12px;
  }

  .case-study-head h2 {
    text-align: left;
    font-size: clamp(1.45rem, 5vw, 1.9rem);
    line-height: 1.08;
  }

  .case-head-left,
  .case-head-right {
    align-self: start;
  }

  .case-head-left img,
  .case-head-right img {
    width: min(72px, 16vw);
  }

  .case-study-sub {
    margin-top: 0;
  }

  .case-carousel-slide {
    width: min(68%, 320px);
  }

  .case-carousel-prev {
    left: 12px;
  }

  .case-carousel-next {
    right: 12px;
  }

  .hero-divider-graphic {
    bottom: -6px;
    height: clamp(118px, 20vw, 172px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
    padding: 12px 0 8px;
  }

  .brand {
    min-width: 0;
    font-size: 1rem;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid #d8e0ed;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(16, 36, 65, 0.08);
    backdrop-filter: blur(10px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    background: transparent;
  }

  .nav-links a.active {
    background: #eef4ff;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 2px;
    text-align: center;
    padding: 12px 16px;
    justify-content: center;
  }

  .section {
    padding: 68px 0;
  }

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

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }
}
