:root {
  --page: #08090d;
  --panel: #11151d;
  --panel-soft: #171c27;
  --ink: #f8fafc;
  --muted: #a8b0c2;
  --line: rgba(255, 255, 255, 0.12);
  --amber: #f4b740;
  --cyan: #35d8c7;
  --rose: #e3507d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  background: rgba(8, 9, 13, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.94) 0%, rgba(8, 9, 13, 0.74) 45%, rgba(8, 9, 13, 0.18) 100%),
    radial-gradient(circle at 78% 18%, rgba(53, 216, 199, 0.2), transparent 32%),
    radial-gradient(circle at 58% 88%, rgba(244, 183, 64, 0.18), transparent 34%);
  z-index: -2;
}

.hero-inner {
  width: min(1120px, 90vw);
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px 0 112px;
  margin: 0 auto;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8.2vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: #dde4ef;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.5;
  overflow-wrap: break-word;
}

.hero-actions,
.contact-section {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--amber);
  color: #101014;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--ink);
}

.quick-proof {
  width: min(1120px, 90vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -68px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-proof div {
  min-height: 132px;
  padding: 28px;
  background: rgba(17, 21, 29, 0.96);
}

.quick-proof strong,
.quick-proof span {
  display: block;
}

.quick-proof strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.quick-proof span {
  color: var(--muted);
}

.section {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 112px 0;
}

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

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.package,
blockquote {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.package,
blockquote {
  padding: 28px;
}

.service-card h3,
.package h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.service-card p,
.package p,
.steps p,
blockquote p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 58px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #e7edf7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.packages {
  width: 100%;
  padding-left: max(5vw, calc((100vw - 1120px) / 2));
  padding-right: max(5vw, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(244, 183, 64, 0.12), transparent 38%),
    linear-gradient(225deg, rgba(53, 216, 199, 0.1), transparent 42%),
    #0c1017;
}

.package {
  min-height: 320px;
}

.package-label {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package strong {
  display: block;
  margin-top: 26px;
  font-size: 28px;
  color: var(--ink);
}

.package.featured {
  border-color: rgba(244, 183, 64, 0.55);
  background: linear-gradient(180deg, rgba(244, 183, 64, 0.16), rgba(17, 21, 29, 1));
}

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

.steps div {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--amber);
  font-weight: 900;
}

blockquote {
  margin: 0;
}

blockquote p {
  min-height: 120px;
  font-size: 18px;
}

cite {
  display: block;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  width: min(1120px, 90vw);
  justify-content: space-between;
  margin: 0 auto 80px;
  padding: 46px;
  border: 1px solid rgba(244, 183, 64, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(244, 183, 64, 0.16), transparent 52%),
    var(--panel);
}

.contact-section div {
  max-width: 650px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 44px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--ink);
  font-size: 21px;
}

.site-footer address {
  font-style: normal;
}

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

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 104px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - 104px);
  }

  .quick-proof,
  .service-grid,
  .package-grid,
  .review-grid,
  .steps,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-proof {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .section {
    padding: 76px 0;
  }

  .contact-section {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 15px;
  }

  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .hero-inner {
    width: calc(100vw - 48px);
    padding-top: 64px;
  }

  h1 {
    max-width: 100%;
    font-size: 48px;
    overflow-wrap: break-word;
  }

  .hero-lede {
    max-width: 310px;
    font-size: 16px;
  }

  .hero-actions,
  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
