* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1d22;
  --muted: #5b6371;
  --accent: #2a66f5;
  --accent-dark: #1c49b6;
  --surface: #f5f6f8;
  --surface-strong: #e6e9ef;
  --warm: #fff4e8;
  --bg: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  background: var(--surface);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  background: #111827;
  color: #fefefe;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  padding: 60px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  min-width: 0;
}

.panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
}

.panel.warm {
  background: var(--warm);
}

.panel.strong {
  background: var(--surface-strong);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(42, 102, 245, 0.08);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.section.bg-market {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-market .panel,
.section.bg-market .form-card {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.92);
}

.section.dark {
  background: #0f172a;
  color: #f8fafc;
}

.section.dark p {
  color: #cbd5f5;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #c9d4e6;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--ink);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
}

.service-card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  background: #d7e1f0;
}

.service-card .price {
  font-weight: 700;
  color: var(--ink);
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.footer {
  padding: 40px 0 60px;
  background: #0b1220;
  color: #e2e8f0;
}

.footer p {
  color: #cbd5f5;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer a {
  color: #a5b4fc;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #111827;
  color: #f8fafc;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.hide {
  display: none;
}

.notice {
  background: #fef3c7;
  color: #7c2d12;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
}

.no-gap {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
