/* ============================================
   AUGE DENTAL CARE - TREATMENT PAGES STYLES
   Stili condivisi per tutte le pagine trattamento
   ============================================ */

/* ============================================
   MAIN TEXTURE BACKGROUND
   ============================================ */
main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/texture-paper.webp");
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

main > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   IMAGE RESPONSIVE FIX (Aspect Ratio Preservation)
   ============================================ */
/* CRITICAL: Prevents image distortion on mobile while preserving 
   HTML width/height attributes for CLS (Core Web Vitals).
   - height: auto → browser recalculates height proportionally
   - max-width: 100% → prevents overflow on small screens
   - display: block → removes unwanted bottom spacing */
img {
  height: auto;
  max-width: 100%;
  display: block;
}

/* ============================================
   HERO STYLES
   ============================================ */
.treatment-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.treatment-hero-content {
  max-width: 1200px;
  margin: 0 auto; /* Center the container */
  color: white;
  padding: var(--space-2xl);
}

/* Mobile: Remove horizontal padding to prevent text from shifting */
@media (max-width: 768px) {
  .treatment-hero-content {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

.treatment-hero .hero-label {
  display: inline-block;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5f9169;
  margin-bottom: var(--space-md);
  border-bottom: 2px solid #5f9169;
  padding-bottom: 4px;
}

.treatment-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: white;
  margin-bottom: var(--space-lg);
  line-height: 1.1; 
  font-weight: 700;
}

.treatment-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  color: rgba(255, 255, 255, 0.95);
}

/* Hero Animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default state: hidden */
.treatment-hero .hero-label,
.treatment-hero h1,
.treatment-hero p,
.treatment-hero .btn {
  opacity: 0;
}

/* Animations trigger only when body has 'animations-enabled' class */
body.animations-enabled .treatment-hero .hero-label {
  animation: heroFadeInUp 0.8s ease-out 0.2s both;
}

body.animations-enabled .treatment-hero h1 {
  animation: heroFadeInUp 0.8s ease-out 0.4s both;
}

body.animations-enabled .treatment-hero p {
  animation: heroFadeInUp 0.8s ease-out 0.6s both;
}

body.animations-enabled .treatment-hero .btn {
  animation: heroFadeInUp 0.8s ease-out 0.8s both;
}

/* ============================================
   COLORED BACKGROUND SECTIONS
   ============================================ */
.bg-primary-gradient {
  background: linear-gradient(135deg, #4a7c59 0%, #5f9169 50%, #6fa07a 100%);
  color: white;
}

.bg-accent-light {
  background: linear-gradient(135deg, #faf5f4 0%, #f8f0ee 100%);
}

.bg-dark {
  background: linear-gradient(135deg, #5a8c6a 0%, #466b50 50%, #324a3a 100%);
  color: white;
}

.bg-terracotta-gradient {
  background: linear-gradient(180deg, #d4897b 0%, #c06c5d 50%, #a85a4d 100%);
  color: white;
}

/* ============================================
   GRID & LAYOUT STYLES
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .content-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }

  .content-grid {
    gap: var(--space-2xl);
    display: flex;
    flex-direction: column;
  }

  /* Ensure images maintain proper aspect ratio on mobile */
  .content-image-wrapper {
    width: 100%;
    order: 2; /* Force images to appear after text */
  }
  
  .content-image {
    width: 100%;
    height: auto;
  }

  /* Force text content to appear first on mobile */
  .content-text-wrapper {
    order: 1;
  }
}

/* ============================================
   TEXT STYLES
   ============================================ */
.section-description--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-title--left {
  text-align: left;
}

.section-title--white {
  color: white;
}

.content-text {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.section-label--pink {
  color: #c06c5d;
}

.contact-link:hover {
  color: #c06c5d !important;
}

/* ============================================
   IMAGE STYLES
   ============================================ */
.content-image-wrapper {
  text-align: center;
}

.content-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%; /* Force images to fill container width in grid layouts */
}

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(95, 145, 105, 0.4);
}

.step-card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.step-card p {
  line-height: 1.7;
}

/* ============================================
   BENEFIT CARDS (Servizi)
   ============================================ */
.benefit-card {
  text-align: left;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-card h4 {
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid #c06c5d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.highlight-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ============================================
   CTA STYLES
   ============================================ */
.cta-buttons {
  margin-top: var(--space-2xl);
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile: Stack buttons vertically and center */
@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  /* Center buttons in full-width-cta section */
  .full-width-cta .cta-buttons {
    align-items: center;
  }
  
  .cta-buttons .btn {
    justify-content: center;
  }
  
  /* For non-lg buttons, apply full width */
  .cta-buttons .btn:not(.btn-lg) {
    width: 100%;
    max-width: 300px;
  }
}

.full-width-cta {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.full-width-cta h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.full-width-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   DIRECTIONS BUTTON
   ============================================ */
.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.8vw, 1rem)!important;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-directions,
.btn-directions:link,
.btn-directions:visited,
.btn-directions:hover,
.btn-directions:active,
.btn-directions:focus {
  color: #ffffff !important;
}

.btn-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.btn-directions i {
  transition: transform 0.3s ease;
}

.btn-directions:hover i {
  transform: translateX(3px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NEW SERVICES LAYOUT (ZIG-ZAG)
   ============================================ */
.services-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.service-detailed-card {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-icon-large-wrapper {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(95, 145, 105, 0.1),
    rgba(95, 145, 105, 0.2)
  );
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

/* Decorative ring */
.service-icon-large-wrapper::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px dashed rgba(95, 145, 105, 0.3);
  border-radius: 50%;
}

.service-content {
  flex: 1;
}

.service-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c06c5d;
  margin-bottom: var(--space-xs);
}

.service-detailed-card h3 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.service-detailed-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
}

.service-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

.service-checklist li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color-primary);
  font-size: 1rem;
}

@media (max-width: 991px) {
  .service-detailed-card,
  .service-detailed-card:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
  }

  .service-checklist {
    grid-template-columns: 1fr;
    text-align: left;
    display: inline-grid;
  }

  .service-checklist li {
    justify-self: start;
  }
}

/* ============================================
   FEATURES ROW BADGES
   ============================================ */
.features-row {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.feature-badge span {
  white-space: nowrap;
}

.feature-badge i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-badge--white i {
  color: white;
}

/* Responsive: Stack badges vertically on small screens */
@media (max-width: 767px) {
  .features-row {
    flex-direction: row !important;
    gap: var(--space-md);
  }
  
  .feature-badge span {
    white-space: normal;
  }
}

/* ============================================
   SOLUTION CARDS
   ============================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.solution-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--color-primary);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.solution-card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.solution-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-heading);
}

.solution-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.solution-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c06c5d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT SECTION GRID
   ============================================ */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
  margin-top: var(--space-2xl);
}

.contact-section-grid > div {
  display: flex;
  flex-direction: column;
}

.contact-section-grid .map-container {
  flex: 1;
}

.contact-section-grid .contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact link styles */
.contact-link {
  color: var(--color-text-primary) !important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

/* ============================================
   CONTENT GRID VARIANTS
   ============================================ */
.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-grid--start {
  align-items: start;
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}
/* ============================================
   COMPARISON CARDS
   ============================================ */
.comparison-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-card.featured {
  border: 3px solid #c9a86c;
  position: relative;
}

.comparison-card.featured::before {
  content: "Consigliato";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9a86c, #b8965c);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.comparison-card .comparison-icon {
  font-size: 3rem;
  color: #c9a86c;
  margin-bottom: var(--space-lg);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  text-align: left;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.comparison-list li i {
  color: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   SYMPTOM CARDS
   ============================================ */
.symptom-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease;
}

.symptom-card:hover {
  transform: translateX(5px);
}

.symptom-card .symptom-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c06c5d, #a85a4d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.symptom-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   Updated Checklist Styles (Consolidating)
   ============================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}


@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   CHECKLIST STYLES
   ============================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin-top: var(--space-xl);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item i {
  font-size: 1.25rem;
}

.checklist-item i.fa-check {
  color: var(--color-primary);
}

.checklist-item i.fa-star {
  color: var(--color-accent);
}

.checklist-item span {
  font-size: 1.1rem;
}

/* ============================================
   RESULT CARDS (Before/After style)
   ============================================ */
.results-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.result-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.result-card--problems {
  border-top: 4px solid var(--color-accent);
}

.result-card--benefits {
  border-top: 4px solid var(--color-primary);
}

.result-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.result-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.result-card--problems .result-card-icon {
  background: linear-gradient(
    135deg,
    rgba(192, 108, 93, 0.15),
    rgba(192, 108, 93, 0.05)
  );
  color: var(--color-accent);
}

.result-card--benefits .result-card-icon {
  background: linear-gradient(
    135deg,
    rgba(95, 145, 105, 0.15),
    rgba(95, 145, 105, 0.05)
  );
  color: var(--color-primary);
}

.result-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.result-card-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.result-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-item i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.result-card--problems .result-item i {
  background: var(--color-accent);
  color: white;
}

.result-card--benefits .result-item i {
  background: var(--color-primary);
  color: white;
}

.result-item-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.result-item-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

@media (max-width: 767px) {
  .results-section {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CALLOUT CARD
   ============================================ */
.callout-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-primary)
  );
  border-radius: var(--radius-xl);
  color: white;
}

.callout-card i {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.callout-card h2 {
  margin-bottom: var(--space-md);
  color: white;
}

.callout-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

/* ============================================
   GUARANTEE BADGE
   ============================================ */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.guarantee-badge .number {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
}

.guarantee-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ============================================
   IMAGE OVERLAP STYLE
   ============================================ */
.image-overlap {
  position: relative;
}

.image-overlap .main-image {
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.image-overlap .secondary-image {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

/* ============================================
   BENEFIT CARD VARIANT (Centered)
   ============================================ */
.benefit-card--centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.benefit-card--centered i {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  margin-top: 0;
}
