* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1d24;
  --muted: #5f5a6b;
  --accent: #2b6cb0;
  --accent-soft: #d9e8f7;
  --peach: #ffe5d1;
  --sage: #e1efe6;
  --sun: #f9f0c2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(24, 24, 35, 0.14);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 18px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
  border-radius: 24px;
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
}

.hero-cta .link-cta {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 18px 24px;
}

.offset-panel {
  background: var(--peach);
  padding: 20px;
  border-radius: 20px;
}

.offset-panel.alt {
  background: var(--sage);
}

.offset-panel h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin-bottom: 10px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 18px;
  background: var(--sun);
}

.split-block .split-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
}

.floating-image {
  margin: 0 18px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 18px 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 14px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 18px 32px;
  background: #f4f6fb;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7dbe6;
  font-size: 1rem;
}

.form-card button {
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #1f2937;
  color: var(--white);
}

.cta-strip a {
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: #1f2937;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 18px 40px;
  background: #11141c;
  color: var(--white);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 6;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--white);
  padding: 14px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: #e6e6ee;
}

.content-wrap {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-wrap h1,
.content-wrap h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-block li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.legal {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px 60px 0;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    padding: 32px 60px;
  }

  .hero-card {
    width: 55%;
  }

  .hero-visual {
    width: 45%;
    display: flex;
    justify-content: center;
  }

  .offset-section {
    flex-direction: row;
    padding: 20px 60px 30px;
  }

  .offset-panel {
    width: 55%;
  }

  .offset-panel.alt {
    width: 40%;
    margin-top: 40px;
  }

  .split-block {
    flex-direction: row;
    padding: 30px 60px;
  }

  .split-block .split-item {
    width: 33%;
  }

  .floating-image {
    margin: 0 60px;
  }

  .services-preview {
    flex-direction: row;
    padding: 10px 60px 30px;
  }

  .service-card {
    width: 33%;
  }

  .form-section {
    flex-direction: row;
    padding: 30px 60px 50px;
  }

  .form-card {
    width: 55%;
  }

  .form-aside {
    width: 40%;
    align-self: center;
  }

  .testimonials {
    flex-direction: row;
    padding: 28px 60px;
  }

  .quote {
    width: 33%;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 60px;
  }

  .footer {
    padding: 30px 60px 50px;
  }

  .content-wrap {
    padding: 30px 60px;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid article {
    width: 48%;
  }
}
