* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2430;
  --muted: #566376;
  --accent: #1f6feb;
  --accent-dark: #144a9c;
  --soft: #f4f6f9;
  --soft-alt: #eef2f7;
  --warm: #f7f1ea;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--warm);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: #1b2330;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  padding: 90px 6vw 110px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 32, 0.68);
}

.hero-content {
  position: relative;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.hero-text p {
  color: #e6edf7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.hero-media {
  flex: 1 1 260px;
  max-width: 420px;
  transform: translateY(20px);
}

.media {
  background-color: #dfe7f2;
  border-radius: 24px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section {
  padding: 80px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 42px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .media-block {
  flex: 1 1 300px;
  max-width: 520px;
}

.offset-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.offset-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(15, 25, 44, 0.1);
}

.offset-card:nth-child(2) {
  transform: translateY(18px);
}

.offset-card:nth-child(3) {
  transform: translateY(-8px);
}

.services {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(20, 30, 50, 0.08);
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 25, 44, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6e2;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 6vw;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 30, 50, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta a {
  text-decoration: none;
}

.footer {
  padding: 60px 6vw;
  background: #121722;
  color: #d0d7e2;
}

.footer a {
  color: #b3c8ff;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b2bdcc;
  margin-top: 22px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(15, 25, 44, 0.2);
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  padding: 70px 6vw 40px;
  background: var(--soft-alt);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.legal-section {
  padding: 40px 6vw;
}

.legal-section h2 {
  margin-top: 0;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(15, 25, 44, 0.08);
}

.muted {
  color: var(--muted);
}

.note {
  background: var(--soft);
  padding: 14px 16px;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    left: 6vw;
    right: 6vw;
    justify-content: space-between;
  }
}
