* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f2a;
  --muted: #5c6470;
  --accent: #ff7a18;
  --accent-dark: #d95a00;
  --bg: #f6f3ef;
  --bg-deep: #0f172a;
  --panel: #ffffff;
  --line: #e5e1db;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  padding: 40px 0 10px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.panel {
  background: var(--panel);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.metric span {
  font-weight: 700;
  color: var(--ink);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fffdfb;
}

.card img {
  border-radius: 14px;
}

.badge {
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-option input {
  accent-color: var(--accent-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 20;
  background: var(--bg-deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  background: #efe9e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  padding: 16px;
  display: none;
  z-index: 25;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.section-muted {
  background: #f1ece6;
  padding: 32px 0;
}

.section-dark {
  background: var(--bg-deep);
  color: #fff;
  padding: 32px 0;
}

.section-dark p {
  color: #d3d8e5;
}

.section-dark .btn.secondary {
  border-color: #485067;
  color: #fff;
}

.bg-hero {
  background: radial-gradient(circle at top, #fff2e0 0%, #f6f3ef 55%, #efe9e1 100%);
}

.bg-contrast {
  background: #fff7f0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split > * {
    flex: 1;
  }

  .card-row,
  .pricing-grid,
  .testimonials,
  .service-picker,
  .contact-grid {
    flex-direction: row;
  }

  .card,
  .price-card,
  .testimonial,
  .service-option,
  .contact-card {
    flex: 1;
  }
}
