* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f7f6f3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b4b4b;
  border: 1px solid #cfc9bf;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 32px 48px 56px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 32px;
  width: 100%;
  z-index: 1;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f7f6f3;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-copy p {
  font-size: 1.05rem;
  color: #2e2e2e;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #f7f6f3;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: #1b1b1b;
}

.hero-media {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background-color: #e0dfda;
  height: 280px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #131313;
  color: #f7f6f3;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta a {
  background: #f7f6f3;
  color: #131313;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  text-align: center;
}

.section {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.07);
}

.split .media-block {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-block .image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #e5e2dc;
  height: 240px;
}

.media-block .image-frame img {
  width: 100%;
  height: 100%;
}

.accent-section {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f3;
}

.accent-section .overlay {
  background: rgba(13, 14, 18, 0.7);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 30px rgba(13, 13, 13, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  align-items: center;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
}

.pricing-item .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0c3b2e;
  min-width: 140px;
}

.form-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1.2;
  min-width: 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc9bf;
  font-size: 1rem;
  background: #faf9f7;
}

.form-note {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.form-status {
  font-size: 0.9rem;
  color: #0c3b2e;
  min-height: 20px;
}

.aside-panel {
  flex: 0.8;
  min-width: 220px;
  background: #131313;
  color: #f7f6f3;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-footer {
  margin-top: auto;
  padding: 40px 48px;
  background: #111111;
  color: #f7f6f3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta {
  font-size: 0.85rem;
  color: #d3d0c7;
}

.page-header {
  padding: 40px 48px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-block {
  padding: 28px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.08);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #f7f6f3;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f7f6f3;
  color: #1b1b1b;
}

.cookie-reject {
  background: transparent;
  color: #f7f6f3;
  border: 1px solid #f7f6f3;
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    padding: 24px;
  }

  .top-bar {
    padding: 18px 24px;
  }

  .section,
  .page-footer,
  .page-header,
  .content-block {
    padding-left: 24px;
    padding-right: 24px;
  }
}
