* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #0e1116;
  --bg-soft: #151a22;
  --ink: #0f172a;
  --muted: #5b6573;
  --accent: #2563eb;
  --accent-warm: #f97316;
  --surface: #ffffff;
  --surface-alt: #f4f6fb;
  --border: #d7dce5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 6vw 1.5rem;
  background: var(--surface);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-title {
  font-size: clamp(2.3rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.alt {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.button.warm {
  background: var(--accent-warm);
}

.section {
  padding: 3.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.dark {
  background: var(--bg);
  color: #f8fafc;
}

.section.soft {
  background: var(--surface-alt);
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 0;
}

.section-lead {
  color: var(--muted);
  max-width: 60ch;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 260px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 220px;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card.dark {
  background: var(--bg-soft);
  border-color: transparent;
  color: #e2e8f0;
}

.card img {
  border-radius: 0.9rem;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.metric {
  flex: 1 1 160px;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.sticky-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.sticky-card {
  flex: 1 1 260px;
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.form-panel {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--accent);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer {
  margin-top: auto;
  background: var(--bg);
  color: #e2e8f0;
  padding: 2.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.footer small {
  color: #94a3b8;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 720px;
  width: calc(100% - 3rem);
  background: #0f172a;
  color: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-actions .button {
  padding: 0.6rem 1.2rem;
}

.cookie-actions .button.alt {
  color: #f8fafc;
  border-color: #334155;
}

.muted {
  color: var(--muted);
}

.stacked-highlight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(249, 115, 22, 0.12));
}

.notice {
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #92400e;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.service-row .details {
  flex: 2 1 320px;
}

.service-row .price-box {
  flex: 1 1 180px;
  text-align: right;
}

.service-row .button {
  margin-top: 0.75rem;
}

@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-row .price-box {
    text-align: left;
  }

  .cookie-banner {
    left: 1.5rem;
    transform: none;
  }
}
