:root {
  --bg: #0f1114;
  --panel: #171b21;
  --surface: #1f2530;
  --text: #f3f5f7;
  --muted: #b9c1cc;
  --accent: #ffb84d;
  --accent-2: #7fd1ae;
  --stroke: #2a3240;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 24px 0 80px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.ad-label {
  background: rgba(255, 184, 77, 0.15);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 184, 77, 0.35);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split .media {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #222a35;
  border: 1px solid var(--stroke);
}

.hero {
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 184, 77, 0.12), transparent 55%),
    #12161c;
  padding: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1410;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(255, 184, 77, 0.3);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(127, 209, 174, 0.15);
  color: var(--accent-2);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
}

.split-panel {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.panel {
  flex: 1;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--stroke);
}

.panel h3 {
  margin-top: 0;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.highlight-section {
  position: relative;
  padding: 56px 0;
}

.highlight-bg {
  background: url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?w=1400&q=80")
    center/cover no-repeat;
  background-color: #222831;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--stroke);
}

.highlight-bg .panel {
  background: rgba(15, 17, 20, 0.85);
}

.form-section {
  background: #12171f;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #0e1218;
  color: var(--text);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #0d1b13;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(127, 209, 174, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #151b23;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.two-column {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.info-block {
  flex: 1;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 20px;
}

.inline-cta {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

@media (max-width: 940px) {
  .split,
  .split-panel,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
