* {
  box-sizing: border-box;
}

:root {
  --ink: #18222b;
  --muted: #55616b;
  --accent: #1f6f8b;
  --accent-dark: #155063;
  --light: #f4f6f8;
  --sand: #f6f1ea;
  --slate: #22313d;
  --sun: #f5b33f;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--light);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 20px 6vw 40px;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--sand);
  border-radius: 24px;
}

.hero-content h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.hero-content p {
  margin: 0;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.text {
  background: transparent;
  color: var(--accent);
  padding: 0;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #dbe6ec;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.tag {
  position: absolute;
  bottom: 18px;
  right: 20px;
  background: rgba(24, 34, 43, 0.85);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 10px 6vw 80px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 280px;
  background: var(--light);
  padding: 22px;
  border-radius: 22px;
}

.offset-card.shift {
  margin-top: 36px;
  background: #ffffff;
  border: 1px solid #e5e8eb;
}

.offset-image {
  flex: 1 1 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #d6e3e8;
  min-height: 260px;
}

.offset-image img {
  width: 100%;
  height: 100%;
}

.highlight-band {
  background: var(--slate);
  color: #ffffff;
  padding: 32px;
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight-band h2 {
  margin: 0;
  flex: 1 1 240px;
}

.highlight-list {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e4e8ea;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card button {
  margin-top: auto;
}

.service-card.active {
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(31, 111, 139, 0.12);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  background: var(--sand);
  padding: 26px;
  border-radius: 24px;
}

.form-note {
  flex: 1 1 220px;
  color: var(--muted);
}

form {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8dde1;
  font-size: 14px;
  font-family: inherit;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e2e7ea;
}

.pricing-card h3 {
  margin: 0 0 10px;
}

.pricing-card span {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 20px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e2e7ea;
}

.image-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-panel .image-block {
  flex: 1 1 220px;
  background: #dfe7ea;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}

.image-panel img {
  width: 100%;
  height: 100%;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 22px;
  border-radius: 22px;
}

footer {
  background: #111b22;
  color: #f5f6f7;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  text-decoration: underline;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  color: #c9d4db;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: #3a2b12;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d6dde2;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-hero {
  background: var(--light);
  padding: 28px;
  border-radius: 24px;
}

.legal-hero h1 {
  margin: 0 0 12px;
}

.simple-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e4e9ed;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-blocks .simple-section {
  flex: 1 1 240px;
}

@media (max-width: 780px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
