* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1d1d1f;
  background: #faf7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #fff1e6;
  border-bottom: 1px solid #e8d8c7;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid #d86b3d;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw 40px;
  background: #fef7ef;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-visual {
  flex: 1 1 300px;
  position: relative;
}

.hero-visual img {
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.issue-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 6vw;
  background: #fff;
  border-top: 1px solid #f0e2d4;
  border-bottom: 1px solid #f0e2d4;
  font-size: 0.9rem;
}

.issue-strip span {
  padding: 6px 12px;
  background: #f7ede3;
  border-radius: 999px;
}

.magazine-section {
  padding: 60px 6vw;
}

.magazine-section.alt {
  background: #fff;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.magazine-columns .col {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pull-quote {
  font-size: 1.4rem;
  font-weight: 600;
  border-left: 4px solid #d86b3d;
  padding-left: 18px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #d86b3d;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease;
}

.cta-btn.secondary {
  background: #2e2a26;
}

.cta-btn.ghost {
  background: transparent;
  color: #2e2a26;
  border: 1px solid #2e2a26;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  flex: 1 1 240px;
  background: #fff7f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card img {
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-item span {
  min-width: 50px;
  font-weight: 700;
  color: #d86b3d;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.trust-row .badge {
  padding: 10px 16px;
  border: 1px solid #e7d3c2;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0e2d4;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fff7f0;
}

.pricing-item span.price {
  font-weight: 700;
  color: #2e2a26;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.lead-form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f0e2d4;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c7b6;
  font-size: 1rem;
}

.lead-form button {
  border: none;
  cursor: pointer;
}

.aside-note {
  flex: 1 1 220px;
  background: #fef1e3;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #2e2a26;
  color: #fef7ef;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #fef7ef;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: #2e2a26;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid #e4d5c7;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #d86b3d;
  color: #fff;
}

.cookie-actions .reject {
  background: #efe3d8;
}

.page-header {
  padding: 60px 6vw 30px;
  background: #fff1e6;
}

.content-section {
  padding: 40px 6vw;
}

.content-section.alt {
  background: #fff;
}

.content-section h2 {
  margin-bottom: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 820px) {
  .top-bar {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
