/* Base */
:root {
  --bg: #f7f6f2;
  --ink: #1f2a2e;
  --muted: #5b6a6f;
  --accent: #2a6f62;
  --accent-dark: #1b4b43;
  --sand: #e8e1d6;
  --mist: #eaf0f1;
  --sun: #d78f3b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
  gap: 2rem;
  padding: 2rem 3rem 3rem;
}

.sidebar {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink);
}

.sticky-cta {
  background: var(--mist);
  padding: 1.2rem;
  border-radius: 18px;
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(20, 40, 45, 0.08);
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 0 0 45%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-dark);
}

.btn.light {
  background: var(--sun);
  color: var(--white);
}

.inline-cta {
  font-weight: 600;
}

.section {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  flex: 1 1 220px;
  background: var(--mist);
  padding: 1.2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card img {
  border-radius: 14px;
}

.highlight {
  background: var(--accent);
  color: var(--white);
  padding: 2rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  right: -80px;
  top: -60px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: var(--sand);
}

.pricing-item span {
  font-weight: 600;
}

.quote {
  background: var(--mist);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 16px;
}

.form-card {
  background: var(--mist);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #cfd6d9;
  font-size: 1rem;
  font-family: inherit;
}

.section-bg {
  background: linear-gradient(120deg, var(--mist), var(--white));
  position: relative;
  overflow: hidden;
}

.section-bg img {
  position: absolute;
  right: 1.5rem;
  bottom: -40px;
  width: 180px;
  opacity: 0.5;
}

.footer {
  margin: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--white);
  box-shadow: 0 18px 30px rgba(20, 40, 45, 0.18);
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
}

.page-title {
  font-size: 2.1rem;
  margin: 0 0 1rem;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
    padding: 1.5rem;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }

  .hero {
    flex-direction: column;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }
}
