/* ABM Pro - www.abmpro.kr/abm */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fb;
  --color-bg-dark: #0f172a;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-accent: #2563eb;
  --color-accent-dark: #1d4ed8;
  --color-accent-light: #3b82f6;
  --color-border: #e2e8f0;
  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
  line-height: 1.6;
}

@supports not (overflow: clip) {
  html, body {
    overflow-x: hidden;
  }
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

#skipToContent {
  position: absolute;
  left: -9999px;
  z-index: 9999;
}
#skipToContent a:focus {
  position: fixed;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius);
  z-index: 99999;
}

.contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 993px) {
  .contain { padding: 0 48px; }
}
@media (max-width: 480px) {
  .contain { padding: 0 16px; }
}

/* ===== HEADER — site-header.css 참조 ===== */

.nav-cta {
  padding: 9px 20px;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  opacity: 1 !important;
}
#header:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
#header.scrolled .nav-cta:hover {
  background: var(--color-accent-dark);
}

.mobile-navigation {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 80px 28px 28px;
  overflow-y: auto;
}
.mobile-navigation.active {
  display: block;
  transform: translateX(0);
}

.mobile-nav-inner { position: relative; }
.mobile-home {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.mobile-navigation .nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-navigation .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.mobile-navigation .close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 120px 0 48px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #3b82f6 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-content {
  color: #fff;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-content { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.92;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .hero-desc { margin: 0 0 20px; }
}

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.hero-note {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.72;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: center;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
  padding-inline: 44px;
}

/* ===== HERO SHOWCASE ===== */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  user-select: none;
  overflow: visible;
}

.hero-showcase__ambient {
  position: absolute;
  inset: -12% -8%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-showcase__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-showcase__glow--1 {
  top: 10%;
  left: 15%;
  width: 55%;
  height: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.5) 0%, transparent 70%);
}
.hero-showcase__glow--2 {
  bottom: 5%;
  right: 5%;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
}
.hero-showcase__glow--3 {
  top: 40%;
  left: 40%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-showcase__stage {
  position: relative;
  z-index: 1;
  height: clamp(460px, 62vw, 620px);
  perspective: 1200px;
}

.hero-showcase__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(240px, 72%, 340px);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-origin: center center;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  will-change: transform, opacity;
  cursor: default;
}

.hero-showcase__card.is-left {
  transform: translate(calc(-50% - 108px), -50%) scale(0.9);
  opacity: 0.7;
  z-index: 1;
}
.hero-showcase__card.is-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
}
.hero-showcase__card.is-right {
  transform: translate(calc(-50% + 108px), -50%) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

.hero-showcase__card.is-hidden {
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-showcase__card.is-hovered {
  z-index: 4 !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}
.hero-showcase__card.is-hovered.is-left {
  transform: translate(calc(-50% - 108px), -50%) scale(1.03);
}
.hero-showcase__card.is-hovered.is-center {
  transform: translate(-50%, -50%) scale(1.03);
}
.hero-showcase__card.is-hovered.is-right {
  transform: translate(calc(-50% + 108px), -50%) scale(1.03);
}

.hero-showcase__chrome {
  display: none;
}

.hero-showcase__viewport {
  position: relative;
  height: clamp(420px, 56vw, 580px);
  overflow: hidden;
  border-radius: 22px;
  background: #f8fafc;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.hero-showcase__screen {
  transform: none;
}
.hero-showcase__screen img,
.hero-showcase__screen video,
.hero-showcase__media {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  pointer-events: none;
  border: 0;
  border-radius: 0;
}

.hero-showcase__card.has-video .hero-showcase__screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-showcase__card.has-video .hero-showcase__screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #0b1220;
}

.hero-showcase__nav {
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  z-index: 5;
  height: 0;
  pointer-events: none;
}

.hero-showcase__nav-btn {
  position: absolute;
  top: 0;
  pointer-events: auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.hero-showcase__nav-btn--prev {
  left: 0;
  transform: translate(-120%, -50%);
}

.hero-showcase__nav-btn--next {
  right: 0;
  left: auto;
  transform: translate(120%, -50%);
}

.hero-showcase__nav-btn span {
  display: block;
  margin-top: -1px;
}

.hero-showcase__nav-btn:hover,
.hero-showcase__nav-btn:focus-visible {
  opacity: 0.9;
  background: rgba(15, 23, 42, 0.42);
  color: #fff;
  outline: none;
}

.hero-showcase__nav-btn:active {
  transform: translate(-120%, -50%) scale(0.96);
}

.hero-showcase__nav-btn--next:active {
  transform: translate(120%, -50%) scale(0.96);
}

.hero-showcase:hover .hero-showcase__nav-btn {
  opacity: 0.72;
}

.hero-showcase__caption {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  min-height: 1.4em;
}

@media (max-width: 991px) {
  .hero {
    padding: 96px 0 40px;
    justify-content: flex-start;
    min-height: auto;
  }

  .hero-grid {
    gap: 48px;
    flex: none;
  }

  .hero-actions {
    margin-bottom: 8px;
  }

  .hero-visual {
    margin-top: 4px;
  }

  .hero-showcase {
    max-width: min(300px, 86vw);
  }

  .hero-showcase__stage {
    width: 100%;
    height: auto;
    aspect-ratio: 521 / 1024;
  }

  .hero-showcase__card {
    width: 100%;
  }

  .hero-showcase__card.is-left {
    transform: translate(calc(-50% - 38px), -50%) scale(0.86);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
  }

  .hero-showcase__card.is-center {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
  }

  .hero-showcase__card.is-right {
    transform: translate(calc(-50% + 38px), -50%) scale(0.86);
    opacity: 0.55;
    z-index: 2;
    pointer-events: none;
  }

  .hero-showcase__card.is-hovered.is-left {
    transform: translate(calc(-50% - 38px), -50%) scale(0.89);
    opacity: 0.7;
  }
  .hero-showcase__card.is-hovered.is-center {
    transform: translate(-50%, -50%) scale(1.02);
  }
  .hero-showcase__card.is-hovered.is-right {
    transform: translate(calc(-50% + 38px), -50%) scale(0.89);
    opacity: 0.7;
  }

  .hero-showcase__viewport {
    height: auto;
    aspect-ratio: 521 / 1024;
  }

  .hero-showcase__caption {
    margin-top: 24px;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .hero-showcase__nav {
    top: 48%;
  }

  .hero-showcase__nav-btn {
    width: 26px;
    height: 26px;
    opacity: 0.62;
    font-size: 1rem;
  }

  .hero-showcase__nav-btn--prev {
    transform: translate(-108%, -50%);
  }

  .hero-showcase__nav-btn--next {
    transform: translate(108%, -50%);
  }

  .hero-showcase__nav-btn:active {
    transform: translate(-108%, -50%) scale(0.96);
  }

  .hero-showcase__nav-btn--next:active {
    transform: translate(108%, -50%) scale(0.96);
  }

  .hero-visual {
    padding-inline: 34px;
  }

  .scroll-hint {
    display: none !important;
  }
}

@media (max-width: 400px) {
  .hero-showcase {
    max-width: min(272px, 84vw);
  }

  .hero-showcase__card.is-left {
    transform: translate(calc(-50% - 28px), -50%) scale(0.84);
  }

  .hero-showcase__card.is-right {
    transform: translate(calc(-50% + 28px), -50%) scale(0.84);
  }

  .hero-showcase__card.is-hovered.is-left {
    transform: translate(calc(-50% - 28px), -50%) scale(0.87);
  }

  .hero-showcase__card.is-hovered.is-right {
    transform: translate(calc(-50% + 28px), -50%) scale(0.87);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase__card,
  .hero-showcase__screen {
    transition: none !important;
  }
}

.scroll-hint {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  align-self: center;
  margin-top: auto;
  padding: 28px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  pointer-events: none;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ===== START PROMPT (below hero) ===== */
.start-prompt {
  position: relative;
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, #eef4ff 0%, #f8fafc 55%, #ffffff 100%);
  border-bottom: 1px solid var(--color-border);
}

.start-prompt__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.start-prompt__copy {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.start-prompt__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--color-text);
}

.start-prompt__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.start-prompt__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.start-prompt__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.start-prompt__action:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.start-prompt__platform {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.start-prompt__platform > img,
.start-prompt__platform-icons {
  flex-shrink: 0;
}

.start-prompt__platform-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.start-prompt__platform-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.start-prompt__platform-text strong {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.start-prompt__platform-text span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.start-prompt__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  transition: background var(--transition);
}

.start-prompt__action:hover .start-prompt__btn {
  background: var(--color-accent-dark);
}

@media (min-width: 720px) {
  .start-prompt {
    padding: 64px 0 72px;
  }

  .start-prompt__actions {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 880px;
  }

  .start-prompt__action {
    padding: 24px;
    gap: 20px;
  }
}

/* ===== WHY STORY ===== */
.why {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 12%, rgba(37, 99, 235, 0.09), transparent 58%),
    radial-gradient(ellipse 40% 35% at 82% 70%, rgba(37, 99, 235, 0.05), transparent 60%),
    var(--color-bg);
  color: var(--color-text);
  overflow: clip;
}

.why-track {
  position: relative;
}

.why-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 104px 0 88px;
}

.why-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.why-visual {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  color: var(--color-accent);
}

.why-visual__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  animation: why-ring 2.8s ease-out infinite;
}

.why-visual__ring--delay {
  animation-delay: 1.4s;
}

.why-visual__icon {
  position: absolute;
  inset: 14px;
  width: 44px;
  height: 44px;
}

.why-visual__scan {
  transform-origin: 15px 22px;
  animation: why-scan 2.2s ease-in-out infinite;
}

@keyframes why-ring {
  0% { transform: scale(0.72); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes why-scan {
  0%, 100% { transform: translateY(-5px); opacity: 0.35; }
  50% { transform: translateY(5px); opacity: 1; }
}

.why-label {
  margin-bottom: 16px;
}

.why-title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin: 0 auto 40px;
  max-width: 18em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.why-title__emph {
  display: inline-block;
  color: var(--color-accent);
  word-break: keep-all;
  overflow-wrap: normal;
}

.why-quotes-wrap {
  margin: 0 auto 36px;
  max-width: 34rem;
  padding: clamp(26px, 3.5vw, 36px) clamp(20px, 3.5vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 251, 0.98)),
    var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
}

.why-quotes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  margin: 0;
  max-width: none;
}

.why-quote {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0 6px;
  color: rgba(15, 23, 42, 0.72);
}

.why-quote__mark {
  flex: none;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-accent);
  opacity: 0.75;
}

.why-quote__text {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.5;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: normal;
}

.why-body {
  margin: 0 auto 28px;
  max-width: 28rem;
}

.why-body__lead {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.7;
  color: var(--color-text);
  word-break: keep-all;
}

.why-body__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45em;
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--color-text-muted);
  word-break: keep-all;
}

.why-body__phrase {
  display: block;
}

.why-body__phrase--key {
  margin-top: 0.1em;
  color: var(--color-text);
  font-weight: 600;
}

.why-closer__main {
  margin: 0 auto 22px;
  max-width: 30rem;
  font-size: clamp(1.12rem, 2.3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.7;
  color: var(--color-text);
  word-break: keep-all;
}

.why-closer__brand {
  font-weight: 700;
  color: var(--color-accent);
}

.why-closer__punch {
  margin: 64px auto 88px;
  max-width: 28rem;
  padding: 44px 16px 0;
  border-top: 1px solid var(--color-border);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.55;
  color: var(--color-accent-dark);
  word-break: keep-all;
}

.why-progress {
  display: none;
}

/* Motion-enhanced states (JS adds .why-js) */
.why.why-js .why-visual,
.why.why-js .why-label,
.why.why-js .why-title,
.why.why-js .why-quotes-wrap,
.why.why-js .why-quote,
.why.why-js .why-body,
.why.why-js .why-closer__main,
.why.why-js .why-closer__punch {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.55s ease,
    box-shadow 0.55s ease;
}

.why.why-js .why-quote {
  color: rgba(15, 23, 42, 0.28);
  transform: translateY(20px) scale(0.985);
}

.why.why-js .why-quote__mark {
  color: inherit;
  opacity: 0.55;
}

.why.why-js [data-why-step].is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.why.why-js .why-quote.is-in {
  color: rgba(15, 23, 42, 0.55);
}

.why.why-js .why-quote.is-current {
  color: var(--color-text);
  transform: translateY(0) scale(1);
}

.why.why-js .why-quote.is-current .why-quote__mark {
  color: var(--color-accent);
  opacity: 0.9;
}

.why.why-js.is-complete .why-quote.is-in {
  color: rgba(15, 23, 42, 0.72);
}

.why.why-js.is-complete .why-quote.is-in .why-quote__mark {
  color: var(--color-accent);
  opacity: 0.75;
}

.why.why-js .why-closer__punch.is-in {
  color: var(--color-accent-dark);
}

.why.why-js .why-progress__dot.is-on {
  background: var(--color-accent);
  transform: scale(1.25);
}

.why.why-js .why-progress__dot.is-active {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

/* Desktop: natural tall story (no sticky squeeze, quotes stay) */
@media (min-width: 992px) {
  .why-track {
    height: auto;
  }

  .why-sticky {
    position: static;
    min-height: auto;
    padding: 104px 0 96px;
    align-items: center;
  }

  .why-inner {
    padding: 0;
  }

  .why-visual {
    margin-bottom: 18px;
  }

  .why-title {
    margin-bottom: 36px;
  }

  .why-quotes-wrap {
    margin-bottom: 40px;
  }

  .why-quotes {
    gap: 1.15em;
  }

  .why-body {
    margin-bottom: 28px;
  }

  .why-closer__main {
    margin-bottom: 20px;
  }

  .why-closer__punch {
    margin: 64px auto 72px;
    padding-top: 44px;
  }

  .why-progress {
    display: flex;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
  }

  .why-progress__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.16);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  }
}

/* Mobile: normal flow + staggered play */
@media (max-width: 991px) {
  .why-sticky {
    padding: 88px 0 72px;
  }

  .why-visual {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .why-visual__icon {
    inset: 12px;
    width: 40px;
    height: 40px;
  }

  .why-title {
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .why-quotes-wrap {
    margin-bottom: 32px;
    padding: 22px 18px;
  }

  .why-quotes {
    gap: 0.95em;
  }

  .why-body {
    margin-bottom: 28px;
  }

  .why-closer__main {
    margin-bottom: 20px;
  }

  .why-closer__punch {
    margin: 52px auto 80px;
    padding-top: 40px;
  }

  .why.is-mobile-play .why-visual,
  .why.is-mobile-play .why-label,
  .why.is-mobile-play .why-title {
    transition-delay: 0.08s;
  }

  .why.is-mobile-play .why-quotes-wrap { transition-delay: 0.28s; }
  .why.is-mobile-play .why-quote[data-why-step="1"] { transition-delay: 0.36s; }
  .why.is-mobile-play .why-quote[data-why-step="2"] { transition-delay: 0.58s; }
  .why.is-mobile-play .why-quote[data-why-step="3"] { transition-delay: 0.8s; }
  .why.is-mobile-play .why-body { transition-delay: 1.1s; }
  .why.is-mobile-play .why-closer__main { transition-delay: 1.35s; }
  .why.is-mobile-play .why-closer__punch { transition-delay: 1.6s; }
}

@media (prefers-reduced-motion: reduce) {
  .why-track {
    height: auto !important;
  }

  .why-sticky {
    position: static !important;
    min-height: auto !important;
    padding: 104px 0 88px !important;
  }

  .why-visual__ring,
  .why-visual__scan {
    animation: none !important;
  }

  .why [data-why-step] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    color: inherit;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  .why-quote {
    color: rgba(15, 23, 42, 0.78) !important;
  }

  .why-quote__mark {
    color: var(--color-accent) !important;
    opacity: 0.8 !important;
  }
}

/* ===== SECTIONS ===== */
.sec {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .sec { padding: 72px 0; }
}

.sec-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.sec-header {
  text-align: center;
  margin-bottom: 56px;
}
.sec-header .sec-desc {
  margin: 0 auto;
}

/* ===== FEATURES (legacy card styles kept for restore) ===== */
.features {
  background: var(--color-bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.feature-card__note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== HELP (How ABM Pro helps) ===== */
.help {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.05), transparent 60%),
    var(--color-bg-alt);
  overflow: clip;
}

.help-header {
  margin-bottom: 64px;
}

.help-visual {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--color-accent);
}

.help-visual__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  animation: help-ring 2.8s ease-out infinite;
}

.help-visual__ring--delay {
  animation-delay: 1.4s;
}

.help-visual__icon {
  position: absolute;
  inset: 14px;
  width: 44px;
  height: 44px;
}

.help-visual__node--a {
  animation: help-node 2.4s ease-in-out infinite;
}

.help-visual__node--b {
  animation: help-node 2.4s ease-in-out infinite 0.35s;
}

.help-visual__node--c {
  animation: help-node 2.4s ease-in-out infinite 0.7s;
}

.help-visual__link {
  opacity: 0.55;
  animation: help-link 2.4s ease-in-out infinite;
}

.help-visual__link--ac {
  animation-delay: 0.35s;
}

@keyframes help-ring {
  0% { transform: scale(0.72); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes help-node {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes help-link {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.85; }
}

.help-header .sec-title {
  max-width: 18em;
  margin-left: auto;
  margin-right: auto;
  word-break: keep-all;
  line-height: 1.4;
}

.help-header .sec-title__emph {
  color: var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .help-visual__ring,
  .help-visual__node--a,
  .help-visual__node--b,
  .help-visual__node--c,
  .help-visual__link {
    animation: none !important;
  }
}

.help-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.help-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.help-copy {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}

.help-index {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.help-title {
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0 0 12px;
}

.help-desc {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.help-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.help-media__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 260px);
}

.help-media__note {
  margin: 8px 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  opacity: 0.45;
  text-align: center;
}

.help-device {
  position: relative;
  width: min(100%, 280px);
}

.help-device--phone {
  width: min(100%, 260px);
}

.help-device--phone .help-device__bezel {
  border-radius: 16px;
  padding: 5px;
  background:
    linear-gradient(155deg, #f1f2f4 0%, #d5d9e0 40%, #b4bac6 78%, #e8ebf0 100%);
}

.help-device--phone .help-device__bezel::after {
  inset: 2px;
  border-radius: 14px;
  border-color: rgba(15, 23, 42, 0.2);
}

.help-device--phone .help-device__screen {
  border-radius: 11px;
  aspect-ratio: 9 / 17.7;
}

/* Virtual tour: inset media so edge controls clear the corner radius */
.help-device__screen--tour {
  background: #111827;
}

.help-device__screen--tour video {
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  width: auto;
  height: auto;
  border-radius: 7px;
  object-fit: cover;
  object-position: left top;
}

.help-device__bezel {
  position: relative;
  border-radius: 36px;
  padding: 8px;
  background:
    linear-gradient(155deg, #f4f5f7 0%, #d8dce5 38%, #b8bec8 72%, #eceff3 100%);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.12),
    0 8px 18px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.help-device__bezel::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 31px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  pointer-events: none;
  z-index: 2;
}

.help-device__bezel::before {
  content: none;
}

/* Screen is the only clip surface — media never paints past rounded corners */
.help-device__screen {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #0b1220;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.help-device__screen img,
.help-device__screen video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  background: #0b1220;
}

.help-duo {
  position: relative;
  width: min(100%, 420px);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.help-device--laptop {
  width: min(86%, 360px);
  margin-right: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.help-device--laptop .help-device__lid {
  width: 100%;
  position: relative;
  z-index: 1;
}

.help-device--laptop .help-device__bezel {
  border-radius: 12px 12px 8px 8px;
  padding: 12px 10px 14px;
  background:
    linear-gradient(165deg, #f7f8fa 0%, #d9dee6 42%, #c4cad4 100%);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(15, 23, 42, 0.1);
}

.help-device--laptop .help-device__bezel::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aa3b2;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
  z-index: 2;
  pointer-events: none;
}

.help-device--laptop .help-device__bezel::after {
  inset: 10px 8px 12px;
  border-radius: 4px;
  border-color: rgba(15, 23, 42, 0.22);
}

.help-device--laptop .help-device__screen {
  border-radius: 3px;
  /* map-pc.png = 1024×541 */
  aspect-ratio: 1024 / 541;
  background: #f8fafc;
}

.help-device--laptop .help-device__screen img {
  object-fit: fill;
  object-position: center top;
}

.help-device--laptop .help-device__base {
  position: relative;
  width: 108%;
  margin-top: -1px;
  z-index: 0;
}

.help-device--laptop .help-device__hinge {
  display: block;
  height: 7px;
  margin: 0 auto;
  width: 94%;
  border-radius: 0 0 3px 3px;
  background:
    linear-gradient(180deg, #c9cfda 0%, #aeb6c3 55%, #9aa3b2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 1px 2px rgba(15, 23, 42, 0.08);
}

.help-device--laptop .help-device__deck {
  display: block;
  height: 10px;
  margin-top: -1px;
  border-radius: 0 0 12px 12px;
  background:
    linear-gradient(180deg, #e7ebf1 0%, #d3d9e3 40%, #b8c0cd 100%);
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.help-device--overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 160px);
  z-index: 2;
}

.help-row.is-in .help-copy,
.help-row.is-in .help-media {
  opacity: 1;
  transform: none;
}

.help.help-js .help-row .help-copy,
.help.help-js .help-row .help-media {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.help.help-js .help-row .help-media {
  transition-delay: 0.08s;
}

.help.help-js .help-row.is-in .help-copy,
.help.help-js .help-row.is-in .help-media {
  opacity: 1;
  transform: none;
}

@media (min-width: 992px) {
  .help-header {
    margin-bottom: 88px;
  }

  .help-list {
    gap: 112px;
  }

  .help-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 64px;
    min-height: 520px;
  }

  .help-row--reverse .help-copy {
    order: 2;
  }

  .help-row--reverse .help-media {
    order: 1;
  }

  .help-copy {
    text-align: left;
    margin: 0;
    padding-right: 24px;
  }

  .help-row--reverse .help-copy {
    padding-right: 0;
    padding-left: 24px;
  }

  .help-device--phone {
    width: 300px;
  }

  .help-duo {
    width: 480px;
    min-height: 420px;
  }

  .help-device--overlap {
    width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .help.help-js .help-row .help-copy,
  .help.help-js .help-row .help-media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== STORIES (testimonials) ===== */
.stories {
  background: var(--color-bg);
}

.stories-visual {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--color-accent);
}

.stories-visual__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  animation: stories-ring 2.8s ease-out infinite;
}

.stories-visual__ring--delay {
  animation-delay: 1.4s;
}

.stories-visual__icon {
  position: absolute;
  inset: 14px;
  width: 44px;
  height: 44px;
}

.stories-visual__bubble {
  animation: stories-bubble 2.6s ease-in-out infinite;
  transform-origin: 24px 22px;
}

.stories-visual__dot--1 {
  animation: stories-dot 1.8s ease-in-out infinite;
}

.stories-visual__dot--2 {
  animation: stories-dot 1.8s ease-in-out infinite 0.2s;
}

.stories-visual__dot--3 {
  animation: stories-dot 1.8s ease-in-out infinite 0.4s;
}

@keyframes stories-ring {
  0% { transform: scale(0.72); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes stories-bubble {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1.5px); }
}

@keyframes stories-dot {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .stories-visual__ring,
  .stories-visual__bubble,
  .stories-visual__dot--1,
  .stories-visual__dot--2,
  .stories-visual__dot--3 {
    animation: none !important;
  }
}

.stories-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.story {
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--color-border);
}

.story:first-child {
  padding-top: 0;
  border-top: 0;
}

.story-quote {
  margin: 0 0 16px;
}

.story-quote p {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  line-height: 1.85;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.story-quote p::before {
  content: '“';
  color: var(--color-accent);
  font-weight: 600;
  margin-right: 2px;
}

.story-quote p::after {
  content: '”';
  color: var(--color-accent);
  font-weight: 600;
  margin-left: 2px;
}

.story-meta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
  text-align: right;
}

.stories-closer {
  max-width: 880px;
  margin: 56px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.stories-closer__lead {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.45;
  color: var(--color-text);
}

.stories-closer__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .stories-list {
    gap: 36px;
  }

  .story {
    padding: 36px 0 0;
  }

  .stories-closer {
    margin-top: 72px;
    padding-top: 56px;
  }
}

/* ===== HOW IT WORKS / GET STARTED ===== */
.howto {
  position: relative;
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%, rgba(37, 99, 235, 0.06), transparent 55%),
    var(--color-bg-alt);
  padding-top: 112px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

@media (max-width: 768px) {
  .howto {
    padding-top: 88px;
  }
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.2;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.step-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== HIGHLIGHT ===== */
.highlight {
  background: var(--color-bg-dark);
  color: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .highlight-grid { grid-template-columns: 1fr 1fr; }
}

.highlight-content .sec-label {
  color: #93c5fd;
}
.highlight-content .sec-title {
  color: #fff;
}
.highlight-content .sec-desc {
  color: #94a3b8;
}

.highlight-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
}
.highlight-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.3);
  color: #93c5fd;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.highlight-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.stat-card span {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ===== CTA ===== */
.cta-strip {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cta-strip h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-strip p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-strip .btn-primary {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-strip .btn-primary:hover {
  background: #f8fafc;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--color-bg-dark);
  color: #94a3b8;
  padding: 56px 0 32px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .sitelogo a {
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer-links h5 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #94a3b8;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: #fff;
}

.footer-company {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .footer-company {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 22px 24px;
  }
}

.footer-company__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.footer-company__item + .footer-company__item {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 640px) {
  .footer-company__item + .footer-company__item {
    padding-top: 0;
    border-top: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.footer-company__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cbd5e1;
}
.footer-company__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-light);
  flex-shrink: 0;
}

.footer-company__value {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #e2e8f0;
  word-break: keep-all;
}
.footer-company__value a {
  color: #fff;
  transition: color var(--transition);
}
.footer-company__value a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}
.footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
}
.footer-bottom__meta {
  color: #64748b;
  font-size: 0.78rem;
}
