.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(38vw, 132px);
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 59, 59, 0.2));
}

.menu {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  position: relative;
  transition: color 0.18s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.menu a:hover,
.menu a.active {
  color: #fff;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.hero {
  padding: 84px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 59, 59, 0.35);
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.08);
  color: #ffd0d0;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

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

.hero-text p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-mini span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #d0d0d0;
  font-size: 12px;
  font-weight: 700;
}

.flow-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.06), rgba(255, 255, 255, 0.02)), var(--bg-card);
  box-shadow: var(--shadow);
}

.flow-steps {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.flow-num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.flow-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.flow-step span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 58px 0;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #111, #0a0a0a);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card.featured {
  border-color: rgba(255, 59, 59, 0.45);
  box-shadow: 0 20px 50px rgba(255, 59, 59, 0.12);
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.price-value {
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-value small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.price-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.bento-card {
  grid-column: span 2;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #111, #0a0a0a);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 59, 59, 0.3);
}

.bento-card.wide {
  grid-column: span 3;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 59, 59, 0.25);
  background: rgba(255, 59, 59, 0.1);
  color: var(--accent);
}

.bento-card h3,
.step h3,
.client-card h3,
.faq-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.bento-card p,
.step p,
.client-card p,
.faq-card p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #111, #0a0a0a);
}

.clients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.client-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #111, #0a0a0a);
}

.client-logo {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faq-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #111, #0a0a0a);
}

.cta {
  padding: 28px 0 72px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(255, 59, 59, 0.35);
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.12), rgba(255, 255, 255, 0.02)), #090909;
  box-shadow: 0 28px 70px rgba(255, 59, 59, 0.1);
}

.cta-box h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.05em;
}

.cta-box p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer .logo-img {
  height: 88px;
  max-width: min(48vw, 170px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer a:hover {
  color: var(--accent);
}

.footer h4 {
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted2);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .pricing,
  .bento,
  .clients,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card.wide {
    grid-column: span 1;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 52px;
  }

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

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