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

:root {
  --red: #e31d34;
  --dark: #141414;
  --dark-2: #1f1f1f;
  --gray: #f5f5f5;
  --gray-2: #ececec;
  --white: #ffffff;
  --muted: #6f6f6f;
  --muted-dark: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

section {
  padding: 82px 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes blinkCursor {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 48px;
  background: rgba(20, 20, 20, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
}

.nav-cta,
.btn-red,
.btn-outline,
.btn-dark,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.nav-cta:hover,
.btn-red:hover,
.btn-outline:hover,
.btn-dark:hover,
.btn-outline-dark:hover,
.logo-card:hover,
.social-btn:hover {
  transform: translateY(-2px);
}

.nav-cta,
.btn-red {
  background: var(--red);
  color: var(--white);
}

.nav-cta {
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-red,
.btn-outline,
.btn-dark,
.btn-outline-dark {
  min-height: 54px;
  padding: 16px 28px;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: transparent;
}

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

.btn-outline-dark {
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: #fff;
  color: var(--dark);
}

.hero {
  background: linear-gradient(180deg, #161616 0%, #111111 100%);
  padding-top: 90px;
  padding-bottom: 82px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(227, 29, 52, 0.28);
  background: rgba(227, 29, 52, 0.14);
  color: #ffb8c0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
}

.hero-title-dynamic {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 1.02em;
}

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

.typewriter-text {
  color: var(--red);
}

.typewriter-cursor {
  color: var(--red);
  font-weight: 300;
  animation: blinkCursor 0.75s step-end infinite;
}

.hero-sub {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.hero-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.14);
}

.card-label {
  margin-bottom: 18px;
  color: #ffb8c0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.price-sign {
  margin-top: 10px;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.price-main {
  color: var(--white);
  font-size: clamp(48px, 7vw, 64px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-tax {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hero-bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-bullets li::before {
  content: "\2022";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
}

.showcase,
.forwhom,
.final-cta {
  background: #fff;
}

.benefits,
.conditions {
  background: var(--gray);
}

.steps {
  background: linear-gradient(180deg, #151515 0%, #101010 100%);
}

.sec-label {
  margin-bottom: 10px;
  text-align: center;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.sec-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.sec-sub {
  max-width: 860px;
  margin: 12px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.steps .sec-title,
.steps .sec-sub {
  color: #fff;
}

.steps .sec-sub {
  color: rgba(255, 255, 255, 0.62);
}

.logos-carousel-wrap {
  max-width: 1180px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.logos-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  padding: 8px 2px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.logo-nav {
  width: 44px;
  height: 44px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.logo-card {
  min-height: 136px;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.logo-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border-color: #e6d6d8;
}

.logo-card img {
  display: block;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.logo-fallback {
  text-align: center;
}

.logo-name {
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.logo-role {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.logos-cta {
  margin-top: 28px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.logos-cta p {
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
}

.mini-cta {
  padding-top: 0;
  padding-bottom: 28px;
  background: #fff;
}

.mini-cta-box {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 30px;
  border: 1px solid #ececec;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mini-cta-box h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.benefits-grid {
  max-width: 920px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.benefit-item {
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.check-circle {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.check-circle::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.benefit-item span {
  font-size: 14px;
  font-weight: 700;
}

.section-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.forwhom-grid {
  max-width: 920px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.who-card {
  padding: 18px 14px;
  border: 1px solid #ededed;
  border-radius: 18px;
  background: var(--gray);
  text-align: center;
}

.who-dot {
  width: 10px;
  height: 10px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--red);
}

.who-card p {
  font-size: 13px;
  font-weight: 700;
}

.steps-grid {
  max-width: 1080px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.step-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.step-desc {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.72;
}

.cond-grid {
  max-width: 1080px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cond-item {
  padding: 18px;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cond-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.cond-item span {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.final-box {
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.final-box h2 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.final-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

.final-actions {
  display: flex;
  justify-content: flex-start;
}

.footer-modern {
  margin-top: 0;
  background: var(--dark);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 28px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
}

.footer-tagline {
  max-width: 340px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.8;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.col-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-link,
.contact-val,
.contact-val a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}

.contact-item + .contact-item {
  margin-top: 12px;
}

.contact-lbl {
  margin-bottom: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.footer-mid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 28px;
}

.mid-strip {
  padding: 18px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mid-txt,
.mid-location {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.mid-txt a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 48px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copy,
.legal-link,
.dev-credit {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-decoration: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dev-credit span {
  color: var(--red);
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(227, 29, 52, 0.35);
  overflow: visible;
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--red);
  animation: pulseRing 2s ease-out infinite;
}

.wa-float svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: #fff;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1400;
}

.cursor-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(227, 29, 52, 0.55);
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 1024px) {
  .site-nav,
  section,
  .footer-top,
  .footer-mid,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner,
  .forwhom-grid,
  .steps-grid,
  .cond-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .final-box,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .logos-carousel {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 768px) {
  .site-nav,
  section,
  .footer-top,
  .footer-mid,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-logo img,
  .footer-logo {
    height: 48px;
  }

  .nav-cta {
    display: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .hero,
  .benefits,
  .forwhom,
  .steps,
  .conditions,
  .final-cta {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-actions,
  .mini-cta-box,
  .final-box {
    grid-template-columns: 1fr;
  }

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

  .mini-cta-box,
  .final-box {
    padding-left: 22px;
    padding-right: 22px;
  }

  .btn-red,
  .btn-outline,
  .btn-dark,
  .btn-outline-dark {
    width: 100%;
  }

  .forwhom-grid,
  .steps-grid,
  .cond-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .logos-carousel-wrap {
    grid-template-columns: 1fr;
  }

  .logo-nav {
    display: none;
  }

  .logos-carousel {
    grid-auto-columns: 78%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-card,
  .logo-card,
  .mini-cta-box,
  .step-card,
  .final-box {
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .sec-title {
    font-size: 32px;
  }

  .mini-cta-box h2 {
    font-size: 30px;
  }

  .logos-carousel {
    grid-auto-columns: 86%;
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}
