* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5b5a57;
  --sand: #f4f0ea;
  --cream: #f9f6f2;
  --stone: #ded8cf;
  --accent: #1f5b88;
  --accent-soft: #e3edf5;
  --dark: #141414;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--stone);
  background: var(--sand);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.brand-name {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 64px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-box {
  border-radius: 18px;
  overflow: hidden;
  background: var(--stone);
  min-height: 260px;
}

.section-title {
  font-size: 2.2rem;
  margin: 0;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  gap: 8px;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.card-media {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--stone);
  flex: 0 0 auto;
}

.card-content h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-band {
  background: var(--dark);
  color: #fff;
}

.section-band .section-subtitle,
.section-band a {
  color: #d9d6d0;
}

.section-band .btn.outline {
  border-color: #fff;
  color: #fff;
}

.background-panel {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.bg-index-trust {
  background-image: url("https://images.unsplash.com/photo-1668536618600-754ef972b9b3?w=1400&q=80");
}

.bg-about-values {
  background-image: url("https://images.unsplash.com/photo-1668537338628-85b9970bf17f?w=1400&q=80");
}

.background-panel p {
  margin: 0;
  max-width: 360px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--stone);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc8bf;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 40px 0 80px;
  background: var(--sand);
  border-top: 1px solid var(--stone);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-note {
  color: var(--muted);
  max-width: 420px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.cookie-banner.visible {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ece7df;
  color: var(--ink);
}

.page-hero {
  padding: 56px 0 24px;
}

.legal-content {
  padding: 24px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
