:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #f97316;
  --accent-dark: #ef4444;
  --bg: #f8fafc;
  --dark: #0b1120;
  --light: #ffffff;
  --line: #e2e8f0;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 80px 8% 60px;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.45)), url("assets/hero.svg");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin: 0;
}

.hero p {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border-color: rgba(248, 250, 252, 0.6);
  color: #f8fafc;
}

.btn-dark {
  background: var(--dark);
  color: #f8fafc;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--light);
}

.section.dark {
  background: var(--dark);
  color: #f8fafc;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.card.dark {
  background: #111827;
  color: #f8fafc;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  margin: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.form-card {
  background: var(--light);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 8% 60px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.highlight {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0));
  padding: 10px 14px;
  border-radius: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  padding: 14px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 10;
}

.sticky-cta a {
  color: #f8fafc;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #0f172a;
  color: #f8fafc;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.policy-box {
  background: var(--light);
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
