:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --accent: #ff3b30;
  --accent-soft: rgba(255, 59, 48, 0.12);
  --accent-soft-2: rgba(255, 59, 48, 0.25);
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #525252;
  --green: #32d74b;
  --section-x: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #0c0c0c;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.section {
  padding: 100px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 18px 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 8px 30px rgba(255, 59, 48, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
}

.btn-white {
  background: var(--text);
  color: var(--bg);
}

.btn:hover {
  transform: translateY(-1px);
}

.icon {
  display: inline-flex;
  width: var(--icon-size, 18px);
  height: var(--icon-size, 18px);
  color: var(--icon-color, currentColor);
}

.icon svg {
  width: 100%;
  height: 100%;
}

/* Header */
.site-header {
  position: relative;
  z-index: 3;
  padding: 24px var(--section-x) 0;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-text {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

.logo-dot {
  color: var(--accent);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
  z-index: 50;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

body.menu-open .mobile-nav {
  transform: translateX(0);
}

body.menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  background: var(--bg);
  min-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.6) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-left-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px var(--section-x) 80px;
  flex: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 80px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 59, 48, 0.25);
  background: rgba(255, 59, 48, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
}

.hero-title {
  font-size: 82px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}

.hero-urgency .dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(50, 215, 75, 0.8);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-block .num {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.9;
}

.stat-block .unit {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
}

.stat-block .desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  max-width: 200px;
}

.stat-divider {
  width: 60px;
  height: 2px;
  background: var(--border);
}

.trust-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid #1a1a1a;
  background: var(--bg);
  padding: 20px var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

/* Pain section */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid rgba(255, 59, 48, 0.12);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-card h4 {
  font-size: 18px;
}

.pain-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.pain-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Services */
.service-grid-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.service-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: var(--card);
  border-radius: 12px;
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}

.service-card.red {
  background: var(--accent);
  color: var(--text);
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.service-card.red p {
  color: rgba(255, 255, 255, 0.75);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.red .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* How */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.step-card.red {
  background: var(--accent);
  border: none;
}

.step-card .num {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -3px;
  color: rgba(255, 59, 48, 0.2);
}

.step-card.red .num {
  color: rgba(255, 255, 255, 0.3);
}

.step-card h4 {
  font-size: 20px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.step-card.red p {
  color: rgba(255, 255, 255, 0.75);
}

/* Why */
.why-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.why-right {
  text-align: right;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 420px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.why-card {
  background: var(--card);
  border-radius: 12px;
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.why-card .num {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
}

.why-card .accent {
  color: var(--accent);
}

.why-card .label {
  letter-spacing: 0;
  font-size: 14px;
  color: var(--text-dim);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.review-card {
  background: var(--card);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}

.review-meta strong {
  font-size: 14px;
}

.review-meta span {
  font-size: 12px;
  color: var(--text-dim);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.price-card {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-card.red {
  background: var(--accent);
  border: none;
  color: var(--text);
}

.price-card .badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  width: fit-content;
}

.price-card h3 {
  font-size: 24px;
}

.price-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.price-card.red p {
  color: rgba(255, 255, 255, 0.8);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.price-card.red .price-item {
  color: rgba(255, 255, 255, 0.8);
}

.price-btn {
  width: 100%;
  text-align: center;
  padding: 16px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
}

.price-card.red .price-btn {
  background: var(--text);
  color: var(--accent);
  border: none;
}

/* Geo */
.geo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 60px;
  align-items: center;
}

.zone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zone {
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.zone.accent {
  background: var(--accent-soft);
  border-color: var(--accent-soft-2);
  color: var(--accent);
  font-weight: 600;
}

.map-card {
  height: 400px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 80px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #1a1a1a;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
}

.faq-item p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  background: var(--accent);
  padding: 120px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.final-cta p {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .cta-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta .phone-btn {
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
  padding: 22px 48px;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.final-cta .wa-btn {
  border-radius: 8px;
  padding: 22px 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--bg);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
}

.footer-logo-row span {
  color: var(--accent);
  letter-spacing: 2px;
}

.footer-cols {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-col a,
.footer-col span {
  color: var(--text-dim);
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #3a3a3a;
  font-size: 12px;
}

.footer-bottom a {
  color: #3a3a3a;
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.93), rgba(10, 10, 10, 1));
  border-top: 1px solid #1a1a1a;
  padding: 12px var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 30;
}

.sticky-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.sticky-pulse {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(50, 215, 75, 0.8);
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-phone {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sticky-btn {
  background: var(--accent);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --section-x: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .hero-title {
    font-size: 64px;
  }

  .steps-grid,
  .pricing-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero-content {
    padding: 120px var(--section-x) 60px;
  }

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

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-block .desc {
    max-width: none;
  }

  .trust-bar {
    justify-content: flex-start;
  }

  .pain-grid,
  .service-grid-top,
  .service-grid-bottom,
  .steps-grid,
  .pricing-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-x: 24px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .pain-grid,
  .service-grid-top,
  .service-grid-bottom,
  .steps-grid,
  .pricing-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .why-right {
    text-align: left;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .final-cta .phone-btn,
  .final-cta .wa-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 32px;
  }

  .sticky-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .sticky-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
