* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2428;
  --muted: #5c666f;
  --brand: #1d5cff;
  --accent: #f4b740;
  --surface: #f6f7f9;
  --surface-strong: #eef1f5;
  --line: #e2e6ea;
  --shadow: rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 18px;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #0f172a;
  color: #ffffff;
}

.hero-media {
  min-height: 420px;
  position: relative;
}

.hero-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.2));
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.hero .image-frame {
  height: 100%;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 620px;
}

.hero p {
  max-width: 600px;
  color: #e2e8f0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.button.light {
  background: #ffffff;
  color: var(--ink);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  padding: 56px 0;
}

.split.section-bg {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 56px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.split.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.split.section-bg > * {
  position: relative;
  z-index: 1;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1400&q=80");
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.split-text p {
  color: var(--muted);
}

.split-media {
  flex: 1;
  min-height: 320px;
}

.image-frame {
  width: 100%;
  height: 100%;
  background-color: var(--surface-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 36px var(--shadow);
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--line);
}

.metric span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  margin-top: 40px;
  padding: 36px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 16px 32px var(--shadow);
  font-weight: 700;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px var(--shadow);
  border-radius: 16px;
  padding: 18px;
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.section-divider {
  border-top: 1px solid var(--line);
  margin: 20px 0 0;
}

.simple-hero {
  padding: 36px 0 18px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
}

.inline-note {
  padding: 12px 14px;
  border-left: 3px solid var(--brand);
  background: #eef2ff;
  color: var(--ink);
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 240px;
}

.reference-list a {
  display: block;
}

@media (max-width: 920px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-content {
    position: static;
    padding: 32px;
  }

  .hero-media {
    min-height: 260px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
