* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --text: #1b1f23;
  --muted: #5c6b73;
  --accent: #1d4ed8;
  --accent-dark: #12348f;
  --surface: #ffffff;
  --surface-alt: #eef0f2;
  --shadow: 0 24px 60px rgba(10, 24, 38, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 50px 0 80px;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  border-radius: 34px;
  padding: 70px 0;
}

.split {
  display: flex;
  gap: 42px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split__media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: var(--surface);
  border-radius: 34px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.section--tint {
  background: var(--surface-alt);
}

.section-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-bg-1 .lead,
.section-bg-1 a {
  color: #f8fafc;
}

.section-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-bg-2 .lead,
.section-bg-2 a {
  color: #f8fafc;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 160px;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #e1e9ff;
  color: #1b3fa6;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
}

.pricing-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 240px;
  background: var(--surface);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.form-block {
  background: var(--surface);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d8df;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0f172a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: #111827;
  color: #fff;
  padding: 20px 24px;
  border-radius: 18px;
  font-weight: 600;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}
