* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1a2b;
  --muted: #5b6b7f;
  --accent: #2b6cb0;
  --accent-2: #145a62;
  --bg: #f6f7fb;
  --soft: #eef2f6;
  --warm: #f3ede4;
  --highlight: #e8f1ff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: #ffffff;
  border-bottom: 1px solid #e3e7ee;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.78rem;
  color: #7a3e00;
  background: #fff1dd;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 8% 120px;
  background: #0f1a2b;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 380px;
  max-width: 560px;
}

.hero-text h1 {
  font-size: 2.7rem;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-text p {
  margin: 0 0 20px;
  color: #e2e9f5;
}

.hero-card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #c9d4e4;
  color: #ffffff;
}

.section {
  padding: 70px 8%;
  position: relative;
}

.section.soft {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.highlight {
  background: var(--highlight);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
}

.img-frame {
  background: #dce6f2;
  padding: 8px;
  border-radius: 18px;
}

.img-frame.secondary {
  background: #e8e2d7;
}

.img-frame img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 26, 43, 0.08);
  margin-left: auto;
  max-width: 520px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 26, 43, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-left: 5px solid var(--accent);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 26, 43, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccd6e4;
  font: inherit;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 8%;
  background: #0f1a2b;
  color: #d8e2f1;
}

.footer a {
  color: #d8e2f1;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background: var(--accent-2);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 26, 43, 0.18);
  max-width: 360px;
  z-index: 25;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e0e6ef;
  color: var(--ink);
}

.content-page {
  padding: 60px 8% 80px;
  background: #ffffff;
}

.content-page h1 {
  margin-top: 0;
}

.side-visual {
  position: absolute;
  right: 8%;
  top: -30px;
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: #d7e4ff;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
