:root {
  color-scheme: light;
  --ink: #111217;
  --muted: #5a606b;
  --accent: #2f6bff;
  --accent-strong: #1440b8;
  --surface: #f5f6f9;
  --surface-alt: #e9edf5;
  --warm: #f7efe7;
  --line: #d7dbe4;
  --shadow: 0 18px 45px rgba(17, 18, 23, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --spacing: clamp(24px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--line);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav a.cta-link {
  color: #fff;
  background: var(--accent);
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
}

.sidebar-note {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header.hero {
  padding: var(--spacing);
  background: linear-gradient(140deg, #f7f9ff, #edf1ff);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}

.section {
  padding: var(--spacing);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > div {
  flex: 1 1 260px;
}

.highlight {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card img {
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent-strong);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.service-option input {
  margin: 0;
}

.service-option.active {
  border-color: var(--accent);
  background: #f0f5ff;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-strong);
}

footer {
  padding: 24px var(--spacing) 32px;
  background: #0d1020;
  color: #d7dbe4;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

footer a {
  color: #d7dbe4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent-strong);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sticky-cta {
    right: 16px;
    bottom: 18px;
  }
}
