/* =========================================================
   MÉTODO CABELO FORTE 50+ — FOLHA DE ESTILOS OFICIAL HOSTINGER
   ========================================================= */

:root {
  --bg-primary: #F7F0E5;
  --bg-secondary: #EADCCB;
  --wine-deep: #6E183E;
  --wine-light: #9A3F68;
  --wine-dark: #3E0B22;
  --brown-vivid: #8A4F2D;
  --chrome-light: #C17A4C;
  --chrome-dark: #4A2616;
  --text-main: #332721;
  --card-ivory: #FFFDFC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-primary);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--wine-dark);
  font-weight: 600;
  line-height: 1.25;
}

p, li, span, button {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Mobile text size requirement: 18-20px */
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  p, .chapter-text, .symptom-desc, .bonus-list li {
    font-size: 18px;
    line-height: 1.65;
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. TOP BAR */
.top-announcement-bar {
  background-color: var(--wine-dark);
  color: #FFFDFC;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(193, 122, 76, 0.4);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E0A174;
  box-shadow: 0 0 10px #E0A174;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.top-bar-text {
  font-size: 14px;
  font-weight: 700;
  color: #FFFDFC;
  letter-spacing: 0.8px;
}

@media (min-width: 768px) {
  .top-bar-text {
    font-size: 15px;
  }
}

/* HEADER */
.site-header {
  background-color: rgba(247, 240, 229, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(234, 220, 203, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--chrome-dark);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-dark);
}

.header-cta-btn {
  background: linear-gradient(135deg, #3E0B22, #9A3F68);
  color: #FFFDFC;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(110, 24, 62, 0.25);
  white-space: nowrap;
}

.header-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(110, 24, 62, 0.35);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #3E0B22 0%, #9A3F68 50%, #6E183E 100%);
  color: #FFFDFC;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 32px;
  border-radius: 40px;
  box-shadow: 0 10px 25px -4px rgba(110, 24, 62, 0.35);
  transition: all 0.3s ease;
  border: 1px solid rgba(224, 161, 116, 0.3);
  text-align: center;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4d0e2b 0%, #ab4673 50%, #7d1c47 100%);
  box-shadow: 0 14px 30px -4px rgba(110, 24, 62, 0.45);
  transform: translateY(-2px);
}

.btn-large-offer {
  font-size: 19px;
  padding: 22px 36px;
  width: 100%;
  max-width: 580px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* 2. HERO SECTION */
.hero-section {
  padding: 48px 0 60px 0;
  background: linear-gradient(180deg, #F7F0E5 0%, #EADCCB 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFDFC;
  border: 1px solid var(--chrome-light);
  color: var(--chrome-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.badge-icon {
  color: var(--chrome-light);
}

.hero-title {
  font-size: 32px;
  color: var(--wine-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-headline {
  font-size: 24px;
  color: var(--wine-deep);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 19px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .hero-title { font-size: 44px; }
  .hero-headline { font-size: 28px; }
}

.price-box-hero {
  background: #FFFDFC;
  border: 1.5px solid rgba(193, 122, 76, 0.35);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 24px -6px rgba(51, 39, 33, 0.08);
  display: inline-block;
  width: 100%;
  max-width: 440px;
}

.price-strike-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #7A6961;
}

.price-old {
  text-decoration: line-through;
  font-weight: 600;
  color: #9E5B5B;
}

.price-highlight-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--wine-dark);
  color: #FFFDFC;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.price-main-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--wine-dark);
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--wine-dark);
  line-height: 1;
}

.price-type {
  font-size: 16px;
  font-weight: 600;
  color: var(--wine-deep);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #5C473E;
  font-weight: 600;
  margin-top: 6px;
}

/* PRODUCT SHOWCASE (HERO IMAGE PLACEHOLDER) */
.product-showcase-frame {
  position: relative;
  background: var(--card-ivory);
  border: 2px solid rgba(193, 122, 76, 0.4);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px -10px rgba(110, 24, 62, 0.15);
}

.product-image-container {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #F7F0E5 0%, #EADCCB 100%);
  border-radius: 14px;
  border: 1px dashed var(--chrome-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.image-placeholder-fallback {
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-icon-wrap {
  width: 68px;
  height: 68px;
  background: #FFFDFC;
  border: 1.5px solid var(--chrome-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(193, 122, 76, 0.15);
}

.book-icon {
  width: 32px;
  height: 32px;
  stroke: var(--wine-dark);
}

.placeholder-label {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.placeholder-notice {
  font-size: 14px;
  font-weight: 600;
  color: var(--chrome-dark);
  max-width: 280px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.placeholder-path {
  font-size: 12px;
  font-family: monospace;
  background: #FFFDFC;
  padding: 4px 10px;
  border-radius: 6px;
  color: #7A6961;
  border: 1px solid rgba(234, 220, 203, 0.9);
}

.product-highlight-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, #3E0B22, #9A3F68);
  color: #FFFDFC;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(110, 24, 62, 0.3);
  text-align: center;
  border: 1px solid rgba(224, 161, 116, 0.4);
}

.badge-num {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.badge-desc {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  opacity: 0.9;
}

/* SECTION HEADERS */
.section-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--brown-vivid);
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  color: var(--wine-dark);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-title { font-size: 36px; }
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.6;
}

/* 3. IDENTIFICATION SECTION */
.identification-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 990px) {
  .symptoms-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.symptom-card {
  background-color: var(--card-ivory);
  border: 1px solid rgba(234, 220, 203, 0.95);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px -4px rgba(51, 39, 33, 0.05);
  transition: all 0.3s ease;
}

.symptom-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 122, 76, 0.4);
  box-shadow: 0 10px 24px -4px rgba(110, 24, 62, 0.08);
}

.symptom-card-full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #FFFDFC 0%, #F7F0E5 100%);
  border: 1.5px solid rgba(193, 122, 76, 0.3);
}

.symptom-icon-box {
  font-size: 26px;
  width: 48px;
  height: 48px;
  background: #F7F0E5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.symptom-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.symptom-desc {
  font-size: 16px;
  color: #4A3A32;
  line-height: 1.55;
}

.educational-notice-banner {
  background-color: #EADCCB;
  border-left: 4px solid var(--wine-deep);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--wine-dark);
}

/* 4. VSL SECTION */
.vsl-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #EADCCB 0%, #F7F0E5 100%);
}

.vsl-wrapper {
  max-width: 820px;
  margin: 0 auto 32px auto;
  border: 2px solid rgba(193, 122, 76, 0.4);
  border-radius: 18px;
  padding: 12px;
  background: var(--card-ivory);
  box-shadow: 0 16px 36px -8px rgba(110, 24, 62, 0.15);
}

.vsl-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  background-color: #24141B;
}

.video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.vsl-fallback-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3E0B22 0%, #24141B 100%);
  color: #FFFDFC;
  text-align: center;
  padding: 24px;
}

.vsl-fallback-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.vsl-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9A3F68, #6E183E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFDFC;
  border: 2px solid rgba(224, 161, 116, 0.6);
  margin-bottom: 6px;
}

.vsl-fallback-title {
  color: #E0A174;
  font-size: 16px;
  letter-spacing: 1px;
}

.vsl-fallback-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFDFC;
  max-width: 420px;
  line-height: 1.4;
}

.vsl-fallback-path {
  font-size: 12px;
  font-family: monospace;
  color: #EADCCB;
  opacity: 0.8;
}

.vsl-cta-wrap {
  text-align: center;
}

/* 5. EBOOK CONTENT SECTION */
.ebook-content-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.chapters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .chapters-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .chapters-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.chapter-card {
  background-color: var(--card-ivory);
  border: 1px solid rgba(234, 220, 203, 0.9);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px -2px rgba(51, 39, 33, 0.04);
}

.chapter-num {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wine-deep);
  background-color: #F7F0E5;
  border: 1px solid rgba(193, 122, 76, 0.3);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chapter-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.disclaimer-callout {
  background-color: #FFFDFC;
  border: 1px solid rgba(193, 122, 76, 0.3);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  color: #5C473E;
}

/* 6. INTERACTIVE FEATURES SECTION */
.interactive-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #F7F0E5 0%, #EADCCB 100%);
}

.interactive-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .interactive-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .interactive-features-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.feature-item-card {
  background: var(--card-ivory);
  border: 1px solid rgba(193, 122, 76, 0.25);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px -4px rgba(51, 39, 33, 0.05);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.feature-item-card h4 {
  font-size: 17px;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.feature-item-card p {
  font-size: 14px;
  color: #5C473E;
  line-height: 1.5;
}

.feature-disclaimer {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--wine-deep);
}

/* 7. BONUSES SECTION */
.bonuses-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
}

.bonus-card {
  background-color: var(--card-ivory);
  border: 1.5px solid rgba(193, 122, 76, 0.35);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px -6px rgba(110, 24, 62, 0.08);
  position: relative;
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, #3E0B22, #9A3F68);
  color: #FFFDFC;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.bonus-title {
  font-size: 22px;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.bonus-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-vivid);
  margin-bottom: 14px;
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-list li {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.bonus-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--chrome-light);
  font-size: 12px;
}

/* 8. HOW IT WORKS */
.how-it-works-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #EADCCB 0%, #F7F0E5 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.step-card {
  background-color: var(--card-ivory);
  border: 1px solid rgba(234, 220, 203, 0.95);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 8px 24px -4px rgba(51, 39, 33, 0.06);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3E0B22, #9A3F68);
  color: #FFFDFC;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 2px solid rgba(224, 161, 116, 0.5);
}

.step-title {
  font-size: 20px;
  color: var(--wine-dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: #5C473E;
  line-height: 1.55;
}

/* 9. TARGET AUDIENCE */
.target-audience-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.audience-cards-container {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--card-ivory);
  border: 1.5px solid rgba(193, 122, 76, 0.35);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px -6px rgba(110, 24, 62, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: var(--text-main);
  line-height: 1.5;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: #EADCCB;
  color: var(--wine-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 10. COMPLETE OFFER BOX */
.offer-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #F7F0E5 0%, #EADCCB 100%);
}

.offer-box-premium {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card-ivory);
  border: 2.5px solid var(--chrome-light);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 48px -10px rgba(110, 24, 62, 0.2);
  position: relative;
}

.offer-header-tag {
  display: inline-block;
  background: linear-gradient(135deg, #4A2616, #C17A4C, #8A4F2D);
  color: #FFFDFC;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.offer-box-title {
  font-size: 28px;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.offer-box-desc {
  font-size: 17px;
  color: #5C473E;
  margin-bottom: 24px;
}

.included-items-list {
  text-align: left;
  background: #F7F0E5;
  border: 1px solid rgba(193, 122, 76, 0.25);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
}

.inc-check {
  color: var(--wine-deep);
  font-weight: 800;
}

.pricing-card-inner {
  margin-bottom: 28px;
}

.pricing-strike {
  font-size: 17px;
  color: #7A6961;
  margin-bottom: 6px;
}

.pricing-strike del {
  color: #9E5B5B;
  font-weight: 700;
}

.pricing-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--wine-deep);
  margin-bottom: 4px;
}

.pricing-huge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-huge .currency {
  font-size: 26px;
  font-weight: 700;
  color: var(--wine-dark);
}

.pricing-huge .amount {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--wine-dark);
  line-height: 1;
}

.pricing-huge .term {
  font-size: 19px;
  font-weight: 600;
  color: var(--wine-deep);
}

.offer-guarantee-micro {
  font-size: 13px;
  font-weight: 600;
  color: #5C473E;
  margin-top: 16px;
}

/* 11. GUARANTEE SECTION */
.guarantee-section {
  padding: 50px 0;
  background-color: var(--bg-primary);
}

.guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-ivory);
  border: 1.5px solid rgba(193, 122, 76, 0.35);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px -6px rgba(51, 39, 33, 0.06);
}

@media (min-width: 680px) {
  .guarantee-card {
    flex-direction: row;
    align-items: center;
  }
}

.guarantee-badge-col {
  text-align: center;
  flex-shrink: 0;
}

.seal-icon {
  font-size: 48px;
  margin-bottom: 4px;
}

.seal-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--wine-dark);
}

.guarantee-title {
  font-size: 22px;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.guarantee-body {
  font-size: 16px;
  color: #4A3A32;
  line-height: 1.6;
}

/* 12. FAQ SECTION */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #F7F0E5 0%, #EADCCB 100%);
}

.accordion-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--card-ivory);
  border: 1px solid rgba(193, 122, 76, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(51, 39, 33, 0.04);
}

.faq-trigger {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--wine-dark);
  cursor: pointer;
  gap: 16px;
}

.faq-chevron {
  font-size: 22px;
  color: var(--chrome-light);
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
  color: var(--wine-dark);
}

.faq-content {
  display: none;
  padding: 0 22px 20px 22px;
  font-size: 16px;
  color: #4A3A32;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  display: block;
}

/* 13. FINAL CTA SECTION */
.final-cta-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.final-cta-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3E0B22 0%, #6E183E 100%);
  color: #FFFDFC;
  border-radius: 24px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 20px 48px -8px rgba(62, 11, 34, 0.4);
  border: 1px solid rgba(224, 161, 116, 0.35);
}

.final-cta-title {
  color: #FFFDFC;
  font-size: 28px;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .final-cta-title { font-size: 36px; }
}

.final-cta-text {
  font-size: 18px;
  color: #EADCCB;
  max-width: 600px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
}

/* 14. FOOTER */
.site-footer {
  background-color: #2D0819;
  color: #EADCCB;
  padding: 48px 0 32px 0;
  border-top: 1px solid rgba(193, 122, 76, 0.3);
}

.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFDFC;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
}

.footer-support {
  font-size: 14px;
}

.footer-subhead {
  font-weight: 600;
  color: #E0A174;
}

.footer-email {
  font-family: monospace;
  font-size: 15px;
  color: #FFFDFC;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: #E0A174;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-divider {
  opacity: 0.4;
}

.footer-disclaimer-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(193, 122, 76, 0.2);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #EADCCB;
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

/* MODAL */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: #FFFDFC;
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 1.5px solid var(--chrome-light);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--wine-dark);
  cursor: pointer;
}

.modal-title {
  font-size: 22px;
  color: var(--wine-dark);
  margin-bottom: 16px;
}

.modal-body p {
  font-size: 15px;
  color: #4A3A32;
  line-height: 1.6;
  margin-bottom: 12px;
}
