* {
  box-sizing: border-box;
}

:root {
  --bg: #0d1116;
  --ink: #eef2f7;
  --muted: #b7c0cc;
  --accent: #4fd1c5;
  --accent-2: #7c83ff;
  --panel: #141b24;
  --panel-2: #1a2431;
  --warm: #2b3748;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4%;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 17, 22, 0.85), rgba(13, 17, 22, 0.3));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  align-items: flex-end;
}

.hero-copy {
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #041014;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--accent-2);
}

.section {
  padding: 70px 0;
}

.section.asym {
  display: flex;
  gap: 36px;
  align-items: center;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section-block {
  flex: 1;
}

.offset-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  position: relative;
}

.offset-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -18px;
  top: 18px;
  background: var(--panel-2);
  border-radius: 16px;
  z-index: -1;
}

.img-frame {
  background-color: #1d2633;
  padding: 8px;
  border-radius: 18px;
}

.img-frame img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  object-fit: cover;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  background: var(--panel-2);
  padding: 20px;
  border-radius: 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background-color: #1c2634;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card button {
  align-self: flex-start;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  padding: 12px 16px;
  background: var(--warm);
  border-radius: 999px;
  font-size: 0.95rem;
}

.form-wrap {
  background: var(--panel);
  padding: 30px;
  border-radius: 18px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.form-wrap form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #243142;
  background: #0f151d;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--accent-2);
  color: #090c12;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 50px 0 70px;
  background: #0a0f14;
}

.footer .footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer small {
  color: var(--muted);
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 70px 0;
  background: var(--panel-2);
}

.page-hero .container {
  display: flex;
  gap: 28px;
  align-items: center;
}

.page-hero img {
  width: 380px;
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  background: var(--panel);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-item span {
  font-weight: 600;
}

.contact-card {
  background: var(--panel);
  padding: 22px;
  border-radius: 16px;
  max-width: 520px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #0f151d;
  border: 1px solid #243142;
  padding: 16px;
  border-radius: 12px;
  display: none;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero-inner,
  .section.asym,
  .form-wrap,
  .page-hero .container {
    flex-direction: column;
  }

  .nav-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero img {
    width: 100%;
  }
}
