*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1a18;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #f7f4ef;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #151515;
  color: #f8f5f0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 18px;
  background: #f8b84e;
  color: #151515;
  border-radius: 24px;
  text-align: center;
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.tight {
  padding: 48px 8vw;
}

.section.dense {
  padding: 40px 8vw;
  align-items: flex-start;
}

.section.light {
  background: #fff7ea;
}

.section.dark {
  background: #1f1f1f;
  color: #f7f4ef;
}

.section .content {
  flex: 1;
}

.section .media {
  flex: 1;
  min-width: 0;
}

.section .media img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b8621b;
}

h1,
h2,
h3 {
  margin: 12px 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: 28px;
  background: #1b1a18;
  color: #f7f4ef;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.alt {
  background: #f8b84e;
  color: #1b1a18;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: #b8621b;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #2f2b27;
  color: #f7f4ef;
  padding: 18px;
  border-radius: 16px;
}

.testimonial {
  background: #fefcf8;
  border-left: 4px solid #f8b84e;
  padding: 18px;
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  gap: 16px;
}

.price-row span {
  font-weight: 600;
}

.price-row strong {
  font-size: 1.1rem;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d1c7;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f8b84e;
  color: #1b1a18;
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #1f1f1f;
  color: #f7f4ef;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 18px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #f8b84e;
  color: #1b1a18;
}

.cookie-actions .reject {
  background: #3b3732;
  color: #f7f4ef;
}

footer {
  padding: 40px 8vw;
  background: #151515;
  color: #f7f4ef;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

footer a {
  opacity: 0.85;
}

footer a:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.page-header {
  padding: 32px 8vw 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-header p {
  max-width: 560px;
}

.page-content {
  padding: 32px 8vw 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-list div {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.notice {
  background: #fff7ea;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
