* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0b1b2b;
  --slate: #425466;
  --mist: #e7eef2;
  --sand: #f2f0ea;
  --accent: #0f6e6a;
  --accent-dark: #0a4c48;
  --coral: #d77c5c;
  --sky: #d8e6ef;
  --shadow: 0 14px 30px rgba(12, 20, 33, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f7f7f5;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
  background: #f6f5f2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand a {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 6px 10px;
  background: var(--mist);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  padding: 50px 0 70px;
  background: linear-gradient(110deg, #f7f5f2 0%, #ecf3f6 100%);
}

.hero-wrap {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 360px;
  padding: 16px 0;
}

.hero-text h1 {
  font-size: clamp(2rem, 2.8vw, 3.3rem);
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 18px;
  color: var(--slate);
}

.hero-card {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-card span {
  font-weight: 600;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.image-frame {
  background: var(--sky);
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .image-frame {
  min-height: 360px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.section p {
  margin: 0 0 16px;
  color: var(--slate);
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.offset-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-left: auto;
  max-width: 720px;
}

.overlap {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: #e9f3f2;
  padding: 6px 12px;
  border-radius: 999px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.pricing-item strong {
  min-width: 220px;
}

.pricing-item span {
  color: var(--slate);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.service-selector {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-option {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.service-option input {
  margin-top: 4px;
}

.form-wrap {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d3db;
  font-size: 0.95rem;
}

.form-row input:disabled,
.form-row select:disabled,
.form-row textarea:disabled {
  background: #f1f4f6;
  color: #7b8791;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-footer {
  padding: 30px 0 60px;
  background: #111d2b;
  color: #d7e2ea;
}

.site-footer a {
  color: #d7e2ea;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.disclaimer {
  font-size: 0.85rem;
  color: #b6c4cf;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--coral);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 12;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #f0f6f6;
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--slate);
}

.simple-hero {
  padding: 50px 0 30px;
}

.simple-hero h1 {
  margin: 0 0 12px;
}

.simple-hero p {
  margin: 0 0 8px;
}

.legal-section {
  padding: 30px 0 60px;
}

@media (max-width: 860px) {
  .nav-links {
    margin-left: 0;
  }

  .offset-block {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
