@font-face {
  font-family: "InterVar";
  src: local("Inter"), local("Inter-Regular");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a5f69;
  --accent: #6b3df4;
  --accent-2: #ff6b4a;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --shadow: 0 20px 40px rgba(20, 23, 28, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterVar", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.nav-split {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-split a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-split a:hover {
  border-color: var(--accent);
}

.hero-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-rail h1 {
  font-size: 2rem;
  margin: 0;
}

.hero-rail p {
  color: var(--muted);
  margin: 0;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(107, 61, 244, 0.24);
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #efeaf9;
}

.section.dark {
  background: #0f1116;
  color: #f8f8f8;
}

.section.dark a {
  color: #f8f8f8;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 61, 244, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
}

.signal-board {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.signal-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.signal-card strong {
  font-size: 1.1rem;
}

.quote {
  border-left: 4px solid var(--accent-2);
  padding-left: 18px;
  font-style: italic;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 18px;
  height: 210px;
  object-fit: cover;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.price-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border-radius: 14px;
  border: 1px solid #d9d8e6;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: var(--accent-2);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(255, 107, 74, 0.3);
}

.footer {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #151821;
  color: white;
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
}

.cookie-actions .reject {
  background: #2c2f3a;
  color: white;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.contact-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy h2 {
  margin: 0;
}

.policy p {
  margin: 0;
  color: var(--muted);
}

.page-title {
  font-size: 2.1rem;
  margin: 0;
}

.top-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.top-visual img {
  border-radius: 18px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.split-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.split-nav .nav-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.table-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.table-row .price {
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 900px) {
  .site-header {
    padding: 36px 8vw 0;
  }

  .hero-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
  }

  .hero-rail {
    flex: 0 0 44%;
  }

  .hero-image {
    flex: 1;
  }

  .section {
    padding: 80px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip img {
    flex: 1;
  }

  .signal-board {
    flex-direction: row;
  }

  .signal-card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .timeline-item {
    gap: 18px;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .top-visual {
    flex-direction: row;
    align-items: center;
  }
}
