:root {
  --bg: #f7f8fc;
  --paper: #ffffff;
  --ink: #101525;
  --muted: #6d7280;
  --nav: #080d1b;
  --card: #171d31;
  --line: #e7ebf3;
  --pink: #f15f93;
  --blue: #2563eb;
  --blue-2: #4f7cff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 950;
}

.logo {
  position: relative;
  width: 36px;
  height: 36px;
}

.logo i {
  position: absolute;
  display: block;
  width: 27px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, var(--blue));
}

.logo i:nth-child(1) {
  top: 5px;
  left: 5px;
  transform: rotate(28deg);
}

.logo i:nth-child(2) {
  top: 15px;
  left: 3px;
  background: linear-gradient(90deg, var(--pink), #60a5fa);
  transform: rotate(-28deg);
}

.logo i:nth-child(3) {
  top: 24px;
  left: 9px;
  width: 19px;
  background: #fff;
  transform: rotate(28deg);
}

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

.navLinks a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 15px;
  font-weight: 780;
  transition: color 180ms ease, transform 180ms ease;
}

.navLinks a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.navCta,
.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.navCta,
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3b46d9);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.ghost {
  color: #fff;
  background: transparent;
}

.navCta:hover,
.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: 700px;
  display: grid;
  align-items: center;
  padding: 100px 0 70px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.26), transparent 31%),
    radial-gradient(circle at 68% 42%, rgba(241, 95, 147, 0.16), transparent 28%),
    linear-gradient(180deg, #0e1730 0%, var(--nav) 100%);
}

.heroInner {
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pink {
  color: var(--pink);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
  font-weight: 760;
  line-height: 1.2;
}

.hero p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.55;
}

.heroActions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.trustPanel {
  max-width: 980px;
  margin: 86px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.trustPanel span {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

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

.trustItems b {
  padding: 18px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  scroll-margin-top: 100px;
  padding: 90px 0;
}

.lightSection {
  background: var(--bg);
}

.darkSection {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 76% 18%, rgba(241, 95, 147, 0.12), transparent 30%),
    var(--nav);
}

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

.centered {
  margin-inline: auto;
  text-align: center;
}

.sectionIntro p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.lightText p {
  color: rgba(255, 255, 255, 0.62);
}

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

.serviceGrid article,
.stepsGrid article {
  min-height: 250px;
  padding: 32px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(18, 10, 36, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.serviceGrid article:hover,
.stepsGrid article:hover,
.packageGrid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 80px rgba(18, 10, 36, 0.12);
}

.icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue-2));
  font-size: 26px;
}

.serviceGrid p,
.stepsGrid p,
.splitCopy p,
.contactCard p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

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

.packageGrid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 48px 48px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.packageGrid span {
  color: var(--pink);
  font-weight: 950;
}

.packageGrid h3 {
  margin-top: 34px;
}

.packageGrid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.stepsGrid {
  grid-template-columns: repeat(4, 1fr);
}

.stepsGrid b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.splitSection {
  background: #fbfcff;
}

.splitGrid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}

.mockup {
  padding: 18px;
  border: 1px solid #bfb6ca;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.browserBar {
  display: flex;
  gap: 7px;
  padding: 12px;
  border-radius: 14px 14px 0 0;
  background: #f1eef7;
}

.browserBar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.mockHero {
  height: 260px;
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.86), rgba(241, 95, 147, 0.58)),
    linear-gradient(90deg, #ece8f3, #fff);
}

.mockLines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mockLines span {
  height: 14px;
  border-radius: 999px;
  background: #eee9f5;
}

.mockLines span:nth-child(2) {
  width: 72%;
}

.mockLines span:nth-child(3) {
  width: 46%;
}

.splitCopy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.splitCopy li {
  color: var(--ink);
  font-weight: 850;
}

.splitCopy li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--pink);
}

.contactSection {
  background: var(--bg);
}

.contactCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contactCard p {
  max-width: 680px;
}

footer {
  padding: 64px 0 28px;
  color: #fff;
  background: var(--nav);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 54px;
}

.footerBrand p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--nav);
  background: #fff;
  font-size: 12px;
  font-weight: 950;
}

footer h4 {
  margin: 0 0 20px;
  font-size: 17px;
}

footer a {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-weight: 760;
}

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

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

@media (max-width: 980px) {
  .navWrap,
  .navLinks,
  .heroActions,
  .contactCard,
  .footerBottom {
    align-items: stretch;
    flex-direction: column;
  }

  .navLinks {
    display: none;
  }

  .serviceGrid,
  .stepsGrid,
  .packageGrid,
  .splitGrid,
  .footerGrid,
  .trustItems {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  h1 {
    font-size: 40px;
  }

  .splitCopy ul {
    grid-template-columns: 1fr;
  }
}
