* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #141616;
  --muted: #4b5563;
  --accent: #2f5cff;
  --accent-soft: #e6edff;
  --bg: #f7f7f2;
  --panel: #ffffff;
  --panel-alt: #f1f3f8;
  --warm: #fff3d6;
}

body {
  font-family: "Segoe UI", "Arial", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: var(--panel);
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid #d1d5db;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px 40px 60px;
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80")
      center/cover no-repeat,
    var(--panel);
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  border-radius: 20px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: var(--panel);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background: var(--panel-alt);
}

.section-warm {
  background: var(--warm);
}

.section-bg {
  background: url("https://images.unsplash.com/photo-1517433456452-f9633a875f6f?w=1400&q=80")
      center/cover no-repeat;
  color: #111827;
}

.section-bg .overlay {
  background: rgba(255, 255, 255, 0.93);
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.media {
  background-color: #d9dde6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e7eb;
}

.card img {
  border-radius: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  align-self: flex-start;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 200px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e5e7eb;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.form-card {
  flex: 1;
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(47, 92, 255, 0.3);
}

.footer {
  margin-top: auto;
  padding: 32px 40px;
  background: var(--panel);
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--panel);
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  padding: 64px 40px;
  background: var(--panel-alt);
  display: flex;
  gap: 24px;
  align-items: center;
}

.simple-hero .media {
  min-height: 240px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .hero-inner,
  .split,
  .form-wrap,
  .simple-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
