:root {
  --bg-color: #0c1116;
  --surface-color: #141b23;
  --surface-soft: #1b2430;
  --surface-elevated: rgba(18, 24, 31, 0.88);
  --text-primary: #f7f4ee;
  --text-secondary: #cbd3db;
  --accent-color: #e63324;
  --accent-hover: #ff4a3d;
  --accent-soft: rgba(230, 51, 36, 0.14);
  --paper-line: rgba(255, 245, 225, 0.08);
  --blur-bg: rgba(13, 18, 24, 0.78);
  --border-color: rgba(238, 243, 247, 0.12);
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top, rgba(116, 138, 163, 0.12), transparent 28%),
    linear-gradient(180deg, #0c1116 0%, #0f151b 35%, #0a0f14 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(11, 16, 22, 0.92), rgba(11, 16, 22, 0.76));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.9rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.nav-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand img {
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
}

.nav-brand-text {
  color: #f4f7fa;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links li a:hover {
  color: #f6f1e9;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 7rem 5% 2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 16, 22, 0.82) 0%, rgba(10, 16, 22, 0.5) 42%, rgba(10, 16, 22, 0.18) 100%),
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(6, 10, 14, 0.5));
  background-color: #0c1116;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.9) contrast(1.05) saturate(0.92);
  opacity: 0;
  z-index: -2;
}

.hero-poster {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.9) contrast(1.03) saturate(0.94);
}

.hero.video-ready .hero-video {
  opacity: 1;
}

.hero.video-ready .hero-poster {
  opacity: 0;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(var(--paper-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--paper-line) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent);
}

.hero::after {
  background: none;
  opacity: 0;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 243, 247, 0.16);
  background: rgba(17, 24, 31, 0.52);
  color: #eef3f7;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(230, 51, 36, 0.18);
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 1.4rem;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-highlight {
  display: block;
  color: #f1e1c7;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.hero-desc {
  font-size: 1.14rem;
  color: #eef3f7;
  margin-bottom: 2.4rem;
  max-width: 560px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f4060b, #ff5544);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(230, 51, 36, 0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e84537, #ff6557);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(230, 51, 36, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 1rem 1.2rem;
  color: #f1f5f8;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(247, 226, 189, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  color: #fff;
  border-color: rgba(247, 226, 189, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin-top: 2.4rem;
}

.hero-fact {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 30, 39, 0.82), rgba(13, 18, 24, 0.72));
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.hero-fact strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #eef3f7;
}

.hero-fact span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  animation: zoomIn 1s forwards 0.45s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  padding: 2rem 3rem;
}

.hero-image img {
  position: relative;
  z-index: 2;
  max-width: 400px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  -webkit-mask-image: radial-gradient(ellipse 94% 98% at 50% 50%, #000 86%, rgba(0, 0, 0, 0.95) 91%, rgba(0, 0, 0, 0.65) 96%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 98% at 50% 50%, #000 86%, rgba(0, 0, 0, 0.95) 91%, rgba(0, 0, 0, 0.65) 96%, transparent 100%);
  animation: floatingMockup 6s ease-in-out infinite;
}

@keyframes floatingMockup {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0);
  }
}

.section {
  position: relative;
  padding: 8rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #e4e8ec;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-desc-left {
  margin-left: 0;
}

.about {
  background: linear-gradient(180deg, rgba(16, 22, 29, 0.92), rgba(10, 15, 20, 0.92));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid > * {
  min-width: 0;
}

.about-image img {
  border-radius: 28px;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.about-content {
  min-width: 0;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.3rem;
  color: #f5f7f8;
  overflow-wrap: anywhere;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.08rem;
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(24, 31, 40, 0.94), rgba(17, 22, 29, 0.94));
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 226, 189, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.benefit-icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: var(--accent-color);
  background: var(--accent-soft);
  padding: 0.95rem;
  border-radius: 16px;
}

.benefit-item h4 {
  margin-bottom: 0.55rem;
  color: #f2f5f7;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.benefit-item p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.68;
}

.features {
  background:
    radial-gradient(circle at top, rgba(152, 173, 196, 0.08), transparent 24%),
    linear-gradient(180deg, #121820 0%, #0d131a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(24, 31, 40, 0.96), rgba(16, 22, 29, 0.96));
  padding: 2.4rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.feature-icon {
  width: fit-content;
  font-size: 2.35rem;
  color: #eef2f5;
  margin-bottom: 1.4rem;
  display: inline-block;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  color: #f4060b;
}

.feature-icon .icon {
  width: 1em;
  height: 1em;
}

.feature-card h4 {
  margin-bottom: 0.8rem;
  color: #f3f6f8;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.78;
}

.compare-section {
  background: linear-gradient(180deg, rgba(12, 17, 23, 0.98), rgba(16, 22, 29, 0.98));
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.compare-copy .section-title {
  max-width: 10ch;
}

.compare-points {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}

.compare-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-color);
}

.compare-step {
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f7fa;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.compare-point h3 {
  margin-bottom: 0.35rem;
  color: #f4f7fa;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-point p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.compare-visual {
  position: relative;
  min-height: 560px;
}

.compare-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(247, 226, 189, 0.18);
  background: linear-gradient(180deg, rgba(17, 13, 12, 0.9), rgba(9, 7, 6, 0.95));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.compare-card img {
  width: 100%;
}

.compare-card-back {
  top: 1.5rem;
  left: 0;
  width: min(74%, 360px);
  transform: rotate(-8deg);
}

.compare-card-front {
  right: 0;
  bottom: 0;
  width: min(82%, 420px);
  transform: rotate(7deg);
}

.compare-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(13, 18, 24, 0.82);
  color: #f4f7fa;
  border: 1px solid rgba(238, 243, 247, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.screenshots {
  background:
    radial-gradient(circle at top right, rgba(152, 173, 196, 0.08), transparent 20%),
    linear-gradient(180deg, #121820 0%, #0c1117 100%);
}

.screenshots-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-carousel::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.32);
  transition: var(--transition);
  border: 1px solid rgba(247, 226, 189, 0.12);
}

.screenshot-item:hover {
  transform: translateY(-10px);
}

.screenshot-item img {
  width: 280px;
}

.screenshot-item figcaption {
  padding: 1rem 1rem 1.15rem;
  color: #eef3f7;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.social-proof {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(16, 22, 29, 0.98), rgba(10, 15, 20, 0.98));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.proof-card {
  padding: 2rem 1.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 31, 40, 0.96), rgba(16, 22, 29, 0.96));
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.proof-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f7fa;
  font-size: 1rem;
}

.proof-icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.proof-value {
  margin-bottom: 0.45rem;
  color: #f1e1c7;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-label {
  margin-bottom: 0.35rem;
  color: #f3f6f8;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-meta {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.download-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 24, 31, 0.98) 0%, rgba(9, 13, 18, 0.98) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 6rem 5%;
}

.faq-section {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(13, 18, 24, 0.98), rgba(9, 13, 18, 0.98));
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 31, 40, 0.9), rgba(16, 22, 29, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: transparent;
  border: 0;
  color: #f4f7fa;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(241, 225, 199, 0.65);
  outline-offset: -2px;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f1e1c7;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: rgba(241, 225, 199, 0.08);
}

.faq-icon .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 1.4rem 0;
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: 1.35rem;
}

.faq-answer-inner p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.seo-footer-block {
  padding: 56px 20px 72px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(11, 16, 22, 0.98), rgba(8, 12, 17, 0.98));
}

.seo-footer-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.2rem 2rem 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(24, 31, 40, 0.78), rgba(15, 21, 28, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  opacity: 0.92;
}

.seo-footer-eyebrow {
  margin-bottom: 0.85rem;
}

.seo-footer-inner h2 {
  margin-bottom: 18px;
  color: #f4f7fa;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.seo-footer-inner p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
}

.seo-footer-note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5ebf1;
  opacity: 1;
}

.seo-footer-note strong {
  color: #f1e1c7;
}

.download-highlights {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.download-highlights span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 226, 189, 0.12);
  color: #eef3f7;
  font-size: 0.88rem;
  font-weight: 500;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.store-badge img {
  height: 60px;
  transition: var(--transition);
}

.store-badge img:hover {
  transform: scale(1.05) translateY(-4px);
}

footer {
  padding: 4rem 5% 2rem;
  text-align: center;
  background: linear-gradient(180deg, #0a1015, #060b0f);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.social-btn .icon,
.scroll-top .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.social-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 51, 36, 0.3);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.scroll-top {
  width: 42px;
  height: 42px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.scroll-top:hover {
  background: var(--accent-color);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-title,
  .compare-copy .section-title {
    max-width: none;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-shell {
    width: 100%;
    max-width: 520px;
    min-height: auto;
    padding: 2rem 1.5rem 4rem;
  }

  .hero-poster img,
  .hero-video {
    object-position: center top;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-item {
    text-align: left;
  }

  .compare-layout {
    grid-template-columns: 1fr;
  }

  .compare-visual {
    width: min(100%, 520px);
    min-height: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }

  .nav-brand-text {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 15, 20, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-image-shell {
    padding-bottom: 1rem;
  }

  .hero-image img {
    max-width: min(100%, 320px);
    margin: 0 auto;
  }

  .section {
    padding: 6rem 5%;
  }

  .section-title {
    font-size: 2.05rem;
  }

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

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

  .faq-question {
    padding: 1.15rem 1.1rem;
    font-size: 0.98rem;
  }

  .faq-answer-inner {
    padding: 0 1.1rem 0;
  }

  .faq-item.is-open .faq-answer-inner {
    padding-bottom: 1.15rem;
  }

  .seo-footer-inner {
    padding: 1.7rem 1.25rem 1.5rem;
  }

  .compare-point {
    grid-template-columns: 1fr;
  }

  .compare-card-back {
    width: 68%;
  }

  .compare-card-front {
    width: 78%;
  }

  .store-badges {
    gap: 1rem;
  }

  .copyright {
    flex-direction: column;
    gap: 1rem;
  }
}
