/* Yandex Browser vs Chrome Landing - Light Style */
:root {
  --primary: #ff3030;
  --primary-dark: #cc1616;
  --primary-light: #ff6b6b;
  --icon-color: #f9e4d7;
  --icon-color-alt: #e45b3a;
  --success: #10b981;
  --warning: #f59e0b;
  --bg: #fff6f2;
  --bg-secondary: #fff1eb;
  --bg-gradient: linear-gradient(135deg, #ff6a16 0%, #ff3a2c 50%, #ff66dd 100%);
  --card: #fff8f4;
  --text: #1f2937;
  --text-light: #7a6a63;
  --border: #f3d7cc;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance optimization for animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Improve scrolling on iOS */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-secondary);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Hardware acceleration for better mobile performance */
.btn,
.download-btn,
.sticky-download-btn,
.feature-card,
.stat-item,
.hero-logo,
.download-logo,
.sticky-logo,
.back-to-top,
.sticky-download-banner {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Particles background */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 80%;
  top: 40%;
  animation-delay: -3s;
}

.particle:nth-child(3) {
  left: 50%;
  top: 70%;
  animation-delay: -6s;
}

.particle:nth-child(4) {
  left: 25%;
  top: 60%;
  animation-delay: -9s;
}

.particle:nth-child(5) {
  left: 70%;
  top: 15%;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -20px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

/* Top bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 12, 41, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.brand-logo img {
  width: 40px;
  height: 40px;
  display: block;
}

.brand-name {
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
}

.brand-name span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Header */
header {
  position: relative;
  z-index: 1;
  padding: 120px 0 140px;
  background: 
    linear-gradient(135deg, #0f0c29 0%, #302b63 40%, #24243e 100%);
  overflow: hidden;
  max-width: 100vw;
}

.hero-watermark {
  position: absolute;
  font-size: 26rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: 6%;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.08em;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 800px at 20% 30%, rgba(255, 51, 51, 0.26) 0%, transparent 52%),
    radial-gradient(circle 600px at 78% 68%, rgba(255, 106, 22, 0.22) 0%, transparent 55%),
    radial-gradient(circle 420px at 60% 18%, rgba(255, 102, 221, 0.16) 0%, transparent 45%);
  opacity: 1;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.header-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  grid-auto-flow: dense;
  z-index: 2;
}

.header-text {
  order: 1;
}

.header-image {
  order: 2;
}

.header-content::before {
  content: '';
  position: absolute;
  inset: -80px -40px;
  background: none;
  pointer-events: none;
  z-index: 0;
}

.header-text,
.header-image {
  position: relative;
  z-index: 3;
}

.version-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #fbbf24;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  position: relative;
  overflow: hidden;
  animation: versionGlow 3s ease-in-out infinite;
}

@keyframes versionGlow {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
  }
  50% { 
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
  }
}

.header-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 0 0 28px;
  line-height: 1.08;
  color: white;
  letter-spacing: -0.02em;
}

/* Hero Title - Beautiful styling */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.hero-title .title-line {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title .title-line:first-child {
  background: linear-gradient(135deg, #FF3333 0%, #FF6666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .title-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-title .highlight-text {
  font-size: 3rem;
  font-weight: 700;
  color: #10b981;
  position: relative;
  padding: 8px 24px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  border: 2px solid rgba(16, 185, 129, 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); }
}

.hero-title .highlight-brand {
  font-size: 3rem;
  font-weight: 700;
  color: #4b5563;
  opacity: 0.5;
  text-decoration: line-through;
  text-decoration-color: #6b7280;
  text-decoration-thickness: 3px;
}

@keyframes chromeGradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 1.3rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 16px !important;
  font-weight: 500;
}

.header-text h1 .vs-text {
  color: #fbbf24;
  display: inline;
  font-size: inherit;
  margin: 0 16px;
  text-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.header-text h1 span {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 16px;
  letter-spacing: 0;
}

.header-text p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
  max-width: 560px;
  font-size: 1.35rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.header-buttons .btn-primary {
  padding: 20px 42px;
  font-size: 1.15rem;
  box-shadow: 0 12px 40px rgba(255, 51, 51, 0.45);
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.header-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.header-buttons .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

@keyframes ctaPulse {
  0%, 100% { 
    box-shadow: 0 12px 40px rgba(255, 51, 51, 0.45);
    transform: translateY(0);
  }
  50% { 
    box-shadow: 0 18px 60px rgba(255, 51, 51, 0.7);
    transform: translateY(-2px);
  }
}

.header-buttons .btn-secondary {
  padding: 18px 32px;
}

.hero-proof {
  margin: 4px 0 28px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  max-width: 520px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--transition-smooth);
}

.hero-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF3333, #10b981, #fbbf24);
}

.hero-proof:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-proof-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-proof-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof-item {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 51, 51, 0.12);
  border: 1px solid rgba(255, 51, 51, 0.35);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-benefit-card {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 51, 51, 0.35);
}

.benefit-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-compare-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 520px;
}

.mini-card {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-card.chrome {
  opacity: 0.6;
}

.mini-card.yandex {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
}

.mini-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.mini-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.mini-arrow {
  color: #10b981;
  font-size: 1.6rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.stat-icon,
.badge-icon,
.feature-icon {
  color: var(--icon-color);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.stat-icon,
.badge-icon {
  animation: iconPulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

.stat-icon {
  animation-delay: 0.2s;
}

.badge-icon {
  animation-delay: 0.6s;
}

@keyframes iconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  }
  50% {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-icon,
  .badge-icon {
    animation: none;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #e62e2e 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e62e2e 0%, var(--primary-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 51, 51, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge {
  font-size: 1rem;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: white;
  backdrop-filter: blur(10px);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge .badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--icon-color-alt);
}

.trust-badge.winner {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid white;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.header-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-illustration {
  width: min(360px, 80vw);
  height: auto;
  max-width: 360px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
  transform: translateY(var(--hero-parallax, 0px));
  transition: transform 0.2s ease;
}

.hero-halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 22, 0.22) 0%, rgba(255, 51, 39, 0.08) 45%, transparent 72%);
  filter: blur(10px);
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-screens {
  position: relative;
  width: min(520px, 90vw);
  height: 300px;
  margin-top: 6px;
  transform: translateY(var(--hero-parallax-screens, 0px));
  transition: transform 0.2s ease;
}

.hero-screen {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  width: 360px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-screen.is-fading {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.hero-screen.screen-main {
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.hero-screen.screen-left {
  left: 0;
  top: 40px;
  transform: rotate(-6deg) scale(0.9);
  z-index: 2;
  opacity: 0.9;
}

.hero-screen.screen-right {
  right: 0;
  top: 50px;
  transform: rotate(6deg) scale(0.9);
  z-index: 1;
  opacity: 0.85;
}

.hero-screen:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.hero-quotes-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  display: block;
}

@media (max-width: 1600px) {
  .hero-quotes-layer {
    display: none !important;
  }
}

.hero-quote {
  position: absolute;
  background: rgba(15, 12, 41, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s ease;
  max-width: 160px;
  transform: translateY(-50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-quote:hover {
  background: rgba(255, 51, 51, 0.15);
  border-color: rgba(255, 51, 51, 0.4);
  transform: translateY(calc(-50% - 2px));
}

/* Сетка 6 рядов: максимально далеко от центра (15–18% от края) */
.quote-1  { top: 18%; left: 15%; }
.quote-2  { top: 18%; right: 15%; }
.quote-3  { top: 32%; left: 16%; }
.quote-4  { top: 32%; right: 16%; }
.quote-5  { top: 46%; left: 17%; }
.quote-6  { top: 46%; right: 17%; }
.quote-7  { top: 60%; left: 17%; }
.quote-8  { top: 60%; right: 17%; }
.quote-9  { top: 74%; left: 16%; }
.quote-10 { top: 74%; right: 16%; }
.quote-11 { top: 88%; left: 15%; }
.quote-12 { top: 88%; right: 15%; }

@media (max-width: 1600px) {
  .hero-quotes-layer {
    display: none;
  }
}

@media (max-width: 1400px) {
  .hero-quotes-layer {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-quotes-layer {
    display: none;
  }
}

.browser-comparison-visual {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.browser-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.browser-icon:hover {
  transform: scale(1.05);
}

.browser-icon.yandex {
  border-color: white;
  box-shadow: 0 0 40px rgba(255, 51, 51, 0.4), 0 10px 40px rgba(0, 0, 0, 0.15);
}

.browser-icon img,
.browser-icon svg {
  width: 90px;
  height: 90px;
}

.vs-badge {
  font-size: 2rem;
  font-weight: 900;
  color: #fbbf24;
  background: white;
  padding: 12px 24px;
  border-radius: 12px;
  border: 3px solid #fbbf24;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(180deg, #fff5ef 0%, #fffaf7 100%);
  border-top: none;
  border-bottom: none;
  padding: 56px 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  overflow-x: hidden;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px;
  max-width: 100%;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 222, 212, 0.9);
  transition: all 0.35s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 22, 0.05), rgba(255, 51, 51, 0.05));
  opacity: 0;
  transition: opacity 0.35s var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 106, 22, 0.15);
  border-color: rgba(255, 106, 22, 0.3);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
}

.stat-item .stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  opacity: 0.9;
}

.stat-item.winner .stat-icon {
  color: var(--icon-color-alt);
}

.stat-item strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-item.winner strong {
  color: var(--primary);
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Showcase cards */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 100%;
}

.showcase-card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(241, 222, 212, 0.9);
  transition: all 0.35s var(--transition-smooth);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 106, 22, 0.15);
  border-color: rgba(255, 106, 22, 0.3);
}

.showcase-screenshot {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

.showcase-info {
  text-align: center;
  padding: 8px 0;
}

.showcase-info strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.showcase-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(48, 43, 99, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(255, 51, 51, 0.3);
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.5);
  z-index: 999;
  padding: 14px 0;
  overflow: hidden;
}

.sticky-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-bar-logo {
  filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.4));
  flex-shrink: 0;
}

.sticky-bar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-bar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-bar-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sticky-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.sticky-tag svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.sticky-bar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #e62e2e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.4);
  transition: all 0.35s var(--transition-smooth);
  flex-shrink: 0;
  white-space: nowrap;
}

.sticky-bar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 51, 51, 0.6);
}

.sticky-bar-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Decorative SVGs for sticky bar */
.sticky-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.sticky-deco-rings {
  width: 60px;
  height: 60px;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.sticky-deco-dots {
  width: 50px;
  height: 30px;
  right: 8%;
  top: 20%;
}

.sticky-deco-spark {
  width: 30px;
  height: 30px;
  right: 15%;
  bottom: 15%;
}

.sticky-deco-wave {
  width: 100px;
  height: 15px;
  left: 15%;
  bottom: 10%;
}

.sticky-deco-shield {
  width: 28px;
  height: 32px;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
}

/* Sections common */
section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  scroll-margin-top: 80px;
  overflow-x: hidden;
  max-width: 100vw;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  margin: 0 0 24px;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-header h2 span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-header h2 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--primary) 80%, transparent 100%);
  opacity: 0.3;
}

.section-header p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Comparison table */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: none;
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 100%;
}

/* Visual Comparison */
.comparison-visual {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(241, 222, 212, 0.9);
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  background: linear-gradient(135deg, #fff3ec 0%, #ffeae1 100%);
  border-bottom: 2px solid rgba(241, 222, 212, 0.9);
  min-width: 600px;
}

.comparison-feature-header {
  padding: 20px 28px;
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-browser-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.comparison-browser-header.yandex {
  background: rgba(255, 51, 51, 0.08);
  color: var(--primary);
}

.comparison-browser-header.chrome {
  background: rgba(66, 133, 244, 0.06);
  color: #4285f4;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  border-bottom: 1px solid rgba(241, 222, 212, 0.8);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 600px;
}

.comparison-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: rgba(255, 106, 22, 0.06);
  transform: translateX(2px);
}

.comparison-row:hover::before {
  transform: scaleY(1);
}

.comparison-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.feature-ico {
  width: 24px;
  height: 24px;
  color: var(--text-light);
  flex-shrink: 0;
}

.comparison-value {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  font-size: 1.8rem;
  font-weight: 700;
}

.comparison-value.plus {
  color: var(--success);
  background: rgba(16, 185, 129, 0.05);
}

.comparison-value.minus {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.comparison-value.neutral {
  color: var(--text-light);
  background: rgba(107, 114, 128, 0.05);
}

/* Interactive Comparison Cards */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.comparison-card {
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.comparison-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.comparison-card[data-active="true"] {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.15);
}

.comparison-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.comparison-card[data-active="true"] .comparison-card-header {
  background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
}

.comparison-icon {
  width: 40px;
  height: 40px;
  color: var(--icon-color-alt);
  flex-shrink: 0;
}

.comparison-card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light);
  transition: transform 0.3s, color 0.3s;
}

.comparison-card[data-active="true"] .toggle-icon {
  transform: rotate(45deg);
  color: var(--icon-color-alt);
}

.comparison-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
}

.comparison-card[data-active="true"] .comparison-card-body {
  max-height: 300px;
  padding: 24px 28px;
}

.compare-row {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.compare-row.yandex {
  background: rgba(255, 51, 51, 0.06);
  border-left: 3px solid var(--primary);
}

.compare-row.chrome {
  background: rgba(66, 133, 244, 0.06);
  border-left: 3px solid #4285f4;
}

.compare-row strong {
  color: var(--text);
}

.verdict {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  background: #f1f5f9;
  color: var(--text-light);
}

.verdict.winner {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: var(--success);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #fff3ec 0%, #ffeae1 100%);
}

.comparison-table th,
.comparison-table td {
  padding: 24px 32px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
}

.comparison-table th {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-header-brand img,
.table-header-brand svg {
  flex-shrink: 0;
}

.yandex-col {
  background: rgba(255, 51, 51, 0.03);
}

.comparison-table td {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.comparison-table td.winner {
  background: rgba(16, 185, 129, 0.06);
  font-weight: 600;
  color: var(--success);
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 106, 22, 0.03);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Winner banner */
.winner-banner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #fff1ea 0%, #fff9f6 50%, #fff2ee 100%);
  border-radius: 24px;
  padding: 56px;
  margin-top: 64px;
  border: 2px solid rgba(255, 106, 22, 0.25);
  box-shadow: 0 12px 48px rgba(255, 51, 51, 0.12);
  position: relative;
  overflow: hidden;
}

.winner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF3333, #FF6A16, #fbbf24);
}

.winner-banner::after {
  content: '🏆';
  position: absolute;
  font-size: 180px;
  right: -40px;
  top: -30px;
  opacity: 0.05;
  transform: rotate(15deg);
}

.winner-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #e62e2e 100%);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.4);
}

.winner-icon svg {
  width: 52px;
  height: 52px;
  color: var(--icon-color);
  fill: var(--icon-color);
}

.winner-content h3 {
  margin: 0 0 14px;
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 800;
}

.winner-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.25rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature-card {
  background: var(--card);
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid rgba(241, 222, 212, 0.9);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #FF6A16);
  transform: translateY(-4px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 106, 22, 0.1);
  border-color: rgba(255, 106, 22, 0.35);
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card.winner-card {
  border-color: rgba(255, 106, 22, 0.22);
  background: linear-gradient(180deg, #fff9f6 0%, #fff1ea 100%);
}

.feature-card.winner-card:hover {
  border-color: rgba(255, 106, 22, 0.35);
  box-shadow: 0 16px 40px rgba(255, 106, 22, 0.14);
}

.feature-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff3ec 0%, #ffeae1 100%);
  border-radius: 24px;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 106, 22, 0.08);
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 106, 22, 0.16);
}

.feature-icon svg {
  width: 44px;
  height: 44px;
  color: var(--icon-color-alt);
  fill: var(--icon-color-alt);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

.feature-card.winner-card .feature-icon {
  background: linear-gradient(135deg, #fff1ea 0%, #ffe3d9 100%);
}

.feature-card.winner-card .feature-icon svg {
  color: var(--icon-color-alt);
  fill: var(--icon-color-alt);
}

.feature-card h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-card.highlight-card {
  border-color: rgba(255, 165, 0, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  position: relative;
  overflow: hidden;
}

.feature-card.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, transparent 70%);
  border-radius: 0 0 0 100%;
}

.feature-card.highlight-card:hover {
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 12px 32px rgba(255, 165, 0, 0.12);
}

.feature-card.highlight-card .feature-icon {
  background: linear-gradient(135deg, #fff8eb 0%, #fff0d6 100%);
}

.feature-card.highlight-card .feature-icon svg {
  color: var(--icon-color-alt);
  fill: var(--icon-color-alt);
}

/* For Whom */
.for-whom-section {
  background: linear-gradient(180deg, #fff5ef 0%, #fffaf7 100%);
  border-top: 1px solid rgba(241, 222, 212, 0.8);
  border-bottom: 1px solid rgba(241, 222, 212, 0.8);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.audience-card {
  background: var(--card);
  border: 1px solid rgba(241, 222, 212, 0.9);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 106, 22, 0.08) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s var(--transition-smooth);
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 22, 0.4);
  box-shadow: 0 20px 50px rgba(255, 106, 22, 0.18);
}

.audience-card:hover::after {
  transform: scale(1);
}

.audience-card:hover .audience-icon {
  transform: scale(1.1) rotate(-5deg);
}

.audience-card.highlight {
  background: linear-gradient(180deg, #fff1ea 0%, #fff7f2 100%);
  border-color: rgba(255, 106, 22, 0.25);
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff3ec 0%, #ffe8de 100%);
  margin-bottom: 18px;
  transition: all 0.35s var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(255, 106, 22, 0.1);
}

.audience-icon svg {
  width: 32px;
  height: 32px;
  color: var(--icon-color-alt);
  fill: var(--icon-color-alt);
  transition: all 0.35s var(--transition-smooth);
}

.audience-card:hover .audience-icon svg {
  transform: scale(1.1);
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.audience-card p {
  margin: 0 0 18px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a4b2a;
  background: rgba(255, 106, 22, 0.12);
  border: 1px solid rgba(255, 106, 22, 0.25);
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* Touch optimization for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .download-btn,
  .sticky-download-btn,
  .sticky-bar-btn,
  .back-to-top,
  .sticky-close,
  .mobile-menu-btn,
  .faq-item,
  .nav-links a {
    -webkit-tap-highlight-color: rgba(255, 51, 51, 0.1);
    touch-action: manipulation;
    cursor: pointer;
  }

  /* Ensure minimum touch target size */
  .btn,
  .download-btn,
  .sticky-bar-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
  }

  .mobile-menu-btn,
  .back-to-top,
  .sticky-close {
    min-width: 44px;
    min-height: 44px;
  }

  /* Disable hover effects on touch devices */
  .feature-card:hover,
  .stat-item:hover,
  .testimonial-card:hover {
    transform: none;
  }

  /* Active state for touch */
  .btn:active,
  .download-btn:active,
  .sticky-bar-btn:active {
    transform: scale(0.97);
  }
}

.new-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Download section */
.download-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: 
    linear-gradient(135deg, #0f0c29 0%, #1a1a2e 50%, #302b63 100%);
  overflow: hidden;
  max-width: 100vw;
}

.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 30% 20%, rgba(255, 51, 51, 0.15) 0%, transparent 60%),
    radial-gradient(circle 500px at 70% 80%, rgba(255, 106, 22, 0.12) 0%, transparent 60%),
    radial-gradient(circle 400px at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.download-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      transparent 1px,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 81px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      transparent 1px,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 81px
    );
  pointer-events: none;
  opacity: 0.4;
}

.download-box {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(48, 43, 99, 0.95) 100%);
  border-radius: 32px;
  padding: 72px 64px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 51, 51, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.download-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 500px at 70% 30%, rgba(255, 51, 51, 0.2) 0%, transparent 60%),
    radial-gradient(circle 400px at 30% 70%, rgba(255, 106, 22, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: downloadGradientShift 8s ease-in-out infinite;
}

@keyframes downloadGradientShift {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.download-box > * {
  position: relative;
  z-index: 1;
}

.download-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-logo {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 30px rgba(255, 51, 51, 0.5));
  animation: downloadLogoFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes downloadLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

.download-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 51, 51, 0.4) 0%, rgba(255, 106, 22, 0.2) 40%, transparent 70%);
  filter: blur(25px);
  animation: downloadGlowPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes downloadGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.download-box h2 {
  margin: 0 0 20px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.download-box > p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 48px;
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 48px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.download-btn svg {
  transition: transform 0.35s var(--transition-smooth);
}

.download-btn:hover svg {
  transform: translateY(3px);
  animation: downloadArrowBounce 1s ease-in-out infinite;
}

@keyframes downloadArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.download-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #e62e2e 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(255, 51, 51, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.download-btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--transition-smooth);
}

.download-btn.primary:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 51, 51, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}

.download-btn.primary:hover::before {
  opacity: 1;
}

.download-btn.primary:active {
  transform: translateY(-2px) scale(1.01);
}

.download-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.download-btn .icon {
  font-size: 1.2rem;
}

.file-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.file-specs::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.6), transparent);
}

.file-specs div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--transition-smooth);
}

.file-specs div:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-2px);
}

.file-specs strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.file-specs span {
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Detailed table */
.detailed-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
}

.detailed-table th,
.detailed-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.detailed-table th {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.detailed-table td {
  font-size: 0.9rem;
  color: var(--muted);
}

.detailed-table td.winner {
  color: var(--success);
  font-weight: 500;
}

.detailed-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 126, 234, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.reviewer-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.review-rating {
  font-size: 0.9rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  border: 2px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(255, 106, 22, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 51, 51, 0.18);
  background: linear-gradient(135deg, #fff9f6 0%, #ffffff 100%);
}

.faq-item.active::before {
  transform: scaleX(1);
}

.faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-light);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
  color: var(--primary);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
  opacity: 1;
}

/* Feedback form */
.feedback-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.feedback-form {
  background: linear-gradient(145deg, var(--card) 0%, var(--bg-elevated) 100%);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  border-top: 1px solid #374151;
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  color: #e5e7eb;
  overflow-x: hidden;
  max-width: 100vw;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.3), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 32px;
  align-items: center;
}

.footer-section h4 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand span {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-section p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-illustration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-svg {
  width: 180px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-svg:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #e62e2e 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--transition-smooth);
  z-index: 90;
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: backToTopBounce 2s ease-in-out infinite;
}

.sticky-download-banner.visible ~ .back-to-top {
  bottom: 120px;
}


.back-to-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 51, 51, 0.5);
}

.back-to-top:active {
  transform: translateY(-4px) scale(1.05);
}

@keyframes backToTopBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 110;
  transition: bottom 0.3s;
}

.toast.show {
  bottom: 32px;
}

/* Laptop and smaller desktops */
@media (max-width: 1400px) {
  .hero-illustration {
    width: min(300px, 70vw);
  }

  .hero-halo {
    width: 420px;
    height: 420px;
  }

  .showcase-card {
    max-width: 100%;
  }

  .showcase-screenshot {
    width: 100%;
    height: auto;
    max-width: 350px;
  }

  .stats-showcase {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .sticky-bar-logo {
    width: 32px;
    height: 32px;
  }

  .sticky-bar-title {
    font-size: 0.95rem;
  }

  .sticky-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .sticky-bar-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .sticky-deco {
    opacity: 0.3;
  }
}

@media (max-width: 1200px) {
  .hero-illustration {
    width: min(280px, 65vw);
  }

  .hero-halo {
    width: 380px;
    height: 380px;
  }

  .showcase-screenshot {
    max-width: 300px;
  }

  .stats-showcase {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .footer-svg {
    width: 160px;
  }

  .sticky-bar-inner {
    padding: 0 16px;
    gap: 16px;
  }

  .sticky-bar-info {
    gap: 12px;
  }

  .sticky-deco-rings,
  .sticky-deco-wave {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-illustration {
    width: min(260px, 60vw);
  }

  .hero-halo {
    width: 360px;
    height: 360px;
  }

  .showcase-screenshot {
    max-width: 280px;
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-svg {
    width: 140px;
  }

  .comparison-browser-header img,
  .comparison-browser-header svg {
    width: 28px !important;
    height: 28px !important;
  }

  .sticky-bar {
    padding: 12px 0;
  }

  .sticky-bar-logo {
    width: 30px;
    height: 30px;
  }

  .sticky-bar-title {
    font-size: 0.9rem;
  }

  .sticky-bar-tags {
    gap: 6px;
  }

  .sticky-tag {
    font-size: 0.6rem;
    padding: 2px 6px;
  }

  .sticky-bar-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .sticky-deco {
    display: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    padding: 16px 20px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: block;
    color: #fff;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }

  .top-bar-content {
    height: 64px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-logo img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  header {
    padding: 60px 0 80px;
  }

  .header-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .header-text {
    order: 1;
  }

  .header-image {
    order: 2;
  }

  .header-text h1 {
    font-size: 2.2rem;
    word-break: break-word;
  }

  .hero-title .title-line {
    font-size: 2.8rem;
    word-break: break-word;
  }

  .hero-title .highlight-text,
  .hero-title .highlight-brand {
    font-size: 2rem;
  }

  .hero-title .title-highlight {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-text h1 span {
    font-size: 1.1rem;
  }

  .header-text p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 16px 28px;
    font-size: 1rem;
    min-height: 48px;
  }

  .header-buttons .btn-primary {
    padding: 18px 32px;
  }

  .header-buttons .btn-secondary {
    padding: 16px 28px;
  }

  .hero-watermark {
    font-size: 18rem;
    right: -10px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-compare-mini {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    max-width: 100%;
  }

  .hero-halo {
    width: 420px;
    height: 420px;
    top: -20px;
  }

  .hero-screens {
    height: 240px;
  }

  .hero-screen {
    width: 300px;
  }

  .version-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .section-header h2 {
    font-size: 2rem;
    word-break: break-word;
  }

  .section-header p {
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  .browser-comparison-visual {
    gap: 20px;
  }

  .browser-icon {
    width: 100px;
    height: 100px;
  }

  .browser-icon img,
  .browser-icon svg {
    width: 64px;
    height: 64px;
  }

  .stats-grid {
    gap: 16px;
  }

  .stats-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .showcase-screenshot {
    max-width: 100%;
  }

  .stat-item {
    padding: 16px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 32px 28px;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
  }

  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-column {
    gap: 12px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-illustration {
    display: none;
  }

  .file-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .file-specs div {
    padding: 12px 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td,
  .detailed-table th,
  .detailed-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .comparison-header-row,
  .comparison-row {
    grid-template-columns: 1fr 90px 90px;
    min-width: 500px;
  }

  .comparison-feature-header,
  .comparison-feature {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  .comparison-feature {
    gap: 8px;
  }

  .feature-ico {
    width: 18px;
    height: 18px;
  }

  .comparison-browser-header {
    padding: 14px 6px;
    font-size: 0.7rem;
    gap: 4px;
  }

  .comparison-browser-header img,
  .comparison-browser-header svg {
    width: 24px !important;
    height: 24px !important;
  }

  .showcase-screenshot {
    max-width: 320px;
    margin: 0 auto;
  }

  .comparison-value {
    padding: 14px 6px;
    font-size: 1.3rem;
  }

  .winner-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 24px;
  }

  .winner-icon {
    width: 72px;
    height: 72px;
  }

  .winner-icon svg {
    width: 40px;
    height: 40px;
  }

  .winner-content h3 {
    font-size: 1.6rem;
  }

  .winner-content p {
    font-size: 1rem;
  }

  .download-box {
    padding: 48px 32px;
  }

  .download-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }

  .download-logo {
    width: 70px;
    height: 70px;
  }

  .download-box h2 {
    font-size: 2rem;
    word-break: break-word;
  }

  .download-box > p {
    font-size: 1.1rem;
  }

  .download-btn {
    padding: 18px 32px;
    font-size: 1.05rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .header-text h1 {
    font-size: 1.4rem;
    word-break: break-word;
  }

  .hero-title .title-line {
    font-size: 2rem;
    word-break: break-word;
  }

  .hero-title .highlight-text,
  .hero-title .highlight-brand {
    font-size: 1.5rem;
  }

  .hero-title .highlight-text {
    padding: 6px 16px;
  }

  .hero-watermark {
    font-size: 14rem;
  }

  .hero-proof {
    padding: 14px 16px;
  }

  .hero-proof-items {
    gap: 8px;
  }

  .hero-proof-item {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .hero-halo {
    width: 340px;
    height: 340px;
  }

  .hero-screens {
    height: 210px;
  }

  .hero-screen {
    width: 260px;
  }

  .browser-icon {
    width: 80px;
    height: 80px;
  }

  .browser-icon img,
  .browser-icon svg {
    width: 48px;
    height: 48px;
  }

  .vs-badge {
    font-size: 1.2rem;
    padding: 6px 12px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 16px;
  }

  .stats-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .showcase-screenshot {
    max-width: 280px;
    margin: 0 auto;
  }

  .stats-showcase {
    grid-template-columns: 1fr;
  }

  .sticky-bar-logo {
    width: 28px;
    height: 28px;
  }

  .sticky-bar-title {
    font-size: 0.85rem;
  }

  .sticky-tag {
    font-size: 0.55rem;
    padding: 2px 5px;
  }

  .sticky-bar-btn {
    padding: 9px 16px;
    font-size: 0.8rem;
  }

  .stat-item {
    padding: 16px 20px;
  }

  .section-header h2 {
    font-size: 1.5rem;
    word-break: break-word;
  }

  .section-header p {
    font-size: 1rem;
  }

  .download-box {
    padding: 36px 24px;
  }

  .download-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .download-logo {
    width: 60px;
    height: 60px;
  }

  .download-box h2 {
    font-size: 1.5rem;
    word-break: break-word;
  }

  .download-box > p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
  }

  .file-specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .file-specs div {
    padding: 12px 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .faq-item {
    padding: 18px 20px;
  }

  .winner-banner {
    padding: 32px 24px;
  }

  .winner-content h3 {
    font-size: 1.4rem;
  }

  .testimonial-card {
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .download-section {
    padding: 120px 0;
  }

  .download-section .container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
  }

  .download-box {
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}

/* ======================= TIMELINE ======================= */
.timeline-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 100%);
}

.timeline-section .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.timeline-section .section-header h2 span {
  color: #FF6666;
  text-shadow: 0 0 30px rgba(255, 51, 51, 0.4);
}

.timeline-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF3333 0%, #FF5555 50%, #10b981 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #1a1a2e;
  border: 4px solid #FF3333;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  background: #FF3333;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.timeline-item.active::before {
  background: #10b981;
  border-color: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.timeline-year {
  position: absolute;
  left: -130px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF3333;
  min-width: 70px;
  text-align: right;
}

.timeline-item.active .timeline-year {
  color: #10b981;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
  transition: left 0.6s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 51, 51, 0.4);
  transform: translateX(12px);
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.2);
}

.timeline-content:hover::before {
  left: 100%;
}

.timeline-item.active .timeline-content {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}

.timeline-content p {
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* ======================= BROWSERS COMPARISON TABLE ======================= */
#all-browsers {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0c29 100%);
}

#all-browsers .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

#all-browsers .section-header h2 span {
  color: #FF6666;
  text-shadow: 0 0 30px rgba(255, 51, 51, 0.4);
}

#all-browsers .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.browsers-comparison-table {
  max-width: 1000px;
  margin: 60px auto 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.browsers-header,
.browsers-row {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 0;
}

.browsers-header {
  background: rgba(255, 51, 51, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browsers-header .browser-col,
.browsers-header .browser-feature-col {
  padding: 20px 16px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.browsers-header .browser-col img,
.browsers-header .browser-col svg {
  flex-shrink: 0;
}

.browser-feature-col {
  padding: 16px 20px;
  color: #e5e7eb;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.browsers-header .browser-feature-col {
  justify-content: flex-start;
}

.browser-col {
  padding: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-col:last-child {
  border-right: none;
}

.browsers-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.browsers-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF3333, #FF6A16);
  transform: scaleX(0);
  transition: transform 0.3s var(--transition-smooth);
}

.browsers-row:last-child {
  border-bottom: none;
}

.browsers-row:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.browsers-row:hover::before {
  transform: scaleX(1);
}

.browsers-row:hover .check {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px currentColor);
}

.yandex-highlight {
  background: rgba(255, 51, 51, 0.08) !important;
  position: relative;
}

.browsers-header .yandex-highlight {
  background: rgba(255, 51, 51, 0.2) !important;
}

.check {
  color: #10b981;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s var(--transition-smooth);
  display: inline-block;
}

.cross {
  color: #ef4444;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s var(--transition-smooth);
  display: inline-block;
}

.check.partial {
  color: #fbbf24;
}

.browsers-row:hover .cross {
  transform: scale(0.9);
  opacity: 0.6;
}

.total-row {
  background: rgba(255, 255, 255, 0.03);
}

.total-row .browser-feature-col {
  font-weight: 700;
  color: #fff;
}

.total-row .yandex-highlight strong {
  color: #10b981;
  font-size: 1.2rem;
}

.total-row strong {
  color: #9ca3af;
}

/* ======================= TESTIMONIALS ======================= */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f0c29 0%, #1a1a2e 100%);
}

.testimonials-section .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.testimonials-section .section-header h2 span {
  color: #FF6666;
  text-shadow: 0 0 24px rgba(255, 51, 51, 0.35);
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 106, 22, 0.05));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 51, 51, 0.35);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card.featured {
  background: rgba(255, 51, 51, 0.08);
  border-color: rgba(255, 51, 51, 0.3);
}

.testimonial-card.featured:hover {
  background: rgba(255, 51, 51, 0.12);
}

.testimonial-quote {
  font-size: 4rem;
  color: #FF3333;
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 24px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF3333 0%, #FF5555 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: #fff;
}

.author-rating {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-stats .stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonials-stats .stat-icon {
  width: 48px;
  height: 48px;
  opacity: 0.9;
  color: var(--icon-color-alt);
  filter: drop-shadow(0 6px 20px rgba(255, 51, 51, 0.3));
}

.testimonials-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6A16;
  margin-bottom: 0;
}

.testimonials-stats .stat-label {
  color: #9ca3af;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-stats {
    flex-direction: column;
    gap: 30px;
  }

  .testimonials-stats .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-quote {
    font-size: 3rem;
    left: 16px;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-top: 16px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-rating {
    font-size: 0.85rem;
  }

  .testimonials-stats .stat-icon {
    width: 40px;
    height: 40px;
  }

  .testimonials-stats .stat-number {
    font-size: 1.8rem;
  }

  .testimonials-stats .stat-label {
    font-size: 0.85rem;
  }
}

/* ======================= STICKY DOWNLOAD BANNER ======================= */
.sticky-download-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(150px);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(48, 43, 99, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(255, 51, 51, 0.3);
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
  overflow: hidden;
}

.sticky-download-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 51, 51, 0.6) 20%, 
    rgba(255, 106, 22, 0.6) 50%, 
    rgba(251, 191, 36, 0.6) 80%, 
    transparent 100%);
  animation: stickyBorderShine 3s ease-in-out infinite;
}

@keyframes stickyBorderShine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.sticky-download-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 30% 50%, rgba(255, 51, 51, 0.15) 0%, transparent 60%),
    radial-gradient(circle 500px at 70% 50%, rgba(255, 106, 22, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: stickyGlowShift 8s ease-in-out infinite;
}

@keyframes stickyGlowShift {
  0%, 100% { opacity: 0.8; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(20px); }
}

.sticky-download-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  animation: stickySlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1), stickyPulse 3s ease-in-out 1s infinite;
}

@keyframes stickySlideUp {
  from { transform: translateY(150px); }
  to { transform: translateY(0); }
}

@keyframes stickyPulse {
  0%, 100% { 
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% { 
    box-shadow: 0 -15px 80px rgba(255, 51, 51, 0.3), 0 0 0 1px rgba(255, 51, 51, 0.3);
  }
}

.sticky-download-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.sticky-download-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-logo {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.4));
  animation: stickyLogoFloat 3s ease-in-out infinite;
}

@keyframes stickyLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
}

.sticky-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  animation: stickyBadgePulse 2s ease-in-out infinite;
}

@keyframes stickyBadgePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.6);
  }
}

.sticky-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.5;
}

.sticky-download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #e62e2e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.4);
  transition: all 0.35s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.sticky-download-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--transition-smooth);
}

.sticky-download-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 51, 51, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.sticky-download-btn:hover::before {
  opacity: 1;
}

.sticky-download-btn svg {
  animation: stickyArrowBounce 2s ease-in-out infinite;
  transition: transform 0.35s var(--transition-smooth);
}

@keyframes stickyArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.sticky-download-btn:hover svg {
  animation: stickyArrowBounceHover 0.8s ease-in-out infinite;
}

@keyframes stickyArrowBounceHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.sticky-close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}

.sticky-download-banner.visible .sticky-close {
  animation: stickyCloseHint 4s ease-in-out 2s infinite;
}

@keyframes stickyCloseHint {
  0%, 90%, 100% { 
    transform: scale(1);
    background: rgba(255, 255, 255, 0.1);
  }
  92%, 96% { 
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.15);
  }
  94%, 98% { 
    transform: scale(1);
    background: rgba(255, 255, 255, 0.1);
  }
}

.sticky-close:hover {
  background: rgba(255, 51, 51, 0.8);
  border-color: rgba(255, 51, 51, 1);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  animation: none;
}

.sticky-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* ======================= RESPONSIVE: TIMELINE ======================= */
@media (max-width: 768px) {
  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item::before {
    left: -38px;
    width: 12px;
    height: 12px;
  }

  .timeline-year {
    position: static;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: left;
  }

  .timeline-item {
    padding-left: 20px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item::before {
    left: -32px;
    width: 10px;
    height: 10px;
  }

  .timeline-item {
    padding-left: 16px;
  }

  .timeline-content {
    padding: 16px 18px;
  }

  .timeline-content h3 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .timeline-year {
    font-size: 1.1rem;
  }
}

/* ======================= RESPONSIVE: BROWSERS TABLE ======================= */
@media (max-width: 900px) {
  .browsers-comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }

  .browsers-header,
  .browsers-row {
    min-width: 700px;
  }

  .browsers-header .browser-col {
    font-size: 0.8rem;
    padding: 14px 6px;
  }

  .browser-feature-col {
    font-size: 0.85rem;
    padding: 12px;
  }

  .browser-col img,
  .browser-col svg {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 480px) {
  .browsers-comparison-table {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }

  .browsers-header,
  .browsers-row {
    min-width: 650px;
  }

  .browsers-header .browser-col {
    font-size: 0.75rem;
    padding: 12px 4px;
  }

  .browser-feature-col {
    font-size: 0.8rem;
    padding: 10px 8px;
  }

  .browser-col img,
  .browser-col svg {
    width: 20px !important;
    height: 20px !important;
  }

  .check,
  .cross {
    font-size: 1.2rem;
  }
}

/* Tablets and small desktops */
@media (max-width: 900px) {
  .sticky-download-content {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }

  .sticky-download-left {
    width: 100%;
    justify-content: center;
  }

  .sticky-download-btn {
    width: 100%;
    justify-content: center;
    max-width: 400px;
  }

  .sticky-close {
    top: 8px;
    right: 12px;
  }

  .sticky-download-banner.visible ~ .back-to-top {
    bottom: 160px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .sticky-download-banner {
    padding: 14px 0;
  }

  .sticky-download-content {
    padding: 0 16px;
    gap: 14px;
  }

  .sticky-download-left {
    gap: 14px;
  }

  .sticky-logo {
    width: 44px;
    height: 44px;
  }

  .sticky-text {
    gap: 2px;
  }

  .sticky-title {
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sticky-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .sticky-subtitle {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .sticky-download-btn {
    padding: 13px 20px;
    font-size: 0.9rem;
    border-radius: 10px;
    max-width: 100%;
  }

  .sticky-download-btn svg {
    width: 18px;
    height: 18px;
  }

  .sticky-close {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
    top: 6px;
    right: 8px;
  }

  .sticky-download-banner.visible ~ .back-to-top {
    bottom: 130px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .sticky-download-banner {
    padding: 12px 0;
  }

  .sticky-download-content {
    padding: 0 12px;
    gap: 12px;
  }

  .sticky-download-left {
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .sticky-logo {
    width: 40px;
    height: 40px;
  }

  .sticky-title {
    font-size: 0.85rem;
    align-items: center;
  }

  .sticky-subtitle {
    font-size: 0.7rem;
  }

  .sticky-download-btn {
    padding: 12px 18px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .sticky-close {
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
  }

  .sticky-download-banner.visible ~ .back-to-top {
    bottom: 110px;
  }
}

/* Ultra-small phones (< 360px) */
@media (max-width: 359px) {
  .container {
    padding: 0 12px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-title .title-line {
    font-size: 1.8rem;
    word-break: break-word;
  }

  .hero-title .highlight-text,
  .hero-title .highlight-brand {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
    word-break: break-word;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 14px 20px;
  }

  .download-box {
    padding: 28px 20px;
  }

  .download-icon {
    width: 70px;
    height: 70px;
  }

  .download-logo {
    width: 50px;
    height: 50px;
  }

  .download-box h2 {
    font-size: 1.3rem;
    word-break: break-word;
  }

  .file-specs {
    gap: 10px;
  }

  .file-specs div {
    padding: 10px 12px;
  }

  .file-specs strong {
    font-size: 0.7rem;
  }

  .file-specs span {
    font-size: 1rem;
  }
}
