* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f6f4f0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #4b5b68;
  padding: 4px 8px;
  border: 1px solid #c4cdd5;
  border-radius: 999px;
  background: #fff;
}

.nav-link {
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  border-bottom-color: #1f2933;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 40px 6vw 60px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #3f4d5a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2933;
  background: #1f2933;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn.secondary {
  background: transparent;
  color: #1f2933;
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-image,
.split-image,
.card-image,
.wide-image {
  flex: 1;
  background: #d8d4cf;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 60px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-text h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.split-text p {
  color: #3f4d5a;
}

.inline-cta {
  color: #1f2933;
  text-decoration: underline;
  font-weight: 600;
}

.pricing {
  padding: 60px 6vw;
  background: #fff;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #f3efe9;
}

.price-row span {
  font-weight: 600;
}

.pricing-note {
  color: #6b7b88;
  font-size: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 60px 6vw;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 18px;
}

.card p {
  color: #4b5b68;
}

.form-section {
  padding: 60px 6vw 80px;
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 14px;
  color: #4b5b68;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd2d9;
  font-size: 14px;
}

.form-panel textarea {
  min-height: 100px;
  resize: vertical;
}

.form-panel button {
  align-self: flex-start;
}

.info-panel {
  flex: 1;
  background: #f1ebe2;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1f2933;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d6d2cd;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f2933;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 40;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  color: #1f2933;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #1f2933;
  background: #1f2933;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f2933;
}

.plain-section {
  padding: 60px 6vw;
}

.plain-section h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.plain-section p,
.plain-section li {
  color: #3f4d5a;
}

.plain-section ul {
  list-style: disc;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-block {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}

.contact-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .form-section,
  .contact-block {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
