* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2330;
  --muted: #5b6678;
  --bg: #f6f7fb;
  --card: #ffffff;
  --accent: #1f6feb;
  --accent-2: #15a37f;
  --warm: #f4ede4;
  --dark: #0e1625;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e7e9ee;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--warm);
  color: #6b4f2a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  max-width: 260px;
  text-align: center;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 90px 6vw;
  color: #ffffff;
  background-color: #0b1a2a;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 18, 32, 0.85), rgba(10, 18, 32, 0.4));
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  margin: 0 0 18px 0;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #e6edf7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #c8d6f2;
  color: #c8d6f2;
}

.section {
  padding: 70px 6vw;
  background: var(--bg);
}

.section-alt {
  background: #ffffff;
}

.section-warm {
  background: var(--warm);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.offset-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  margin-left: 60px;
}

.offset-card.tight {
  margin-left: 0;
  margin-top: -30px;
}

.image-frame {
  background-color: #d9e2f1;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insight-band {
  background-color: #0f1b2c;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.insight-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.78);
}

.insight-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  min-width: 160px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.form-wrap {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9e0ea;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  z-index: 20;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
}

.footer {
  padding: 40px 6vw;
  background: var(--dark);
  color: #c9d3e6;
  margin-top: auto;
}

.footer a {
  color: #c9d3e6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #a8b5cd;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.simple-page {
  padding: 70px 6vw;
  background: #ffffff;
}

.simple-page h1 {
  margin-top: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  background: var(--bg);
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .offset-card {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
