* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1116;
  --bg-soft: #161a22;
  --accent: #c9a46b;
  --accent-strong: #f0c98c;
  --text: #f4f1ea;
  --muted: #b3b0a9;
  --panel: #1c2230;
  --panel-light: #232a3b;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 28px 8vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text);
  opacity: 0.85;
}

main {
  flex: 1;
}

section {
  padding: 70px 8vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split > .panel {
  flex: 1;
  background: var(--panel);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.split > .visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.panel p {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 164, 107, 0.16);
  color: var(--accent-strong);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-strong);
}

.btn:hover {
  transform: translateY(-2px);
}

.highlight {
  background: var(--panel-light);
}

.numbers {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.numbers div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  color: var(--accent-strong);
  font-weight: 600;
}

.inline-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.form-panel {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  background: #0e1118;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  color: var(--text);
  border-radius: 10px;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: inline-flex;
}

.sticky-cta a {
  background: var(--accent-strong);
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  padding: 18px 20px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  z-index: 9;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

footer {
  padding: 40px 8vw 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--muted);
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .numbers {
    flex-direction: row;
  }
}
