* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 20px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  background: #1c1c1c;
  color: #f6f4f1;
  padding: 6px 10px;
  font-size: 0.82rem;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 120px 0 140px;
  color: #f6f4f1;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background: #ffb703;
  color: #1c1c1c;
}

.button.secondary {
  background: rgba(246, 244, 241, 0.2);
  color: #f6f4f1;
  border: 1px solid rgba(246, 244, 241, 0.5);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 24px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .image-frame {
  flex: 1 1 320px;
  background-color: #d9d4cb;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.story-card {
  background: #fefaf4;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.testimonial-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 240px;
  background: #1f1f1f;
  color: #f6f4f1;
  padding: 18px;
  border-radius: 16px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-dot {
  width: 10px;
  height: 10px;
  background: #ffb703;
  border-radius: 50%;
  margin-top: 8px;
}

.pricing-wrap {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.price-card .image-frame {
  background-color: #d1dce4;
  min-height: 180px;
}

.price-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc9be;
  font-size: 1rem;
  background: #fcfbf8;
}

.note {
  font-size: 0.92rem;
  color: #5d5a54;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f6f4f1;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 60px 0;
  background: #101010;
  color: #f6f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.space-top-16 {
  margin-top: 16px;
}

.space-top-24 {
  margin-top: 24px;
}

.space-top-28 {
  margin-top: 28px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #ffb703;
  color: #1c1c1c;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 0 40px;
}

.simple-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.05rem;
}

@media (max-width: 860px) {
  .floating-cta {
    right: 16px;
    bottom: 110px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }
}
