:root {
  --bg: #0b1720;
  --panel: rgba(14, 29, 40, 0.82);
  --panel-strong: #102331;
  --accent: #f5c451;
  --accent-2: #ffde7d;
  --text: #f4f7fb;
  --muted: #adc0cf;
  --line: rgba(255, 255, 255, 0.12);
  --success: #7dd89c;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.16);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.24);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 212, 90, 0.08), transparent 25%),
    linear-gradient(180deg, #09131a 0%, #0b1720 40%, #0d1d28 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.promo {
  position: sticky;
  top: 0;
  z-index: 60;
  overflow: hidden;
  background: linear-gradient(90deg, #f5c451, #ffdb72, #f5c451);
  color: #171717;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.promo-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  padding: 12px 18px;
  min-width: max-content;
  animation: promoSlide 22s linear infinite;
}

@keyframes promoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 36px 0 70px;
  background:
    linear-gradient(rgba(7, 14, 18, 0.5), rgba(7, 14, 18, 0.72)),
    url("assets/images/hero-bg.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.1), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(255, 212, 90, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.nav,
.hero-grid,
.hero-copy,
.hero-side-card {
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  margin-bottom: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 18, 25, 0.42);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav.scrolled {
  background: rgba(8, 18, 25, 0.72);
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand > div:last-child {
  min-width: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.logo-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, filter 0.22s ease;
}

.primary-btn,
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #141414;
  box-shadow: 0 12px 28px rgba(245, 196, 81, 0.2);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.interactive-btn,
.primary-btn,
.secondary-btn,
.nav-cta {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.interactive-btn span,
.primary-btn span,
.secondary-btn span,
.nav-cta span {
  position: relative;
  z-index: 2;
}

.interactive-btn::before,
.primary-btn::before,
.secondary-btn::before,
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  z-index: 1;
}

.interactive-btn:hover::before,
.primary-btn:hover::before,
.secondary-btn:hover::before,
.nav-cta:hover::before {
  left: 140%;
}

.interactive-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.primary-btn:hover,
.nav-cta:hover {
  filter: brightness(1.04);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.clicked {
  transform: scale(0.98) !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: center;
}

.motto {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 700px;
  color: #e6edf3;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.stat,
.card,
.error-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.stat,
.card {
  background: rgba(13, 28, 38, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.stat:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.stat {
  padding: 20px 18px;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.highlight-stat {
  background: linear-gradient(135deg, rgba(245, 196, 81, 0.18), rgba(255, 255, 255, 0.07));
  border-color: rgba(245, 196, 81, 0.3);
}

.highlight-stat b {
  color: var(--accent);
}

.hero-side-card {
  padding: 28px;
  overflow: hidden;
}

.hero-side-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-side-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.hero-side-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #161616;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.side-cta {
  width: 100%;
  margin-top: 10px;
}

main.wrap {
  padding: 80px 0 0;
}

section {
  margin-bottom: 80px;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.info-grid,
.contact-wrap,
.pricing-grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  padding: 26px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.pricing-card.featured {
  position: relative;
  background:
    linear-gradient(180deg, rgba(245, 196, 81, 0.12), rgba(13, 28, 38, 0.8)),
    rgba(13, 28, 38, 0.82);
  border-color: rgba(245, 196, 81, 0.26);
}

.pricing-top {
  margin-bottom: 18px;
}

.pricing-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(245, 196, 81, 0.14);
  color: var(--accent-2);
  border: 1px solid rgba(245, 196, 81, 0.2);
}

.price {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
  color: var(--text);
}

.price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-list,
.contact-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.pricing-list li,
.contact-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.pricing-cta {
  width: 100%;
  margin-top: 20px;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-points span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8fa5b5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 196, 81, 0.14);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.submit {
  width: 100%;
  margin-top: 10px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(125, 216, 156, 0.12);
  border: 1px solid rgba(125, 216, 156, 0.28);
  color: var(--text);
}

.form-status.show {
  display: block;
}

footer {
  margin-top: 40px;
  padding: 36px 16px 50px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 16, 22, 0.35);
}

footer a {
  color: var(--text);
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .contact-wrap,
  .pricing-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-link {
    display: none;
  }

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

  .cta-row a,
  .nav-cta,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .stats,
  .two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-side-card,
  .card {
    padding: 22px;
  }

  .promo {
    font-size: 0.82rem;
  }
}
