* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f23;
  --muted: #5a646e;
  --accent: #2f6f6a;
  --accent-dark: #245652;
  --sand: #f4f1ec;
  --mist: #eef3f4;
  --sun: #f7e5b5;
  --berry: #3f2b56;
  --frame: #d7dfe2;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px dashed var(--muted);
  padding: 6px 10px;
  border-radius: 18px;
}

.hero {
  padding: 20px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 22px;
  background: var(--mist);
  border-radius: 28px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.hero-image {
  flex: 1 1 320px;
  background: var(--frame);
  border-radius: 32px;
  overflow: hidden;
  min-height: 300px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: var(--sand);
  padding: 18px 24px;
  border-radius: 28px;
}

.hero-note p {
  flex: 1 1 240px;
  color: var(--muted);
}

.section {
  padding: 54px 6vw;
}

.section.alt {
  background: var(--mist);
}

.section.sun {
  background: var(--sun);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-image {
  flex: 1 1 320px;
  background: var(--frame);
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
}

.bg-frame {
  background: var(--frame);
}

.bg-frame-soft {
  background: #d7dde0;
}

.bg-frame-muted {
  background: #cfd6d9;
}

.bg-frame-light {
  background: #dfe5e7;
}

.offset-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(27, 31, 35, 0.08);
  max-width: 520px;
  margin-left: auto;
}

.offset-card p {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5eaed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.card-image {
  width: 100%;
  height: 160px;
  background: var(--frame);
  overflow: hidden;
}

.card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #ffffff;
  border-left: 5px solid var(--accent);
  padding: 18px 20px;
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid #e2e6ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 30px rgba(27, 31, 35, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6dbe0;
  font-size: 1rem;
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--berry);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 12px 22px rgba(27, 31, 35, 0.2);
  z-index: 20;
}

.sticky-cta:hover {
  background: #2c1f3c;
}

.footer {
  padding: 36px 6vw 60px;
  background: #f6f6f6;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-links a {
  color: var(--accent);
  font-weight: 600;
}

.legal-links a:hover {
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(27, 31, 35, 0.15);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-hero {
  padding: 32px 6vw;
  background: var(--mist);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero h1 {
  flex: 1 1 320px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.page-hero p {
  flex: 1 1 320px;
  color: var(--muted);
}

.page-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  background: var(--frame);
}

.simple-section {
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
