* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1e;
  --muted: #5f6770;
  --accent: #1b5cff;
  --accent-dark: #123b9a;
  --soft: #f3f4f7;
  --warm: #fff6e6;
  --deep: #0c1f3c;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #ffffff;
  position: relative;
  z-index: 10;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 16px 6vw 24px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu.open {
  display: flex;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.deep {
  background: var(--deep);
  color: #ffffff;
}

.section.deep a {
  color: #ffffff;
}

.headline {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.light {
  background: #ffffff;
  color: var(--deep);
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

.offset-card.asym {
  margin-left: auto;
  width: 92%;
}

.offset-card.slim {
  width: 88%;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.columns.reverse {
  flex-direction: column-reverse;
}

.columns .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.columns .image-block {
  flex: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e6e7ea;
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.12);
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d5d7dc;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.2);
  font-weight: 600;
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111827;
  color: #ffffff;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #ffffff;
  color: #111827;
}

.cookie-actions .reject {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

@media (min-width: 880px) {
  .columns {
    flex-direction: row;
    align-items: center;
  }

  .columns.reverse {
    flex-direction: row-reverse;
  }

  .offset-row {
    flex-direction: row;
    align-items: stretch;
  }

  .offset-card {
    width: 48%;
  }

  .offset-card.asym {
    width: 52%;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
