/* ===== VARIABLES & RESET ===== */
:root {
  --color-primary: #0a0f1e;
  --color-primary-light: #141b33;
  --color-primary-mid: #1a2342;
  --color-accent: #e86f30;
  --color-accent-hover: #ff8042;
  --color-accent-glow: rgba(232, 111, 48, 0.4);
  --color-accent-light: #fff5ef;
  --color-white: #ffffff;
  --color-gray-50: #f7f8fc;
  --color-gray-100: #eef0f6;
  --color-gray-200: #dde1ec;
  --color-gray-400: #8d95a9;
  --color-gray-600: #555e73;
  --color-gray-800: #2a2f42;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --gradient-accent: linear-gradient(135deg, #e86f30 0%, #f7a84b 100%);
  --gradient-text: linear-gradient(135deg, #e86f30 0%, #f7a84b 50%, #e86f30 100%);
  --gradient-dark: linear-gradient(160deg, #0a0f1e 0%, #141b33 50%, #1a2342 100%);
  --gradient-hero: linear-gradient(160deg, #ffffff 0%, #f7f8fc 40%, #fff5ef 100%);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(10, 15, 30, 0.04);
  --shadow-md: 0 4px 20px rgba(10, 15, 30, 0.07);
  --shadow-lg: 0 12px 40px rgba(10, 15, 30, 0.1);
  --shadow-xl: 0 24px 60px rgba(10, 15, 30, 0.14);
  --shadow-glow: 0 8px 32px var(--color-accent-glow);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  color: var(--color-gray-800);
  line-height: 1.7;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--light {
  background: var(--color-gray-50);
}

.section--white {
  background: var(--color-white);
}

.section--dark {
  background: var(--gradient-dark);
  overflow: hidden;
}

.section--contact {
  background: var(--color-gray-50);
}

.section__header {
  margin-bottom: 60px;
}

.section__header--center {
  text-align: center;
  margin-bottom: 60px;
}

.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== TYPOGRAPHY ===== */
.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section__header--center .section__eyebrow {
  justify-content: center;
}

.section__eyebrow--light {
  color: var(--color-accent);
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  max-width: 600px;
  line-height: 1.8;
}

.section__subtitle--light {
  color: var(--color-gray-400);
}

.section__subtitle--contact {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.text-gradient {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.text-muted {
  color: var(--color-gray-400);
  font-weight: 400;
  font-size: 0.85em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 16px rgba(232, 111, 48, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn--glow {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232, 111, 48, 0.25); }
  50% { box-shadow: 0 4px 32px rgba(232, 111, 48, 0.45); }
}

.btn--glow:hover {
  animation: none;
  box-shadow: var(--shadow-glow);
}

.btn__pulse {
  display: none;
}

.btn--glass {
  background: rgba(10, 15, 30, 0.05);
  color: var(--color-primary);
  border: 1.5px solid var(--color-gray-200);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--color-gray-100);
  box-shadow: 0 1px 20px rgba(10, 15, 30, 0.06);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 10px;
  transition: transform var(--transition-bounce);
}

.logo:hover .logo__icon {
  transform: scale(1.1) rotate(-5deg);
}

.logo__text {
  color: inherit;
}

.logo__accent {
  color: var(--color-accent);
}

.logo--footer {
  font-size: 1.2rem;
  color: var(--color-primary);
}

.logo--footer .logo__icon {
  width: 32px;
  height: 32px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-gray-600);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: all var(--transition);
  border-radius: 2px;
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.header__cta {
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-full);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 111, 48, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 111, 48, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 15, 30, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 30, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  border: 1px solid rgba(232, 111, 48, 0.15);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-family: var(--font-display);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-gray-600);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__trust-avatars {
  display: flex;
}

.hero__trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 2.5px solid white;
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}

.hero__trust-avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.hero__trust-text strong {
  color: var(--color-primary);
}

/* Hero Visual */
.hero__visual {
  position: relative;
}

.hero__mockup {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
}

.hero__browser {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
}

.hero__browser-dots {
  display: flex;
  gap: 6px;
}

.hero__browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__browser-dots span:nth-child(1) { background: #ef4444; }
.hero__browser-dots span:nth-child(2) { background: #f59e0b; }
.hero__browser-dots span:nth-child(3) { background: #10b981; }

.hero__browser-bar {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.75rem;
  color: var(--color-gray-400);
  text-align: center;
}

.hero__mockup img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.hero__floating-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
  z-index: 2;
}

.hero__floating-card svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero__floating-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.hero__floating-card span {
  font-size: 0.72rem;
  color: var(--color-gray-400);
}

.hero__floating-card--1 {
  top: 15%;
  right: -20px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__floating-card--1 svg { color: var(--color-success); }

.hero__floating-card--2 {
  bottom: 15%;
  left: -20px;
  animation: floatCard 4s ease-in-out infinite 1s;
}

.hero__floating-card--2 svg { color: var(--color-accent); }

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--color-primary);
  padding: 0;
  position: relative;
  z-index: 2;
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-item__number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  display: inline;
  letter-spacing: -0.02em;
}

.stat-item__suffix {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-item__label {
  display: block;
  font-size: 0.82rem;
  color: var(--color-gray-400);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ===== PROBLEMS ===== */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-danger);
  opacity: 0;
  transition: opacity var(--transition);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card__icon {
  width: 52px;
  height: 52px;
  background: #fef2f2;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-danger);
  transition: transform var(--transition-bounce);
}

.problem-card__icon--warning {
  background: #fff7ed;
  color: var(--color-warning);
}

.problem-card__icon--money {
  background: #fef3c7;
  color: var(--color-warning);
}

.problem-card:hover .problem-card__icon {
  transform: scale(1.1);
}

.problem-card__icon svg {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

/* ===== SOLUTION BRIDGE ===== */
.section--solution {
  background: var(--color-white);
  padding: 80px 0;
  text-align: center;
}

.solution__inner {
  max-width: 600px;
  margin: 0 auto;
}

.solution__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: var(--shadow-glow);
  animation: iconPulse 2s ease-in-out infinite;
}

.solution__icon svg {
  width: 28px;
  height: 28px;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 111, 48, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(232, 111, 48, 0); }
}

.solution__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.solution__text {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.solution__text strong {
  color: var(--color-primary);
}

.solution__arrow {
  color: var(--color-accent);
  animation: bounceArrow 1.5s ease-in-out infinite;
}

.solution__arrow svg {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== PRICING ===== */
.pricing--single {
  max-width: 620px;
  margin: 0 auto 60px;
}

.pricing__card--solo {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  position: relative;
  box-shadow: 0 24px 80px rgba(10, 15, 30, 0.2);
  transition: all var(--transition);
}

.pricing__card--solo:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(232, 111, 48, 0.15);
}

.pricing__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 9px 28px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 111, 48, 0.3);
}

.pricing__dual-price {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 12px;
}

.pricing__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pricing__amount {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.pricing__currency {
  font-size: 2rem;
  font-weight: 700;
}

.pricing__amount--secondary {
  font-size: 2.4rem;
  color: var(--color-primary);
}

.pricing__per {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-400);
}

.pricing__period {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  font-weight: 500;
}

.pricing__separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-400);
}

.pricing__separator::before,
.pricing__separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gray-200);
}

.pricing__features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-bottom: 36px;
}

.pricing__features {
  margin: 0;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--color-gray-600);
  border-bottom: 1px solid var(--color-gray-100);
}

.pricing__features li:last-child {
  border-bottom: none;
}

.pricing__features li strong {
  color: var(--color-primary);
}

.pricing__features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-success);
}

.pricing__reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-gray-400);
  margin-top: 16px;
  font-weight: 500;
}

.pricing__reassurance svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

/* Comparison */
.pricing__comparison {
  max-width: 500px;
  margin: 0 auto;
}

.pricing__comparison-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-400);
  margin-bottom: 20px;
}

.pricing__comparison-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing__comparison-item--highlight {
  background: rgba(232, 111, 48, 0.1);
  border-color: rgba(232, 111, 48, 0.2);
}

.pricing__comparison-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.pricing__comparison-item--highlight .pricing__comparison-label {
  color: var(--color-white);
  font-weight: 700;
}

.pricing__comparison-price {
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing__comparison-price--expensive {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.pricing__comparison-price--good {
  color: var(--color-accent);
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 32px;
  position: relative;
  padding: 0 0 48px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-200);
}

.process-step:last-child::before {
  display: none;
}

.process-step__number {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.process-step__content {
  flex: 1;
  padding-top: 4px;
}

.process-step__icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.process-step__icon svg {
  width: 22px;
  height: 22px;
}

.process-step__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-step__content p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--color-accent);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 111, 48, 0.15);
}

.testimonial-card__stars {
  color: var(--color-warning);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.faq-item--open {
  border-color: rgba(232, 111, 48, 0.2);
  box-shadow: 0 4px 20px rgba(232, 111, 48, 0.08);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gray-400);
  transition: transform var(--transition), color var(--transition);
}

.faq-item--open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

/* ===== CTA FINAL ===== */
.section--cta {
  background: var(--gradient-dark);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.section--cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 111, 48, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-final {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-final__text {
  font-size: 1.15rem;
  color: var(--color-gray-400);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact__details {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact__detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.contact__detail span {
  color: var(--color-gray-600);
  font-size: 0.92rem;
}

.contact__guarantee {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 111, 48, 0.1);
}

.contact__guarantee svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.contact__guarantee strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact__guarantee p {
  font-size: 0.85rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
}

.contact__form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-100);
}

.form__group {
  margin-bottom: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 8px;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-gray-50);
  transition: all var(--transition);
  color: var(--color-gray-800);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--color-gray-400);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(232, 111, 48, 0.08);
}

.form__group textarea {
  resize: vertical;
  min-height: 110px;
}

.form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-gray-400);
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-white);
  color: var(--color-gray-600);
  padding-top: 64px;
  border-top: 1px solid var(--color-gray-100);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-100);
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-gray-400);
}

.footer__links h4 {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  text-align: center;
  color: var(--color-gray-400);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale--visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
[data-delay="0"] { transition-delay: 0ms; }
[data-delay="1"] { transition-delay: 150ms; }
[data-delay="2"] { transition-delay: 300ms; }
[data-delay="3"] { transition-delay: 450ms; }

/* ===== FORM SUCCESS STATE ===== */
.form-success {
  text-align: center;
  padding: 48px 20px;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-success);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-success__icon svg {
  width: 36px;
  height: 36px;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-success p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__visual {
    max-width: 560px;
  }

  .hero__floating-card--1 {
    right: 10px;
    top: 10%;
  }

  .hero__floating-card--2 {
    left: 10px;
    bottom: 10%;
  }

  .pricing--single {
    max-width: 520px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .header__cta {
    display: none;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo__icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .logo--footer {
    font-size: 1rem;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    padding: 100px 32px 32px;
    transition: right var(--transition);
    z-index: 999;
  }

  .nav--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .nav__link::after {
    display: none;
  }

  .burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section__eyebrow::before {
    display: none;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
  }

  .hero__floating-card {
    display: none;
  }

  .stats-bar__inner {
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 0;
  }

  .stat-item {
    flex: 1 1 40%;
    padding: 8px 0;
  }

  .stats-bar__divider {
    display: none;
  }

  .problems__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .process-step {
    gap: 20px;
  }

  .process-step__number {
    width: 46px;
    height: 46px;
    font-size: 0.78rem;
  }

  .process-step::before {
    left: 23px;
    top: 50px;
  }

  .section--cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .pricing__card--solo {
    padding: 36px 24px;
  }

  .faq-item__question {
    padding: 18px 20px;
  }

  .faq-item__answer p {
    padding: 0 20px 20px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay--active {
  opacity: 1;
  pointer-events: all;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 0;
  min-height: 60vh;
}

.legal-hero {
  background: var(--gradient-dark);
  padding: 140px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.legal-hero .legal-updated {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  margin-bottom: 0;
}

.legal-hero .legal-breadcrumb {
  margin-bottom: 16px;
}

.legal-hero .legal-breadcrumb a {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.legal-hero .legal-breadcrumb a:hover {
  color: var(--color-white);
}

.legal-hero .legal-breadcrumb span {
  color: var(--color-gray-400);
  font-size: 0.85rem;
  margin: 0 8px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-section {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.legal-section:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gray-200);
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section h2::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 4px;
  flex-shrink: 0;
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.85;
  margin-bottom: 10px;
}

.legal-section p:last-child,
.legal-section li:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 20px;
  list-style: none;
  margin-bottom: 8px;
}

.legal-section ul li {
  position: relative;
  padding-left: 20px;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.legal-section a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.legal-section a:hover {
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent-hover);
}

.legal-info-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border-left: 4px solid var(--color-accent);
}

.legal-info-card p {
  margin-bottom: 4px;
}

.legal-toc {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.legal-toc h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gray-400);
  margin-bottom: 16px;
}

.legal-toc ol {
  padding-left: 20px;
  counter-reset: toc;
  list-style: none;
}

.legal-toc ol li {
  counter-increment: toc;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.legal-toc ol li:last-child {
  border-bottom: none;
}

.legal-toc ol li a {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  min-width: 24px;
}

.legal-toc ol li a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .legal-section {
    padding: 24px 20px;
  }

  .legal-content {
    padding: 40px 16px 60px;
  }

  .legal-toc {
    padding: 20px;
  }
}
