* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6b78;
  --accent: #2f5f6b;
  --accent-soft: #e6f0f2;
  --sand: #f6f2ee;
  --pearl: #f9fbfc;
  --line: #d9e2e8;
  --cta: #ff6b4a;
  --cta-dark: #d95338;
  --shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
  --radius: 18px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #11181d;
  color: #f6f6f6;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  color: #c7d2d9;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  color: #f6f6f6;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.content {
  flex: 1;
  padding: 32px 18px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--cta-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-panel img {
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card small {
  color: var(--muted);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: var(--radius);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 30px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #11181d;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 240px;
  border-radius: var(--radius);
}

.accent-photo {
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  min-height: 220px;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    padding: 48px 52px 100px;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
