* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #0e7490;
  --accent-dark: #0b4f63;
  --mist: #f1f5f9;
  --cloud: #e2e8f0;
  --sun: #f59e0b;
  --leaf: #15803d;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  border-bottom: 1px solid var(--cloud);
  background: #ffffff;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-toggle {
  border: 1px solid var(--cloud);
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.nav-links.is-open {
  width: 100%;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

main {
  flex: 1;
}

.section {
  padding: 70px 24px;
}

.section--tight {
  padding: 50px 24px;
}

.section--mist {
  background: var(--mist);
}

.section--cloud {
  background: var(--cloud);
}

.section--bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  background-color: #0b3a4a;
}

.section--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
}

.section--bg > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink);
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #dbeafe;
  height: 100%;
  min-height: 260px;
}

.image-frame.tall {
  min-height: 360px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--cloud);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.card .tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: #e0f2fe;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 200px;
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
}

.service-option input {
  margin-right: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--cloud);
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 20px;
  background: var(--sun);
  color: #1f2937;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  font-weight: 600;
  z-index: 4;
}

.sticky-cta:hover {
  background: #fbbf24;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 24px;
}

.site-footer p,
.site-footer a {
  color: #cbd5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 6;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0e7490;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

@media (max-width: 860px) {
  h1 {
    font-size: 2.1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-inner {
    justify-content: flex-start;
  }
}
