/* СмартВояж — презентационный лендинг */

:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-900: #0c4a6e;
  --accent-400: #38bdf8;
  --accent-500: #0ea5e9;
  --accent-600: #0284c7;
  --ink: #0b1f33;
  --ink-soft: #1e3a5f;
  --muted: #5b7a94;
  --line: rgba(14, 165, 233, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.04);
  --shadow-md: 0 12px 40px rgba(14, 165, 233, 0.12);
  --shadow-lg: 0 24px 64px rgba(11, 31, 51, 0.14);
  --radius: 1.25rem;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --page-max: 1280px;
  --page-wide: 1340px;
  --page-padding: clamp(1.15rem, 3.5vw, 2rem);
  --read-max: 38rem;
  --section-gap: clamp(4rem, 7vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--sky-50);
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-padding);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.container--wide {
  max-width: var(--page-wide);
}

.section,
.site-header {
  max-width: 100%;
}

/* Ambient orbs */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.orb-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
  top: -180px;
  right: -120px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
  bottom: 10%;
  left: -140px;
  animation-delay: -6s;
}

.orb-c {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #bae6fd 0%, transparent 70%);
  top: 45%;
  right: 15%;
  animation-delay: -12s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-16px, 12px) scale(0.96);
  }
}

/* Плавающие travel-иконки на фоне */
.travel-deco {
  position: absolute;
  inset: 0;
}

.travel-icon {
  position: absolute;
  color: var(--sky-500);
  opacity: 0.16;
  filter: drop-shadow(0 2px 10px rgba(14, 165, 233, 0.2));
  animation: travel-drift var(--tdur, 26s) ease-in-out infinite;
  animation-delay: var(--tdelay, 0s);
  will-change: transform;
}

.travel-icon--plane.ti-1 {
  width: 68px;
  height: 68px;
  top: 9%;
  left: 4%;
  --tdur: 28s;
  --tdelay: -4s;
  transform: rotate(-18deg);
}

.travel-icon--palm.ti-2 {
  width: 72px;
  height: 72px;
  top: 18%;
  right: 3%;
  --tdur: 32s;
  --tdelay: -9s;
  opacity: 0.18;
}

.travel-icon--case.ti-3 {
  width: 58px;
  height: 58px;
  top: 42%;
  left: 2%;
  --tdur: 24s;
  --tdelay: -2s;
  transform: rotate(8deg);
}

.travel-icon--shirt.ti-4 {
  width: 54px;
  height: 54px;
  bottom: 30%;
  right: 6%;
  --tdur: 30s;
  --tdelay: -14s;
  opacity: 0.15;
}

.travel-icon--plane.ti-5 {
  width: 48px;
  height: 48px;
  bottom: 12%;
  left: 14%;
  --tdur: 22s;
  --tdelay: -7s;
  opacity: 0.14;
  transform: rotate(12deg);
}

.travel-icon--sun.ti-6 {
  width: 52px;
  height: 52px;
  top: 5%;
  right: 24%;
  --tdur: 34s;
  --tdelay: -11s;
  opacity: 0.19;
  color: #fbbf24;
}

.travel-icon--flip.ti-7 {
  width: 50px;
  height: 50px;
  top: 58%;
  right: 18%;
  --tdur: 27s;
  --tdelay: -5s;
  opacity: 0.14;
}

.travel-icon--case.ti-8 {
  width: 46px;
  height: 46px;
  bottom: 6%;
  right: 28%;
  --tdur: 29s;
  --tdelay: -16s;
  opacity: 0.13;
  transform: rotate(-6deg);
}

.travel-icon--umbrella.ti-9 {
  width: 56px;
  height: 56px;
  top: 35%;
  right: 4%;
  --tdur: 31s;
  --tdelay: -8s;
  opacity: 0.15;
  color: #38bdf8;
}

.travel-icon--camera.ti-10 {
  width: 44px;
  height: 44px;
  top: 72%;
  left: 8%;
  --tdur: 25s;
  --tdelay: -12s;
  opacity: 0.13;
}

.travel-icon--pin.ti-11 {
  width: 48px;
  height: 48px;
  top: 28%;
  left: 12%;
  --tdur: 33s;
  --tdelay: -3s;
  opacity: 0.14;
  color: #f87171;
}

.travel-icon--passport.ti-12 {
  width: 42px;
  height: 42px;
  bottom: 42%;
  left: 6%;
  --tdur: 28s;
  --tdelay: -18s;
  opacity: 0.12;
}

.travel-icon--cocktail.ti-13 {
  width: 46px;
  height: 46px;
  top: 52%;
  right: 10%;
  --tdur: 26s;
  --tdelay: -6s;
  opacity: 0.15;
  color: #fb923c;
}

.travel-icon--palm.ti-14 {
  width: 64px;
  height: 64px;
  bottom: 18%;
  right: 3%;
  --tdur: 36s;
  --tdelay: -20s;
  opacity: 0.16;
}

.travel-icon--plane.ti-15 {
  width: 56px;
  height: 56px;
  top: 82%;
  right: 14%;
  --tdur: 23s;
  --tdelay: -10s;
  opacity: 0.14;
  transform: rotate(-25deg);
}

.travel-icon--case.ti-16 {
  width: 40px;
  height: 40px;
  top: 14%;
  left: 22%;
  --tdur: 27s;
  --tdelay: -15s;
  opacity: 0.12;
}

.travel-icon--sun.ti-17 {
  width: 38px;
  height: 38px;
  bottom: 52%;
  right: 5%;
  --tdur: 30s;
  --tdelay: -13s;
  opacity: 0.17;
  color: #fbbf24;
}

.travel-icon--shirt.ti-18 {
  width: 42px;
  height: 42px;
  top: 66%;
  left: 20%;
  --tdur: 29s;
  --tdelay: -17s;
  opacity: 0.13;
}

@keyframes travel-drift {
  0%,
  100% {
    translate: 0 0;
  }
  25% {
    translate: 14px -22px;
  }
  50% {
    translate: -10px -12px;
  }
  75% {
    translate: 18px 8px;
  }
}

.travel-icon--plane.ti-1,
.travel-icon--plane.ti-5,
.travel-icon--plane.ti-15 {
  animation-name: travel-drift-plane;
}

@keyframes travel-drift-plane {
  0%,
  100% {
    translate: 0 0;
    rotate: -18deg;
  }
  50% {
    translate: 28px -16px;
    rotate: -8deg;
  }
}

.travel-icon--plane.ti-5 {
  animation-name: travel-drift-plane-sm;
}

@keyframes travel-drift-plane-sm {
  0%,
  100% {
    translate: 0 0;
    rotate: 12deg;
  }
  50% {
    translate: -20px -24px;
    rotate: 22deg;
  }
}

@media (max-width: 900px) {
  .travel-icon.ti-12,
  .travel-icon.ti-16,
  .travel-icon.ti-18 {
    display: none;
  }

  .travel-icon {
    opacity: 0.13;
  }
}

@media (max-width: 600px) {
  .travel-icon.ti-8,
  .travel-icon.ti-10,
  .travel-icon.ti-13,
  .travel-icon.ti-17 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .travel-icon {
    animation: none;
  }
}

/* Header — в сетке контейнера, не на весь экран */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  pointer-events: none;
  transition: padding 0.35s ease;
}

.site-header.is-scrolled {
  padding: 0.5rem 0;
}

.header-wrap {
  pointer-events: auto;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0.6rem 1rem 0.6rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled .header-bar {
  background: var(--glass-strong);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.06rem;
  line-height: 1;
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--sky-500), var(--sky-400));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.brand-voyage {
  background: linear-gradient(120deg, var(--sky-600) 0%, var(--sky-400) 55%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-voyage--light {
  background: linear-gradient(120deg, #fff 0%, #bae6fd 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-voyage--on-primary {
  background: linear-gradient(120deg, #fff 0%, #e0f2fe 45%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-voyage--sp {
  background: linear-gradient(120deg, #7c5cff 0%, #9b7dff 52%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}

.btn-ghost:hover {
  background: rgba(14, 165, 233, 0.08);
}

.btn-primary,
.btn-sky {
  background: linear-gradient(135deg, var(--sky-600), var(--sky-500));
  color: #fff;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.32);
}

.btn-primary:hover,
.btn-sky:hover {
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.4);
  transform: translateY(-1px);
}

.btn-invert {
  background: #fff;
  background-image: none;
  color: #0369a1;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-invert:hover {
  background: #f0f9ff;
  color: #0284c7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  padding: 7.5rem 0 5rem;
  position: relative;
  overflow: visible;
}

.hero-plane-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.hero-plane {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin: -1.375rem 0 0 -1.375rem;
  color: var(--sky-600);
  opacity: 0;
  transition: opacity 0.25s ease;
  filter: drop-shadow(0 6px 14px rgba(14, 165, 233, 0.28));
  will-change: transform;
}

.hero-plane svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero-plane.is-visible {
  opacity: 0.85;
}

@media (max-width: 959px) {
  .hero-plane-layer {
    display: none;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  max-width: 36rem;
}

@media (min-width: 960px) {
  .hero {
    padding-top: 8.25rem;
    padding-bottom: 5.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.08fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .hero-copy {
    max-width: none;
  }
}

.hero-demo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 242, 254, 0.72) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow:
    0 6px 24px rgba(14, 165, 233, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s ease both;
  overflow: hidden;
}

.hero-demo-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(56, 189, 248, 0.18) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: demo-badge-glint 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-demo-badge-icon {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sky-500), var(--sky-400));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.38);
}

.hero-demo-badge-icon svg {
  width: 1rem;
  height: 1rem;
}

.hero-demo-badge-copy {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-demo-badge-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky-600);
  line-height: 1;
}

.hero-demo-badge-days {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.16);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--sky-600);
  line-height: 1;
}

@keyframes demo-badge-glint {
  0%,
  72%,
  100% {
    transform: translateX(-120%);
  }
  88% {
    transform: translateX(120%);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 1.25rem;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--sky-600) 0%, var(--sky-400) 55%, var(--sky-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: var(--read-max);
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: fade-up 0.8s ease 0.3s both;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.15rem;
  animation: fade-up 0.8s ease 0.4s both;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 0.85rem 1.1rem;
  border-radius: 1.05rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 249, 255, 0.72) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  text-align: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.metric:hover {
  border-color: color-mix(in srgb, var(--sky-400) 35%, var(--line));
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  line-height: 0;
  color: var(--sky-600);
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.14), rgba(56, 189, 248, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.metric-icon svg {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  margin: 0;
}

.metric--pick .metric-icon {
  color: #7c3aed;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.14), rgba(167, 139, 250, 0.08));
}

.metric--fly .metric-icon {
  color: #c2410c;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.14), rgba(251, 191, 36, 0.08));
}

.metric-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  width: 100%;
  min-width: 0;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.metric-body > span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 959px) and (min-width: 640px) {
  .metrics {
    gap: 0.55rem;
  }

  .metric {
    padding: 0.9rem 0.75rem 0.95rem;
    gap: 0.6rem;
  }

  .metric strong {
    font-size: 0.92rem;
  }

  .metric-body > span {
    font-size: 0.68rem;
  }
}

@media (max-width: 639px) {
  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .metric {
    padding: 0.8rem 0.45rem 0.85rem;
    gap: 0.55rem;
  }

  .metric-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .metric-icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .metric strong {
    font-size: 0.78rem;
  }

  .metric-body > span {
    font-size: 0.58rem;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .metrics {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .metric {
    padding: 0.85rem 1rem;
  }

  .metric strong {
    font-size: 0.92rem;
  }

  .metric-body > span {
    font-size: 0.72rem;
  }
}

/* Product mock */
.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  padding: 1.25rem 0.5rem 2rem;
  animation: fade-up 1s ease 0.25s both;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 5% 2% -5% 2%;
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.28), rgba(56, 189, 248, 0.12));
  border-radius: 2rem;
  filter: blur(48px);
  z-index: 0;
}

.mock-app {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1.5rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg), 0 20px 50px rgba(14, 165, 233, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.mock-app:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
  box-shadow: var(--shadow-lg), 0 28px 60px rgba(14, 165, 233, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (min-width: 960px) {
  .hero-visual {
    padding: 1.5rem 0.25rem 2.5rem 0.75rem;
  }
}

@media (max-width: 959px) {
  .hero-visual {
    max-width: 26rem;
    margin-inline: auto;
  }

  .mock-app {
    transform: none;
    box-shadow: var(--shadow-lg), 0 16px 40px rgba(14, 165, 233, 0.12);
  }

  .mock-app:hover {
    transform: translateY(-4px);
  }
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.mock-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #cbd5e1;
}

.mock-dot:nth-child(1) {
  background: #f87171;
}
.mock-dot:nth-child(2) {
  background: #fbbf24;
}
.mock-dot:nth-child(3) {
  background: #4ade80;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.mock-kpi {
  padding: 0.65rem 0.55rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--sky-100);
}

.mock-kpi label {
  display: block;
  font-size: 0.55rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.mock-kpi b {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}

.mock-kanban {
  display: flex;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, var(--sky-50), #fff);
  border: 1px solid var(--sky-100);
}

.mock-col {
  flex: 1;
  min-width: 0;
}

.mock-col h4 {
  margin: 0 0 0.4rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.mock-card {
  background: #fff;
  border: 1px solid var(--sky-100);
  border-radius: 0.55rem;
  padding: 0.45rem 0.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.52rem;
  line-height: 1.35;
  box-shadow: 0 2px 6px rgba(11, 31, 51, 0.04);
}

.mock-card strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.mock-card em {
  font-style: normal;
  color: var(--sky-600);
  font-weight: 600;
}

.float-card {
  position: absolute;
  z-index: 2;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  animation: float-card 5s ease-in-out infinite;
}

.float-card-a {
  top: 0.15rem;
  left: 0.25rem;
}

.float-card-b {
  bottom: 1.25rem;
  right: 0.25rem;
  animation-delay: -2.5s;
}

@media (max-width: 959px) {
  .float-card {
    display: none;
  }
}

.float-card .tag {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--sky-600);
  font-size: 0.62rem;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Trust strip */
.trust {
  padding: 2rem 0 3rem;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
}

.trust-item {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.trust-item span {
  color: var(--ink);
}

/* Sections */
.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.55) 100%);
  border-block: 1px solid rgba(14, 165, 233, 0.08);
}

.section--tight-top {
  padding-top: calc(var(--section-gap) * 0.65);
}

.section-pain {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-pain::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(56, 189, 248, 0.1), transparent 50%);
  pointer-events: none;
}

.section-pain .container {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.75rem;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-600);
}

.section-headline {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.8vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
}

.section-headline .accent {
  background: linear-gradient(120deg, var(--sky-600) 0%, var(--sky-400) 55%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-headline--light {
  color: #fff;
}

.section-headline--light .accent {
  background: linear-gradient(120deg, #fff 0%, #bae6fd 45%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-hook {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.45rem;
  margin: 0 auto;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 249, 255, 0.92) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  line-height: 1.4;
  max-width: 42rem;
}

.section-hook-muted {
  color: var(--muted);
  font-weight: 500;
}

.section-hook-accent {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--sky-600), var(--sky-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-hook--pill {
  gap: 0.5rem 0.65rem;
}

.section-hook--on-dark {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.section-hook--on-dark .section-hook-muted {
  color: rgba(255, 255, 255, 0.78);
}

.section-hook--on-dark .section-hook-accent {
  background: linear-gradient(120deg, #fff, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-hook--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  border-radius: 1.15rem;
  line-height: 1.5;
  text-align: left;
  text-wrap: balance;
}

.section-hook--stack .section-hook-accent {
  font-size: 1.02em;
}

.partners-hook-title {
  font-family: var(--font-display);
  font-size: 1.02em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 520px) {
  .section-hook--single-line {
    flex-wrap: nowrap;
  }

  .section-hook--pill {
    flex-wrap: wrap;
  }
}

#product .section-hook {
  border-radius: 1.15rem;
  max-width: 36rem;
  line-height: 1.5;
  text-wrap: balance;
}

.section-pain .section-head,
#start .section-head,
#pricing .section-head {
  max-width: 48rem;
}

.pain-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  margin: 2.5rem auto 0;
  text-align: center;
}

.pain-bridge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sky-600), var(--sky-500));
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.32);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pain-bridge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.38);
}

.pain-bridge-note {
  position: relative;
  max-width: 42rem;
  margin: 0;
  padding: 1.35rem 1.5rem 1.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 255, 0.88) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--muted);
}

.pain-bridge-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3.5rem;
  height: 3px;
  margin-left: -1.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-400), var(--sky-600));
}

/* Pain cards */
.pain-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 640px) {
  .trust-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-inline: calc(var(--page-padding) * -0.15);
    padding-inline: calc(var(--page-padding) * 0.15);
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 90%, transparent);
  }

  .trust-inner::-webkit-scrollbar {
    display: none;
  }
}

.pain-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  border-radius: 1.25rem;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pain-card-num {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sky-600);
  background: linear-gradient(145deg, var(--sky-100), #fff);
  border: 1px solid var(--sky-200);
}

.pain-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}

.pain-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.62;
}

/* Bento features */
.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }
  .bento-a {
    grid-column: span 3;
  }
  .bento-b {
    grid-column: span 3;
  }
  .bento-c {
    grid-column: span 2;
  }
  .bento-d {
    grid-column: span 2;
  }
  .bento-e {
    grid-column: span 2;
  }
  .bento-f {
    grid-column: span 3;
  }
  .bento-g {
    grid-column: span 3;
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, var(--sky-100), #fff);
  border: 1px solid var(--sky-200);
  color: var(--sky-600);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card.large h3 {
  font-size: 1.05rem;
}

.feature-card.large p {
  font-size: 0.92rem;
}

/* Capabilities */
.capabilities {
  padding-top: 0.5rem;
}

.capabilities-intro {
  max-width: 52rem;
  margin-bottom: 3.5rem;
}

.capabilities-stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  text-align: left;
}

@media (min-width: 700px) {
  .capabilities-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.capabilities-stat {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--sky-50), #fff);
  border: 1px solid var(--sky-100);
}

.capabilities-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--ink);
}

.capabilities-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.cap-group {
  margin-bottom: 3rem;
}

.cap-group-head {
  margin-bottom: 1.25rem;
}

@media (min-width: 900px) {
  .cap-group {
    margin-bottom: 3.75rem;
  }

  .cap-group-head {
    text-align: left;
    max-width: 54rem;
    padding-left: 1.15rem;
    border-left: 3px solid var(--sky-400);
  }
}

.cap-group-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.cap-group-head p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.cap-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 760px) {
  .cap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .cap-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cap-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cap-card {
  padding: 1.5rem 1.4rem;
  border-radius: 1.2rem;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--sky-300) 55%, var(--line));
}

.cap-card--accent {
  background: linear-gradient(155deg, #f0f9ff 0%, #fff 55%);
  border-color: var(--sky-200);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.cap-card--compact p {
  font-size: 0.84rem;
}

.cap-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.15rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sky-700);
  background: var(--sky-100);
}

.cap-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.cap-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--muted);
}

.cap-card ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.cap-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

.cap-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--sky-400);
}

.capabilities-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--sky-600), #0369a1);
  color: #fff;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .capabilities-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}

.capabilities-cta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.capabilities-cta p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.capabilities-cta .btn-invert {
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--muted);
}

/* Pricing */
.pricing {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
}

.pricing-two {
  width: 100%;
}

@media (min-width: 800px) {
  .pricing:not(.pricing-two) {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
}

@media (min-width: 1100px) {
  .pricing-two {
    gap: 2rem;
  }

  .price-card {
    padding: 2.25rem 2rem;
  }
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card {
  position: relative;
  padding: 2rem 1.65rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border: 2px solid var(--sky-400);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.15), var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-400));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.price-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}

.price-val small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price-sub {
  margin: 0.15rem 0 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.price-val-request {
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  color: var(--sky-600);
}

.beta-pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky-700);
  background: var(--sky-100);
  border: 1px solid var(--sky-200);
  vertical-align: middle;
}

/* Partners hero */
.partners-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.partners-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(139, 92, 246, 0.35), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(56, 189, 248, 0.28), transparent),
    linear-gradient(135deg, #1e1b4b 0%, #312e81 42%, #0c4a6e 100%);
}

.partners-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .partners-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.partners-hero-copy {
  color: #fff;
}

.partners-hero-copy .section-headline,
.partners-hero-copy .section-hook {
  text-align: left;
  margin-inline: 0;
}

.partners-hero-copy .section-hook {
  justify-content: flex-start;
}

.partners-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.partners-marquee span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.partners-perks {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.partners-perks li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.partners-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.partners-perks strong {
  color: #fff;
}

.partners-form-card {
  padding: 1.65rem 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.partners-form-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

.partners-form-hint {
  margin: 0.4rem 0 1.1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.partner-type-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.partner-type-opt {
  cursor: pointer;
}

.partner-type-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.partner-type-opt span {
  display: block;
  padding: 0.55rem 0.4rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: var(--muted);
  background: #fff;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.partner-type-opt input:checked + span {
  border-color: var(--sky-400);
  background: var(--sky-50);
  color: var(--sky-700);
}

.partner-field {
  display: block;
  margin-bottom: 0.75rem;
}

.partner-field > span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.partner-field input,
.partner-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
}

.partner-field input:focus,
.partner-field textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.35);
  border-color: var(--sky-400);
}

.partner-field-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .partner-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-honeypot {
  display: none !important;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.25rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.form-consent input {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-primary, #0ea5e9);
}

.form-consent span {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted, #64748b);
}

.form-consent a {
  color: var(--color-primary, #0284c7);
  font-weight: 600;
  text-decoration: none;
}

.form-consent a:hover {
  text-decoration: underline;
}

.partner-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.partner-form-status {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.86rem;
}

.partner-form-status.is-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.partner-form-status.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.partner-form-status.is-pending {
  display: none;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex: 1;
}

.price-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sky-400);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

/* CTA finale */
.cta-finale {
  margin-top: 0;
  padding: 3.5rem var(--page-padding);
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-600) 0%, #0369a1 50%, var(--sky-500) 100%);
  color: #fff;
}

.cta-finale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.2), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(125, 211, 252, 0.22), transparent 45%);
  pointer-events: none;
}

.cta-finale h2 {
  position: relative;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-finale p {
  position: relative;
  margin: 0 auto 1.75rem;
  max-width: 30rem;
  opacity: 0.92;
  font-size: 1.05rem;
}

.cta-finale .btn-primary {
  position: relative;
  background: #fff;
  color: var(--sky-600);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-finale .btn-primary:hover {
  background: #f0f9ff;
}

/* Footer */
.site-footer {
  margin-top: 0.5rem;
  padding: 0 0 2rem;
}

.footer-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 255, 0.92) 55%, rgba(224, 242, 254, 0.75) 100%);
  box-shadow: var(--shadow-md);
}

.footer-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.12), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.1), transparent 40%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 2rem var(--page-padding) 1.5rem;
}

@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo .brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1;
}

.footer-logo-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.footer-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-accent {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 1.35vw, 0.95rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--sky-600) 0%, var(--sky-400) 55%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-cta {
  margin-top: 0.15rem;
  padding: 0.72rem 1.25rem;
  font-size: 0.86rem;
}

.footer-nav-grid {
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

@media (min-width: 640px) {
  .footer-nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-col {
  min-width: 0;
}

.footer-col-title {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-col .footer-social {
  margin-top: 0.65rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a,
.footer-contacts a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: var(--sky-600);
}

.footer-contacts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-link {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-link--tg:hover {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.35);
}

.social-link--vk:hover {
  color: #0077ff;
  border-color: rgba(0, 119, 255, 0.35);
}

.social-link--dzen:hover {
  color: #0c4a6e;
  border-color: rgba(12, 74, 110, 0.2);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.9rem var(--page-padding) 1rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--sky-600);
  text-decoration: underline;
}

.footer-legal-sep {
  font-size: 0.72rem;
  color: rgba(100, 116, 139, 0.55);
}

.footer-copyright {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink-soft);
}

.footer-bottom-note {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-end;
  text-align: right;
}

.footer-studio-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink-soft);
}

.footer-studio-prefix {
  margin-right: 0.3em;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
}

.footer-studio-name a {
  color: inherit;
  text-decoration: none;
}

.footer-studio-name a:hover {
  color: var(--sky-600);
}

.footer-bottom-note a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-note a:hover {
  color: var(--sky-600);
}

@media (max-width: 639px) {
  .footer-main {
    padding-top: 1.65rem;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line);
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0.85rem;
  }

  .footer-bottom-right {
    align-items: flex-start;
    text-align: left;
  }
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.75rem var(--page-padding) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(11, 31, 51, 0.08);
}

.mobile-cta .btn {
  width: 100%;
}

.btn-label-short {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .site-header.is-scrolled {
    padding: 0.4rem 0;
  }

  .header-bar {
    gap: 0.5rem;
    padding: 0.45rem 0.5rem 0.45rem 0.45rem;
    border-radius: 0.85rem;
    min-width: 0;
  }

  .brand {
    gap: 0.45rem;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.65rem;
    flex-shrink: 0;
  }

  .brand-mark svg {
    width: 18px;
    height: 18px;
  }

  .brand-sub {
    display: none;
  }

  .brand-title {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn-primary {
    padding: 0.5rem 0.7rem;
    font-size: 0.72rem;
    white-space: nowrap;
    line-height: 1.2;
  }

  .btn-label-long {
    display: none;
  }

  .btn-label-short {
    display: inline;
  }

  .hero {
    padding-top: 6.25rem;
  }

  .hero-cta {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .hero-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero-cta .btn-lg {
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
  }

  .mobile-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }

  .bento,
  .pain-grid,
  .steps,
  .pricing,
  .pricing-two {
    min-width: 0;
  }

}

@media (max-width: 380px) {
  .brand-title {
    font-size: 0.72rem;
  }

  .nav-actions .btn-primary {
    padding: 0.45rem 0.55rem;
    font-size: 0.68rem;
  }

  .hero-cta .btn {
    font-size: 0.7rem;
    padding: 0.55rem 0.5rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: var(--page-padding);
  right: var(--page-padding);
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  max-width: 52rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.cookie-banner__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--glass-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sky-600);
}

.cookie-banner__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.cookie-banner__text {
  flex: 1 1 14rem;
  min-width: 0;
}

.cookie-banner__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.cookie-banner__desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

.cookie-banner__desc a {
  color: var(--sky-600);
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner__desc a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 0.62rem 1.1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .cookie-banner {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__panel {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__accept {
    width: 100%;
  }
}
