@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #0b1c2c;
  --muted: #4a5b6b;
  --accent: #1d6fff;
  --accent-dark: #0f4fb6;
  --paper: #f5f7fb;
  --soft: #e6ecf3;
  --warm: #f1eee8;
  --pebble: #cbd6e2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 10px;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  background: var(--warm);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  position: relative;
  padding: 60px 0 30px;
}

.hero-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  padding: 20px 10px 40px 0;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-media {
  flex: 0.9;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.media {
  background-color: var(--pebble);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 30, 45, 0.15);
}

.media.hero-img {
  width: 100%;
  height: 420px;
}

.media.card-img {
  width: 100%;
  height: 320px;
}

.media.card-img-small {
  width: 100%;
  height: 260px;
}

.media.card-img-medium {
  width: 100%;
  height: 300px;
}

.media.card-img-tall {
  width: 100%;
  height: 360px;
}

.media.section-bg {
  width: 100%;
  height: 240px;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 30, 45, 0.12);
  max-width: 260px;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--paper);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.split.reverse .visual {
  justify-content: flex-end;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 30, 45, 0.08);
  flex: 1 1 240px;
  min-width: 220px;
}

.card h3 {
  margin-top: 0;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
  margin: 12px 0;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--soft);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offset-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(15, 30, 45, 0.1);
  margin-left: 40px;
}

.offset-block.tight {
  margin-left: 0;
  margin-right: 40px;
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 32px rgba(15, 30, 45, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--pebble);
  font-size: 15px;
  font-family: inherit;
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 60px;
  background: #0e1b29;
  color: #e2e8f0;
}

.footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #b7c3d3;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 30, 45, 0.2);
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 30, 45, 0.16);
  padding: 16px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-block {
  background: var(--paper);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 260px;
}

.legal-content {
  max-width: 760px;
}

.visual-card {
  max-width: 360px;
}

@media (max-width: 900px) {
  .hero-layout,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-card {
    position: static;
    margin-top: 20px;
  }

  .offset-block {
    margin: 0;
  }

  .offset-block.tight {
    margin: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
