* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5b6672;
  --accent: #d9462f;
  --accent-dark: #b43826;
  --sand: #f4efe8;
  --steel: #1d2833;
  --light: #ffffff;
  --highlight: #fbe8c7;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 32px 20px 10px;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.brand strong {
  font-size: 26px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 20px 60px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero h1 {
  font-size: 36px;
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: var(--light);
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.secondary-btn {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--steel);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section {
  padding: 60px 20px;
}

.section.alt {
  background: var(--sand);
}

.section.highlight {
  background: var(--highlight);
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .card {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  font-size: 26px;
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats .stat {
  background: var(--light);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.storyline .story-card {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-item span {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(16, 20, 24, 0.08);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing .price-card {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(16, 20, 24, 0.08);
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--steel);
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.form-section {
  background: var(--steel);
  color: var(--light);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  padding: 40px 20px 60px;
  background: #0f141a;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--light);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(16, 20, 24, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--steel);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.cookie-btn.accept {
  background: var(--steel);
  color: var(--light);
}

.page-hero {
  padding: 50px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-page {
  padding: 30px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-page ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: var(--light);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(16, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .split {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .price-card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
  }

  .service-item {
    flex: 1;
  }
}
