* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --surface: #f8fafc;
  --surface-alt: #eef2ff;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --outline: #e2e8f0;
  --warm: #fff7ed;
  --shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw 12px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--outline);
  padding-bottom: 16px;
}

.ad-label {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 440px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 24px 6vw 48px;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #dbeafe;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #e2e8f0;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.bg-feature {
  background-image: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.section.bg-feature .badge {
  background: rgba(15, 23, 42, 0.8);
  color: #e2e8f0;
}

.section.bg-feature .split-text {
  background: rgba(15, 23, 42, 0.72);
  padding: 24px;
  border-radius: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #e0e7ff;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 18px;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-content {
  padding: 0 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-alt);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--outline);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 1rem;
}

.inline-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
}

footer {
  padding: 32px 6vw 48px;
  background: #0f172a;
  color: #e2e8f0;
}

footer a {
  color: #bfdbfe;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #e5e7eb;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e2e8f0;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  background: #ecfeff;
  border-left: 4px solid #06b6d4;
  padding: 14px 18px;
  border-radius: 12px;
}
