*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b23;
  --muted: #5c5c70;
  --accent: #3b4ed9;
  --accent-dark: #2b36a6;
  --rose: #f2d4dc;
  --mist: #eef1f7;
  --sand: #f6efe8;
  --sun: #f9cf6b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 16, 24, 0.12);
  --radius: 24px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  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;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 16px;
  gap: 18px;
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10vh 8vw 8vh;
  background: linear-gradient(120deg, var(--mist), var(--white));
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 8vh 8vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

.accent-panel {
  background: var(--rose);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
  margin: 0;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 6vh 8vw;
  background: var(--accent);
  color: var(--white);
}

.cta-strip .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.form-section {
  padding: 8vh 8vw 10vh;
  background: var(--sand);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d9e6;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 6vh 8vw;
  background: #12131a;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sidebar-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8vh 8vw;
}

.offset-block {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions .btn {
  flex: 1 1 120px;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.image-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-grid img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-top {
    flex: 1 1 55%;
  }

  .hero-panel {
    flex: 1 1 40%;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .card-row {
    flex-direction: row;
  }

  .image-grid {
    flex-direction: row;
  }

  .sidebar-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .sidebar-layout .text-block {
    flex: 1 1 60%;
  }

  .sidebar-layout .offset-block {
    flex: 1 1 40%;
    margin-top: 6vh;
  }

  .cookie-banner {
    right: auto;
    max-width: 420px;
  }
}
