@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --ink: #1b1f24;
  --muted: #56616f;
  --accent: #0b5fff;
  --accent-2: #f4b740;
  --surface: #f5f7fa;
  --surface-2: #0f1724;
  --surface-3: #eef1f6;
  --border: #d7dde5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.topbar {
  padding: 24px 6vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--border);
}

.ad-label {
  font-size: 0.8rem;
  background: var(--surface-3);
  padding: 6px 12px;
  border-radius: 16px;
  color: var(--muted);
}

.hero {
  display: flex;
  gap: 32px;
  padding: 24px 6vw 60px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.hero-image {
  flex: 1.2;
  position: relative;
  background: #cdd6e3;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-panel {
  margin: -40px 0 0 auto;
  background: var(--surface-2);
  color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  width: min(420px, 90%);
  position: relative;
  z-index: 2;
}

.section {
  padding: 60px 6vw;
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: var(--surface-2);
  color: #ffffff;
}

.section.dark p {
  color: #cfd6e2;
}

.section .copy {
  flex: 1;
}

.section .media {
  flex: 1;
  background: #d8dee7;
  border-radius: 18px;
  overflow: hidden;
}

.section .media img {
  width: 100%;
  height: 320px;
}

.overlap-band {
  display: flex;
  gap: 24px;
  padding: 0 6vw 60px;
  margin-top: -30px;
}

.overlap-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(15, 23, 36, 0.08);
}

.overlap-card img {
  border-radius: 16px;
  height: 180px;
  width: 100%;
  margin-bottom: 16px;
  background: #dce3ee;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
}

.pricing-item strong {
  display: block;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 32px rgba(15, 23, 36, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.split {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.split .column {
  flex: 1;
}

.cta-band {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-band span {
  font-weight: 600;
}

.info-panel {
  background: #d8dee7;
  border-radius: 18px;
  padding: 22px;
  flex: 1;
}

.info-panel.light {
  background: #eef1f6;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-2);
  color: #1b1f24;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(18, 22, 28, 0.2);
  z-index: 5;
}

.footer {
  padding: 40px 6vw;
  background: var(--surface-3);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  width: min(360px, 90vw);
  box-shadow: 0 18px 28px rgba(15, 23, 36, 0.2);
  z-index: 6;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.hero-bg {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
}

.hero-bg .hero-copy {
  color: #ffffff;
}

.hero-bg .hero-copy p {
  color: #e2e8f3;
}

.hero-bg .btn.secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-bg .btn.secondary:hover {
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .hero,
  .section,
  .split,
  .overlap-band {
    flex-direction: column;
  }

  .hero-image img {
    height: 320px;
  }

  .offset-panel {
    margin: 0;
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
