* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5a616d;
  --accent: #1f6feb;
  --accent-2: #0b4d8f;
  --sand: #f5f2ee;
  --mist: #eef3f7;
  --warm: #f7efe5;
  --shadow: 0 16px 40px rgba(9, 14, 29, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1200px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #fff;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6% 70px;
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.hero .hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero .hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.section {
  padding: 70px 6%;
}

.section-alt {
  background: var(--sand);
}

.section-warm {
  background: var(--warm);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.asymmetric {
  gap: 40px;
}

.split .panel {
  flex: 1;
}

.pull-card {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-20px);
}

.offset-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.floating-note {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-top: -24px;
  max-width: 340px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icon-row .icon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.card h4 {
  margin-bottom: 8px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.pricing-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5e8ee;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-2);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.step span {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4dae3;
  font-size: 1rem;
  font-family: inherit;
}

.form-grid button {
  align-self: flex-start;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 5;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e2e8f0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d8dde6;
  font-size: 0.85rem;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero .hero-media img {
    height: 420px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing-grid,
  .steps {
    flex-direction: row;
  }

  .card,
  .pricing-item,
  .step {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid .field {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
