* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #0f1c1a;
  background: #f5f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 20px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #dfe9e5;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a:hover,
.button:hover,
.ghost-link:hover,
.sticky-cta:hover {
  opacity: 0.75;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 30px 6vw 70px;
  align-items: stretch;
}

.hero .hero-text {
  flex: 1 1 340px;
  padding: 20px 0 0 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 18px;
}

.hero .hero-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(15, 28, 26, 0.12);
  margin-top: 24px;
}

.hero .hero-media {
  flex: 1 1 340px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #cfe0d9;
  min-height: 360px;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: #e8f0ec;
}

.section.deep {
  background: #0f1c1a;
  color: #f7fbf9;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-row .offset-copy {
  flex: 1 1 320px;
}

.offset-row .offset-media {
  flex: 1 1 320px;
  background: #cbded7;
  border-radius: 20px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #dfe9e5;
}

.badge {
  font-size: 0.85rem;
  font-weight: 600;
  background: #d3e7dd;
  padding: 6px 10px;
  border-radius: 12px;
  width: fit-content;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(15, 28, 26, 0.08);
}

.price-row span {
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f1c1a;
  color: #f7fbf9;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.ghost-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 28, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7d6cf;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 18px;
  border-radius: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #f0b233;
  color: #0f1c1a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.2);
}

footer {
  padding: 40px 6vw 60px;
  background: #101c1a;
  color: #f5f7f4;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 28, 26, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner p {
  margin: 0;
  max-width: 640px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
}

.banner-hidden {
  display: none;
}

.meta-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

.legal-content {
  max-width: 920px;
}

.legal-content h1 {
  margin-top: 0;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.08);
}

.page-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 320px;
}
