* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b2430;
  --muted: #5c6b7a;
  --accent: #2e6ff2;
  --accent-dark: #1f4fb7;
  --wash: #f4f6fb;
  --sand: #f7f2ea;
  --pebble: #e5e9f2;
  --sea: #d9f0ff;
  --shadow: 0 20px 50px rgba(15, 32, 67, 0.12);
  --radius: 20px;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(120deg, #ffffff 10%, #fbfcff 60%, #f1f7ff 100%);
}

.sidebar {
  width: 260px;
  padding: 36px 24px;
  background: #0d1d33;
  color: #f4f7ff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.brand span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: #e1e8ff;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-card strong {
  font-size: 18px;
}

.sidebar .button {
  background: #f4f7ff;
  color: #0d1d33;
}

.content {
  flex: 1;
  padding: 40px 50px 120px 50px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-accent {
  background: var(--wash);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-soft {
  background: var(--sand);
  padding: 28px;
  border-radius: var(--radius);
}

.section-hero {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 80%;
  height: 70%;
  background: var(--sea);
  border-radius: 24px;
  z-index: -1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stat span {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.two-col {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.two-col .text {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: var(--pebble);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.timeline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.timeline .step {
  flex: 1 1 200px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.profiles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.profile {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.quote {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  font-style: italic;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  gap: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3d9e5;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

.form-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.contact-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-block {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-list h2 {
  font-size: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #dfe5f1;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-left: auto;
  margin-right: 32px;
  align-self: flex-end;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 5;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner p {
  flex: 1 1 260px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 24px 120px;
  }

  .section-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    margin-right: 16px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .sidebar {
    gap: 16px;
  }

  .sticky-cta {
    width: calc(100% - 32px);
    justify-content: space-between;
  }
}
