:root {
  --ink: #1e1f24;
  --muted: #5c606b;
  --accent: #4b4cf3;
  --accent-dark: #3b3bd6;
  --bg: #f5f6f8;
  --warm: #f2ebe3;
  --cool: #e8eef8;
  --stone: #e7e2dd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 6vw 18px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tag {
  color: var(--muted);
  max-width: 260px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--warm);
  padding: 8px 12px;
  border-radius: 999px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
  padding: 80px 6vw 60px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  inset: 0;
  background: rgba(23, 26, 34, 0.55);
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--bg);
}

.section.warm {
  background: var(--warm);
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-media {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.img-frame {
  background-color: #d7dce5;
  padding: 10px;
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
}

.media-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.offset-card.highlight {
  margin-top: -24px;
  background: var(--cool);
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.callout {
  background: var(--stone);
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  background: #111827;
  color: #ffffff;
}

.form-box {
  background: #ffffff;
  color: var(--ink);
  padding: 26px;
  border-radius: 22px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2d6dd;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.site-footer {
  background: #0f172a;
  color: #ffffff;
  padding: 50px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 18px;
  display: none;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-actions .reject {
  background: #e0e4ea;
  color: var(--ink);
}

.legal-hero {
  background: var(--cool);
  padding: 60px 6vw;
}

.legal-content {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-box {
  background: var(--warm);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero {
  background: #0f172a;
  color: #ffffff;
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.highlight-box {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-row {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
