/* Mobile-first — ImaJersey tanıtım sitesi */
:root {
  --bg: #070b14;
  --bg-alt: #0d1424;
  --card: #121a2e;
  --card-hover: #162038;
  --text: #eef2ff;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --accent-2: #6366f1;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --border: rgba(148, 163, 184, 0.14);
  --border-light: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --header-h: 84px;
  --header-h-scrolled: 72px;
  --nav-muted: #d5d8e5;
  --nav-accent-start: #3b82f6;
  --nav-accent-end: #7c5cff;
  --nav-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --nav-duration: 280ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1140px, calc(100% - 1.5rem)); margin: 0 auto; }

/* Header — premium SaaS navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(6, 10, 22, 0.7);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    height var(--nav-duration) var(--nav-ease),
    background var(--nav-duration) var(--nav-ease),
    box-shadow var(--nav-duration) var(--nav-ease),
    backdrop-filter var(--nav-duration) var(--nav-ease);
}
.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: rgba(6, 10, 22, 0.82);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter var(--nav-duration) var(--nav-ease);
}
.logo-link:hover {
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.42));
}
.logo-img {
  height: 32px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  transition: height var(--nav-duration) var(--nav-ease);
}
.site-header.is-scrolled .logo-img {
  height: 28px;
}

.nav-toggle {
  position: relative;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition:
    background var(--nav-duration) var(--nav-ease),
    border-color var(--nav-duration) var(--nav-ease),
    box-shadow var(--nav-duration) var(--nav-ease);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}
.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}
.nav-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--nav-muted);
  transition:
    transform var(--nav-duration) var(--nav-ease),
    opacity var(--nav-duration) var(--nav-ease),
    background var(--nav-duration) var(--nav-ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.site-nav {
  display: none;
}
.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  position: relative;
  color: var(--nav-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  transition:
    color 250ms ease-out,
    text-shadow 250ms ease-out,
    background 250ms ease-out;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nav-accent-start), var(--nav-accent-end));
  transform: translateX(-50%) scaleX(0);
  opacity: 0;
  transition: transform 250ms ease-out, opacity 250ms ease-out, box-shadow 250ms ease-out;
  pointer-events: none;
}
.nav-link:hover {
  color: #fff;
  text-shadow: 0 0 22px rgba(59, 130, 246, 0.22);
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
.nav-link.is-active {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(124, 92, 255, 0.32);
}
.nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.55);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.65rem;
  padding: 14px 24px;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(135deg, var(--nav-accent-start) 0%, var(--nav-accent-end) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.28);
  transition:
    transform 280ms ease-out,
    box-shadow 280ms ease-out,
    filter 280ms ease-out;
}
.btn-header-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(124, 92, 255, 0.42);
  filter: brightness(1.05);
}
.btn-header-cta:active {
  transform: scale(0.98);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.65rem;
  padding: 3px;
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(18, 21, 30, 0.92);
}

.lang-switcher__btn {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text-muted, #94a3b8);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-switcher__btn:hover {
  color: var(--text-primary, #e2e8f0);
  background: rgba(36, 48, 73, 0.85);
}

.lang-switcher__btn.is-active {
  color: var(--text-primary, #e2e8f0);
  background: #1e3a5f;
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.25);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 220;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(124, 92, 255, 0.35), transparent 55%),
    linear-gradient(145deg, rgba(30, 58, 95, 0.98) 0%, rgba(18, 21, 30, 0.98) 100%);
  color: #e2e8f0;
  box-shadow:
    0 10px 28px rgba(8, 12, 24, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease,
    box-shadow 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow:
    0 14px 34px rgba(59, 130, 246, 0.28),
    0 0 0 1px rgba(96, 165, 250, 0.35) inset;
}

.back-to-top:active {
  transform: translateY(1px) scale(0.98);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(6, 10, 22, 0.55);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 300ms ease-out, visibility 300ms ease-out;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + 0.65rem);
    left: 1rem;
    right: 1rem;
    z-index: 195;
    padding: 1rem;
    background: rgba(6, 10, 22, 0.78);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    filter: blur(6px);
    pointer-events: none;
    transition:
      opacity 300ms ease-out,
      transform 300ms ease-out,
      filter 300ms ease-out,
      visibility 300ms ease-out;
  }
  .site-header.is-scrolled .site-nav {
    top: calc(var(--header-h-scrolled) + 0.65rem);
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
  }
  .site-nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .nav-link {
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
  }
  .nav-link::after {
    left: 1rem;
    bottom: 0.55rem;
    transform: translateX(0) scaleX(0);
  }
  .nav-link:hover::after,
  .nav-link.is-active::after {
    transform: translateX(0) scaleX(1);
  }
  .btn-header-cta {
    margin: 0.75rem 0 0;
    width: 100%;
    padding: 14px 24px;
  }
  .lang-switcher {
    margin: 0.75rem 0 0;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav-link,
  .nav-link::after,
  .btn-header-cta,
  .site-nav,
  .nav-backdrop,
  .nav-toggle-icon span,
  .logo-link,
  .logo-img,
  .back-to-top {
    transition: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 12px 32px var(--accent-glow); }
.btn-outline {
  border-color: var(--border-light);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover { border-color: var(--accent); color: #bfdbfe; }

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -15% -5% auto;
  height: 520px;
  background:
    radial-gradient(ellipse at 16% 38%, rgba(59, 130, 246, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse at 32% 62%, rgba(99, 102, 241, 0.12) 0%, transparent 52%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}
.hero-title {
  font-size: clamp(2rem, 5.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-title-main {
  display: block;
  color: #fff;
}
.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, #38bdf8 0%, #6366f1 52%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  color: #94a3b8;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75;
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.btn-hero-primary,
.btn-hero-ghost {
  gap: 0.55rem;
  padding: 0.92rem 1.45rem;
  border-radius: 12px;
  font-size: 0.95rem;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 55%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.35);
}
.btn-hero-primary:hover {
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.42);
}
.btn-hero-ghost {
  border: 1px solid rgba(226, 232, 240, 0.22);
  color: #fff;
  background: transparent;
}
.btn-hero-ghost:hover {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.04);
}
.btn-arrow {
  flex-shrink: 0;
  opacity: 0.92;
}
.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}
.hero-highlights:empty { display: none; }
.hero-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.hero-highlight-icon {
  width: 1.85rem;
  height: 1.85rem;
  color: #60a5fa;
  flex-shrink: 0;
}
.hero-highlight-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-highlight-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hero-highlight-desc {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .hero-actions {
    align-items: center;
  }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-ghost {
    width: min(100%, 340px);
  }
  .hero-highlights {
    text-align: center;
  }
  .hero-highlight {
    align-items: center;
  }
}

.hero-content { order: 2; min-width: 0; }
.hero-artwork {
  order: 1;
  position: relative;
  min-width: 0;
  width: 100%;
}
.hero-artwork-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.18);
  box-shadow:
    0 24px 48px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  background: linear-gradient(135deg, #0b1220 0%, #070b14 100%);
}
.hero-artwork-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.hero-artwork-stage--swiper .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-slide-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-slide-img.is-loading {
  opacity: 0;
}
.hero-slide-preloader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 2;
}
.hero-slide-preloader::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 2px solid rgba(96, 165, 250, 0.22);
  border-top-color: #60a5fa;
  animation: hero-slide-spin 0.75s linear infinite;
}
@keyframes hero-slide-spin {
  to { transform: rotate(360deg); }
}
.hero-swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}
.hero-swiper-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-swiper-bullet.is-active {
  background: #60a5fa;
  transform: scale(1.15);
}
.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.72);
  color: #e2e8f0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-swiper-prev::before,
.hero-swiper-next::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.hero-swiper-prev {
  left: 0.65rem;
}
.hero-swiper-prev::before {
  transform: rotate(-135deg);
  margin-left: 0.15rem;
}
.hero-swiper-next {
  right: 0.65rem;
}
.hero-swiper-next::before {
  transform: rotate(45deg);
  margin-right: 0.15rem;
}
.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(15, 23, 42, 0.88);
}
.hero-swiper--single .hero-swiper-pagination,
.hero-swiper--single .hero-swiper-prev,
.hero-swiper--single .hero-swiper-next {
  display: none;
}

.hero-slice-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}
.hero-slice-layer {
  position: absolute;
  inset: 0;
}
.hero-slice-layer--in {
  z-index: 2;
}
.hero-slice {
  position: absolute;
  top: 0;
  height: 100%;
  background-repeat: no-repeat;
  will-change: transform, opacity;
  transition:
    transform 460ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 460ms ease;
}
.hero-slice-layer--out .hero-slice {
  opacity: 1;
  transform: translateY(0);
}
.hero-slice-layer--out .hero-slice.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
}
.hero-slice-layer--in .hero-slice {
  opacity: 0;
  transform: translateY(12px);
}
.hero-slice-layer--in .hero-slice.is-entering {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slice,
  .hero-swiper-bullet {
    transition: none !important;
  }
}
.security-grid { display: grid; gap: 0.75rem; }
.security-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent);
  background: var(--card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-item .item-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
}
.security-item strong { display: block; color: var(--text); margin-bottom: 0.15rem; }

/* Sections */
.section { padding: 3rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 1.5rem; }
.section-head--center { text-align: center; }
.section-head--center .lead { margin: 0 auto; }
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}
.section h2 {
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Compare — Problem vs Solution section */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 650ms cubic-bezier(0.33, 1, 0.68, 1),
    transform 650ms cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-on-scroll--left {
  transform: translateX(-36px) translateY(20px) scale(0.98);
}
.reveal-on-scroll--right {
  transform: translateX(36px) translateY(20px) scale(0.98);
}
.reveal-on-scroll--left.is-visible,
.reveal-on-scroll--right.is-visible {
  transform: translateX(0) translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll--left,
  .reveal-on-scroll--right {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.compare-section {
  position: relative;
  overflow: hidden;
}
.compare-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 60, 60, 0.04) 0%, transparent 42%),
    radial-gradient(ellipse at 82% 28%, rgba(59, 130, 246, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.compare-headline {
  position: relative;
  max-width: 18ch;
  margin: 0 auto 2.75rem;
  text-align: center;
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.compare-board {
  position: relative;
  margin-bottom: 2.5rem;
}
.compare-board-headers {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}
.compare-panel {
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-panel--old {
  background: rgba(255, 60, 60, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 80, 80, 0.06);
}
.compare-panel--new {
  background: rgba(59, 130, 246, 0.05);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.compare-badge--old { color: #fca5a5; }
.compare-badge--new { color: #93c5fd; }
.compare-panel-title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: #fff;
}
.compare-panel-sub {
  color: var(--nav-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.compare-vs {
  display: grid;
  place-items: center;
  align-self: center;
}
.compare-vs span {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.12);
}

.compare-rows {
  display: grid;
  gap: 0.75rem;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
.compare-row-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  line-height: 1.45;
  transition:
    transform 280ms ease-out,
    box-shadow 280ms ease-out,
    border-color 280ms ease-out,
    background 280ms ease-out;
}
.compare-row-cell--old {
  color: #fecaca;
  background: rgba(255, 60, 60, 0.04);
}
.compare-row-cell--new {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.04);
}
.compare-row:hover .compare-row-cell--old {
  transform: translateY(-3px);
  border-color: rgba(248, 113, 113, 0.28);
  box-shadow: 0 12px 32px rgba(255, 60, 60, 0.12);
  background: rgba(255, 60, 60, 0.07);
}
.compare-row:hover .compare-row-cell--new {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.32);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.16);
  background: rgba(59, 130, 246, 0.08);
}
.compare-row-icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}
.compare-row-icon--bad {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.25);
}
.compare-row-icon--good {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.28);
}
.compare-row-divider {
  display: grid;
  place-items: center;
  color: rgba(148, 163, 184, 0.55);
  font-size: 1.1rem;
  padding: 0 0.15rem;
}

.compare-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.compare-stat {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  padding: 0.35rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 280ms ease-out, box-shadow 280ms ease-out;
}
.compare-stat:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.compare-stat-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  min-height: 100%;
}
.compare-stat-side--old {
  background: rgba(255, 60, 60, 0.05);
  color: #fecaca;
}
.compare-stat-side--new {
  background: rgba(59, 130, 246, 0.06);
  color: #dbeafe;
}
.compare-stat-emoji {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.compare-stat-side strong {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.compare-stat-side span:last-child {
  font-size: 0.82rem;
  opacity: 0.85;
}
.compare-stat-divider {
  display: grid;
  place-items: center;
  color: rgba(148, 163, 184, 0.5);
  font-size: 1.15rem;
}

.compare-cta {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(124, 92, 255, 0.04) 100%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.compare-cta-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: #fff;
}
.compare-cta-lead {
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  color: var(--nav-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.btn-compare-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--nav-accent-start) 0%, var(--nav-accent-end) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.32);
  transition: transform 280ms ease-out, box-shadow 280ms ease-out, filter 280ms ease-out;
}
.btn-compare-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(124, 92, 255, 0.42);
  filter: brightness(1.05);
}

@media (max-width: 767px) {
  .compare-board-headers,
  .compare-row,
  .compare-stat {
    grid-template-columns: 1fr;
  }
  .compare-vs {
    padding: 0.25rem 0;
  }
  .compare-vs span {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto;
  }
  .compare-row-divider,
  .compare-stat-divider {
    padding: 0.15rem 0;
    transform: rotate(0);
  }
  .compare-headline {
    max-width: none;
    text-align: left;
    margin-bottom: 2rem;
  }
  .compare-cta {
    text-align: left;
    padding: 1.75rem 1.25rem;
  }
  .compare-cta-lead {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .compare-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Platform — Solution flow section */
.platform-section {
  position: relative;
}
.platform-head {
  margin-bottom: 2.25rem;
  text-align: left;
}
.platform-title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.platform-title-main {
  color: #fff;
}
.platform-title-accent {
  background: linear-gradient(90deg, #38bdf8 0%, #6366f1 52%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.platform-subtitle {
  max-width: 42ch;
  color: var(--nav-muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
}
.platform-stage {
  position: relative;
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 25, 40, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    border-color 300ms ease-out,
    background 300ms ease-out;
}
.platform-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow:
    0 20px 48px rgba(59, 130, 246, 0.18),
    0 0 0 1px rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 58%),
    rgba(17, 25, 40, 0.62);
}
.platform-card__index {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(148, 163, 184, 0.55);
}
.platform-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.18);
}
.platform-card__icon svg {
  width: 28px;
  height: 28px;
}
.platform-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.55rem;
}
.platform-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.55rem;
}
.platform-card__desc {
  color: var(--nav-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: auto;
}
.platform-card:not(:last-child)::after {
  content: "";
  display: block;
  width: 2px;
  height: 1.5rem;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.55) 0%, rgba(59, 130, 246, 0.08) 100%);
}
.platform-pipeline {
  display: none;
}
.platform-pipeline--desktop {
  margin-top: 1.35rem;
  padding: 0 0.5rem;
}
.platform-pipeline__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}
.platform-pipeline__line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0.45rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(59, 130, 246, 0.45) 50%,
    rgba(59, 130, 246, 0.08) 100%
  );
  pointer-events: none;
}
.platform-pipeline__node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}
.platform-pipeline__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.75);
}
.platform-pipeline__text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(148, 163, 184, 0.85);
}
.platform-summary {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #cbd5e1;
  text-align: left;
}

@media (min-width: 768px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .platform-card:not(:last-child)::after {
    display: none;
  }
}

@media (min-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }
  .platform-pipeline--desktop {
    display: block;
  }
}

@media (max-width: 1023px) {
  .platform-card {
    padding: 1.5rem;
  }
}

/* Features — premium capability showcase */
.feat-section {
  position: relative;
  overflow: hidden;
}
.feat-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% -8%, rgba(59, 130, 246, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 42%, rgba(124, 92, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.feat-head {
  position: relative;
  max-width: 650px;
  margin-bottom: 2.25rem;
  text-align: left;
}
.feat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(124, 92, 255, 0.12) 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}
.feat-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.feat-title-main {
  color: #fff;
}
.feat-title-accent {
  background: linear-gradient(90deg, #38bdf8 0%, #6366f1 52%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feat-lead {
  color: var(--nav-muted);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.7;
  max-width: 650px;
}
.feat-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 27, 45, 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    border-color 300ms ease-out,
    background 300ms ease-out;
  isolation: isolate;
}
.feat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.55) 0%, rgba(124, 92, 255, 0.45) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease-out;
}
.feat-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: transparent;
  box-shadow:
    0 22px 52px rgba(59, 130, 246, 0.16),
    0 0 48px rgba(59, 130, 246, 0.08);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 58%),
    rgba(18, 27, 45, 0.72);
}
.feat-card:hover::after {
  opacity: 1;
}
.feat-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.28);
  transition: transform 300ms ease-out;
}
.feat-card:hover .feat-card__icon {
  transform: rotate(-6deg) scale(1.04);
}
.feat-card__icon svg {
  width: 28px;
  height: 28px;
}
.feat-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e2e8f0;
  margin-bottom: 0.65rem;
  transition: color 300ms ease-out;
}
.feat-card:hover .feat-card__title {
  color: #fff;
}
.feat-card__desc {
  color: var(--nav-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
}
.feat-card__tags {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.feat-card__tag {
  color: rgba(148, 163, 184, 0.85);
  transition: color 300ms ease-out, text-shadow 300ms ease-out;
}
.feat-card:hover .feat-card__tag {
  color: #cbd5e1;
  text-shadow: 0 0 16px rgba(96, 165, 250, 0.35);
}
.feat-card__tag-arrow {
  color: rgba(96, 165, 250, 0.55);
}
.feat-footer {
  position: relative;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(148, 163, 184, 0.55);
  text-align: left;
}

@media (min-width: 768px) {
  .feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (max-width: 767px) {
  .feat-card {
    min-height: 0;
    padding: 1.5rem;
  }
}

/* Flow — How it works timeline */
.flow-section {
  position: relative;
  overflow: hidden;
}
.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(59, 130, 246, 0.07) 0%, transparent 48%),
    radial-gradient(ellipse at 82% 100%, rgba(124, 92, 255, 0.04) 0%, transparent 42%);
  pointer-events: none;
}
.flow-head {
  position: relative;
  max-width: 650px;
  margin-bottom: 2.25rem;
  text-align: left;
}
.flow-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(124, 92, 255, 0.12) 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}
.flow-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.85rem;
}
.flow-lead {
  color: var(--nav-muted);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.7;
  max-width: 650px;
}
.flow-timeline {
  position: relative;
}
.flow-track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.flow-step-wrap {
  flex: 1;
  min-width: 0;
}
.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 220px;
  padding: 1.75rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 27, 45, 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    border-color 300ms ease-out,
    background 300ms ease-out;
  isolation: isolate;
}
.flow-step:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow:
    0 22px 52px rgba(59, 130, 246, 0.16),
    0 0 48px rgba(59, 130, 246, 0.08);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 58%),
    rgba(18, 27, 45, 0.72);
}
.flow-step--emphasis {
  border-color: rgba(96, 165, 250, 0.14);
}
.flow-step--emphasis:hover {
  border-color: rgba(96, 165, 250, 0.42);
}
.flow-step__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.28);
  transition: transform 300ms ease-out;
}
.flow-step:hover .flow-step__icon {
  transform: rotate(-6deg) scale(1.05);
}
.flow-step__icon svg {
  width: 26px;
  height: 26px;
}
.flow-step__emoji {
  font-size: 1.45rem;
  line-height: 1;
}
.flow-step__num {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(96, 165, 250, 0.75);
}
.flow-step__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e2e8f0;
  margin-bottom: 0.55rem;
  transition: color 300ms ease-out;
}
.flow-step:hover .flow-step__title {
  color: #fff;
}
.flow-step__desc {
  color: var(--nav-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flow-step__callout {
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  width: 100%;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.22);
  text-align: left;
}
.flow-step__callout span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  color: #93c5fd;
}
.flow-step__callout span + span {
  margin-top: 0.2rem;
  color: #bfdbfe;
}
.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.35rem 0;
  min-height: 2.5rem;
}
.flow-connector__line {
  flex: 1;
  width: 2px;
  min-height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.55) 0%,
    rgba(124, 92, 255, 0.25) 50%,
    rgba(59, 130, 246, 0.08) 100%
  );
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.35);
}
.flow-connector__dot {
  width: 8px;
  height: 8px;
  margin: 0.2rem 0;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.75);
}
.flow-footer {
  position: relative;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(148, 163, 184, 0.55);
  text-align: left;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .flow-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .flow-connector {
    display: none;
  }
  .flow-step {
    min-height: 240px;
  }
}

@media (min-width: 1024px) {
  .flow-track {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .flow-step-wrap {
    flex: 1;
  }
  .flow-connector {
    flex-direction: row;
    width: 1.25rem;
    min-height: 0;
    padding: 0;
    align-self: center;
  }
  .flow-connector__line {
    width: 100%;
    height: 2px;
    min-height: 0;
    flex: 1;
    background: linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.08) 0%,
      rgba(59, 130, 246, 0.55) 50%,
      rgba(124, 92, 255, 0.25) 100%
    );
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.35);
  }
  .flow-step {
    min-height: 260px;
    padding: 1.75rem 1rem;
  }
}

@media (max-width: 767px) {
  .flow-step {
    min-height: 0;
    padding: 1.5rem 1.25rem;
  }
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  padding: 0.85rem 1rem 0.85rem 1rem;
  position: relative;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.check-list li .item-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  font-size: 0.85rem;
}
.check-list li strong { display: block; color: var(--text); margin-bottom: 0.15rem; }
.check-list li::before { content: none; }
.check-list-accent li .item-icon { background: rgba(99, 102, 241, 0.15); }

.card-grid {
  display: grid;
  gap: 1rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: var(--card-hover);
}
.card h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.steps-grid { display: grid; gap: 1rem; }
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.95rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step-card p { color: var(--muted); font-size: 0.9rem; }

.pricing-wrap { text-align: center; }

/* Pricing — premium SaaS plans */
.pricing-section {
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% -5%, rgba(59, 130, 246, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse at 90% 80%, rgba(124, 92, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.pricing-head {
  position: relative;
  max-width: 650px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(124, 92, 255, 0.12) 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}
.pricing-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.85rem;
}
.pricing-lead {
  color: var(--nav-muted);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.7;
}
.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 27, 45, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    border-color 300ms ease-out,
    background 300ms ease-out;
  isolation: isolate;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.45) 0%, rgba(124, 92, 255, 0.35) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease-out;
}
.price-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: transparent;
  box-shadow:
    0 22px 52px rgba(59, 130, 246, 0.16),
    0 0 48px rgba(59, 130, 246, 0.08);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 58%),
    rgba(18, 27, 45, 0.72);
}
.price-card:hover::after {
  opacity: 1;
}
.price-card--featured {
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow:
    0 16px 48px rgba(59, 130, 246, 0.18),
    0 0 0 1px rgba(124, 92, 255, 0.12);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 58%),
    rgba(18, 27, 45, 0.72);
}
.price-card--featured::after {
  opacity: 1;
}
.price-card--featured:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 28px 60px rgba(59, 130, 246, 0.22),
    0 0 64px rgba(124, 92, 255, 0.12);
}
.price-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.price-card__badge--featured {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}
.price-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 0.65rem;
}
.price-card__price {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.price-card__subtitle {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.price-card__features {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
  text-align: left;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--nav-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.price-card__features li::before {
  content: "✓";
  flex-shrink: 0;
  color: #60a5fa;
  font-weight: 700;
}
.price-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    background 300ms ease-out,
    border-color 300ms ease-out,
    color 300ms ease-out;
}
.price-card__btn--outline {
  color: #bfdbfe;
  background: transparent;
  border-color: rgba(96, 165, 250, 0.35);
}
.price-card__btn--outline:hover {
  transform: scale(1.03);
  border-color: rgba(96, 165, 250, 0.65);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.18);
  color: #fff;
}
.price-card__btn--primary {
  color: #fff;
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(96, 165, 250, 0.28);
}
.price-card__btn--primary:hover {
  transform: scale(1.03);
  background: rgba(59, 130, 246, 0.28);
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.22);
}
.price-card__btn--gradient {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.32);
}
.price-card__btn--gradient:hover {
  transform: scale(1.03);
  box-shadow:
    0 14px 36px rgba(59, 130, 246, 0.38),
    0 0 32px rgba(124, 92, 255, 0.2);
}
.pricing-perks {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-perk {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.65);
}
.pricing-perk::before {
  content: "✓ ";
  color: rgba(96, 165, 250, 0.75);
}
.pricing-disclaimer {
  position: relative;
  max-width: 720px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.5);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
  }
  .price-card--featured {
    padding: 2rem 1.5rem;
    min-height: 520px;
    transform: scale(1.04);
  }
  .price-card--featured:hover {
    transform: translateY(-10px) scale(1.07);
  }
}

@media (max-width: 767px) {
  .price-card {
    padding: 1.5rem 1.25rem;
  }
}

/* FAQ — premium trust section */
.faq-section {
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(59, 130, 246, 0.07) 0%, transparent 48%),
    radial-gradient(ellipse at 88% 100%, rgba(124, 92, 255, 0.05) 0%, transparent 42%);
  pointer-events: none;
}
.faq-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.faq-side {
  max-width: 420px;
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(124, 92, 255, 0.12) 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}
.faq-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.85rem;
}
.faq-lead {
  color: var(--nav-muted);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.faq-cta-card {
  padding: 1.75rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 27, 45, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.faq-cta-card__emoji {
  display: inline-flex;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.faq-cta-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.faq-cta-card__text {
  color: var(--nav-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.faq-cta-card__or {
  display: block;
  margin: 0.75rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.65);
  text-transform: lowercase;
}
.faq-cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    background 300ms ease-out,
    border-color 300ms ease-out,
    color 300ms ease-out;
}
.faq-cta-card__btn--gradient {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.32);
}
.faq-cta-card__btn--gradient:hover {
  transform: scale(1.03);
  box-shadow:
    0 14px 36px rgba(59, 130, 246, 0.38),
    0 0 32px rgba(124, 92, 255, 0.2);
}
.faq-cta-card__btn--outline {
  color: #bfdbfe;
  background: transparent;
  border-color: rgba(96, 165, 250, 0.35);
}
.faq-cta-card__btn--outline:hover {
  transform: scale(1.03);
  border-color: rgba(96, 165, 250, 0.65);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.18);
  color: #fff;
}
.faq-accordion {
  display: grid;
  gap: 0.75rem;
}
.faq-acc-item {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 27, 45, 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition:
    border-color 300ms ease-out,
    box-shadow 300ms ease-out,
    background 300ms ease-out;
}
.faq-acc-item:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow:
    0 12px 32px rgba(59, 130, 246, 0.12),
    0 0 32px rgba(59, 130, 246, 0.06);
}
.faq-acc-item.is-open {
  border-color: rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 58%),
    rgba(18, 27, 45, 0.72);
}
.faq-acc-item__trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 80px;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.faq-acc-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.28);
}
.faq-acc-item__icon svg {
  width: 18px;
  height: 18px;
}
.faq-acc-item__question {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: #e2e8f0;
  transition: color 300ms ease-out;
}
.faq-acc-item:hover .faq-acc-item__question,
.faq-acc-item.is-open .faq-acc-item__question {
  color: #fff;
}
.faq-acc-item__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: rgba(96, 165, 250, 0.75);
  transition: transform 300ms ease-out, color 300ms ease-out;
}
.faq-acc-item__chevron svg {
  width: 18px;
  height: 18px;
}
.faq-acc-item.is-open .faq-acc-item__chevron {
  transform: rotate(180deg);
  color: #93c5fd;
}
.faq-acc-item__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 300ms ease-out,
    opacity 300ms ease-out,
    transform 300ms ease-out;
}
.faq-acc-item.is-open .faq-acc-item__panel {
  max-height: 480px;
  opacity: 1;
  transform: translateY(0);
}
.faq-acc-item__answer {
  padding: 0 1.15rem 1.15rem 3.35rem;
  color: var(--nav-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.faq-acc-item__answer p + p {
  margin-top: 0.65rem;
}
.faq-trust {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.65);
}
.faq-trust__icon {
  font-size: 1rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.5rem;
    align-items: start;
  }
  .faq-side {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

@media (max-width: 1023px) {
  .faq-side {
    max-width: none;
  }
  .faq-acc-item__answer {
    padding-left: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-acc-item__panel,
  .faq-acc-item__chevron,
  .faq-cta-card__btn {
    transition: none;
  }
}

.section-contact { padding-bottom: 3.5rem; }

/* Contact — premium demo request */
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 0%, rgba(124, 92, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-info__title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.85rem;
}
.contact-info__lead {
  color: var(--nav-muted);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}
.contact-info-cards {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 27, 45, 0.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 300ms ease-out,
    box-shadow 300ms ease-out,
    transform 300ms ease-out;
}
.contact-info-card:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.12);
  transform: translateY(-2px);
}
.contact-info-card--static {
  cursor: default;
}
.contact-info-card--static:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.contact-info-card--wa:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.1);
}
.contact-info-card__icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact-info-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
  margin-bottom: 0.2rem;
}
.contact-info-card__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}
.contact-trust-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(59, 130, 246, 0.08);
}
.contact-trust-box__icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact-trust-box__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #bfdbfe;
}
.contact-wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.32);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out;
}
.contact-wa-cta:hover {
  transform: scale(1.03);
  box-shadow:
    0 14px 36px rgba(59, 130, 246, 0.38),
    0 0 32px rgba(124, 92, 255, 0.2);
}
.contact-form-card {
  padding: 2rem 1.75rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 27, 45, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.contact-form-card__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contact-form-card__lead {
  color: var(--nav-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.demo-form {
  display: grid;
  gap: 1rem;
}
.demo-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}
.demo-field input {
  width: 100%;
  height: 54px;
  padding: 0 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 22, 0.55);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition:
    border-color 300ms ease-out,
    box-shadow 300ms ease-out,
    background 300ms ease-out;
}
.demo-field input::placeholder {
  color: rgba(148, 163, 184, 0.55);
}
.demo-field input:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(6, 10, 22, 0.72);
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.25),
    0 0 24px rgba(59, 130, 246, 0.18);
}
.demo-field input.is-invalid {
  border-color: rgba(248, 113, 113, 0.55);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.2);
}
.demo-field__error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #fca5a5;
}
.demo-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #3b82f6 0%, #7c5cff 100%);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.32);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out;
}
.demo-form__submit:hover {
  transform: scale(1.03);
  box-shadow:
    0 14px 36px rgba(59, 130, 246, 0.38),
    0 0 32px rgba(124, 92, 255, 0.2);
}
.contact-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 300;
  max-width: min(420px, calc(100vw - 2rem));
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(6, 10, 22, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #86efac;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  transition:
    transform 350ms ease-out,
    opacity 350ms ease-out;
  pointer-events: none;
}
.contact-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-logo { opacity: 0.85; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

[data-section].section-hidden { display: none; }

/* Tablet: 768px+ */
@media (min-width: 640px) {
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.75rem;
  }
}

@media (min-width: 768px) {
  .hero { padding: 4rem 0; }
  .hero-content { order: 1; }
  .hero-artwork { order: 2; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-ghost {
    width: auto;
  }
  .hero-highlights {
    text-align: left;
  }
  .hero-highlight {
    align-items: flex-start;
  }
  .section { padding: 4rem 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  :root {
    --header-h: 88px;
    --header-h-scrolled: 72px;
  }
  .nav-toggle,
  .nav-backdrop {
    display: none !important;
  }
  .site-nav {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    pointer-events: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-nav-inner {
    flex-direction: row;
    align-items: center;
  }
  .nav-link {
    font-size: 1.0625rem;
  }
  .logo-img {
    height: 36px;
    max-width: 160px;
  }
  .site-header.is-scrolled .logo-img {
    height: 30px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 2.5rem;
  }
  .hero-content { order: 1; }
  .hero-artwork {
    order: 2;
    align-self: start;
  }
  .hero-artwork-frame {
    border-radius: calc(var(--radius) + 8px);
  }
  .hero { padding: 5rem 0 4.5rem; }
  .hero-highlights {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding-top: 2.25rem;
    margin-top: 2.5rem;
  }
  .hero-highlight {
    flex: 1;
    padding: 0 1.15rem;
  }
  .hero-highlight:first-child { padding-left: 0; }
  .hero-highlight:last-child { padding-right: 0; }
  .hero-highlight + .hero-highlight {
    border-left: 1px solid rgba(148, 163, 184, 0.14);
  }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step-card { grid-template-columns: 1fr; text-align: center; }
  .step-num { margin: 0 auto 0.5rem; }
}

/* Large desktop: 1440px+ */
@media (min-width: 1440px) {
  .container { width: min(1200px, calc(100% - 3rem)); }
  .hero-title { font-size: 3.15rem; }
  .security-grid { grid-template-columns: repeat(3, 1fr); }
}
