@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --bg: #f3f6fc;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --text: #0c1324;
  --text-muted: #4d5e7f;
  --text-accent: #1c67d9;
  --border-soft: rgba(12, 19, 36, 0.1);
  --focus: rgba(12, 19, 36, 0.18);
  --accent: #1b4075;
  --shadow-soft: 0 28px 70px rgba(11, 30, 65, 0.1);
  --max-width: 1180px;
  --line: rgba(12, 19, 36, 0.12);
  --line-strong: rgba(12, 19, 36, 0.22);
  --text-soft: #51607a;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-sm: 12px;
  --shadow-lg: 0 30px 80px rgba(12, 19, 36, 0.12);
  --shadow-md: 0 14px 40px rgba(12, 19, 36, 0.1);
}

/* Keep hero intro as clean surface (no card shell) */
.landing-page .hero-premium .hero-content {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

p,
li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% -6%, rgba(28, 61, 114, 0.17), transparent 36%),
    radial-gradient(circle at 92% 0%, rgba(12, 107, 240, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafd 45%, #f2f6fc 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

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

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

main {
  padding-bottom: 80px;
}

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(12, 19, 36, 0.12);
  background: rgba(255, 255, 255, 0.93);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.mobile-menu-btn,
.mobile-cta {
  display: none;
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(12, 19, 36, 0.14);
  background: rgba(255, 255, 255, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-btn .menu-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.mobile-menu-btn .menu-icon::before,
.mobile-menu-btn .menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu-btn .menu-icon::before {
  top: -6px;
}

.mobile-menu-btn .menu-icon::after {
  top: 6px;
}

.mobile-cta {
  display: none;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(140deg, #111b31 0%, #152849 100%);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 157px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: 0;
  position: relative;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  transform: scale(1.36);
}

.brand-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  display: none;
}

.brand > span:last-child {
  display: none;
}

.kicker {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.top-nav {
  display: flex;
  gap: 22px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.top-nav a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.top-nav a:hover,
.top-nav a:focus {
  color: var(--accent);
  background: rgba(28, 103, 217, 0.1);
}

.top-nav a.is-active {
  color: var(--accent);
  background: rgba(28, 103, 217, 0.14);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
}

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

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 23, 0.5);
}

.mobile-drawer-panel {
  position: relative;
  width: min(88vw, 360px);
  height: 100%;
  background: #fff;
  box-shadow: 24px 0 50px rgba(7, 12, 23, 0.2);
  padding: 1.2rem 1.3rem;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}

.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(12, 19, 36, 0.12);
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-nav {
  display: grid;
  gap: 10px;
}

.mobile-drawer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  border-radius: 10px;
  padding: 0 0.7rem;
  color: var(--text);
  background: rgba(17, 33, 64, 0.04);
}

.mobile-drawer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer,
  .mobile-drawer-panel {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  background: linear-gradient(130deg, #111b31, #1b3d75);
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 27, 49, 0.22);
}

.btn-secondary {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(28, 103, 217, 0.35);
  color: var(--accent);
}

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

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(17, 27, 49, 0.28);
}

.page-width {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.hero {
  margin: 0 auto;
  width: min(var(--max-width), calc(100% - 2.5rem));
  padding: clamp(2.2rem, 4vw, 4.2rem) 0 2.2rem;
  display: grid;
  gap: 32px;
}

.hero > div {
  border-radius: 34px;
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 88% 18%, rgba(28, 103, 217, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 3.4vw, 3.2rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  background: var(--surface);
  border-radius: 34px;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.95rem);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.03em;
}

.hero h1 span {
  font-family: 'Fraunces', 'Times New Roman', serif;
  color: var(--accent);
}

.hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
}

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

.hero-trust,
.micro-trust {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-wrap {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.25rem 0;
  display: grid;
  gap: 24px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
}

.section-head {
  display: grid;
  gap: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-card {
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 1.75rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.9));
  box-shadow: var(--shadow-soft);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 64, 117, 0.24);
  box-shadow: 0 28px 55px rgba(11, 30, 65, 0.16);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(250px, 420px) minmax(0, 1fr);
  gap: 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  align-items: start;
}

.bullet-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.bullet-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--text);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.step-card {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.step-item {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 1.25rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.92));
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(11, 30, 65, 0.14);
}

.step-index {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step-card h3 {
  margin: 0 0 6px;
}

.step-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.about-panel {
  border-radius: 30px;
  background: var(--surface);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-figure {
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-soft);
  height: 100%;
}

.about-figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-panel {
  margin-top: 2rem;
  border-radius: 34px;
  padding: 2.5rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.site-footer .footer-inner {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  width: 180px;
  height: auto;
  display: block;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
}

.final-cta {
  border-radius: 30px;
  padding: 2.4rem;
  background:
    radial-gradient(circle at 8% 8%, rgba(28, 103, 217, 0.12), transparent 38%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
  border: 1px solid rgba(27, 64, 117, 0.18);
  box-shadow: 0 30px 64px rgba(11, 30, 65, 0.12);
  text-align: center;
  display: grid;
  gap: 12px;
}

.final-cta .section-title {
  color: var(--accent);
}

.live-strip {
  padding-top: 0;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.live-card {
  border: 1px solid rgba(27, 64, 117, 0.16);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.9));
  box-shadow: 0 16px 40px rgba(11, 30, 65, 0.1);
}

.live-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.live-value {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.live-copy {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.solution-switch {
  border: 1px solid rgba(27, 64, 117, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
  box-shadow: 0 16px 42px rgba(11, 30, 65, 0.08);
}

.solution-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.solution-tab {
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.solution-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1a4e94, #0f2b55);
}

.solution-body {
  margin-top: 1rem;
}

.solution-body h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.solution-body p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.fade-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 45;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #1f57a6, #1b3d75);
  box-shadow: 0 0 14px rgba(27, 64, 117, 0.32);
  transition: width 0.12s linear;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 131px;
    height: 46px;
  }

  .hero p {
    font-size: 1rem;
  }

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

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

  .top-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .header-inner {
    min-height: 64px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }

  .top-nav {
    display: none;
  }

  .header-inner .btn.btn-primary {
    display: none;
  }

  .mobile-menu-btn,
  .mobile-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    justify-self: start;
  }

  .brand {
    justify-self: center;
  }

  .mobile-cta {
    justify-self: end;
  }

  .brand-logo {
    width: 110px;
    height: 38px;
  }

  .landing-page .landing-wrap {
    width: calc(100% - 1.4rem);
  }

  .landing-page .section {
    padding: 64px 0;
  }

  .landing-page .section-shell {
    padding: 1.4rem;
  }

  .landing-page .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .landing-page .hero-premium {
    padding: 1.6rem 0 0.9rem;
  }

  .landing-page .hero-premium .hero-content {
    padding: 1.05rem 1.2rem;
    border-radius: 18px;
  }

  .landing-page .hero-premium h1 {
    font-size: 2.2rem;
    line-height: 1.14;
  }

  .landing-page .kicker {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .landing-page .section-marker {
    font-size: 0.6rem;
  }

  .landing-page .hero-subline,
  .landing-page .section-subtitle,
  .landing-page .service-copy p,
  .landing-page .psy-copy p {
    font-size: 1rem;
    max-width: 34rem;
  }

  .landing-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .landing-page .hero-actions .btn {
    width: 100%;
  }

  .landing-page .trust-line {
    font-size: 0.84rem;
  }

  .landing-page .about-card {
    width: 100%;
    padding: 0.7rem 0.8rem;
  }

  .landing-page .about-card-body {
    grid-template-columns: 64px 1fr;
    gap: 0.7rem;
  }

  .landing-page .about-card-photo {
    width: 64px;
    height: 64px;
  }

  .landing-page .hero-intel {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .landing-page .hero-intel h3 {
    font-size: 0.98rem;
  }

  .landing-page .hero-intel-line,
  .landing-page .hero-intel-foot {
    font-size: 0.8rem;
  }

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

  .landing-page .fit-card-muted {
    order: 2;
  }

  .landing-page .fit-card ul {
    gap: 0.7rem;
  }

  .landing-page .psy-item,
  .landing-page .psy-item-reverse {
    grid-template-columns: 1fr;
  }

  .landing-page .psy-item-reverse .psy-visual,
  .landing-page .psy-item-reverse .psy-copy {
    order: initial;
  }

  .landing-page .psy-visual {
    max-width: 360px;
  }

  .landing-page .psy-visual > * {
    max-width: 360px;
  }

  .landing-page .service-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "bullets";
    gap: 1.2rem;
    padding: 1.3rem 0;
  }

  .landing-page .service-block.is-reverse {
    grid-template-areas:
      "copy"
      "visual"
      "bullets";
  }

  .landing-page .visual-screen,
  .landing-page .visual-editor,
  .landing-page .visual-flow {
    width: 100%;
    max-height: 260px;
    padding: 1rem;
    border-radius: 18px;
  }

  .landing-page .service-bullets {
    margin-top: 0.2rem;
  }

  .landing-page .process-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .process-card {
    min-height: unset;
  }

  .landing-page .faq-item summary {
    font-size: 0.98rem;
    min-height: 48px;
  }

  .landing-page .mobile-sticky-cta {
    display: inline-flex;
    left: 0.6rem;
    right: 0.6rem;
    height: 56px;
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
    font-size: 0.78rem;
  }

  .landing-page main {
    padding-bottom: 6.4rem;
  }
}

@media (max-width: 420px) {
  .landing-page .landing-wrap {
    width: calc(100% - 1.2rem);
  }

  .landing-page .section {
    padding: 56px 0;
  }

  .landing-page .hero-premium h1 {
    font-size: 2rem;
  }

  .landing-page .section-title {
    font-size: 1.5rem;
  }

  .landing-page .about-card-body {
    grid-template-columns: 56px 1fr;
  }

  .landing-page .about-card-photo {
    width: 56px;
    height: 56px;
  }
}

/* Landing Redesign: premium, ruhig, strukturiert */
.landing-page .landing-wrap {
  width: min(1180px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.landing-page .hero-premium {
  padding: clamp(2.6rem, 5vw, 4.2rem) 0 1.6rem;
}

.landing-page .hero > div {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.landing-page .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  align-items: stretch;
}

.landing-page .hero-side {
  display: grid;
  gap: 14px;
}

.landing-page .about-card {
  border: 1px solid rgba(12, 19, 36, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.9));
  padding: 0.7rem 0.95rem;
  box-shadow: 0 16px 28px rgba(11, 30, 65, 0.12);
  display: grid;
  gap: 0.8rem;
  width: min(360px, 100%);
}

.landing-page .about-card-body {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
}

.landing-page .about-card-photo {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 19, 36, 0.2);
  box-shadow: 0 10px 22px rgba(11, 30, 65, 0.18);
}

.landing-page .about-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-page .about-card-copy {
  display: grid;
  gap: 0.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.landing-page .about-card-copy strong {
  font-size: 1.08rem;
  color: var(--text);
}

.landing-page .about-card-copy p {
  margin: 0;
  font-size: 0.88rem;
}

.landing-page .hero-premium .hero-content {
  max-width: 720px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.landing-page .hero-premium h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.85rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin: 0;
}

.landing-page .hero-premium h1 span {
  color: var(--accent);
  font-weight: 800;
}

.landing-page .hero-subline {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  max-width: 700px;
}

.landing-page .trust-line {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.landing-page .hero-intel {
  border: 1px solid rgba(12, 19, 36, 0.13);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  padding: 1.2rem 1.2rem 1.05rem;
  box-shadow: 0 20px 48px rgba(11, 30, 65, 0.1);
  display: grid;
  gap: 10px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-page .hero-intel h3 {
  font-size: 1rem;
}

.landing-page .hero-intel-line,
.landing-page .hero-intel-foot {
  font-size: 0.84rem;
}

.landing-page .hero-intel-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.landing-page .hero-intel h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.landing-page .hero-intel-line {
  margin: 0;
  color: var(--text-muted);
  min-height: 2.8em;
}

.landing-page .hero-insight-box {
  display: inline-flex;
  align-self: flex-start;
  max-width: min(34ch, 100%);
  border: 1px solid rgba(12, 19, 36, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.9));
  box-shadow:
    0 10px 24px rgba(11, 30, 65, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 0.56rem 0.68rem;
  transform: translateZ(0);
}

.landing-page .hero-intel-line.is-swipe-out-left {
  animation: insightOutLeft 0.24s ease forwards;
}

.landing-page .hero-intel-line.is-swipe-in-left {
  animation: insightInLeft 0.34s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.landing-page .hero-intel-line.is-swipe-out-right {
  animation: insightOutRight 0.24s ease forwards;
}

.landing-page .hero-intel-line.is-swipe-in-right {
  animation: insightInRight 0.34s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes insightOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: translateX(-16px) rotateX(4deg);
  }
}

@keyframes insightInLeft {
  from {
    opacity: 0;
    transform: translateX(16px) rotateX(-4deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
  }
}

@keyframes insightOutRight {
  from {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: translateX(16px) rotateX(-4deg);
  }
}

@keyframes insightInRight {
  from {
    opacity: 0;
    transform: translateX(-16px) rotateX(4deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
  }
}

.landing-page .hero-insight-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.landing-page .hero-insight-btn {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(12, 19, 36, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.landing-page .hero-insight-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.landing-page .hero-insight-dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 19, 36, 0.25);
  padding: 0;
  cursor: pointer;
}

.landing-page .hero-insight-dot.is-active {
  background: var(--accent);
}

.landing-page .hero-signal-list {
  display: grid;
  gap: 9px;
}

.landing-page .hero-signal-item {
  display: grid;
  gap: 6px;
}

.landing-page .hero-signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.landing-page .hero-signal-head strong {
  color: var(--text);
  font-size: 0.8rem;
}

.landing-page .hero-signal-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(27, 64, 117, 0.12);
  overflow: hidden;
}

.landing-page .hero-signal-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1d4f95, #0f2f61);
  transition: width 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.landing-page .hero-intel-foot {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.landing-page .hero-intel.is-interactive {
  box-shadow: 0 28px 60px rgba(11, 30, 65, 0.14);
}

.landing-page .section {
  padding: 2.7rem 0;
}

.landing-page .section-head {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(27, 64, 117, 0.28);
}

.landing-page .section-title {
  max-width: 760px;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  letter-spacing: -0.025em;
}

.landing-page .section-subtitle-wide {
  max-width: 740px;
}

.landing-page .section-marker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.landing-page .section-shell {
  border: 1px solid rgba(12, 19, 36, 0.08);
  border-radius: 26px;
  padding: 2.2rem;
}

.landing-page .section-soft {
  background: rgba(255, 255, 255, 0.82);
}

.landing-page .section-clear {
  background: rgba(248, 251, 255, 0.64);
}

.landing-page .fit-grid,
.landing-page .insight-grid,
.landing-page .service-grid,
.landing-page .process-grid {
  display: grid;
  gap: 16px;
}

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

.landing-page .fit-card {
  border: 1px solid rgba(23, 72, 140, 0.32);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(230, 241, 255, 0.98));
  padding: 1.35rem 1.35rem 1.3rem 1.55rem;
  position: relative;
  box-shadow: 0 22px 44px rgba(16, 50, 98, 0.18), 0 4px 12px rgba(16, 50, 98, 0.12);
  transform: translateY(-2px);
}

.landing-page .fit-card::before {
  content: '';
  position: absolute;
  left: 0.88rem;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 92, 166, 0.7), rgba(36, 92, 166, 0.2));
}

.landing-page .fit-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1e4f95;
}

.landing-page .fit-card ul {
  margin: 0.75rem 0 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.landing-page .fit-card-muted {
  border-color: rgba(12, 19, 36, 0.1);
  background: rgba(250, 252, 255, 0.72);
  box-shadow: none;
}

.landing-page .fit-card-muted::before {
  background: rgba(12, 19, 36, 0.12);
}

.landing-page .fit-card-muted h3 {
  color: var(--text);
}

.landing-page .fit-card-muted ul {
  color: rgba(77, 94, 127, 0.9);
}

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

.landing-page .insight-card {
  border: 1px solid rgba(12, 19, 36, 0.1);
  border-radius: 20px;
  padding: 1.2rem 1.2rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
}

.landing-page .insight-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.landing-page .insight-card p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
}

.landing-page .service-blocks {
  display: grid;
  gap: 2.4rem;
}

.landing-page .service-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-areas:
    "copy visual"
    "bullets visual";
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
  padding: clamp(1.4rem, 2.6vw, 2rem) 0;
  border-top: 1px solid rgba(12, 19, 36, 0.08);
}

.landing-page .service-block:first-child {
  border-top: none;
  padding-top: 0.2rem;
}

.landing-page .service-block.is-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "visual copy"
    "visual bullets";
}

.landing-page .service-copy {
  display: grid;
  gap: 0.65rem;
  grid-area: copy;
}

.landing-page .service-index {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.landing-page .service-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}

.landing-page .service-copy p {
  margin: 0;
  color: var(--text-muted);
}

.landing-page .service-bullets {
  margin: 0.7rem 0 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  grid-area: bullets;
}

.landing-page .service-visual {
  display: grid;
  place-items: center;
  grid-area: visual;
}

.landing-page .visual-screen,
.landing-page .visual-editor,
.landing-page .visual-flow {
  width: min(360px, 100%);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.95));
  border: 1px solid rgba(12, 19, 36, 0.1);
  box-shadow: 0 24px 40px rgba(11, 30, 65, 0.16);
  padding: 1.3rem;
}

.landing-page .visual-topbar {
  height: 10px;
  width: 45%;
  border-radius: 999px;
  background: rgba(36, 92, 166, 0.2);
  margin-bottom: 1rem;
}

.landing-page .visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.landing-page .visual-grid span {
  display: block;
  height: 48px;
  border-radius: 14px;
  background: rgba(36, 92, 166, 0.12);
  border: 1px solid rgba(36, 92, 166, 0.18);
}

.landing-page .visual-grid span:last-child {
  grid-column: span 2;
  height: 56px;
}

.landing-page .visual-editor {
  display: grid;
  gap: 1rem;
}

.landing-page .visual-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(12, 19, 36, 0.12);
  margin-bottom: 0.6rem;
}

.landing-page .visual-lines span:nth-child(2) {
  width: 85%;
}

.landing-page .visual-lines span:nth-child(3) {
  width: 72%;
}

.landing-page .visual-lines span:nth-child(4) {
  width: 60%;
}

.landing-page .visual-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.landing-page .visual-icons span {
  height: 52px;
  border-radius: 16px;
  background: rgba(36, 92, 166, 0.14);
  border: 1px solid rgba(36, 92, 166, 0.2);
}

.landing-page .visual-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.landing-page .flow-step {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 19, 36, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
}

.landing-page .flow-arrow {
  width: 28px;
  height: 2px;
  background: rgba(36, 92, 166, 0.4);
  position: relative;
}

.landing-page .flow-arrow::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  border-left: 6px solid rgba(36, 92, 166, 0.5);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.landing-page .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-page .process-card {
  border: 1px solid rgba(12, 19, 36, 0.11);
  border-radius: 20px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  min-height: 125px;
}

.landing-page .process-card span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(27, 64, 117, 0.16);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.landing-page .process-card h3 {
  margin: 0.7rem 0 0;
  font-size: 1rem;
}

.landing-page .faq-list {
  display: grid;
  gap: 10px;
}

.landing-page .faq-item {
  border: 1px solid rgba(12, 19, 36, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1rem;
}

.landing-page .faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.landing-page .faq-item[open] summary,
.landing-page .faq-item summary:hover {
  color: var(--accent);
}

.landing-page .faq-item p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}

.landing-page .premium-cta {
  border: 1px solid rgba(12, 19, 36, 0.12);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.93));
  box-shadow: 0 24px 58px rgba(11, 30, 65, 0.11);
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  display: grid;
  gap: 12px;
}

.landing-page .premium-cta p {
  margin: 0;
  max-width: 720px;
  color: var(--text-muted);
}

.landing-page .section-break {
  margin: 0.4rem auto;
  background: linear-gradient(130deg, #10192e 0%, #172748 58%, #1f4f95 100%);
  color: #f6f8ff;
  border-radius: 26px;
  padding: clamp(2.3rem, 5vw, 3.6rem);
  border: 0;
  box-shadow: 0 24px 52px rgba(11, 30, 65, 0.34);
}

.landing-page .section-break p {
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.55rem, 3.6vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.landing-page .psychology-stack {
  display: grid;
  gap: 18px;
}

.landing-page .psy-item {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(12, 19, 36, 0.1);
}

.landing-page .psy-item:first-child {
  border-top: 0;
}

.landing-page .psy-item-reverse .psy-visual {
  order: 2;
}

.landing-page .psy-item-reverse .psy-copy {
  order: 1;
}

.landing-page .psy-visual {
  border: 1px solid rgba(12, 19, 36, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 19, 36, 0.03), transparent 45%),
    rgba(255, 255, 255, 0.96);
  padding: 1rem;
}

.landing-page .psy-visual > * {
  width: 85%;
  margin: 0 auto;
}

.landing-page .psy-copy {
  max-width: 700px;
}

.landing-page .psy-index {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.landing-page .psy-copy h3 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  letter-spacing: -0.02em;
}

.landing-page .psy-copy p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.landing-page .ms-visual {
  display: grid;
  gap: 0.6rem;
}

.landing-page .ms-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(12, 19, 36, 0.14);
  overflow: hidden;
}

.landing-page .ms-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f4f95, #102746);
  transition: width 1s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.landing-page .ms-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.landing-page .ms-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--accent);
}

.landing-page .fogg-visual {
  display: grid;
}

.landing-page .fogg-chart {
  border: 1px solid rgba(12, 19, 36, 0.14);
  border-radius: 12px;
  padding: 0.65rem;
  background: rgba(250, 252, 255, 0.9);
  display: grid;
  gap: 0.58rem;
}

.landing-page .fogg-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto minmax(92px, 1fr);
  gap: 6px;
  align-items: center;
  opacity: 0.6;
  transform: translateY(5px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.landing-page .fogg-node {
  border: 1px solid rgba(12, 19, 36, 0.16);
  border-radius: 8px;
  padding: 0.33rem 0.38rem;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(12, 19, 36, 0.82);
  background: rgba(255, 255, 255, 0.96);
}

.landing-page .fogg-node-muted {
  color: rgba(12, 19, 36, 0.58);
  background: rgba(255, 255, 255, 0.7);
}

.landing-page .fogg-sign,
.landing-page .fogg-arrow {
  font-size: 0.76rem;
  color: rgba(12, 19, 36, 0.52);
  line-height: 1;
}

.landing-page .fogg-outcome {
  border: 1px solid rgba(12, 19, 36, 0.14);
  border-radius: 9px;
  padding: 0.34rem 0.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
}

.landing-page .fogg-outcome-ok {
  background: rgba(29, 79, 149, 0.11);
  color: var(--accent);
}

.landing-page .fogg-outcome-no {
  background: rgba(255, 255, 255, 0.75);
  color: rgba(12, 19, 36, 0.62);
}

.landing-page .fogg-note {
  margin: 0.22rem 0 0;
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
}

.landing-page .hick-visual {
  display: grid;
}

.landing-page .hick-chart {
  border: 1px solid rgba(12, 19, 36, 0.14);
  border-radius: 12px;
  padding: 0.45rem;
  background: rgba(250, 252, 255, 0.9);
}

.landing-page .hick-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.landing-page .hick-axis {
  stroke: rgba(12, 19, 36, 0.58);
  stroke-width: 1.5;
}

.landing-page .hick-curve {
  fill: none;
  stroke: #1d4f95;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.landing-page .hick-point {
  fill: #1d4f95;
}

.landing-page .hick-point-muted {
  fill: rgba(12, 19, 36, 0.42);
}

.landing-page .hick-label {
  fill: rgba(12, 19, 36, 0.72);
  font-size: 11px;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}

.landing-page .hick-mark {
  fill: rgba(12, 19, 36, 0.76);
  font-size: 10px;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}

.landing-page .fade-item.is-visible .fogg-row {
  opacity: 1;
  transform: translateY(0);
}

.landing-page .fade-item.is-visible .hick-curve {
  stroke-dashoffset: 0;
}

.landing-page .mobile-sticky-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.7rem;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1rem;
  border-radius: 14px;
  background: linear-gradient(130deg, #111b31, #1b3d75);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(17, 27, 49, 0.28);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.landing-page .mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .landing-page .section-shell {
    padding: 1.6rem;
  }

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

@media (max-width: 900px) {
  .landing-page .fogg-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .landing-page .fogg-sign,
  .landing-page .fogg-arrow {
    display: none;
  }

  .landing-page .psy-item,
  .landing-page .psy-item-reverse {
    grid-template-columns: 1fr;
  }

  .landing-page .psy-item-reverse .psy-visual,
  .landing-page .psy-item-reverse .psy-copy {
    order: initial;
  }

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

  .landing-page .fit-grid,
  .landing-page .insight-grid,
  .landing-page .process-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .service-block,
  .landing-page .service-block.is-reverse {
    grid-template-columns: 1fr;
  }

  .landing-page .service-block.is-reverse .service-copy {
    order: 0;
  }

  .landing-page .service-visual {
    justify-items: start;
  }

  .landing-page .site-footer {
    padding-bottom: 4.8rem;
  }
}

/* Final mobile overrides (single source of truth) */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body.landing-page {
    background: #f3f6fc;
    padding-bottom: calc(72px + env(safe-area-inset-bottom) + 16px);
  }

  .site-header {
    z-index: 100;
  }

  .header-inner {
    min-height: 64px;
    width: calc(100% - 1.6rem);
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 10px;
  }

  .top-nav,
  .header-inner .btn.btn-primary {
    display: none;
  }

  .mobile-menu-btn,
  .mobile-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    justify-self: start;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(12, 19, 36, 0.16);
    background: transparent;
    box-shadow: none;
  }

  .mobile-cta {
    justify-self: end;
    min-height: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0;
  }

  .brand {
    justify-self: center;
  }

  .brand-logo {
    width: 108px;
    height: 36px;
  }

  .mobile-drawer {
    z-index: 200;
  }

  main {
    padding-top: 8px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom) + 16px);
  }

  .page-wrap,
  .landing-page .landing-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0;
  }

  .landing-page .hero-layout > *,
  .landing-page .service-block > *,
  .landing-page .fit-grid > *,
  .landing-page .process-grid > *,
  .landing-page .section-head > * {
    min-width: 0;
  }

  .landing-page .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .landing-page .hero-content {
    order: 1;
  }

  .landing-page .hero-side {
    order: 2;
    gap: 14px;
  }

  .landing-page .hero-premium {
    padding: 1rem 0 0.6rem;
  }

  .landing-page .hero-premium .hero-content {
    border-radius: 0;
    padding: 0;
  }

  .landing-page .hero-premium h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.1;
  }

  .landing-page .hero-subline {
    font-size: 16px;
    line-height: 1.5;
  }

  .landing-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .landing-page .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .landing-page .trust-line {
    font-size: 14px;
    line-height: 1.45;
  }

  .landing-page .about-card {
    width: 100%;
    padding: 0.7rem;
  }

  .landing-page .about-card-body {
    grid-template-columns: 60px 1fr;
    gap: 0.75rem;
  }

  .landing-page .about-card-photo {
    width: 60px;
    height: 60px;
  }

  .landing-page .hero-intel {
    border-radius: 18px;
    padding: 0.95rem;
    overflow: hidden;
  }

  .landing-page .hero-intel h3 {
    font-size: 1.02rem;
  }

  .landing-page .hero-intel-line,
  .landing-page .hero-intel-foot {
    color: #42506a;
    font-size: 15px;
    line-height: 1.45;
  }

  .landing-page .hero-insight-controls {
    gap: 12px;
  }

  .landing-page .hero-insight-btn {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .landing-page .hero-insight-dot {
    width: 10px;
    height: 10px;
  }

  .landing-page .hero-signal-track {
    height: 10px;
  }

  .landing-page .section {
    padding: 60px 0;
  }

  .landing-page .section-shell {
    border-radius: 18px;
    padding: 1.25rem;
    border: 0;
    box-shadow: 0 10px 26px rgba(11, 30, 65, 0.08);
  }

  .landing-page .section-head {
    border-left: 0;
    padding-left: 0;
  }

  .landing-page .section-title {
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.18;
    padding-right: 2px;
  }

  .landing-page .section-subtitle,
  .landing-page .service-copy p,
  .landing-page .psy-copy p,
  .landing-page .fit-card ul {
    font-size: 16px;
    line-height: 1.58;
  }

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

  .landing-page .fit-card,
  .landing-page .fit-card-muted {
    width: 100%;
  }

  .landing-page .fit-card-muted {
    opacity: 0.88;
  }

  .landing-page .fit-card ul {
    gap: 0.66rem;
  }

  .landing-page .psy-item,
  .landing-page .psy-item-reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .landing-page .psy-item-reverse .psy-visual,
  .landing-page .psy-item-reverse .psy-copy {
    order: initial;
  }

  .landing-page .psy-visual,
  .landing-page .psy-visual > * {
    max-width: 360px;
  }

  .landing-page .service-block,
  .landing-page .service-block.is-reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "bullets";
    gap: 16px;
  }

  .landing-page .service-bullets {
    gap: 0.62rem;
    line-height: 1.58;
    padding-right: 2px;
  }

  .landing-page .service-visual {
    justify-items: stretch;
    min-width: 0;
  }

  .landing-page .service-blocks,
  .landing-page .service-block,
  .landing-page .service-copy,
  .landing-page .service-bullets,
  .landing-page .service-visual,
  .landing-page .section-head,
  .landing-page .section-title,
  .landing-page .section-subtitle {
    min-width: 0;
    max-width: 100%;
  }

  .landing-page .visual-screen,
  .landing-page .visual-editor,
  .landing-page .visual-flow {
    width: 100%;
    max-height: none;
    min-width: 0;
    overflow: hidden;
  }

  .landing-page .visual-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .landing-page .flow-step {
    width: 100%;
  }

  .landing-page .flow-arrow {
    width: 2px;
    height: 18px;
    margin: 0 auto;
  }

  .landing-page .flow-arrow::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 15px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(36, 92, 166, 0.5);
    border-bottom: 0;
  }

  .landing-page .process-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .faq-item summary {
    min-height: 48px;
    padding-right: 2rem;
  }

  .landing-page .mobile-sticky-cta {
    z-index: 150;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 1rem;
    opacity: 0;
    pointer-events: none;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding-bottom: 0;
  }

  .landing-page .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .landing-page .site-footer {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .landing-page .section-break {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0f1a30 0%, #1b3764 100%);
  }

  .landing-page .section-break p {
    font-size: clamp(24px, 6.2vw, 28px);
    line-height: 1.2;
    max-width: 34rem;
    letter-spacing: 0;
  }

  .site-footer .footer-inner {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .footer-brand {
    margin: 0 auto;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (min-width: 421px) and (max-width: 768px) {
  .landing-page .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .landing-page .hero-premium h1 {
    font-size: clamp(30px, 9.2vw, 34px);
  }
}

/* Mobile redesign: card layout -> surface layout */
@media (max-width: 768px) {
  .landing-page .section {
    padding-block: 72px;
  }

  .landing-page .section-shell {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .landing-page .fit-card,
  .landing-page .fit-card-muted,
  .landing-page .insight-card,
  .landing-page .process-card,
  .landing-page .faq-item {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .landing-page .fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-page .fit-card,
  .landing-page .fit-card-muted {
    padding: 22px 0;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
  }

  .landing-page .fit-card:first-child {
    border-top: 0;
  }

  .landing-page .fit-card::before,
  .landing-page .fit-card-muted::before {
    display: none;
  }

  .landing-page .fit-card h3,
  .landing-page .fit-card-muted h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
  }

  .landing-page .fit-card ul,
  .landing-page .fit-card-muted ul {
    padding-left: 1.05rem;
    gap: 0.72rem;
  }

  .landing-page .psychology-stack {
    gap: 0;
  }

  .landing-page .psy-item,
  .landing-page .psy-item-reverse {
    grid-template-columns: 1fr;
    padding: 22px 0;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
    gap: 14px;
  }

  .landing-page .psy-item:first-child {
    border-top: 0;
  }

  .landing-page .psy-visual {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .landing-page .psy-visual > * {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .landing-page .service-blocks {
    gap: 0;
  }

  .landing-page .service-block,
  .landing-page .service-block.is-reverse {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "bullets";
    gap: 16px;
    padding: 28px 0;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
  }

  .landing-page .service-block:first-child {
    border-top: 0;
  }

  .landing-page .service-block::before {
    content: attr(data-step);
    position: absolute;
    right: 0;
    top: 8px;
    font-size: clamp(54px, 14vw, 78px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: rgba(27, 64, 117, 0.08);
    pointer-events: none;
  }

  .landing-page .service-index {
    display: none;
  }

  .landing-page .service-copy h3 {
    font-size: clamp(1.45rem, 5.6vw, 1.9rem);
    line-height: 1.14;
  }

  .landing-page .service-bullets {
    gap: 0.62rem;
    line-height: 1.58;
    margin-top: 0;
    padding-left: 1.05rem;
  }

  .landing-page .service-visual {
    justify-items: stretch;
  }

  .landing-page .visual-screen,
  .landing-page .visual-editor,
  .landing-page .visual-flow {
    border: 1px solid rgba(12, 19, 36, 0.12);
    border-radius: 14px;
    box-shadow: none;
    background: rgba(251, 253, 255, 0.78);
    padding: 14px;
  }

  .landing-page .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-page .process-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
  }

  .landing-page .process-card:first-child {
    border-top: 0;
  }

  .landing-page .process-card span {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(12, 19, 36, 0.2);
    background: transparent;
  }

  .landing-page .process-card h3 {
    margin: 0;
  }

  .landing-page .faq-list {
    gap: 0;
  }

  .landing-page .faq-item {
    padding: 18px 0;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
  }

  .landing-page .faq-item:first-child {
    border-top: 0;
  }

  .landing-page .faq-item summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-right: 0;
  }

  .landing-page .faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(12, 19, 36, 0.62);
    border-bottom: 2px solid rgba(12, 19, 36, 0.62);
    transform: rotate(45deg);
    transition: transform 180ms ease-out;
    margin-left: 8px;
    flex: 0 0 auto;
  }

  .landing-page .faq-item[open] summary::after {
    transform: rotate(-135deg) translateY(-2px);
  }

  .landing-page .faq-item p {
    margin: 10px 0 0;
  }

  .landing-page .section-break {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
    padding: 68px 0;
    background: linear-gradient(142deg, #0f192f 0%, #172f57 100%);
  }

  .landing-page .section-break-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
  }

  .landing-page .section-break p {
    font-size: clamp(30px, 7vw, 38px);
    line-height: 1.15;
    max-width: 30ch;
    margin: 0;
  }
}

/* System refinement: unified grid, surfaces, typography, motion */
:root {
  --container-max: 1120px;
  --page-pad: clamp(16px, 2.6vw, 40px);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --radius-surface: 20px;
  --neutral-1: #fbfcff;
  --neutral-2: #f3f6fc;
  --neutral-3: rgba(12, 19, 36, 0.1);
  --text-primary: #0c1324;
  --text-secondary: #41516d;
  --text-muted-soft: #63748f;
  --accent-main: #1b4075;
}

body {
  color: var(--text-primary);
  line-height: 1.62;
}

.header-inner,
.page-wrap,
.landing-page .landing-wrap,
.site-footer .footer-inner {
  width: min(var(--container-max), calc(100% - (var(--page-pad) * 2)));
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.landing-page .section {
  padding: var(--space-7) 0;
}

.landing-page .section-head {
  position: relative;
  border-left: 0;
  padding-left: 14px;
}

.landing-page .section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(12, 19, 36, 0.18);
}

.landing-page .hero-premium h1 {
  line-height: 1.08;
}

.landing-page .section-title {
  line-height: 1.16;
}

.landing-page .section-subtitle,
.landing-page .hero-subline,
.landing-page .service-copy p,
.landing-page .psy-copy p,
.landing-page .fit-card ul,
.landing-page .service-bullets {
  color: var(--text-secondary);
}

.landing-page .section-shell,
.landing-page .hero-premium .hero-content,
.landing-page .about-card,
.landing-page .hero-intel,
.landing-page .fit-card,
.landing-page .fit-card-muted,
.landing-page .insight-card,
.landing-page .process-card,
.landing-page .premium-cta,
.landing-page .faq-item {
  border-radius: var(--radius-surface);
  border: 1px solid var(--neutral-3);
  box-shadow: 0 8px 20px rgba(12, 19, 36, 0.06);
}

.landing-page .section-shell,
.landing-page .hero-premium .hero-content,
.landing-page .about-card,
.landing-page .hero-intel,
.landing-page .insight-card,
.landing-page .process-card,
.landing-page .premium-cta,
.landing-page .faq-item {
  background: var(--neutral-1);
}

.landing-page .fit-card {
  background: linear-gradient(150deg, #fcfdff 0%, #f1f6ff 100%);
}

.landing-page .fit-card-muted {
  background: linear-gradient(150deg, #fbfcff 0%, #f4f7fc 100%);
}

.landing-page .visual-screen,
.landing-page .visual-editor,
.landing-page .visual-flow {
  box-shadow: 0 10px 24px rgba(12, 19, 36, 0.08);
  border: 1px solid var(--neutral-3);
}

.btn,
.landing-page .fit-card,
.landing-page .process-card,
.landing-page .faq-item,
.landing-page .hero-intel,
.landing-page .visual-screen,
.landing-page .visual-editor,
.landing-page .visual-flow {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out,
    background-color 180ms ease-out, opacity 180ms ease-out;
}

.fade-item {
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.landing-page .section-break {
  border-radius: var(--radius-surface);
  box-shadow: 0 12px 28px rgba(11, 30, 65, 0.18);
}

.landing-page .section-break p {
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  :root {
    --page-pad: 16px;
  }

  .site-header {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.86);
  }

  .header-inner {
    min-height: 60px;
  }

  .landing-page .section {
    padding: 56px 0;
  }

  .landing-page .section-shell {
    padding: 24px 16px;
  }

  .landing-page .hero-premium h1 {
    font-size: clamp(32px, 7.8vw, 38px);
    line-height: 1.1;
  }

  .landing-page .hero-subline,
  .landing-page .section-subtitle,
  .landing-page .service-copy p,
  .landing-page .psy-copy p,
  .landing-page .fit-card ul,
  .landing-page .service-bullets {
    font-size: 16px;
    line-height: 1.58;
  }

  .landing-page .section-break {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0f1a30 0%, #1b3764 100%);
  }

  .landing-page .section-break p {
    font-size: clamp(24px, 6.2vw, 28px);
    line-height: 1.2;
    max-width: 34rem;
  }

  .landing-page .service-blocks,
  .landing-page .service-block,
  .landing-page .service-copy,
  .landing-page .service-bullets,
  .landing-page .service-visual,
  .landing-page .visual-screen,
  .landing-page .visual-editor,
  .landing-page .visual-flow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .landing-page .mobile-sticky-cta {
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 1rem;
  }

  .site-footer .footer-inner {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .footer-brand {
    margin: 0 auto;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .landing-page .fit-card,
  .landing-page .process-card,
  .landing-page .faq-item,
  .landing-page .hero-intel,
  .landing-page .visual-screen,
  .landing-page .visual-editor,
  .landing-page .visual-flow,
  .fade-item {
    transition: none;
  }
}

/* Final mobile lock: surface layout (overrides previous blocks) */
@media (max-width: 768px) {
  .landing-page .section {
    padding-block: 68px;
  }

  .landing-page .section-shell,
  .landing-page .fit-card,
  .landing-page .fit-card-muted,
  .landing-page .insight-card,
  .landing-page .process-card,
  .landing-page .faq-item {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding-inline: 0;
  }

  .landing-page .fit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-page .fit-card,
  .landing-page .fit-card-muted {
    border-top: 1px solid rgba(12, 19, 36, 0.12);
    padding: 22px 0;
  }

  .landing-page .fit-card:first-child {
    border-top: 0;
  }

  .landing-page .fit-card::before,
  .landing-page .fit-card-muted::before {
    display: none;
  }

  .landing-page .fit-card h3,
  .landing-page .fit-card-muted h3 {
    font-size: 1.24rem;
    color: var(--text-primary);
  }

  .landing-page .fit-card ul,
  .landing-page .fit-card-muted ul {
    padding-left: 1.05rem;
    gap: 0.72rem;
  }

  .landing-page .psychology-stack {
    gap: 0;
  }

  .landing-page .psy-item,
  .landing-page .psy-item-reverse {
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
    padding: 22px 0;
  }

  .landing-page .psy-item:first-child {
    border-top: 0;
  }

  .landing-page .psy-visual {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .landing-page .psy-visual > * {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .landing-page .service-blocks {
    gap: 0;
  }

  .landing-page .service-block,
  .landing-page .service-block.is-reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "bullets";
    border-top: 1px solid rgba(12, 19, 36, 0.12);
    gap: 16px;
    padding: 28px 0;
    position: relative;
  }

  .landing-page .service-block:first-child {
    border-top: 0;
  }

  .landing-page .service-block::before {
    content: attr(data-step);
    position: absolute;
    right: 0;
    top: 10px;
    font-size: clamp(54px, 14vw, 78px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(27, 64, 117, 0.07);
    pointer-events: none;
  }

  .landing-page .service-index {
    display: none;
  }

  .landing-page .service-copy h3 {
    font-size: clamp(1.45rem, 5.6vw, 1.9rem);
    line-height: 1.14;
  }

  .landing-page .service-bullets {
    margin-top: 0;
    padding-left: 1.05rem;
    gap: 0.62rem;
    line-height: 1.58;
  }

  .landing-page .visual-screen,
  .landing-page .visual-editor,
  .landing-page .visual-flow {
    border: 1px solid rgba(12, 19, 36, 0.12);
    border-radius: 14px;
    box-shadow: none;
    background: rgba(251, 253, 255, 0.78);
    padding: 14px;
  }

  .landing-page .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-page .process-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(12, 19, 36, 0.12);
    padding: 18px 0;
  }

  .landing-page .process-card:first-child {
    border-top: 0;
  }

  .landing-page .process-card span {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(12, 19, 36, 0.2);
    background: transparent;
  }

  .landing-page .process-card h3 {
    margin: 0;
  }

  .landing-page .faq-list {
    gap: 0;
  }

  .landing-page .faq-item {
    border-top: 1px solid rgba(12, 19, 36, 0.12);
    padding: 18px 0;
  }

  .landing-page .faq-item:first-child {
    border-top: 0;
  }

  .landing-page .faq-item summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .landing-page .faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(12, 19, 36, 0.62);
    border-bottom: 2px solid rgba(12, 19, 36, 0.62);
    transform: rotate(45deg);
    transition: transform 180ms ease-out;
    margin-left: 8px;
    flex: 0 0 auto;
  }

  .landing-page .faq-item[open] summary::after {
    transform: rotate(-135deg) translateY(-2px);
  }

  .landing-page .section-break {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
    padding: 68px 0;
    background: linear-gradient(142deg, #0f192f 0%, #172f57 100%);
  }

  .landing-page .section-break-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
  }

  .landing-page .section-break p {
    margin: 0;
    max-width: 30ch;
    font-size: clamp(30px, 7vw, 38px);
    line-height: 1.15;
  }
}
