/* ============================================
   KARVIVA QUIZ RESULT PAGE STYLES
   Brand: Botanical Apothecary
   Colors: Orange #f59301, Teal #3bb3bc, Magenta #b14880
   Fonts: Montserrat (headings), Montserrat (body)
   ============================================ */

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFDF8;
  color: #1a1a1a;
  line-height: 1.6;
}

br {
  display: none !important;
}

/* ---- HERO SECTION ---- */
    .quiz-hero {
      position: relative;
      background: linear-gradient(135deg, #FFFDF8 0%, #fff5e6 40%, #e8f7f8 100%);
      padding: 80px 20px 60px;
      text-align: center;
      overflow: hidden;
    }

    .quiz-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59, 179, 188, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .quiz-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 147, 1, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(59, 179, 188, 0.1);
      color: #3bb3bc;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
    }

    .quiz-hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
      color: #1a1a1a;
    }

    .quiz-hero h1 .highlight-orange {
      color: #f59301;
    }

    .quiz-hero h1 .highlight-teal {
      color: #3bb3bc;
    }

    .quiz-hero .subtitle {
      font-size: 18px;
      color: #666;
      max-width: 560px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .hero-features {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #555;
    }

    .hero-feature .icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .hero-feature .icon.teal { background: rgba(59, 179, 188, 0.12); }
    .hero-feature .icon.orange { background: rgba(245, 147, 1, 0.12); }
    .hero-feature .icon.green { background: rgba(76, 175, 80, 0.12); }

    /* ---- WAVE DIVIDER ---- */
    .wave-divider {
      position: relative;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      margin-top: -1px;
    }

    .wave-divider svg {
      display: block;
      width: 100%;
      height: 50px;
    }

    /* ---- PRODUCT PREVIEW STRIP ---- */
    .product-strip {
      background: #fff;
      padding: 24px 20px;
      text-align: center;
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .product-strip-inner {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .product-strip-label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: #999;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-right: 8px;
    }

    .product-strip img {
      height: 64px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
      transition: transform 0.3s ease;
    }

    .product-strip img:hover {
      transform: translateY(-3px) scale(1.08);
    }

    /* ---- QUIZ SECTION ---- */
    .quiz-section {
      max-width: 780px;
      margin: 0 auto;
      padding: 60px 20px 80px;
    }

    .quiz-section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .quiz-section-header h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    .quiz-section-header p {
      font-size: 15px;
      color: #888;
    }

    /* ---- QUIZ FORM WRAPPER ---- */
    .quiz-form-wrapper {
      background: #fff;
      border-radius: 24px;
      padding: 48px 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      border: 1px solid rgba(245, 147, 1, 0.08);
      position: relative;
    }

    .quiz-form-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f59301, #3bb3bc, #b14880);
      border-radius: 24px 24px 0 0;
    }

    /* ---- GRAVITY FORMS OVERRIDES ---- */
    /* These styles override Gravity Forms defaults to match Karviva brand */
    
    .quiz-form-wrapper .gform_wrapper {
      margin: 0 !important;
    }

    .quiz-form-wrapper .gform_title {
      display: none !important; /* Title is in the hero section */
    }

    .quiz-form-wrapper .gform_description {
      display: none !important; /* Description is in the hero section */
    }

    /* Progress bar */
    .quiz-form-wrapper .gf_progressbar_wrapper {
      margin-bottom: 32px !important;
    }

    .quiz-form-wrapper .gf_progressbar {
      background: #f0ede6 !important;
      border-radius: 50px !important;
      height: 10px !important;
      overflow: hidden !important;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.06) !important;
    }

    .quiz-form-wrapper .gf_progressbar_percentage {
      background: linear-gradient(90deg, #f59301, #3bb3bc) !important;
      border-radius: 50px !important;
      height: 10px !important;
      line-height: 10px !important;
      font-size: 0 !important;
      transition: width 0.5s ease !important;
    }

    .quiz-form-wrapper .gf_progressbar_title {
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 600 !important;
      font-size: 13px !important;
      color: #888 !important;
      letter-spacing: 0.5px !important;
      margin-bottom: 8px !important;
    }

    .quiz-form-wrapper .gf_step_number {
      display: none !important;
    }

    /* Question labels */
    .quiz-form-wrapper .gfield_label {
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 700 !important;
      font-size: 20px !important;
      color: #1a1a1a !important;
      margin-bottom: 20px !important;
      line-height: 1.4 !important;
    }

    .quiz-form-wrapper .gfield_description {
      font-family: 'Poppins', sans-serif !important;
      font-size: 14px !important;
      color: #888 !important;
      margin-bottom: 16px !important;
    }

    /* Radio buttons */
    .quiz-form-wrapper .gfield_radio {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      list-style: none !important;
      padding: 0 !important;
    }

    .quiz-form-wrapper .gfield_radio li {
      margin: 0 !important;
    }

    .quiz-form-wrapper .gfield_radio li label {
      display: flex !important;
      align-items: center !important;
      gap: 14px !important;
      background: #faf8f3 !important;
      border: 2px solid transparent !important;
      border-radius: 14px !important;
      padding: 18px 22px !important;
      font-family: 'Poppins', sans-serif !important;
      font-size: 15px !important;
      font-weight: 400 !important;
      color: #333 !important;
      cursor: pointer !important;
      transition: all 0.25s ease !important;
    }

    .quiz-form-wrapper .gfield_radio li label:hover {
      background: #fff !important;
      border-color: rgba(245, 147, 1, 0.3) !important;
      box-shadow: 0 4px 16px rgba(245, 147, 1, 0.08) !important;
      transform: translateY(-1px) !important;
    }

    .quiz-form-wrapper .gfield_radio li input[type="radio"]:checked + label,
    .quiz-form-wrapper .gfield_radio li label.gfield_selected {
      background: #fff !important;
      border-color: #f59301 !important;
      box-shadow: 0 4px 20px rgba(245, 147, 1, 0.12) !important;
    }

    .quiz-form-wrapper .gfield_radio li input[type="radio"] {
      accent-color: #f59301 !important;
      width: 20px !important;
      height: 20px !important;
    }

    /* Checkboxes */
    .quiz-form-wrapper .gfield_checkbox {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      list-style: none !important;
      padding: 0 !important;
    }

    .quiz-form-wrapper .gfield_checkbox li {
      margin: 0 !important;
    }

    .quiz-form-wrapper .gfield_checkbox li label {
      display: flex !important;
      align-items: center !important;
      gap: 14px !important;
      background: #faf8f3 !important;
      border: 2px solid transparent !important;
      border-radius: 14px !important;
      padding: 18px 22px !important;
      font-family: 'Poppins', sans-serif !important;
      font-size: 15px !important;
      font-weight: 400 !important;
      color: #333 !important;
      cursor: pointer !important;
      transition: all 0.25s ease !important;
    }

    .quiz-form-wrapper .gfield_checkbox li label:hover {
      background: #fff !important;
      border-color: rgba(59, 179, 188, 0.3) !important;
      box-shadow: 0 4px 16px rgba(59, 179, 188, 0.08) !important;
      transform: translateY(-1px) !important;
    }

    .quiz-form-wrapper .gfield_checkbox li input[type="checkbox"]:checked + label,
    .quiz-form-wrapper .gfield_checkbox li label.gfield_selected {
      background: #fff !important;
      border-color: #3bb3bc !important;
      box-shadow: 0 4px 20px rgba(59, 179, 188, 0.12) !important;
    }

    .quiz-form-wrapper .gfield_checkbox li input[type="checkbox"] {
      accent-color: #3bb3bc !important;
      width: 20px !important;
      height: 20px !important;
    }

    /* Navigation buttons */
    .quiz-form-wrapper .gform_page_footer {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      margin-top: 36px !important;
      padding-top: 24px !important;
      border-top: 1px solid rgba(0,0,0,0.06) !important;
    }

    .quiz-form-wrapper .gform_previous_button,
    .quiz-form-wrapper .gform_button_select_files {
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 600 !important;
      font-size: 14px !important;
      color: #888 !important;
      background: transparent !important;
      border: 2px solid #e0ddd6 !important;
      border-radius: 50px !important;
      padding: 12px 28px !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
    }

    .quiz-form-wrapper .gform_previous_button:hover {
      border-color: #3bb3bc !important;
      color: #3bb3bc !important;
    }

    .quiz-form-wrapper .gform_next_button,
    .quiz-form-wrapper .gform_button {
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 600 !important;
      font-size: 15px !important;
      color: #fff !important;
      background: linear-gradient(135deg, #f59301 0%, #e08500 100%) !important;
      border: none !important;
      border-radius: 50px !important;
      padding: 14px 36px !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 16px rgba(245, 147, 1, 0.3) !important;
    }

    .quiz-form-wrapper .gform_next_button:hover,
    .quiz-form-wrapper .gform_button:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 24px rgba(245, 147, 1, 0.4) !important;
    }

    /* Submit button */
    .quiz-form-wrapper .gform_footer {
      text-align: center !important;
      margin-top: 36px !important;
      padding-top: 24px !important;
      border-top: 1px solid rgba(0,0,0,0.06) !important;
    }

    .quiz-form-wrapper input[type="submit"] {
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 700 !important;
      font-size: 16px !important;
      color: #fff !important;
      background: linear-gradient(135deg, #f59301 0%, #e08500 100%) !important;
      border: none !important;
      border-radius: 50px !important;
      padding: 16px 48px !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 16px rgba(245, 147, 1, 0.3) !important;
      letter-spacing: 0.5px !important;
    }

    .quiz-form-wrapper input[type="submit"]:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 24px rgba(245, 147, 1, 0.4) !important;
    }

    /* ---- TRUST STRIP ---- */
    .trust-strip {
      background: #fff;
      padding: 40px 20px;
      border-top: 1px solid rgba(0,0,0,0.04);
    }

    .trust-strip-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: #666;
    }

    .trust-item .trust-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .trust-icon.cream { background: rgba(245, 147, 1, 0.08); }
    .trust-icon.mint { background: rgba(59, 179, 188, 0.08); }
    .trust-icon.rose { background: rgba(177, 72, 128, 0.08); }
    .trust-icon.sage { background: rgba(76, 175, 80, 0.08); }

    .trust-item strong {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #1a1a1a;
    }

    .trust-item span {
      font-size: 12px;
      color: #999;
    }

    /* ---- TESTIMONIAL STRIP ---- */
    .testimonial-strip {
      background: linear-gradient(135deg, rgba(59, 179, 188, 0.04) 0%, rgba(245, 147, 1, 0.03) 100%);
      padding: 48px 20px;
    }

    .testimonial-strip-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .testimonial-strip-inner .section-label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #3bb3bc;
      margin-bottom: 20px;
    }

    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      text-align: left;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .testimonial-card .stars {
      color: #f59301;
      font-size: 16px;
      margin-bottom: 12px;
      letter-spacing: 2px;
    }

    .testimonial-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 12px;
      font-style: italic;
    }

    .testimonial-card .author {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: #1a1a1a;
    }

    .testimonial-card .source {
      font-size: 12px;
      color: #999;
    }

    /* ---- FAQ MINI ---- */
    .faq-mini {
      max-width: 780px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .faq-mini h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 24px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 32px;
      color: #1a1a1a;
    }

    .faq-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #fff;
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .faq-item summary {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: #1a1a1a;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: '+';
      font-size: 20px;
      font-weight: 300;
      color: #f59301;
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item .answer {
      margin-top: 12px;
      font-size: 14px;
      color: #666;
      line-height: 1.7;
      padding-top: 12px;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 768px) {
      .quiz-hero h1 {
        font-size: 32px;
      }

      .quiz-hero .subtitle {
        font-size: 16px;
      }

      .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }

      .quiz-form-wrapper {
        padding: 32px 20px;
        border-radius: 16px;
      }

      .quiz-form-wrapper .gfield_label {
        font-size: 18px !important;
      }

      .quiz-form-wrapper .gfield_radio li label,
      .quiz-form-wrapper .gfield_checkbox li label {
        padding: 14px 18px !important;
        font-size: 14px !important;
      }

      .testimonial-cards {
        grid-template-columns: 1fr;
      }

      .trust-strip-inner {
        gap: 24px;
      }

      .product-strip img {
        height: 48px;
      }
    }

/* ---- RESULT CONTAINER ---- */
.quiz-result {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* ---- CONFETTI HEADER ---- */
.result-header {
  text-align: center;
  padding: 40px 20px 30px;
  position: relative;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59301 0%, #e08500 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.result-badge svg {
  width: 18px;
  height: 18px;
}

.result-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 8px;
}

.result-header h1 .highlight-teal {
  color: #3bb3bc;
}

.result-header h1 .highlight-orange {
  color: #f59301;
}

.result-header .subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- PRODUCT SHOWCASE ---- */
.product-showcase {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(245, 147, 1, 0.1);
}

.product-images {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -20px;
  position: relative;
  min-height: 280px;
}

.product-images img {
  height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.product-images img:hover {
  transform: translateY(-5px) scale(1.05);
}

.product-images img:nth-child(1) { z-index: 3; transform: rotate(-5deg); }
.product-images img:nth-child(2) { z-index: 2; margin-left: -30px; }
.product-images img:nth-child(3) { z-index: 1; margin-left: -30px; transform: rotate(5deg); }

.product-info {
  flex: 1;
}

.product-info .pack-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3bb3bc;
  background: rgba(59, 179, 188, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-info .description {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.product-info .included {
  font-size: 14px;
  color: #777;
  background: #faf8f3;
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid #f59301;
  margin-bottom: 16px;
}

.product-info .included strong {
  color: #1a1a1a;
}

/* ---- PRICE BOX ---- */
.price-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #f59301;
}

.price-sub {
  font-size: 13px;
  color: #999;
}

.price-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3bb3bc 0%, #2a9da5 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ---- BENEFITS GRID ---- */
.benefits-section {
  margin: 30px 0;
}

.benefits-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.benefit-icon.teal { background: rgba(59, 179, 188, 0.12); }
.benefit-icon.orange { background: rgba(245, 147, 1, 0.12); }
.benefit-icon.green { background: rgba(76, 175, 80, 0.12); }
.benefit-icon.purple { background: rgba(177, 72, 128, 0.12); }

.benefit-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* ---- CONCERN RESPONSE ---- */
.concern-response {
  background: linear-gradient(135deg, rgba(59, 179, 188, 0.06) 0%, rgba(245, 147, 1, 0.04) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 30px 0;
  border: 1px solid rgba(59, 179, 188, 0.15);
}

.concern-response h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3bb3bc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.concern-response p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ---- CTA BUTTONS ---- */
.cta-section {
  text-align: center;
  padding: 30px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59301 0%, #e08500 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  cursor: pointer !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(245, 147, 1, 0.3) !important
  ;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 147, 1, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #3bb3bc;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  border: 2px solid #3bb3bc;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(59, 179, 188, 0.08);
  transform: translateY(-2px);
}

.alt-link {
  font-size: 14px;
  color: #999;
}

.alt-link a {
  color: #3bb3bc;
  text-decoration: none !important;
  font-weight: 500;
}

.alt-link a:hover {
  text-decoration: underline;
}

/* ---- TRUST BADGES ---- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: #3bb3bc;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .product-showcase {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  
  .product-images {
    flex: none;
    min-height: 200px;
  }
  
  .product-images img {
    height: 160px;
  }
  
  .result-header h1 {
    font-size: 28px;
  }
  
  .price-main {
    font-size: 26px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
