* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #10131a;
  --muted: #5a6473;
  --accent: #2d6bff;
  --accent-soft: #dbe7ff;
  --warm: #ffb35c;
  --cool: #20c7b1;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(16, 19, 26, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid rgba(16, 19, 26, 0.08);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

main {
  flex: 1;
}

.section {
  padding: 70px 24px;
}

.section-alt {
  background: var(--panel);
}

.split-section {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-soft {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.panel-dark {
  background: #151b27;
  color: #f5f7fb;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.headline {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-warm {
  background: var(--warm);
  color: #2a1f10;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.image-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.icon-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-badge {
  height: 36px;
  width: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.split-card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  background: #f3f6ff;
}

.card.dark {
  background: #20283a;
  color: #fff;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border-radius: 20px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(16, 19, 26, 0.08);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 10px 0;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 19, 26, 0.15);
  font-size: 1rem;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-choice label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f3f5fb;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff6e7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.sticky-cta p {
  margin-bottom: 12px;
}

.footer {
  background: #0f1522;
  color: #cbd3e1;
  padding: 40px 24px 60px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #151b27;
  color: #f3f6ff;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--cool);
  color: #05221d;
}

.cookie-reject {
  background: #2b3145;
  color: #f3f6ff;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-background {
  background: linear-gradient(115deg, #d9e4ff 0%, #ffffff 45%, #f8efe0 100%);
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-top {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-card-grid,
  .pricing-grid {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .icon-row {
    flex-direction: row;
  }
}
