* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e25;
  --muted: #5d6575;
  --accent: #2d6a72;
  --accent-soft: #dce8ea;
  --paper: #f7f4ef;
  --sand: #efe7dd;
  --navy: #2a3246;
  --fog: #eef1f4;
  --border: #d9dee6;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button,
select,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--navy);
  color: #fefefe;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.ad-label {
  font-size: 0.78rem;
  color: #f1f3f7;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-toggle {
  display: none;
  background: #ffffff;
  color: var(--navy);
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar nav a {
  color: #fefefe;
  font-size: 0.95rem;
}

.sidebar .cta {
  margin-top: auto;
  background: #ffffff;
  color: var(--navy);
  border: none;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 30px 40px 80px;
}

.section {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(27, 30, 37, 0.08);
}

.section.tight {
  padding: 22px;
  background: var(--fog);
}

.section.split {
  background: var(--sand);
}

.section.full {
  flex-direction: column;
}

.section .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero {
  background: var(--navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero .text {
  gap: 16px;
}

.hero h1 {
  font-size: 2.4rem;
}

.hero .hero-image {
  flex: 1;
  background-color: #243149;
  border-radius: 18px;
  overflow: hidden;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 220px;
}

.card .img-wrap {
  background: #d6dbe4;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 14px;
  font-style: italic;
}

.form-block {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.form-block button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(45, 106, 114, 0.3);
}

.image-panel {
  flex: 1;
  background: #dfe5ea;
  border-radius: 18px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.legal {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  display: none;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(27, 30, 37, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--fog);
  color: var(--ink);
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.note {
  background: var(--accent-soft);
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--navy);
}

@media (max-width: 980px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .sidebar nav {
    width: 100%;
    display: none;
  }

  .sidebar.nav-open nav {
    display: flex;
  }

  .content {
    padding: 24px;
  }

  .section {
    flex-direction: column;
  }
}
