* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f26;
  --muted: #5a6673;
  --sand: #f5f1ec;
  --mist: #eef1f4;
  --clay: #d9d1c7;
  --ocean: #2a4a5f;
  --accent: #3e6c7f;
  --sun: #f1d6a5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--ocean);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  border-bottom: 1px solid var(--mist);
}

.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 56px 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-panel {
  flex: 1;
  min-width: 280px;
}

.panel-card {
  background: var(--sand);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(26, 31, 38, 0.08);
}

.panel-card.dark {
  background: var(--ocean);
  color: #ffffff;
}

.panel-card.dark a {
  color: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.stat-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat {
  flex: 1;
  min-width: 150px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--mist);
}

.service-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--mist);
}

.service-card h3 {
  margin-top: 14px;
}

.price {
  font-weight: 700;
  color: var(--ocean);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--clay);
  padding: 6px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.inline-list {
  padding-left: 18px;
}

.form-card {
  background: var(--mist);
  padding: 32px;
  border-radius: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cdd5de;
  font-size: 1rem;
}

.footer {
  padding: 48px 0 80px;
  border-top: 1px solid var(--mist);
  background: #fafbfc;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ocean);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(26, 31, 38, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #203748;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--mist);
  box-shadow: 0 14px 30px rgba(26, 31, 38, 0.12);
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.split-highlight {
  background: var(--sand);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 360px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 300px;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.page-hero {
  background: var(--mist);
  padding: 40px;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
