* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2024;
  --muted: #5f6a74;
  --accent: #1c5d85;
  --accent-2: #b46a2b;
  --accent-3: #2d6a4f;
  --paper: #f7f5f0;
  --sand: #efe7dc;
  --steel: #e3e7ea;
  --shadow: rgba(18, 22, 25, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.top-ad {
  background: var(--steel);
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  background: var(--steel);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2.5rem 5rem;
  overflow: hidden;
  background-color: var(--steel);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1717386255773-1e3037c81788?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 320px;
  max-width: 540px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px var(--shadow);
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  z-index: 2;
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 20px 40px var(--shadow);
  transform: translateY(40px);
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
  color: var(--muted);
}

.section {
  padding: 4rem 2.5rem;
}

.section-alt {
  background: var(--paper);
}

.section-sand {
  background: var(--sand);
}

.section-visual {
  background-image: url("https://images.unsplash.com/photo-1713371398484-cc4e4f6a262a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  background-color: #1b242b;
}

.section-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 29, 0.72);
}

.section-visual > * {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 620px;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 280px;
}

.split .media {
  flex: 1 1 260px;
  background-color: var(--steel);
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  background-color: var(--steel);
}

.offset-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.offset-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 15px 30px var(--shadow);
}

.offset-card:nth-child(2) {
  transform: translateY(30px);
}

.offset-card:nth-child(3) {
  transform: translateY(-20px);
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 12px 26px var(--shadow);
}

.price-card h3 {
  margin-bottom: 0.6rem;
}

.price-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background-color: var(--steel);
  margin-bottom: 1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-3);
  margin: 0.6rem 0 1rem;
}

.tagline {
  color: var(--muted);
}

.cta-band {
  background: var(--accent);
  color: #ffffff;
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.form-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 36px var(--shadow);
  max-width: 720px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--steel);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row > div {
  flex: 1 1 220px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.testimonial {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 1.4rem;
  border-left: 4px solid var(--accent-2);
  border-radius: 12px;
  box-shadow: 0 10px 18px var(--shadow);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.stat {
  flex: 1 1 160px;
  padding: 1.2rem;
  background: var(--steel);
  border-radius: 16px;
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 10;
}

.floating-cta button {
  box-shadow: 0 12px 28px var(--shadow);
}

.footer {
  padding: 3rem 2.5rem;
  background: #0f1418;
  color: #f2f2f2;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.footer a {
  color: #f2f2f2;
}

.footer small {
  color: rgba(242, 242, 242, 0.7);
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 16px 36px var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 3.5rem 2.5rem 2rem;
  background: var(--paper);
}

.simple-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.content-block {
  max-width: 820px;
  margin-top: 2rem;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.image-band img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  background-color: var(--steel);
}

.contact-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 26px var(--shadow);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.6rem;
  color: var(--muted);
}

.policy-list strong {
  color: var(--ink);
}

.accent-panel {
  background: var(--accent-3);
  color: #ffffff;
  padding: 1.8rem;
  border-radius: 18px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    transform: none;
  }

  .floating-cta {
    right: 1rem;
    bottom: 1rem;
  }
}
