* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --ink: #1b1f23;
  --muted: #5b6670;
  --accent: #0e6cff;
  --accent-dark: #0a4fb8;
  --surface: #ffffff;
  --surface-alt: #eef2f6;
  --line: #d9dee4;
  --warm: #fff3d6;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 5vw 12px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  font-weight: 600;
}

.cta-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

.cta-pill:hover {
  background: var(--accent-dark);
  color: #fff;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 5vw;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  color: #e2e8f0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ghost-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.ghost-btn:hover {
  background: #fff;
  color: var(--ink);
}

.section {
  padding: 70px 5vw;
}

.section-alt {
  background: var(--surface);
}

.section-warm {
  background: var(--warm);
}

.section-image-bg {
  background-image: linear-gradient(
      rgba(247, 246, 242, 0.92),
      rgba(247, 246, 242, 0.92)
    ),
    url("https://images.unsplash.com/photo-1526378722484-bd91ca387e72?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-img {
  height: 180px;
  background: #dfe7ef;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.img-frame {
  background: #dfe7ef;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.img-frame.tall {
  height: 360px;
}

.img-frame.wide {
  height: 260px;
}

.form-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 14px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

footer {
  margin-top: auto;
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 5vw;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #e2e8f0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.legal-block {
  padding: 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.compact-hero {
  padding: 60px 5vw;
  background: var(--surface-alt);
}

.compact-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.inline-image-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.inline-image-row .img-frame {
  flex: 1 1 260px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
