* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1e1f22;
  --muted: #5f6368;
  --brand: #2331c4;
  --accent: #f7b500;
  --soft: #f6f4f1;
  --dark: #111214;
  --light: #ffffff;
  --border: #e6e0da;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.hero {
  padding: 90px 0 70px;
  background: linear-gradient(120deg, rgba(16, 18, 27, 0.85), rgba(35, 49, 196, 0.4)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  max-width: 560px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--light);
}

.inline-cta {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand);
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  background: var(--dark);
  color: var(--light);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
}

.section-dark p {
  color: #d7d9dd;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.card img {
  border-radius: 14px;
}

.card h3 {
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(35, 49, 196, 0.1);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.section-dark .quote {
  color: var(--light);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.form-wrap {
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--brand);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  color: var(--light);
  font-weight: 600;
}

.site-footer {
  padding: 40px 0;
  background: #0f0f11;
  color: #dadde2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing-grid,
  .stats {
    flex-direction: row;
  }

  .card,
  .stat {
    flex: 1;
  }
}
