/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #000000;
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --color-text-dim: rgba(255, 255, 255, 0.6);
  --color-green: #8DF504;
  --accent: #8DF504;
  --color-brand-dark: #011F27;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --header-height: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

input {
  font-family: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { transform: skewX(-12deg) translateX(-200%); }
  100% { transform: skewX(-12deg) translateX(200%); }
}

@keyframes shinyText {
  0%, 90%, 100% { background-position: calc(-100% - var(--shiny-width)) 0; }
  30%, 60% { background-position: calc(100% + var(--shiny-width)) 0; }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--delay, 0s);
}

.animate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SHINY CTA BUTTON
   ============================================ */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

@keyframes gradient-angle {
  to { --gradient-angle: 360deg; }
}

@keyframes shiny-shimmer {
  to { rotate: 360deg; }
}

@keyframes breathe {
  from, to { scale: 1; }
  50% { scale: 1.2; }
}

.shiny-cta {
  --shiny-cta-bg: #011F27;
  --shiny-cta-bg-subtle: #1C4550;
  --shiny-cta-fg: #8DF504;
  --shiny-cta-highlight: #8DF504;
  --shiny-cta-highlight-subtle: #A8F957;
  --shiny-animation: gradient-angle linear infinite;
  --shiny-duration: 3s;
  --shadow-size: 2px;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-family);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-cta-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 0 0 1px var(--shiny-cta-bg-subtle),
    0 0 20px rgba(141, 245, 4, 0.15),
    0 0 60px rgba(141, 245, 4, 0.05);
  transition: var(--shiny-transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine, box-shadow;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta > span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  translate: 0 1px;
}

.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    white calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

.shiny-cta::after {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-cta-highlight), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta > span {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shiny-cta > span::before {
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
  opacity: 0;
  transition: opacity var(--shiny-transition);
  animation: calc(var(--shiny-duration) * 1.5) breathe linear infinite;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation: var(--shiny-animation) var(--shiny-duration),
    var(--shiny-animation) calc(var(--shiny-duration) / 0.4) reverse paused;
  animation-composition: add;
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
  box-shadow:
    inset 0 0 0 1px var(--shiny-cta-bg-subtle),
    0 0 30px rgba(141, 245, 4, 0.3),
    0 0 80px rgba(141, 245, 4, 0.1);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

.shiny-cta:is(:hover, :focus-visible) > span::before {
  opacity: 1;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.3s ease, transform 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  padding: 4px;
}

.header__nav-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.header__nav-link:hover {
  color: var(--color-text);
  background: rgba(141, 245, 4, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta {
  display: none;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switcher__btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.lang-switcher__btn:hover {
  color: var(--color-text-muted);
}

.lang-switcher__btn--active {
  color: var(--color-text);
  background: var(--color-surface);
}

.lang-switcher__divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.header__nav.open {
  display: flex;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: #000000;
  flex-direction: column;
  padding: 40px 24px;
  z-index: 998;
  overflow-y: auto;
}

.header:has(.header__nav.open) {
  background: #000000;
  transform: none !important;
}

.header__nav.open .header__nav-list {
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  align-items: flex-start;
}

.header__nav.open .header__nav-link {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  padding: 14px 0;
  border-radius: 0;
}

.header__mobile-extras {
  display: none;
}

.header__nav.open .header__mobile-extras {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  align-items: flex-start;
}

.header__mobile-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
}

.lang-switcher--desktop {
  display: none;
}

.lang-switcher--mobile {
  display: flex;
  gap: 8px;
}

.lang-switcher--mobile .lang-switcher__btn {
  font-size: 16px;
  padding: 10px 20px;
  min-width: 56px;
  min-height: 44px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.lang-switcher--mobile .lang-switcher__btn--active {
  background: var(--color-surface);
  border-color: rgba(141, 245, 4, 0.2);
  color: var(--color-text);
}

.lang-switcher--mobile .lang-switcher__divider {
  font-size: 16px;
  align-self: center;
}

/* Desktop */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__burger {
    display: none;
  }

  .lang-switcher--desktop {
    display: flex;
  }

  .header__mobile-extras {
    display: none !important;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--color-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 30%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(800px, 100%);
  margin: 0 auto;
  gap: 24px;
}

/* Badge */
.hero__badge {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid rgba(141, 245, 4, 0.25);
  background: linear-gradient(135deg, rgba(141, 245, 4, 0.08) 0%, rgba(1, 31, 39, 0.9) 50%, rgba(141, 245, 4, 0.05) 100%);
  padding: 8px 16px 8px 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(141, 245, 4, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 200ms ease-out, border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 700px;
  overflow: hidden;
  cursor: pointer;
}

.hero__badge:hover {
  border-color: rgba(141, 245, 4, 0.5);
}

.hero__badge-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(141, 245, 4, 0.07) 35%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(141, 245, 4, 0.07) 45%,
    transparent 60%
  );
  background-size: 250% 100%;
  animation: badgeShimmer 6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

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

.hero__badge-wp {
  flex-shrink: 0;
  opacity: 0.9;
  width: 24px;
  height: 24px;
}

.hero__badge-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .hero__badge {
    padding: 12px 24px 12px 16px;
    gap: 12px;
  }
  .hero__badge-wp {
    width: 28px;
    height: 28px;
  }
  .hero__badge-text {
    font-size: 14px;
  }
}

/* Title */
.hero__title {
  font-size: clamp(28px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(to right, #ffffff, #c8c8c8, rgba(141, 245, 4, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-value {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--color-text-dim);
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 16px;
    padding: 16px 20px;
  }
}

/* Hero subtitle */
.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* CTA group */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

@media (min-width: 640px) {
  .hero__cta-group {
    flex-direction: row;
  }
}

/* Hero features list */
.hero__features {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  width: 100%;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.hero__feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 640px) {
  .hero__features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    max-width: 600px;
    justify-content: center;
  }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }
}

/* ============================================
   TASKS SECTION
   ============================================ */
.tasks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.tasks__title {
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  max-width: 700px;
}

.tasks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .tasks__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.tasks__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease;
}

.tasks__card:hover {
  border-color: rgba(141, 245, 4, 0.2);
}

.tasks__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tasks__card-label {
  font-size: 0.875rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
}

.tasks__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.tasks__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 14px;
  color: var(--color-text-muted);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tasks__tag:hover {
  border-color: rgba(141, 245, 4, 0.2);
  background: rgba(141, 245, 4, 0.04);
}

.tasks__tag--muted {
  border-style: dashed;
  color: var(--color-text-dim);
}

.tasks__note {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.compare__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.compare__header {
  text-align: center;
}

.compare__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.compare__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--color-text-muted);
  margin-top: 12px;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .compare__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.compare__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compare__card--negative {
  border-color: rgba(255, 255, 255, 0.08);
}

.compare__card--positive {
  border-color: rgba(141, 245, 4, 0.2);
  box-shadow: 0 0 40px rgba(141, 245, 4, 0.04);
}

.compare__card-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.compare__card--negative .compare__card-title {
  color: var(--color-text-muted);
}

.compare__card--positive .compare__card-title {
  color: var(--accent);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.compare__list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  padding-left: 4px;
}

.compare__list-result {
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-weight: 500;
}

.compare__card--positive .compare__list-result {
  color: var(--color-text);
}

/* ============================================
   ADVANTAGES SECTION (reuses results__grid)
   ============================================ */
.advantages__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.advantages__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.results__item {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.results__item:hover {
  background: rgba(141, 245, 4, 0.02);
}

@media (min-width: 640px) {
  .results__item {
    padding: 32px 28px;
  }

  .results__item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .results__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 639px) {
  .results__item:last-child {
    border-bottom: none;
  }
}

.results__item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.results__item-header svg {
  flex-shrink: 0;
}

.results__item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .results__item-title { font-size: 15px; }
}

.results__item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .results__item-desc { font-size: 14px; }
}

/* ============================================
   TARIFFS SECTION
   ============================================ */
.tariffs__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.tariffs__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
}

/* Legends */
.tariffs__legends {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 700px;
}

@media (min-width: 640px) {
  .tariffs__legends {
    flex-direction: row;
    gap: 32px;
  }
}

.tariffs__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tariffs__legend-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: lowercase;
}

.tariffs__legend-desc {
  font-size: 13px;
  color: var(--color-text-dim);
  line-height: 1.4;
}

/* Tooltip button */
.tariffs__tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-dim);
  cursor: help;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tariffs__tip-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Tooltip popover */
.tariffs__tooltip {
  position: fixed;
  z-index: 100;
  max-width: 300px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Table */
.tariffs__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tariffs__table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tariffs__table thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dim);
  text-align: left;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(141, 245, 4, 0.15);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.tariffs__th-rate {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}

.tariffs__table tbody td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.tariffs__table tbody tr:last-child td {
  border-bottom: none;
}

.tariffs__table tbody tr {
  transition: background 0.2s ease;
}

.tariffs__table tbody tr:hover {
  background: rgba(141, 245, 4, 0.02);
}

/* Highlight row */
.tariffs__row--highlight {
  background: rgba(141, 245, 4, 0.03);
}

.tariffs__row--highlight td {
  border-bottom-color: rgba(141, 245, 4, 0.12) !important;
}

/* Hours column */
.tariffs__td-hours {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

/* Discount column */
.tariffs__td-discount {
  white-space: nowrap;
}

.tariffs__discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(141, 245, 4, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tariffs__discount-badge--best {
  background: rgba(141, 245, 4, 0.18);
  box-shadow: 0 0 12px rgba(141, 245, 4, 0.1);
}

/* Price column */
.tariffs__td-price {
  white-space: nowrap;
  font-weight: 500;
  color: var(--color-text);
}

.tariffs__td-price s {
  color: var(--color-text-dim);
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 6px;
  opacity: 0.6;
}

.tariffs__cta {
  text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 48px;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item--open {
  border-color: rgba(141, 245, 4, 0.15);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__item--open .faq__question {
  color: var(--color-text);
}

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.faq__item--open .faq__toggle {
  border-color: rgba(141, 245, 4, 0.4);
}

.faq__plus {
  position: relative;
  width: 12px;
  height: 12px;
}

.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__plus::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__plus::after {
  width: 1.5px;
  height: 12px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__item--open .faq__plus::before {
  background: var(--color-green);
}

.faq__item--open .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq__item--open .faq__answer {
  max-height: 1000px;
}

.faq__answer-inner {
  padding: 0 24px 24px;
}

.faq__answer-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.faq__answer-inner strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================
   CONTACT FORM (Hero style)
   ============================================ */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

@media (min-width: 1024px) {
  .contact-hero {
    min-height: 100vh;
  }
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 30%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .contact-hero__title span {
    white-space: nowrap;
  }
}

.contact-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
}

.contact-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.contact-hero__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin-top: 16px;
}

.contact-hero__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.contact-hero__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.contact-hero__input {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-hero__input:focus {
  border-color: rgba(141, 245, 4, 0.3);
  box-shadow: 0 0 0 3px rgba(141, 245, 4, 0.05);
}

.contact-hero__input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-hero__input.success {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(141, 245, 4, 0.06);
}

.contact-hero__msg {
  display: none;
  font-size: 13px;
  padding-left: 16px;
  margin-top: 4px;
}

.contact-hero__msg--error {
  display: block;
  color: #ef4444;
}

.contact-hero__msg--success {
  display: block;
  color: var(--color-green);
}

.contact-hero__submit {
  margin-top: 8px;
  width: 100%;
  display: flex;
}

.contact-hero__success {
  padding: 48px 24px;
  text-align: center;
}

.contact-hero__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(141, 245, 4, 0.1);
  margin-bottom: 20px;
}

.contact-hero__success-icon svg {
  color: var(--color-green);
}

.contact-hero__success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-hero__success-text {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
  background: var(--color-bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-text);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer__contacts {
    flex-direction: row;
    gap: 24px;
  }
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 60%, transparent);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .sticky-cta__btn {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shiny-cta,
  .shiny-cta::before,
  .shiny-cta::after {
    animation: none;
  }
}
