* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f3;
  --ink: #1d1f23;
  --muted: #5a616b;
  --accent: #1f5eff;
  --accent-dark: #1847bd;
  --surface: #ffffff;
  --sand: #efe8dc;
  --stone: #e6e9ee;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--stone);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 64px 0 80px;
  background: linear-gradient(120deg, rgba(31, 94, 255, 0.08), rgba(255, 255, 255, 0));
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button:hover {
  background: var(--accent-dark);
}

.button-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--surface);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.section.bg-app {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.section.bg-app::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 39, 0.55);
}

.section.bg-app .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.media-box {
  background-color: #dfe7f6;
  border-radius: 20px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight {
  background: #ffffff;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd5e0;
  font-size: 1rem;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 70px;
  background: #101522;
  color: #e8eef7;
}

.footer a {
  color: #e8eef7;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 999px;
}

.sticky-cta a:hover {
  background: #1f2937;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 680px;
  width: min(92vw, 680px);
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--stone);
  border-radius: 999px;
  font-size: 0.85rem;
}

.split-note {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-26 {
  margin-top: 26px;
}
