* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f5f3f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #1f2a24;
  color: #f4f1ec;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.ad-label {
  font-size: 13px;
  line-height: 1.4;
  background: #f4f1ec;
  color: #1f2a24;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.hero-media {
  flex: 1;
  background: #d7d3cc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-primary {
  align-self: flex-start;
  padding: 12px 20px;
  background: #d7a76d;
  color: #1f2a24;
  border-radius: 999px;
  font-weight: 600;
}

.split-block {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  flex: 1;
  background: #ded7cf;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-block h2 {
  margin: 0;
  font-size: 28px;
}

.text-block p,
.text-block li {
  margin: 0;
  line-height: 1.7;
}

.scenario {
  padding: 28px;
  border-radius: 20px;
  background: #2a2f2b;
  color: #f7f3ee;
  background-image: url("https://images.unsplash.com/photo-1464146072230-91cabc968266?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.scenario::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 22, 0.75);
}

.scenario .scenario-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #efe6d7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: #2f3c33;
}

.card-image {
  background: #e3ddd5;
  border-radius: 12px;
  overflow: hidden;
  height: 150px;
  display: flex;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag {
  font-weight: 600;
  color: #2f3c33;
}

.feature-strip {
  display: flex;
  gap: 24px;
  background: #efe6d7;
  padding: 26px;
  border-radius: 18px;
  align-items: center;
}

.feature-strip .feature-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-strip .feature-visual {
  flex: 1;
  background: #d7d0c8;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
}

.feature-strip .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-size: 14px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2cbc3;
  font-size: 15px;
  font-family: inherit;
}

.form-panel button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #2f3c33;
  color: #f5f3f0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.form-aside {
  flex: 1;
  background: #242d27;
  color: #f5f3f0;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-image: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=800&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.form-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 45, 39, 0.78);
}

.form-aside p,
.form-aside h3,
.form-aside ul {
  position: relative;
  margin: 0;
  line-height: 1.6;
}

.testimonial-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.cta-band {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  background: #1f2a24;
  color: #f5f3f0;
}

.cta-band a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #d7a76d;
  color: #1f2a24;
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
}

.legal-note {
  font-size: 13px;
  line-height: 1.6;
  color: #3d3d3d;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #d7d0c8;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #d7a76d;
  color: #1f2a24;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2f3c33;
  color: #f5f3f0;
}

.cookie-reject {
  background: #d7d0c8;
  color: #1a1a1a;
}

.simple-page h1 {
  font-size: 32px;
  margin: 0;
}

.simple-page section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1100px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 32px 8vw 80px;
  }

  .hero,
  .split-block,
  .feature-strip,
  .form-section,
  .cta-band {
    flex-direction: column;
  }
}
