* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2833;
  background: #f5f3ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  background: #101820;
  color: #f8f6f1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  background: #f6b042;
  color: #101820;
  padding: 12px 16px;
  border-radius: 24px;
  text-align: center;
  font-weight: 600;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 48px 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
  padding: 36px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 600;
  background: #2a5f87;
  color: #ffffff;
}

.button.alt {
  background: transparent;
  border: 1px solid #2a5f87;
  color: #2a5f87;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: column-reverse;
}

.section-split .text {
  flex: 1;
}

.section-split .visual {
  flex: 1;
  min-width: 240px;
}

.panel {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel.dark {
  background: #1f2833;
  color: #f8f6f1;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2a5f87;
}

.quote {
  font-style: italic;
  border-left: 3px solid #f6b042;
  padding-left: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4dc;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.inline-cta {
  font-weight: 600;
  color: #2a5f87;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-end;
  background: #f6b042;
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.footer {
  padding: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #101820;
  color: #f8f6f1;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f6b042;
  color: #101820;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #f6b042;
  color: #f6b042;
}

.hidden {
  display: none;
}

.simple-page {
  background: #ffffff;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .section-split {
    flex-direction: row;
    align-items: stretch;
  }

  .section-split.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-text {
    flex: 1;
  }

  .hero .hero-visual {
    flex: 1;
  }

  .list-columns {
    flex-direction: row;
  }
}
