:root {
  --pool-deep: #0c4a6e;
  --pool-mid: #0284c7;
  --pool-bright: #38bdf8;
  --pool-sun: #fbbf24;
  --pool-coral: #fb7185;
  --sand: #fef3c7;
  --text: #0f172a;
  --text-soft: #475569;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(8, 47, 73, 0.18);
  --radius: 18px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: #f0f9ff;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--pool-bright), var(--pool-mid));
  color: #082f49;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--pool-mid);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.15);
  flex-shrink: 0;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s;
}

.lang-switch-btn:hover {
  color: var(--pool-mid);
}

.lang-switch-btn.is-active {
  color: #082f49;
  background: linear-gradient(135deg, #bae6fd, var(--pool-bright));
}

.site-header-compact .lang-switch {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.2);
}

.site-header-compact .lang-switch-btn {
  color: #cbd5e1;
}

.site-header-compact .lang-switch-btn.is-active {
  color: #082f49;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--pool-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #082f49;
  background: linear-gradient(135deg, #fde68a, var(--pool-sun));
  box-shadow: 0 10px 24px rgba(251, 191, 36, 0.35);
}

.btn-outline {
  color: var(--pool-deep);
  background: transparent;
  border: 2px solid rgba(2, 132, 199, 0.35);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-login {
  color: var(--white);
  background: linear-gradient(135deg, var(--pool-mid), var(--pool-deep));
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

.btn-call {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--pool-coral), #e11d48);
  box-shadow: 0 12px 28px rgba(251, 113, 133, 0.35);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 47, 73, 0.88) 0%, rgba(2, 132, 199, 0.55) 45%, rgba(251, 191, 36, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.hero-tagline {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  color: #fde68a;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

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

.hero-stats div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
}

.hero-stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.split-text h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.split-text p {
  color: var(--text-soft);
  line-height: 1.7;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pool-mid);
  font-weight: 700;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.floating-card {
  position: absolute;
  right: -12px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.floating-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1.1rem;
}

.section-intro {
  background: #ffffff;
}

.section-how {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.how-ident {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.how-ident-text h3,
.how-subtitle {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--pool-deep);
}

.how-ident-text p,
.how-kit-lead {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.how-ident-photo {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.how-kit {
  margin-bottom: 56px;
}

.how-kit-lead {
  margin-bottom: 24px;
}

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

.how-kit-item {
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(14, 116, 144, 0.1);
  box-shadow: 0 10px 28px rgba(14, 116, 144, 0.07);
}

.how-kit-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.how-kit-item h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.how-kit-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.how-bracelets {
  margin-bottom: 0;
}

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

.how-bracelet-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(14, 116, 144, 0.1);
  box-shadow: 0 10px 28px rgba(14, 116, 144, 0.07);
  transition: transform 0.25s ease;
}

.how-bracelet-card:hover {
  transform: translateY(-4px);
}

.how-bracelet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.how-bracelet-img-flip {
  transform: scaleX(-1);
}

.how-bracelet-card h4 {
  margin: 16px 18px 8px;
  font-size: 1.05rem;
}

.how-bracelet-card p {
  margin: 0 18px 18px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.how-lockers {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.how-lockers-media img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.how-lockers-text h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--pool-deep);
}

.how-lockers-text p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

.how-lockers-text p:last-child {
  margin-bottom: 0;
}

.section-how-looks {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 42%, #0c4a6e 100%);
  color: var(--white);
}

.section-how-looks .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.how-looks-intro-mobile {
  display: none;
}

.how-looks-feed {
  display: none;
}

.how-looks-container {
  width: min(1320px, calc(100% - 24px));
}

.how-looks-player {
  --looks-zoom: 1.17;
  display: grid;
  gap: 20px;
}

.how-looks-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.how-looks-frame {
  position: relative;
  width: 65%;
  max-width: 858px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.28);
  isolation: isolate;
}

.how-looks-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  z-index: 0;
}

.how-looks-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.how-looks-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: crosshair;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.how-looks-viewport:focus-visible {
  outline: 2px solid var(--pool-bright);
  outline-offset: 2px;
}

.how-looks-camera {
  height: calc(var(--looks-zoom) * 100%);
  width: calc(var(--looks-zoom) * 100%);
  will-change: transform;
  transform: translate(-7.5%, -6.5%);
}

.how-looks-frame.is-hovered .how-looks-camera {
  transition: transform 0.14s ease-out;
}

.how-looks-camera img {
  width: auto;
  height: 100%;
  display: block;
  max-width: none;
  pointer-events: none;
}

.how-looks-camera-portrait {
  --looks-zoom: 1.31;
}

.how-looks-camera img.how-looks-img-portrait {
  width: auto;
  height: 100%;
}

.how-looks-hint {
  margin: 0;
  width: 65%;
  max-width: 858px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.how-looks-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: end;
  padding: 4px 4px 0;
}

.how-looks-tagline {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff 0%, #bae6fd 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-looks-title {
  margin: 0 0 8px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.how-looks-desc {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 0.95rem;
}

.how-looks-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.how-looks-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.how-looks-btn:hover {
  background: rgba(2, 132, 199, 0.45);
  border-color: var(--pool-bright);
}

.how-looks-dots {
  display: flex;
  gap: 8px;
}

.how-looks-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.how-looks-dot.is-active {
  background: var(--pool-bright);
  transform: scale(1.15);
}

.section-features {
  background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%);
}

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

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(14, 116, 144, 0.1);
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card-accent {
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  border-color: rgba(251, 191, 36, 0.35);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.feature-icon-svg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7dd3fc, #0284c7);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.28);
  color: #082f49;
}

.feature-icon-svg svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.section-gallery {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background: var(--pool-deep);
  color: var(--white);
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
  margin-bottom: 32px;
}

.gallery-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.88;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-caption {
  text-align: center;
}

.gallery-caption h2 {
  margin: 0 0 8px;
}

.section-roadmap {
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.14), transparent 45%),
    var(--sand);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-card {
  position: relative;
  padding: 14px 12px 16px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(14, 116, 144, 0.1);
  box-shadow: 0 10px 30px rgba(14, 116, 144, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--pool-bright), var(--pool-mid));
}

.roadmap-card--soon::before {
  background: linear-gradient(180deg, #fde68a, #f59e0b);
}

.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 116, 144, 0.14);
}

.roadmap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.roadmap-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--pool-deep);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.16);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.roadmap-card--soon .roadmap-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.18);
}

.roadmap-icon svg {
  width: 18px;
  height: 18px;
}

.roadmap-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.roadmap-badge.roadmap-soon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.25);
}

.roadmap-badge.roadmap-planned {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--pool-deep);
  box-shadow: inset 0 0 0 1px rgba(2, 132, 199, 0.2);
}

.roadmap-card-text {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.section-pricing .container {
  width: min(1360px, calc(100% - 32px));
}

.price-card {
  padding: 22px 18px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(14, 116, 144, 0.12);
  box-shadow: 0 12px 32px rgba(14, 116, 144, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card > .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.price-card-addon {
  border: 2px dashed rgba(14, 116, 144, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.price-addon-lead {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.price-addon-note {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--pool-deep);
  line-height: 1.45;
}

.price-addon-equipment {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.price-card-equipment-block {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(14, 116, 144, 0.1);
}

.price-card-equipment-note {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.price-card-check-list {
  margin: 12px 0 0;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid rgba(14, 116, 144, 0.12);
  background: none;
}

.price-card-check-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.price-card-check-list li:last-child {
  margin-bottom: 0;
}

.price-card-featured {
  border: 2px solid var(--pool-mid);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.price-card-demo {
  border: 2px solid rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.price-badge-demo {
  color: #92400e;
}

.price-card-demo .price-amount {
  margin-bottom: 20px;
}

.price-card-demo .price-amount span {
  color: #92400e;
}

.price-badge {
  margin: 0 0 8px;
  color: var(--pool-mid);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-label {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.price-card h3 {
  margin: 6px 0 12px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.price-amount {
  margin: 0;
  font-size: 1rem;
}

.price-amount span {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pool-deep);
}

.price-min-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--pool-deep);
  font-size: 0.92rem;
}

.price-tiers {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 0.8rem;
  table-layout: fixed;
}

.price-tiers-col-period {
  width: 30%;
}

.price-tiers-col-price {
  width: 20%;
}

.price-tiers-col-note {
  width: 50%;
  text-align: right;
  font-size: 0.7rem;
  line-height: 1.25;
  padding-left: 2px;
  word-break: break-word;
  hyphens: auto;
}

.price-tiers th,
.price-tiers td {
  padding: 8px 4px;
  text-align: left;
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
}

.price-tiers th {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-tiers-best {
  background: rgba(56, 189, 248, 0.08);
}

.price-tiers-best td:first-child {
  font-weight: 600;
}

.price-tiers .muted {
  color: #94a3b8;
}

.price-tiers .yes {
  color: #059669;
  font-weight: 600;
}

.price-daily {
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--pool-deep);
  font-size: 0.82rem;
  line-height: 1.4;
}

.price-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.3;
}

.price-cell strong {
  display: block;
}

.price-uah {
  display: block;
  font-size: 0.88em;
  font-weight: 500;
  color: var(--text-soft);
}

.price-tier-note {
  display: block;
  font-size: 0.82em;
  font-weight: 500;
  color: var(--text-soft);
}

.price-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.3;
}

.price-stack--muted {
  align-items: flex-end;
}

.hero-stats .price-uah {
  color: rgba(255, 255, 255, 0.78);
}

.price-setup-note {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pool-deep);
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

.price-card ul {
  margin: 0 0 12px;
  padding-left: 18px;
  line-height: 1.6;
  color: var(--text-soft);
}

.price-note {
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.pricing-footnote {
  margin: 28px 0 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-footnote-main {
  display: block;
  margin-bottom: 8px;
}

.pricing-footnote-label {
  font-weight: 600;
  color: var(--text);
}

.pricing-footnote-label::after {
  content: " ";
}

.pricing-footnote-lines {
  display: inline;
}

.pricing-footnote .price-uah {
  display: inline;
  white-space: nowrap;
}

.pricing-footnote-extra {
  display: block;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 10px 6px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(14, 116, 144, 0.1);
  font-size: 0.82rem;
  line-height: 1.35;
  word-break: break-word;
  hyphens: auto;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 36%;
  text-align: left;
  padding-left: 10px;
}

.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  width: 32%;
}

.compare-table th {
  background: #e0f2fe;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.compare-table .yes {
  color: #059669;
  font-weight: 700;
}

.compare-table .muted {
  color: #94a3b8;
  opacity: 0.72;
  font-weight: 400;
}

.compare-table .no {
  color: #94a3b8;
}

.section-contact {
  background: linear-gradient(135deg, #082f49, #0c4a6e 40%, #0369a1);
  color: var(--white);
}

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

.contact-intro p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.contact-check-list {
  margin: 0 0 8px;
}

.contact-check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.contact-check-list li::before {
  color: #fde68a;
}

.contact-forms {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.form-tab {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 10px;
  background: #e2e8f0;
  color: var(--text-soft);
  font-weight: 600;
  cursor: pointer;
}

.form-tab.active {
  background: linear-gradient(135deg, var(--pool-bright), var(--pool-mid));
  color: #082f49;
}

.lead-form .field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.lead-form .field span {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(14, 116, 144, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #f8fafc;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.45);
  border-color: var(--pool-mid);
}

.form-status {
  min-height: 1.2em;
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.form-status.success {
  color: #059669;
}

.form-status.error {
  color: #dc2626;
}

.site-footer {
  padding: 40px 0;
  background: #082f49;
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--pool-bright);
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

body.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.15), transparent 35%),
    #0f172a;
  display: block;
  padding-top: var(--header-h);
}

.site-header-compact {
  position: fixed;
  background: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(148, 163, 184, 0.15);
}

.site-header-compact .logo-text,
.site-header-compact .btn-ghost {
  color: #e5e7eb;
}

body.login-page .card {
  margin: 48px auto;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(14, 116, 144, 0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .btn-login {
    display: none;
  }

  .split,
  .contact-grid,
  .how-ident,
  .how-lockers {
    grid-template-columns: 1fr;
  }

  .how-kit-grid,
  .how-bracelets-grid {
    grid-template-columns: 1fr;
  }

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

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

  .how-looks-frame,
  .how-looks-hint {
    width: 100%;
    max-width: none;
  }

  .how-looks-intro-desktop {
    display: none;
  }

  .how-looks-intro-mobile {
    display: block;
  }

  .how-looks-player {
    display: none;
  }

  .how-looks-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
    scroll-snap-type: y proximity;
  }

  .how-looks-feed-item {
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(56, 189, 248, 0.22);
    scroll-snap-align: start;
  }

  .how-looks-feed-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #020617;
    border: 1px solid rgba(56, 189, 248, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .how-looks-feed-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .how-looks-feed-copy {
    padding: 0 4px 4px;
  }

  .how-looks-feed-copy .how-looks-desc {
    max-width: none;
  }

  .how-looks-frame {
    border-radius: 16px;
  }

  .how-looks-info {
    grid-template-columns: 1fr;
  }

  .how-looks-controls {
    justify-content: center;
  }

  .price-card-featured {
    transform: none;
  }

  .compare-table th,
  .compare-table td {
    padding: 7px 3px;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .compare-table th {
    font-size: 0.64rem;
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    width: 34%;
    padding-left: 6px;
  }

  .compare-table th:not(:first-child),
  .compare-table td:not(:first-child) {
    width: 33%;
  }

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

  .floating-card {
    top: 16px;
    bottom: auto;
    right: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img,
  .gallery-track,
  .floating-card {
    animation: none;
  }
}
