@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f23;
  --muted: #5f6368;
  --accent: #e05f4f;
  --accent-dark: #b3463b;
  --sand: #f7f3ef;
  --fog: #eef1f5;
  --night: #161616;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #fff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 96px 6vw 72px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 620px;
}

.hero p {
  max-width: 520px;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.muted {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.dark {
  background: #242428;
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  color: var(--accent);
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 230px;
  border-radius: 18px;
  padding: 24px;
  background: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-box {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8dce1;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(224, 95, 79, 0.35);
  z-index: 10;
}

.footer {
  padding: 40px 6vw;
  background: var(--night);
  color: #cfcfd6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #cfcfd6;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.callout {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  background: rgba(224, 95, 79, 0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
}

.float-panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.hero .float-panel {
  max-width: 320px;
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .contact-grid {
    flex-direction: row;
    gap: 40px;
  }
}
