* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0e1116;
  --muted: #5b6471;
  --accent: #4e5eff;
  --accent-dark: #313dcc;
  --surface: #f5f6fb;
  --surface-dark: #0f1422;
  --soft: #e6e9f5;
  --warm: #fff4e9;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-nav {
  padding: 28px 0 16px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(20, 30, 80, 0.25);
  z-index: 20;
}

.hero {
  padding: 48px 0 64px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero-highlight {
  display: inline-block;
  background: var(--warm);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--soft);
  background: #fff;
}

.section {
  padding: 64px 0;
}

.section.slate {
  background: var(--surface);
}

.section.dark {
  background: var(--surface-dark);
  color: #f6f7fb;
}

.section.warm {
  background: var(--warm);
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stacked-story {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tagline {
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(15, 20, 34, 0.08);
}

.card img {
  border-radius: 14px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--soft);
  padding-left: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--soft);
  font-size: 0.9rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 16px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(15, 20, 34, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 20, 34, 0.2);
  display: none;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--soft);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--soft);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-image-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.hero-image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.1), rgba(5, 8, 16, 0.55));
}

.hero-image-card .overlay-text {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  font-weight: 600;
}

.section-divider {
  height: 1px;
  background: var(--soft);
  margin: 0 auto;
  width: min(1200px, 92vw);
}

@media (min-width: 768px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing-grid {
    flex-direction: row;
  }

  .card,
  .price-card,
  .testimonial {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
