* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1f;
  --muted: #5b5f66;
  --accent: #1f6feb;
  --accent-dark: #0e3b8a;
  --mist: #f2f4f8;
  --sand: #f7f2ec;
  --leaf: #e5f3ef;
  --slate: #2c3440;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(24, 33, 52, 0.14);
}

body {
  font-family: "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;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 20px 80px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 0;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 18px;
}

.floating-note {
  position: absolute;
  right: 20px;
  bottom: -18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--mist);
  position: relative;
}

.asym-section.alt {
  background: var(--leaf);
}

.asym-section.dark {
  background: var(--slate);
  color: #f9fafc;
}

.offset-card {
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: -18px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-grid .story-item {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
}

.insight-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-highlight {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
}

.service-price {
  color: var(--accent);
}

.testimonial-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.form-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7dbe4;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 20;
}

.site-footer {
  padding: 40px 20px 60px;
  background: #11151c;
  color: #f0f2f6;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.page-header {
  padding: 40px 20px 20px;
}

.page-title {
  font-size: 2.1rem;
}

.page-section {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #11151c;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #29c16f;
  color: #0f1a13;
}

.cookie-reject {
  background: #ffb4b4;
  color: #401313;
}

@media (min-width: 860px) {
  main {
    padding: 0 64px 100px;
  }

  .site-header {
    padding: 32px 64px 0;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-card {
    flex: 0.9;
    margin-top: 20px;
  }

  .asym-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .asym-section.reverse {
    flex-direction: row-reverse;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid .story-item {
    flex: 1;
  }

  .insight-row {
    flex-direction: row;
  }

  .insight-row > div {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .testimonial-row {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid label {
    flex: 1 1 240px;
  }

  .form-grid .full {
    flex: 1 1 100%;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
