* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1e5aa8;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1e5aa8;
  outline-offset: 2px;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e1da;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 12px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  font-weight: 600;
  color: #7a4e00;
  background-color: #fff3d6;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 6%;
  background-color: #2e2e2e;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.primary-btn,
.secondary-btn,
.outline-btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.primary-btn {
  background-color: #1e5aa8;
  color: #ffffff;
}

.secondary-btn {
  background-color: #ffffff;
  color: #1e5aa8;
}

.outline-btn {
  background-color: transparent;
  color: #1e5aa8;
  border: 1px solid #1e5aa8;
}

.section {
  padding: 70px 6%;
  background-color: #f7f5f2;
}

.section.alt {
  background-color: #ffffff;
}

.section.dark {
  background-color: #212121;
  color: #f8f6f2;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.65);
}

.section-bg-alt {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-bg-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.6);
}

.section-bg-alt .content-wrap {
  position: relative;
}

.section-bg .content-wrap {
  position: relative;
}

.content-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.row.center {
  align-items: center;
}

.col {
  flex: 1 1 260px;
  min-width: 240px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-frame {
  background-color: #e5e0d8;
  border-radius: 18px;
  overflow: hidden;
}

.tone-1 {
  background-color: #d8d2c9;
}

.tone-2 {
  background-color: #e2ded6;
}

.tone-3 {
  background-color: #d7d2cb;
}

.tone-4 {
  background-color: #d6d0c8;
}

.tone-5 {
  background-color: #dcd7cf;
}

.tone-6 {
  background-color: #d7d2ca;
}

.tone-7 {
  background-color: #d4cec6;
}

.tone-8 {
  background-color: #d9d4cc;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  min-width: 230px;
  box-shadow: 0 12px 30px rgba(23, 30, 50, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.dark {
  background-color: #2d2d2d;
  color: #ffffff;
}

.card h3 {
  margin: 0;
}

.inline-testimonial {
  padding: 18px 22px;
  background-color: #f1ede6;
  border-left: 4px solid #1e5aa8;
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 240px;
  min-width: 230px;
  border: 1px solid #e2ddd4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 26px;
  font-weight: 700;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(20, 26, 40, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bb;
  font-size: 15px;
}

.form-helper {
  font-size: 14px;
  color: #5c5c5c;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px;
  z-index: 10;
}

.footer {
  background-color: #181818;
  color: #f8f6f2;
  padding: 50px 6%;
}

.footer a {
  color: #f4d48c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d9d3c6;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 16px;
  max-width: 320px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.top-gap {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
