:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f7fbff;
  --muted: #aab8c8;
  --primary: #4f8cff;
  --primary-2: #00e0c6;
  --accent: #ffcf5a;
  --white: #ffffff;
  --dark: #07111f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.35), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 224, 198, 0.25), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
  box-shadow: 0 10px 30px rgba(0, 224, 198, 0.2);
}

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

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

.nav-cta {
  color: var(--dark) !important;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  display: block;
  margin: 6px 0;
}

.hero {
  min-height: 100vh;
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding: 140px 0 70px;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin: 18px 0 26px;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  color: var(--primary-2);
  background: rgba(0, 224, 198, 0.1);
  border: 1px solid rgba(0, 224, 198, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
  box-shadow: 0 16px 40px rgba(0, 224, 198, 0.18);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 640px;
}

.hero-metrics div {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.55rem;
  color: var(--white);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  perspective: 1200px;
}

.dashboard-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  padding: 28px;
  min-height: 430px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  position: relative;
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.55), transparent 68%);
  position: absolute;
  right: -80px;
  bottom: -80px;
}

.card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 54px;
}

.card-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.card-top span:nth-child(2) {
  background: var(--primary-2);
}

.card-top span:nth-child(3) {
  background: var(--primary);
}

.dashboard-card h3 {
  font-size: 2.1rem;
  letter-spacing: -0.05em;
}

.dashboard-card p {
  color: var(--muted);
  margin: 10px 0 34px;
}

.progress-list {
  position: relative;
  z-index: 2;
}

.progress-list div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 700;
  margin-top: 16px;
}

.progress-list strong {
  color: var(--white);
}

.bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px !important;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: inherit;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.why-text h2,
.package-content h2,
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.065em;
  margin: 18px 0;
}

.section-heading p,
.why-text p,
.package-content p,
.contact-info p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--panel-strong);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

.package-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  background:
    linear-gradient(135deg, rgba(79, 140, 255, 0.22), rgba(0, 224, 198, 0.12)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.price {
  display: grid;
  margin: 28px 0;
}

.price span,
.price small {
  color: var(--muted);
}

.price strong {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--accent);
}

.package-list {
  background: rgba(7, 17, 31, 0.4);
  border-radius: 28px;
  padding: 30px;
}

.package-list h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.package-list ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.package-list li {
  color: var(--muted);
  padding-left: 30px;
  position: relative;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-2);
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefits div {
  background: var(--panel);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits strong {
  color: var(--primary-2);
  display: block;
  margin-bottom: 28px;
}

.benefits span {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.client-grid div {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 24px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-cards {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-cards div {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 20px;
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards span {
  color: var(--muted);
  margin-top: 6px;
}

.contact-form {
  background: var(--white);
  color: var(--dark);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--dark);
  outline: none;
  background: #f8fbff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.12);
}

.contact-form .btn {
  width: 100%;
  font-size: 1rem;
}

.form-note {
  margin-top: 14px;
  color: #627086;
  font-size: 0.9rem;
  text-align: center;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 34px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer strong {
  color: var(--white);
  margin-right: 12px;
}

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

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

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .package-card,
  .why-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

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

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

@media (max-width: 640px) {
  .navbar {
    height: 74px;
  }

  .nav-links {
    top: 74px;
  }

  .hero-metrics,
  .services-grid,
  .benefits,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .package-card,
  .contact-form {
    padding: 24px;
    border-radius: 26px;
  }

  .footer {
    flex-direction: column;
  }
}
