/* ================================================
   LANDING PAGE – PrintWebDirect
   ================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: rgba(0,174,239,.18); color: inherit; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- UTILITIES ---------- */
.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
}

/* ---------- SHARED BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary { background: #1a73e8; color: #fff; border-color: #1a73e8; }
.btn-primary:hover { background: #1557b0; border-color: #1557b0; }
.btn-outline { background: #fff; color: #1a1a1a; border-color: #d0d0d0; }
.btn-outline:hover { border-color: #1a73e8; color: #1a73e8; }
.btn-block { display: block; width: 100%; }

/* ================================================
   HERO  –  full-bleed background image + text overlay
   ================================================ */
.lp-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1420;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 18, 30, 0.80) 0%,
    rgba(8, 18, 30, 0.55) 55%,
    rgba(8, 18, 30, 0.15) 100%
  );
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 80px;
  margin: 0 auto 0 2%;
  max-width: 580px;
  color: #fff;
}

.lp-hero-content h1 {
  font-size: 47px !important;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -.5px;
  text-align: left;
}

.lp-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.65;
}

.lp-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}

.lp-btn-primary {
  display: block;
  padding: 16px 28px;
  background: #fff;
  color: #0d1b2a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.lp-btn-primary:hover { background: transparent; color: #fff; }

.lp-btn-outline {
  display: block;
  padding: 16px 28px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 4px;
  transition: background .2s, border-color .2s;
}
.lp-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* hero price highlight */
.lp-hero-price {
  color: #fff;
  white-space: nowrap;
}

/* hero trust line */
.lp-hero-trust {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* outline-dark variant (for carousel CTA on white bg) */
.lp-btn-outline-dark {
  display: block;
  padding: 16px 28px;
  background: transparent;
  color: #0d1b2a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  border: 2px solid #0d1b2a;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.lp-btn-outline-dark:hover { background: #0d1b2a; color: #fff; }

/* ================================================
   PERSONAS CAROUSEL
   ================================================ */
.personas-section {
  padding: 96px 0 80px;
  background: #fff;
  overflow: hidden;
}

.personas-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.personas-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.4px;
}
.personas-header p { font-size: 16px; color: #666; line-height: 1.65; }

.carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 32px;
}

.carousel-stage {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 460px;
}

.persona-card {
  position: absolute;
  width: 290px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  top: 50%;
  transition: transform .52s cubic-bezier(.4,0,.2,1), filter .52s ease, box-shadow .52s ease;
  will-change: transform, filter;
}

.card-visual {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.card-visual img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.persona-card[data-i="0"] .card-visual img { object-position: center; }
.persona-card[data-i="3"] .card-visual img { object-position: right center; }

.card-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.pv1 .card-ph { background: #dce8f8; }
.pv2 .card-ph { background: #e8ddf5; }
.pv3 .card-ph { background: #d8eadf; }
.pv4 .card-ph { background: #fdecd8; }
.pv5 .card-ph { background: #d8ecec; }

.ph-emoji { font-size: 88px; line-height: 1; }
.ph-label { font-size: 11px; font-weight: 600; color: rgba(0,0,0,.3); text-align: center; padding: 0 16px; }

.card-foot { padding: 16px 20px 18px; }
.cf1 { background: #6a90ae; }
.cf2 { background: #3a6080; }
.cf3 { background: #0d1b2a; }
.cf4 { background: #3a6080; }
.cf5 { background: #6a90ae; }

.card-foot h3 { font-size: 20px; font-weight: 800; line-height: 1.2; letter-spacing: -.2px; }
.cf1 h3, .cf2 h3, .cf3 h3, .cf4 h3, .cf5 h3 { color: #fff; }

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #0d1b2a;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  z-index: 20;
}
.carousel-btn:hover { border-color: #1a73e8; color: #1a73e8; }
.carousel-btn:disabled { opacity: .3; cursor: not-allowed; }

.carousel-dots { display: flex; gap: 7px; justify-content: center; margin-top: 32px; }
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d0d5dd;
  cursor: pointer;
  transition: all .25s;
  border: none; padding: 0;
}
.carousel-dot.active { background: #1a73e8; width: 22px; border-radius: 4px; }

.personas-detail { max-width: 640px; margin: 36px auto 0; padding: 0 24px; }
.detail-inner {
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1.5px solid #d8e4f8;
  background: #f0f4ff;
}
.detail-inner.anim { animation: fadeUp .3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.detail-left { flex-shrink: 0; }
.detail-target-label {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: #1a73e8; margin-bottom: 6px;
}
.detail-left h4 { font-size: 18px; font-weight: 800; color: #0d1b2a; margin-bottom: 8px; line-height: 1.2; }
.detail-product {
  display: inline-flex; align-items: center; gap: 5px;
  background: #1a73e8; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.detail-divider { width: 1px; background: #d0dff0; align-self: stretch; flex-shrink: 0; }
.detail-right p { font-size: 13.5px; color: #4a5a6a; line-height: 1.7; }
.lp-personas-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.lp-personas-cta .lp-btn-primary,
.lp-personas-cta .lp-btn-outline-dark {
  min-width: 200px;
}

/* ================================================
   TESTIMONIALS  –  dark navy
   ================================================ */
.testimonials-section {
  padding: 80px 24px;
  background: #0d1b2a;
}
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.5); margin-bottom: 0; }

.testimonials-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ================================================
   PRODUCTS  –  3-column Branch style
   ================================================ */
.products-section {
  padding: 88px 0 88px;
  background: #fff;
}

.products-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card,
.product-editorial {
  border: 1px solid #e0e0e0;
}

/* Product card */
.product-card { background: #fff; display: flex; flex-direction: column; }

.product-card-img { position: relative; }
.product-card-img img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.product-img-ph {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #aaa;
  font-weight: 500;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}
.badge-offer { background: #e53935; color: #fff; }
.badge-bestseller { background: #0d1b2a; color: #fff; }

.product-card-body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.product-card-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
}

.product-price-val {
  font-size: 17px;
  font-weight: 700;
  color: #0d1b2a;
  white-space: nowrap;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.rating-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: #666; }

.product-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.product-features li {
  font-size: 13px;
  color: #444;
  padding: 5px 0 5px 20px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border: 1.5px solid #0d1b2a;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230d1b2a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.btn-product-dark {
  display: block;
  padding: 15px;
  background: #0d1b2a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  border: none;
  transition: background .2s;
  margin-top: auto;
}
.btn-product-dark:hover { background: #1a3050; }

/* Editorial middle card */
.product-editorial {
  background: #0d1b2a;
  display: flex;
  align-items: stretch;
  padding: 24px;
}

.pe-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.22);
}

.pe-quote-top,
.pe-quote-bot {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 96px;
  line-height: .6;
  color: rgba(255,255,255,0.45);
  display: block;
}
.pe-quote-bot { line-height: 1; margin-top: 8px; }

.pe-text {
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  margin: 20px 0 16px;
}

.pe-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ================================================
   LIFESTYLE  –  image left  +  cream right  +  4 features
   ================================================ */
.lifestyle-section {
  display: flex;
  min-height: 560px;
  background: #f5f0e8;
}

.lifestyle-image {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}
.lifestyle-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lifestyle-img-ph {
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: #c8d4dc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.lifestyle-content {
  flex: 1;
  padding: 80px 72px;
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifestyle-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #0d1b2a;
  margin-bottom: 48px;
  max-width: 440px;
  letter-spacing: -.3px;
}

.lifestyle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}

.lifestyle-feature .lf-icon {
  color: #0d1b2a;
  margin-bottom: 12px;
}

.lifestyle-feature strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 6px;
}

.lifestyle-feature p {
  font-size: 14px;
  color: #6b6456;
  line-height: 1.55;
}

/* ================================================
   FAQ
   ================================================ */
.faq-section {
  padding: 88px 24px;
  background: #fff;
}

.faq-inner { max-width: 700px; margin: 0 auto; }

.faq-list { margin-top: 40px; }

.faq-item { border-bottom: 1px solid #e0e0e0; }

.faq-item summary {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '▾'; font-size: 18px; color: #999; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-answer { padding: 0 0 20px; }
.faq-answer p { font-size: 14px; color: #666; line-height: 1.7; }

/* ================================================
   CLOSING BAND  –  dark navy + stacked text + 2 buttons
   ================================================ */
.closing-band {
  background: #0d1b2a;
  padding: 88px 80px;
}

.closing-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.closing-text p {
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
}

.closing-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  min-width: 260px;
}

/* ================================================
   FINDER SECTION  –  cream left + lifestyle image right
   ================================================ */
.finder-section {
  background: #fff;
  padding: 72px 24px;
}

.finder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  min-height: 360px;
  overflow: hidden;
}

.finder-content {
  flex: 0 0 50%;
  padding: 64px 56px;
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finder-content h2 {
  font-size: 38px;
  font-weight: 400;
  font-style: italic;
  color: #0d1b2a;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.2px;
}

.finder-content p {
  font-size: 16px;
  color: #6b6456;
  margin-bottom: 36px;
  max-width: 380px;
  line-height: 1.65;
}

.btn-finder {
  display: inline-block;
  padding: 16px 32px;
  background: #0d1b2a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  max-width: 260px;
  text-align: center;
  border: none;
  transition: background .2s;
}
.btn-finder:hover { background: #1a3050; }

.finder-image {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}
.finder-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.finder-img-ph {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: #b8c4cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ================================================
   FOOTER
   ================================================ */

/* Hide any footer injected by header.asp */
#header-placeholder footer,
#header-placeholder .site-footer,
#header-placeholder [class*="footer"] {
  display: none !important;
}

.site-footer {
  background: #1a1a1e;
  color: #fff;
  padding: 56px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #333;
}

.footer-logo { max-width: 180px; height: auto; }

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e67e22;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links { list-style: none; }
.footer-links li { border-bottom: 1px solid #2e2e2e; }
.footer-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color .2s;
}
.footer-links li a:hover { color: #fff; }
.footer-links li a span { font-size: 18px; color: #666; }

.footer-contact p { font-size: 14px; color: #ccc; margin-bottom: 8px; line-height: 1.6; }

.footer-bottom-bar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-payments { display: flex; gap: 8px; align-items: center; }

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 8px;
  height: 32px;
  width: 56px;
}
.payment-icon img {
  height: 18px;
  width: auto;
  max-width: 40px;
  display: block;
  object-fit: contain;
}

.footer-copy p { font-size: 12px; color: #888; text-align: right; line-height: 1.6; }

.footer-scroll-top {
  background: #333;
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
  flex-shrink: 0;
}
.footer-scroll-top:hover { background: #555; }

/* ================================================
   RESPONSIVE  –  Tablet  ≤ 900px
   ================================================ */
@media (max-width: 900px) {

  /* Hero */
  .lp-hero { min-height: 500px; }
  .lp-hero-content { padding: 80px 48px; max-width: 520px; }
  .lp-hero-content h1 { font-size: 40px; }
  .lp-hero-btns { max-width: 280px; }

  /* Personas */
  .carousel-stage { height: 380px; }
  .persona-card { width: 240px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin: 40px auto 0; }

  /* Products */
  .products-grid-3 { grid-template-columns: 1fr; }
  .product-editorial { padding: 20px; min-height: 320px; margin: 32px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }

  /* Lifestyle */
  .lifestyle-section { flex-direction: column; }
  .lifestyle-image { flex: none; height: 340px; }
  .lifestyle-img-ph { min-height: 340px; }
  .lifestyle-content { padding: 64px 48px; }
  .lifestyle-content h2 { font-size: 30px; margin-bottom: 36px; }

  /* Closing band */
  .closing-band { padding: 64px 48px; }
  .closing-band-inner { flex-direction: column; text-align: center; gap: 40px; }
  .closing-text p { font-size: 32px; }
  .closing-btns { min-width: auto; width: 100%; max-width: 320px; margin: 0 auto; }

  /* Finder */
  .finder-section { padding: 48px 16px; }
  .finder-inner { flex-direction: column; }
  .finder-content { flex: none; padding: 48px 40px; }
  .finder-image { flex: none; height: 320px; }
  .finder-img-ph { min-height: 320px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-bar { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .footer-copy p { text-align: center; }
}

/* ================================================
   RESPONSIVE  –  Mobile  ≤ 600px
   ================================================ */
@media (max-width: 600px) {

  /* Hero */
  .lp-hero { min-height: 480px; }
  .lp-hero-content { padding: 60px 24px; max-width: 100%; }
  .lp-hero-content h1 { font-size: 30px; }
  .lp-hero-content p { font-size: 15px; margin-bottom: 28px; }
  .lp-hero-btns { max-width: 100%; }
  .lp-btn-primary, .lp-btn-outline { font-size: 12px; padding: 14px 20px; }

  /* Personas */
  .personas-section { padding: 56px 0; }
  .personas-header { margin-bottom: 36px; }
  .personas-header h2 { font-size: 26px; }
  .carousel-stage { height: 300px; }
  .persona-card { width: 180px; }

  /* Testimonials */
  .testimonials-section { padding: 56px 16px; }
  .section-title { font-size: 24px; }

  /* Products */
  .product-card-body { padding: 20px 20px 24px; }
  .product-card-row h3 { font-size: 16px; }
  .product-editorial { padding: 16px; min-height: 280px; margin: 24px 0; }
  .pe-inner { padding: 36px 20px; }
  .pe-text { font-size: 15px; }

  /* Lifestyle */
  .lifestyle-image { height: 260px; }
  .lifestyle-img-ph { min-height: 260px; }
  .lifestyle-content { padding: 48px 24px; text-align: center; align-items: center; }
  .lifestyle-content h2 { font-size: 24px; margin-bottom: 28px; }
  .lifestyle-features { grid-template-columns: 1fr; gap: 24px; }
  .lifestyle-feature { display: flex; flex-direction: column; align-items: center; }
  .lifestyle-feature .lf-icon { margin-bottom: 10px; }

  /* FAQ */
  .faq-section { padding: 56px 16px; }

  /* Closing band */
  .closing-band { padding: 56px 24px; }
  .closing-text p { font-size: 26px; }

  /* Finder */
  .finder-section { padding: 40px 16px; }
  .finder-content { padding: 40px 24px; }
  .finder-content h2 { font-size: 26px; }
  .finder-image { height: 240px; }
  .finder-img-ph { min-height: 240px; }
}

@media (min-width: 901px) {
  .lp-hero::after {
    background: linear-gradient(
      to right,
      rgba(8, 18, 30, 0.80) 0%,
      rgba(8, 18, 30, 0.40) 50%,
      rgba(8, 18, 30, 0.00) 75%
    );
  }
}
