* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1e1f1c;
  --muted: #5a5d57;
  --accent: #0d6b6a;
  --accent-soft: #d5e7e6;
  --highlight: #e6b45e;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 12px;
  gap: 20px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-block span {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-size: 0.95rem;
}

.cta-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.ghost-btn {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.cta-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: flex;
  padding: 40px 6vw 70px;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0;
}

.hero-panel {
  flex: 1;
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  border-radius: 18px;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
}

.panel {
  background: var(--card);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.offset {
  margin-left: auto;
  width: min(68%, 620px);
}

.accent-block {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 20px;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e0dbd3;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 54px;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--highlight);
  padding-left: 14px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  background: var(--highlight);
  color: #2b1c00;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #ddd5c8;
  padding-bottom: 16px;
}

.price-item strong {
  font-size: 1.1rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-wrap: wrap;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c4;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #1f2a28;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--highlight);
  color: #2b1c00;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2a28;
  color: #f1f1f1;
  padding: 16px 6vw;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--highlight);
  color: #2b1c00;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.page-hero {
  padding: 40px 6vw 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.legal {
  max-width: 840px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .site-nav {
    align-items: flex-start;
  }

  .offset {
    width: 100%;
    margin: 0;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
