:root {
  --bg: #090b19;
  --ink: #f7f2ff;
  --muted: #c4b8d8;
  --line: rgba(255, 255, 255, 0.16);
  --primary: #c9a4ff;
  --primary-dark: #a77df0;
  --accent: #f1a7c8;
  --surface: rgba(20, 18, 42, 0.68);
  --surface-strong: rgba(31, 27, 58, 0.86);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 4, 16, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #070917 0%, #171638 42%, #5f4d7a 78%, #b08a93 100%);
  line-height: 1.6;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(201, 164, 255, 0.78) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.4px);
  background-position: 18px 24px, 96px 118px, 172px 58px, 42px 194px;
  background-size: 124px 148px, 218px 236px, 286px 244px, 348px 312px;
  opacity: 0.92;
}

body::after {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.84) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.72) 0 1.1px, transparent 2.2px),
    radial-gradient(circle at 44% 16%, rgba(241, 167, 200, 0.62) 0 1.2px, transparent 2.4px),
    linear-gradient(180deg, rgba(7, 9, 23, 0.1) 0%, rgba(7, 9, 23, 0.28) 100%);
  opacity: 0.9;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 11, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
}

.logo span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #130f24;
  background: linear-gradient(135deg, #f7d0e0, var(--primary));
  border-radius: 8px;
}

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

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
}

.nav-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-cta,
.button.primary,
.contact-form button {
  color: #130f24;
  background: linear-gradient(135deg, #f7d0e0, var(--primary));
  box-shadow: 0 14px 34px rgba(201, 164, 255, 0.26);
}

.nav-cta:hover,
.button.primary:hover,
.contact-form button:hover {
  background: linear-gradient(135deg, #f1a7c8, var(--primary-dark));
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  padding: 72px 0;
}

.hero h1,
.section-heading h2,
.split h2,
.contact h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-panel {
  position: relative;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 164, 255, 0.18), transparent 36%),
    linear-gradient(315deg, rgba(241, 167, 200, 0.14), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.browser-top {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.browser-top span:first-child {
  background: #f1a7c8;
}

.browser-top span:nth-child(2) {
  background: #c9a4ff;
}

.browser-top span:nth-child(3) {
  background: #8ea7ff;
}

.site-preview {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 14, 34, 0.62);
  box-shadow: 0 16px 45px rgba(3, 4, 16, 0.28);
}

.preview-nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 26px;
}

.preview-nav span {
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-kicker,
.preview-title,
.preview-line,
.preview-button,
.preview-content span {
  display: block;
  border-radius: 999px;
}

.preview-kicker {
  width: 96px;
  height: 10px;
  margin-bottom: 18px;
  background: #f1a7c8;
}

.preview-title {
  width: 86%;
  height: 30px;
  margin-bottom: 14px;
  background: var(--ink);
}

.preview-line {
  width: 64%;
  height: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-line.wide {
  width: 94%;
}

.preview-button {
  width: 118px;
  height: 34px;
  margin-top: 24px;
  background: var(--primary);
  border-radius: 8px;
}

.preview-image {
  min-height: 178px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0 26%, transparent 26%),
    linear-gradient(315deg, rgba(201, 164, 255, 0.72), rgba(30, 24, 66, 0.95));
}

.preview-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.preview-content span {
  height: 74px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
}

.stats div {
  padding: 26px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.cards,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.package-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  color: var(--primary);
  background: rgba(201, 164, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.card h3,
.package-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.card p,
.package-card p,
.split p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.split,
.contact {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.split > div:first-child p:last-child,
.contact > div:first-child p:last-child {
  margin-top: 20px;
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.timeline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #130f24;
  background: linear-gradient(135deg, #f7d0e0, var(--primary));
  border-radius: 8px;
  font-weight: 800;
}

.packages {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1120px) / 2));
  padding-left: max(16px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(201, 164, 255, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(241, 167, 200, 0.18), transparent 32%),
    rgba(9, 11, 25, 0.32);
  overflow: hidden;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.76;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 255, 0.38);
  box-shadow: 0 22px 60px rgba(3, 4, 16, 0.34);
}

.package-card.featured {
  transform: translateY(-10px);
  border-color: rgba(201, 164, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(201, 164, 255, 0.16), transparent 38%),
    var(--surface-strong);
  box-shadow: 0 26px 70px rgba(201, 164, 255, 0.2);
}

.package-card.featured::before {
  height: 7px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 1;
}

.package-card.featured:hover {
  transform: translateY(-14px);
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.package-label {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  color: var(--primary);
  background: rgba(201, 164, 255, 0.14);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-price {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.package-card h3 {
  font-size: 1.5rem;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(201, 164, 255, 0.14);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.contact {
  padding-bottom: 96px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(3, 4, 16, 0.34);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 242, 255, 0.46);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(201, 164, 255, 0.2);
  border-color: var(--primary);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-top: 6px;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 48px;
  }

  .hero-panel {
    min-height: 360px;
  }

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

  .package-card.featured,
  .package-card.featured:hover,
  .package-card:hover {
    transform: none;
  }

  .stats div {
    padding: 22px 0;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .preview-hero,
  .preview-content {
    grid-template-columns: 1fr;
  }

  .preview-image {
    min-height: 150px;
  }

  .footer {
    flex-direction: column;
  }
}
