:root {
  --bg: #07080b;
  --bg-soft: #0d0f14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f8fb;
  --muted: #a8adba;
  --muted-strong: #c9ced8;
  --blue: #4ea1ff;
  --violet: #8b5cf6;
  --green: #46d39a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(78, 161, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 2%, rgba(139, 92, 246, 0.16), transparent 24rem),
    linear-gradient(180deg, #07080b 0%, #0b0d12 48%, #07080b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 8, 11, 0.72);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--text), #b9d7ff);
  color: #07080b;
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.header-cta {
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  transition: 180ms ease;
}

.main-nav a {
  padding: 10px 13px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.header-cta {
  padding: 10px 16px;
  background: var(--text);
  color: #08090d;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(78, 161, 255, 0.24);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 82px);
  padding-top: 64px;
}

.eyebrow {
  display: none;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 19px;
}

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

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 520px);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hero-actions .btn {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #cfe6ff);
  color: #07080b;
  box-shadow: 0 18px 42px rgba(78, 161, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(78, 161, 255, 0.32);
}

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

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.audience-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 12% -6% -8% 10%;
  z-index: -1;
  content: "";
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(78, 161, 255, 0.28), rgba(139, 92, 246, 0.2));
  filter: blur(24px);
}

.mockup {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(15, 18, 26, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mockup-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.mockup-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 430px;
}

.mockup-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.mockup-sidebar span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.mockup-sidebar .sidebar-logo {
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.mockup-main {
  padding: 26px;
}

.mockup-heading,
.business-card,
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mockup-heading small,
.mockup-card small,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.mockup-heading strong {
  display: block;
  margin-top: 6px;
  font-size: 21px;
}

.status-pill {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(70, 211, 154, 0.14);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.metric-grid div,
.mockup-card,
.map-card,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.metric-grid div {
  padding: 16px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.035);
}

.chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--blue), var(--violet));
}

.mockup-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
}

.map-pin {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 4px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  transform: rotate(-45deg);
}

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

.problem-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.problem-card,
.service-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.problem-card {
  padding: 22px;
  color: var(--muted-strong);
  font-weight: 700;
  line-height: 1.5;
}

.service-card,
.process-step {
  padding: 26px;
}

.problem-card:hover,
.service-card:hover,
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 161, 255, 0.45);
  background: var(--panel-strong);
}

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

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(78, 161, 255, 0.24);
  border-radius: 8px;
  background: rgba(78, 161, 255, 0.1);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p,
.process-step p {
  margin-bottom: 0;
}

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

.process-step {
  position: relative;
  overflow: hidden;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 44px;
  font-weight: 800;
}

.process-step::after {
  position: absolute;
  top: 34px;
  right: 22px;
  width: 44px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), transparent);
}

.maps-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(70, 211, 154, 0.13);
  color: var(--green);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.map-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-preview {
  position: relative;
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(135deg, rgba(78, 161, 255, 0.2), rgba(255, 255, 255, 0.035));
}

.map-preview::before,
.map-preview::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.map-preview::before {
  top: 44%;
  left: -6%;
  width: 112%;
  height: 28px;
  transform: rotate(-10deg);
}

.map-preview::after {
  top: -6%;
  left: 58%;
  width: 28px;
  height: 112%;
  transform: rotate(18deg);
}

.pin {
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50% 50% 50% 3px;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
  transform: rotate(-45deg);
}

.pin-a {
  top: 34%;
  left: 27%;
}

.pin-b {
  top: 58%;
  left: 64%;
  background: var(--violet);
}

.pin-c {
  top: 22%;
  left: 72%;
  background: var(--green);
}

.business-card {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.business-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: #f7f8fb;
  color: #07080b;
  font-weight: 900;
}

.business-card p {
  margin-bottom: 0;
  line-height: 1.5;
}

.rating-row {
  justify-content: flex-start;
  padding: 18px 20px;
}

.rating-row span:first-child {
  font-size: 24px;
  font-weight: 900;
}

.stars {
  color: #ffd166;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tags span {
  padding: 13px 16px;
}

.cta-section {
  justify-content: space-between;
  padding: 46px;
  border: 1px solid rgba(78, 161, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(78, 161, 255, 0.16), rgba(139, 92, 246, 0.1)),
    rgba(255, 255, 255, 0.05);
}

.cta-section div {
  max-width: 760px;
}

.cta-section h2 {
  margin-bottom: 14px;
}

.cta-section p {
  margin-bottom: 0;
}

.contact-section {
  align-items: start;
}

.contact-note {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 28px;
  padding: 20px;
}

.contact-note span {
  color: var(--muted);
}

.contact-note a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

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

.contact-form span {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(78, 161, 255, 0.72);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 0 4px rgba(78, 161, 255, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 12px 0 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.site-footer > a {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.site-footer > a:hover {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 18px;
  }

  .main-nav {
    display: none;
  }

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

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

  .hero-visual {
    max-width: 680px;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .header-cta {
    display: none;
  }

  .section {
    width: calc(100% - 24px);
    padding: 72px 0;
  }

  h1 {
    font-size: 41px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .btn,
  .cta-section .btn {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .mockup-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-main {
    padding: 18px;
  }

  .metric-grid,
  .problem-grid,
  .services-grid,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .chart {
    height: 130px;
    gap: 8px;
  }

  .maps-section {
    gap: 34px;
  }

  .map-preview {
    min-height: 240px;
  }

  .business-card,
  .rating-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-section {
    padding: 28px;
  }

  .contact-form {
    padding: 18px;
  }

  .footer-links {
    flex-direction: column;
  }
}
