:root {
  color-scheme: dark;
  --blue-900: #070b12;
  --blue-800: #0b1526;
  --blue-700: #12253f;
  --blue-600: #1a3f63;
  --blue-500: #2a5f8f;
  --orange-500: #ff8a3d;
  --orange-400: #ffb067;
  --ink-100: #f1f6ff;
  --ink-200: #c9d6e6;
  --ink-400: #94a6bf;
  --glass: rgba(15, 24, 40, 0.58);
  --glass-strong: rgba(9, 16, 29, 0.78);
  --stroke: rgba(255, 255, 255, 0.08);
  --glow: rgba(255, 138, 61, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow-soft: 0 24px 60px rgba(5, 12, 24, 0.6);
  --shadow-strong: 0 30px 80px rgba(5, 12, 24, 0.75);
}

html {
  scrollbar-gutter: stable;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink-100);
  background: radial-gradient(circle at 15% 10%, #1f416a 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 138, 61, 0.22) 0%, transparent 45%),
    linear-gradient(135deg, var(--blue-900), var(--blue-800));
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  z-index: 0;
}

body.preload {
  overflow: hidden;
}

html.intro-scroll-lock,
body.intro-scroll-lock {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.intro-scroll-lock {
  touch-action: none;
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  color: inherit;
  background: none;
}

section {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 120px);
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ambient span {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 176, 103, 0.35), transparent 70%);
  filter: blur(0px);
  opacity: 0.4;
  animation: float 18s ease-in-out infinite;
  z-index: 0;
}

.ambient span:nth-child(1) {
  top: 10%;
  left: 5%;
}

.ambient span:nth-child(2) {
  top: 55%;
  right: 10%;
  animation-delay: -6s;
}

.ambient span:nth-child(3) {
  bottom: 5%;
  left: 45%;
  animation-delay: -12s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -40px, 0) scale(1.08);
  }
}

#intro {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: radial-gradient(circle at top, #1b2f4d, #0a111f 60%);
  display: grid;
  place-items: center;
  z-index: 2000;
  transition: opacity 0.6s ease;
  cursor: default;
  user-select: none;
}

#intro * {
  user-select: none;
}

#intro.done {
  opacity: 0;
  pointer-events: none;
}

.intro-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2vw;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(56px, 18vw, 260px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.intro-word,
.intro-merge {
  color: #f3f7ff;
  text-shadow: 0 20px 60px rgba(10, 20, 40, 0.7);
  opacity: 0;
  will-change: transform, opacity;
}

#intro.playing .intro-we {
  animation: introWeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    introWordOut 0.45s ease forwards;
  animation-delay: 0s, 1.15s;
}

#intro.playing .intro-sell {
  animation: introSellIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    introWordOut 0.45s ease forwards;
  animation-delay: 0.12s, 1.27s;
}

#intro.playing .intro-merge {
  animation: introMergeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.22s;
}

.intro-merge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

@keyframes introWeIn {
  0% {
    opacity: 0;
    transform: translateX(-42vw) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes introSellIn {
  0% {
    opacity: 0;
    transform: translateX(42vw) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes introWordOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(0) scale(0.96);
  }
}

@keyframes introMergeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.hero {
  padding: clamp(32px, 6vw, 80px) clamp(20px, 6vw, 120px) clamp(64px, 10vw, 140px);
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-tag {
  font-size: 0.95rem;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.nav-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--orange-500), #ff6f21);
  color: #10131d;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(255, 138, 61, 0.3);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(10, 17, 30, 0.6);
}

.lang-btn {
  min-width: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-200);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(120deg, var(--orange-500), #ff6f21);
  color: #10131d;
}

.lang-offer {
  position: fixed;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  width: min(460px, calc(100vw - 24px));
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(8, 14, 24, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  z-index: 2300;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-offer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-offer p {
  color: var(--ink-100);
  line-height: 1.5;
}

.lang-offer-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lang-offer .primary,
.lang-offer .ghost {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 6vw, 80px);
  margin-top: clamp(30px, 6vw, 60px);
  align-items: center;
}

.ai-powered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 17, 30, 0.56);
  box-shadow: 0 12px 30px rgba(5, 12, 24, 0.45);
}

.ai-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange-500);
  box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.55);
  animation: aiPulse 1.8s ease-out infinite;
}

.ai-text {
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(100deg, #f1f6ff 10%, #ffb067 50%, #f1f6ff 90%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aiScan 4.2s linear infinite;
}

@keyframes aiPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 138, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 61, 0);
  }
}

@keyframes aiScan {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.hero-copy h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.15;
  margin: 16px 0 20px;
}

.hero-stat {
  display: inline-block;
  margin-right: 0.12em;
  color: var(--orange-400);
  font-size: 1.22em;
  line-height: 0.95;
  text-shadow: 0 10px 24px rgba(255, 138, 61, 0.3);
}

.hero-copy p {
  color: var(--ink-200);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.hero-fixline {
  display: inline-block;
  margin-top: 4px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 176, 103, 0.34);
  background: radial-gradient(150% 180% at 10% 0%, rgba(255, 138, 61, 0.2), rgba(10, 17, 30, 0.86));
  color: #ffe9d4;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: fit-content;
  text-shadow: 0 0 10px rgba(255, 176, 103, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 176, 103, 0.1) inset,
    0 10px 24px rgba(255, 138, 61, 0.16);
  animation: heroFixlinePulse 5s ease-in-out infinite;
}

@keyframes heroFixlinePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 176, 103, 0.1) inset,
      0 10px 24px rgba(255, 138, 61, 0.16);
    text-shadow: 0 0 8px rgba(255, 176, 103, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 176, 103, 0.14) inset,
      0 0 14px rgba(255, 176, 103, 0.2),
      0 12px 28px rgba(255, 138, 61, 0.22);
    text-shadow: 0 0 10px rgba(255, 176, 103, 0.42);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--orange-400);
  font-weight: 600;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary,
.ghost {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

.primary {
  background: linear-gradient(120deg, var(--orange-500), #ff6f21);
  color: #10131d;
  box-shadow: 0 16px 35px rgba(255, 138, 61, 0.25);
}

.ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
}

.hero-panel {
  display: grid;
  gap: 20px;
  align-self: stretch;
}

.panel-card.best-case-card {
  border-color: rgba(47, 230, 138, 0.26);
  background: linear-gradient(150deg, rgba(15, 28, 43, 0.9), rgba(9, 16, 29, 0.82));
  min-height: clamp(520px, 58vw, 760px);
  padding-top: 24px;
}

.best-case-card .best-case-copy {
  color: var(--ink-200);
  line-height: 1.55;
}

.best-case-card .bullish-stage {
  margin-top: 18px;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.best-case-card .bullish-chart {
  min-height: clamp(270px, 34vw, 420px);
}

.best-case-card .bullish-metric {
  padding: 18px;
  gap: 8px;
}

.best-case-card .bullish-value {
  font-size: clamp(38px, 5.2vw, 60px);
}

.panel-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.panel-card.alt {
  background: var(--glass-strong);
}

.bots-card {
  border-color: rgba(255, 176, 103, 0.28);
  background: linear-gradient(155deg, rgba(16, 27, 45, 0.92), rgba(10, 17, 30, 0.84));
}

.panel-card h3 {
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 10px;
}

.panel-card p {
  color: var(--ink-200);
  line-height: 1.6;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ops-combo-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.ops-divider {
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 176, 103, 0.4), rgba(255, 255, 255, 0.06));
}

.ops-combo-card .panel-metrics {
  margin-top: 8px;
}

.panel-metrics span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-400);
}

.panel-metrics small {
  display: block;
  color: var(--ink-400);
  margin-top: 4px;
}

.bot-stack {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.bot-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 23, 0.7);
}

.bot-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.bot-icon svg {
  width: 22px;
  height: 22px;
}

.bot-icon svg circle,
.bot-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bot-icon.whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: #69ef9d;
}

.bot-icon.telegram {
  background: rgba(41, 171, 226, 0.18);
  color: #79d7ff;
}

.bot-icon.telegram svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.bot-channel strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.bot-channel small {
  display: block;
  color: var(--ink-200);
  line-height: 1.45;
}

.bot-impact {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 138, 61, 0.08);
  border: 1px solid rgba(255, 176, 103, 0.28);
}

.bot-impact span {
  display: block;
  font-weight: 700;
  color: var(--ink-100);
}

.bot-impact small {
  display: block;
  margin-top: 6px;
  color: var(--ink-200);
  line-height: 1.5;
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-200);
  line-height: 1.7;
}

.advantage-grid {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.advantage-card {
  display: grid;
  grid-template-columns: minmax(320px, 44%) 1fr;
  min-height: clamp(320px, 36vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(8, 14, 24, 0.72);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.advantage-image {
  position: relative;
  min-height: 100%;
  background-image: var(--bg-image);
  background-size: var(--bg-size, cover);
  background-position: var(--bg-position, center);
  background-repeat: no-repeat;
  margin-right: 0;
}

.advantage-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(24px, 3.6vw, 36px);
  background: rgba(8, 14, 25, 0.95);
}

.advantage-card:nth-child(odd) .advantage-content {
  box-shadow: -2px 0 0 rgba(8, 14, 25, 0.95);
}

.advantage-card:nth-child(even) .advantage-image {
  order: 2;
}

.advantage-card:nth-child(even) .advantage-content {
  order: 1;
  box-shadow: 2px 0 0 rgba(8, 14, 25, 0.95);
}

.advantage-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.3;
}

.advantage-content p {
  color: var(--ink-200);
  line-height: 1.6;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

.advantage-cta {
  margin-top: clamp(20px, 3vw, 30px);
  display: flex;
  justify-content: center;
}

.apply-green {
  min-width: min(560px, 100%);
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  color: #07120d;
  background: linear-gradient(120deg, #2fe68a, #18b86b);
  box-shadow: 0 16px 36px rgba(24, 184, 107, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.apply-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(24, 184, 107, 0.45);
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .advantage-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .advantage-image {
    min-height: clamp(220px, 52vw, 300px);
  }

  .advantage-card:nth-child(even) .advantage-image,
  .advantage-card:nth-child(even) .advantage-content {
    order: initial;
  }

  .advantage-card:nth-child(odd) .advantage-content,
  .advantage-card:nth-child(even) .advantage-content {
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: none;
  }
}

.choice-grid {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.choice-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.choice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.06);
}

.choice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.3), rgba(5, 9, 16, 0.8));
}

.choice-card .choice-label {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  text-align: left;
  padding: 24px;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
}

.choice-card small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--ink-400);
}

.choice-grid:hover .choice-card {
  filter: grayscale(0.8) brightness(0.6);
  transform: scale(0.96);
}

.choice-grid:hover .choice-card:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

.picker {
  display: none;
}

body[data-industry] .picker {
  display: block;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 4vw, 32px);
}

.pick-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.pick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.9);
  transform: scale(1.08);
}

.pick-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(6, 10, 18, 0.7), rgba(4, 7, 14, 0.95));
}

.pick-card .pick-label {
  position: relative;
  z-index: 2;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
}

.pick-grid:hover .pick-card {
  filter: grayscale(0.8) brightness(0.6);
  transform: scale(0.96);
}

.pick-grid:hover .pick-card:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

.service {
  display: none;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--service-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.2);
}

.service::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 9, 16, 0.9), rgba(10, 17, 30, 0.7));
}

.service-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(28px, 6vw, 60px);
}

.service-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--ink-200);
  line-height: 1.7;
  max-width: 560px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
  color: var(--ink-200);
}

.feature-list li {
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--orange-400);
}

.service-qa {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.service-qa h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-200);
}

.service-qa-item {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 29, 0.45);
}

.service-qa-item h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.service-qa-item p {
  max-width: none;
  font-size: 0.96rem;
}

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

.service-stats div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(9, 16, 29, 0.72);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.service-stats span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-400);
}

.service-stats small {
  display: block;
  margin-top: 6px;
  color: var(--ink-400);
}

.rivalry {
  position: relative;
  overflow: hidden;
}

.rivalry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 138, 61, 0.12), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(83, 171, 255, 0.16), transparent 52%);
  pointer-events: none;
}

.rivalry .section-head,
.rivalry-grid,
.rivalry-highlight,
.rivalry-foundation {
  position: relative;
  z-index: 1;
}

.rivalry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.rivalry-card {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(10, 17, 30, 0.72);
  box-shadow: var(--shadow-soft);
}

.rivalry-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 14px;
}

.rivalry-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.rivalry-card li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-200);
  line-height: 1.6;
}

.rivalry-card li::before {
  content: '•';
  position: absolute;
  left: 0;
}

.rivalry-card.rivals {
  border-color: rgba(255, 120, 120, 0.3);
}

.rivalry-card.rivals li::before {
  color: #ff9e9e;
}

.rivalry-card.wesell {
  border-color: rgba(255, 176, 103, 0.45);
  background: linear-gradient(160deg, rgba(20, 32, 52, 0.92), rgba(9, 16, 29, 0.82));
}

.rivalry-card.wesell li::before {
  color: var(--orange-400);
}

.rivalry-highlight {
  margin-top: clamp(18px, 3vw, 26px);
  padding: clamp(20px, 3vw, 30px);
  border-radius: 20px;
  border: 1px solid rgba(255, 176, 103, 0.4);
  background: linear-gradient(120deg, rgba(255, 138, 61, 0.15), rgba(19, 34, 57, 0.85));
}

.rivalry-highlight h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 10px;
}

.rivalry-highlight p {
  color: var(--ink-100);
  line-height: 1.65;
}

.rivalry-highlight strong {
  color: var(--orange-400);
  font-size: 1.1em;
}

.rivalry-foundation {
  margin-top: clamp(16px, 3vw, 24px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.rivalry-foundation p {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 25, 0.66);
  color: var(--ink-200);
  line-height: 1.6;
}

.rivalry-cta {
  margin-top: clamp(18px, 3vw, 24px);
  display: flex;
  justify-content: center;
}

.rivalry-cta .primary {
  min-width: min(540px, 100%);
  text-align: center;
}


.case-slider {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: clamp(24px, 4vw, 42px);
  min-height: 320px;
  display: grid;
  align-items: center;
  color: #0f172a;
  box-shadow: 0 24px 50px rgba(6, 10, 18, 0.25);
}

.case-card {
  display: none;
  grid-template-columns: minmax(200px, 260px) 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
}

.case-card.active {
  display: grid;
}

.case-card img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 28px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}

.case-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.case-content p {
  color: #3b4a60;
  font-size: 1.05rem;
  line-height: 1.7;
}

.case-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.case-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
}

.case-dot.active {
  width: 28px;
  background: var(--orange-500);
}

.coverage-grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: stretch;
}

.coverage-visual,
.coverage-card {
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.coverage-visual {
  overflow: hidden;
  background: rgba(7, 12, 22, 0.7);
}

.coverage-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.coverage-card {
  background: rgba(10, 17, 30, 0.64);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  align-content: start;
  gap: 18px;
}

.coverage-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
}

.coverage-card p {
  color: var(--ink-200);
  line-height: 1.65;
}

.coverage-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.coverage-list li {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-100);
  font-weight: 600;
}

.coverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-live {
  margin-top: clamp(20px, 3vw, 28px);
  padding: clamp(16px, 3vw, 24px);
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(7, 12, 22, 0.62);
  box-shadow: var(--shadow-soft);
}

.coverage-live h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 12px;
}

.coverage-live iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 14px;
}

@media (max-width: 860px) {
  .case-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .case-card img {
    max-width: 200px;
    justify-self: center;
  }

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

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .bot-channel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .bot-icon {
    width: 36px;
    height: 36px;
  }
}

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

.team-group {
  margin-top: 28px;
}

.team-group:first-of-type {
  margin-top: 0;
}

.team-group h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-200);
  margin-bottom: 16px;
}

.team-card {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(10, 17, 30, 0.6);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
  max-width: 240px;
  margin-inline: auto;
}

.team-card img {
  width: clamp(84px, 13vw, 118px);
  height: clamp(84px, 13vw, 118px);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.team-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.team-card span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 6px;
}

.team-card p {
  color: var(--ink-200);
  line-height: 1.5;
  font-size: 0.84rem;
}

.partner-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
}

.partner-carousel::before,
.partner-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partner-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.95), rgba(7, 11, 18, 0));
}

.partner-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 11, 18, 0.95), rgba(7, 11, 18, 0));
}

.partner-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: partner-scroll 26s linear infinite;
  opacity: 0.9;
}

.partner-card {
  min-width: 320px;
  padding: 20px 26px;
  border-radius: 16px;
  background: transparent;
  border: none;
  text-align: center;
}

.partner-card img {
  width: 214px;
  height: 92px;
  object-fit: contain;
  filter: brightness(1.05);
}

@keyframes partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bullish-reel {
  position: relative;
}

.section.bullish-reel {
  padding-top: 0;
}

.bullish-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.9fr);
  gap: clamp(14px, 2.5vw, 22px);
  align-items: stretch;
}

.bullish-chart {
  position: relative;
  min-height: clamp(260px, 34vw, 380px);
  padding: 14px 14px 38px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 16, 29, 0.72);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  overflow: hidden;
}

.bullish-metric {
  padding: clamp(18px, 2.8vw, 24px);
  border-radius: 16px;
  border: 1px solid rgba(47, 230, 138, 0.22);
  background: rgba(10, 18, 31, 0.7);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: center;
  gap: 8px;
}

.bullish-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-200);
}

.bullish-value {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1;
  color: #2fe68a;
  text-shadow: 0 8px 18px rgba(47, 230, 138, 0.22);
}

.bullish-note {
  color: var(--ink-200);
  line-height: 1.55;
}

.bullish-bars {
  position: absolute;
  inset: 12px 12px 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: end;
  gap: clamp(6px, 1vw, 12px);
}

.bullish-bar {
  height: var(--bar-height);
  min-height: 8%;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, rgba(47, 230, 138, 0.58), rgba(47, 230, 138, 0.14));
  border: 1px solid rgba(47, 230, 138, 0.28);
  transform-origin: center bottom;
  transform: scaleY(0.06);
  opacity: 0.22;
}

.bullish-reel.playing .bullish-bar {
  animation: bullishBarRise 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) var(--bar-delay, 0s) forwards;
}

.bullish-axis {
  position: absolute;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  color: var(--ink-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
  z-index: 3;
}

.bullish-axis-label {
  display: inline-block;
}

.bullish-axis-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 6px);
  padding: 6px 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 176, 103, 0.45);
  background: rgba(9, 16, 29, 0.94);
  box-shadow: 0 8px 20px rgba(5, 12, 24, 0.45);
  color: var(--ink-100);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.bullish-axis:hover .bullish-axis-tooltip,
.bullish-axis:focus-visible .bullish-axis-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.bullish-axis-start {
  left: 18px;
}

.bullish-axis-end {
  right: 18px;
}

@keyframes bullishBarRise {
  0% {
    transform: scaleY(0.06);
    opacity: 0.22;
  }
  100% {
    transform: scaleY(1);
    opacity: 0.9;
  }
}

.ops-showcase {
  padding-top: clamp(26px, 4vw, 50px);
}

.ops-head {
  max-width: min(760px, 100%);
  margin-bottom: clamp(18px, 3vw, 30px);
}

.comparison-shell {
  display: grid;
  gap: 16px;
  border-color: rgba(255, 176, 103, 0.28);
  background: linear-gradient(155deg, rgba(16, 27, 45, 0.9), rgba(10, 17, 30, 0.82));
}

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

.comparison-column {
  padding: clamp(18px, 2.8vw, 24px);
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(9, 16, 29, 0.66);
}

.comparison-column h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 1.9vw, 20px);
  margin-bottom: 10px;
}

.comparison-column ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.comparison-column li {
  position: relative;
  padding: 12px 14px 12px 40px;
  line-height: 1.55;
  color: var(--ink-200);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-column li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.comparison-column li:first-child {
  padding-top: 12px;
}

.comparison-column li:last-child {
  padding-bottom: 12px;
}

.comparison-column.is-competitor {
  border-color: rgba(255, 74, 95, 0.48);
}

.comparison-column.is-competitor h3 {
  color: #ff6e82;
}

.comparison-column.is-competitor li {
  border-color: rgba(255, 74, 95, 0.36);
  background: rgba(255, 74, 95, 0.08);
}

.comparison-column.is-competitor li::before {
  background: #ff6e82;
  box-shadow: 0 0 0 4px rgba(255, 74, 95, 0.18);
}

.comparison-column.is-wesell {
  border-color: rgba(47, 230, 138, 0.38);
}

.comparison-column.is-wesell h3 {
  color: #93f6bb;
}

.comparison-column.is-wesell li {
  border-color: rgba(47, 230, 138, 0.34);
  background: rgba(47, 230, 138, 0.09);
}

.comparison-column.is-wesell li::before {
  background: #93f6bb;
  box-shadow: 0 0 0 4px rgba(47, 230, 138, 0.16);
}

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

.comparison-metrics div {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(7, 13, 23, 0.72);
}

.comparison-metrics span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange-400);
}

.comparison-metrics small {
  display: block;
  margin-top: 4px;
  color: var(--ink-300);
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.12fr);
  }
}

@media (max-width: 980px) {
  .bullish-stage {
    grid-template-columns: 1fr;
  }

  .bullish-chart {
    min-height: 280px;
  }

  .best-case-card .bullish-chart {
    min-height: 260px;
  }

  .panel-card.best-case-card {
    min-height: auto;
  }

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

  .comparison-metrics {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.contact-form .form-status {
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form .form-status.success {
  color: #89f0b1;
}

.contact-form .form-status.error {
  color: #ffb4b4;
}

.contact-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.contact-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: min(860px, 100%);
}

.contact-details div {
  padding: 16px;
  border-radius: 14px;
  background: rgba(10, 17, 30, 0.6);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 8px;
}

.contact-details span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 0;
}

.contact-details a,
.contact-details p {
  color: var(--ink-100);
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--ink-200);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2200;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.7);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(720px, 92vw);
  padding: 28px;
  border-radius: 22px;
  background: rgba(12, 18, 30, 0.95);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-strong);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.modal-head h3 {
  font-family: 'Unbounded', sans-serif;
}

.modal-close {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-200);
}

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

input,
textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(6, 11, 20, 0.6);
  color: var(--ink-100);
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-400);
}

.cta {
  padding-bottom: clamp(80px, 12vw, 140px);
}

.cta-card {
  padding: clamp(32px, 6vw, 60px);
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, rgba(255, 138, 61, 0.25), rgba(16, 28, 46, 0.95));
  border: 1px solid rgba(255, 138, 61, 0.35);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.cta-card h2 {
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 12px;
}

.cta-card .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(20px, 6vw, 120px) 40px;
  color: var(--ink-400);
}

body[data-industry='moving'] .service[data-industry='moving'],
body[data-industry='appliance'] .service[data-industry='appliance'] {
  display: block;
}


@media (min-width: 920px) {
  .pick-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}

@media (max-width: 860px) {
  .intro-stage {
    font-size: clamp(50px, 16vw, 88px);
    letter-spacing: 0.07em;
    gap: 1vw;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav-tag {
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.reveal {
    transition: none !important;
  }
  .partner-track {
    animation: none !important;
    transform: translateX(0);
  }
  .ai-dot,
  .ai-text {
    animation: none !important;
  }
  .bullish-reel.playing .bullish-bar {
    animation: none !important;
  }
  .bullish-bar {
    transform: scaleY(1);
    opacity: 0.9;
  }
}


