* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0d1b2a;
  --muted: #4b5d6b;
  --accent: #ff7a59;
  --accent-dark: #e3603d;
  --soft: #f2f5f8;
  --soft-2: #e8eef4;
  --line: #d7e1ea;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.cta-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.ghost-button {
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 90px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 6%;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .text h1,
.split .text h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.split .text p {
  color: var(--muted);
}

.split .media {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split .tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.3px;
  color: var(--accent);
  font-weight: 600;
}

.panel {
  background: var(--soft);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel strong {
  font-size: 1.2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row .card {
  border-left: 4px solid var(--accent);
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-select button {
  text-align: left;
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.service-select button.active {
  border-color: var(--accent);
  background: #fff4f0;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  background: #fff;
}

.footer {
  padding: 42px 6%;
  background: var(--soft-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.12);
  z-index: 20;
}

.sticky-cta span {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 34px rgba(13, 27, 42, 0.14);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner.hidden {
  display: none;
}

.page-hero {
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.15), rgba(13, 27, 42, 0.04));
  padding: 60px 6%;
  border-radius: 28px;
  margin: 0 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list li {
  margin-left: 18px;
  color: var(--muted);
}

.legal {
  padding: 20px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card-grid .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .pricing-row {
    flex-direction: row;
  }

  .pricing-row .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > * {
    flex: 1;
  }
}
