/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors - Dark Red & Black Theme ==========*/
  --primary-color: #DC143C;           /* Crimson red */
  --primary-color-alt: #B71C1C;       /* Dark red */
  --secondary-color: #FF1744;         /* Bright red accent */
  --accent-color: #FF6B6B;            /* Soft red */
  --text-color: #F5F5F5;              /* Off-white (reduced from pure white) */
  --text-color-light: #B0B0B0;        /* Light gray (reduced white) */
  --text-color-dark: #888888;         /* Medium gray */
  --white-color: #F8F8F8;             /* Slightly off-white */
  --black-color: #000000;
  --body-color: #000000;              /* Pure black background */
  --container-color: #080808;         /* Almost black */
  --border-color: #1A0A0A;            /* Dark border with red tint */
  --card-color: #0F0F0F;              /* Very dark card background */
  --gradient-1: linear-gradient(135deg, #DC143C 0%, #FF1744 100%);
  --gradient-2: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
  --gradient-red: linear-gradient(45deg, #DC143C, #FF1744, #DC143C);
  --shadow-light: 0 2px 8px rgba(220, 20, 60, 0.25);
  --shadow-medium: 0 4px 16px rgba(220, 20, 60, 0.35);
  --shadow-strong: 0 8px 32px rgba(220, 20, 60, 0.45);
  --glow-primary: 0 0 20px rgba(220, 20, 60, 0.8);
  --glow-secondary: 0 0 15px rgba(255, 23, 68, 0.6);

  /*========== Font and typography ==========*/
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Playfair Display', serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /*========== Transitions ==========*/
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1.125rem;
    --small-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  background: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-family: var(--heading-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: grid;
}

.section {
  padding: 2rem 0 1.5rem;
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-2);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--mb-0-5);
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--text-color);
  margin-bottom: var(--mb-1);
  line-height: 1.2;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  color: var(--white-color);
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-medium);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.button i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.button--secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button--secondary:hover {
  background: var(--gradient-1);
  color: var(--white-color);
  transform: translateY(-2px);
}

.button--large {
  padding: 0.8424rem 1.6848rem !important;
  font-size: calc(var(--h3-font-size) * 0.8424) !important;
  min-width: 225px !important;
}

.button--luxury {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  color: #000000;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-transform: none;
  font-weight: var(--font-semi-bold);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.button--luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.button--luxury:hover::before {
  left: 100%;
}

.button--luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.button--elegant {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  backdrop-filter: blur(10px);
  position: relative;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.button--elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.button--elegant:hover::before {
  width: 100%;
}

.button--elegant:hover {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--primary-color);
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  font-family: var(--heading-font);
  transition: var(--transition);
}

.nav__logo:hover {
  color: var(--secondary-color);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
  font-size: var(--small-font-size);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__close,
.nav__toggle {
  display: none;
  font-size: 1.25rem;
  color: var(--text-color);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    transition: var(--transition);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__close,
  .nav__toggle {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }
}

/*=============== HOME ===============*/
.home {
  min-height: calc(100vh + 1rem);
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at center, #0A0A0A 0%, #000000 70%);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 1.5rem;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="%23FFA500" opacity="0.05"/><circle cx="50" cy="10" r="0.2" fill="%23FFD700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  25% { opacity: 0.4; transform: scale(1.1); }
  50% { opacity: 0.6; transform: scale(1); }
  75% { opacity: 0.3; transform: scale(0.9); }
}

.home__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
  padding: 0.5rem 0;
}

.home__data {
  padding-right: 1.5rem;
}

.home__title {
  font-size: clamp(1.53rem, 3.06vw, 2.68rem);
  font-family: var(--heading-font);
  font-weight: var(--font-bold);
  line-height: 1.2;
  margin-bottom: var(--mb-1);
  margin-top: var(--mb-0-75);
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 50%, #E0E0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Force maximum 2 lines display */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(2 * 1.2 * 1em);
}

.home__title-accent {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.home__title-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 2px;
}

.home__description {
  font-size: var(--normal-font-size);
  line-height: 1.5;
  margin-bottom: var(--mb-1-5);
  color: rgba(255, 255, 255, 0.8);
  max-width: 450px;
}

.home__buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: var(--mb-2);
  margin-top: var(--mb-0-75);
  flex-wrap: wrap;
}

/*=============== PREMIUM IMAGE SECTION ===============*/
.home__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__image-container {
  position: relative;
  perspective: 1000px;
}

.image-premium-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  padding: 8px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  transform-style: preserve-3d;
  max-width: 600px;
  width: 100%;
}

.image-premium-frame:hover {
  transform: rotateY(5deg) rotateX(5deg);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.home__img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  transition: var(--transition);
  filter: brightness(1.1) contrast(1.05) saturate(1.1);
  transform-origin: center;
}

/*=============== FLOATING ELEMENTS ===============*/
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 140px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-card--1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.floating-card--2 {
  top: 60%;
  left: -25%;
  animation-delay: 2s;
}

.floating-card--3 {
  bottom: 15%;
  right: -15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-3px);
  }
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text strong {
  font-size: var(--small-font-size);
  color: #FFD700;
  font-weight: var(--font-semi-bold);
}

.card-text span {
  font-size: var(--smaller-font-size);
  color: rgba(255, 255, 255, 0.7);
}

/*=============== RESPONSIVE DESIGN ===============*/
@media screen and (max-width: 1024px) {
  .home__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 2rem 0;
  }
  
  .home__data {
    padding-right: 0;
  }
  
  .home__visual {
    order: -1;
  }
  
  .floating-card {
    display: none;
  }
  
  .home__features {
    flex-direction: row;
    align-items: center;
    margin-bottom: var(--mb-2);
    gap: 0.5rem;
    justify-content: center;
  }
  
  .feature-item {
    min-width: 140px;
    max-width: 160px;
    justify-content: center;
    padding: 0.75rem 1rem;
    flex: 1;
  }
  
  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
  
  .feature-item span {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: #FFD700;
    text-align: center;
    line-height: 1.2;
  }
  
  .image-premium-frame {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .home {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1rem;
    min-height: auto;
    overflow-x: hidden;
  }
  
  .home__content {
    padding: 0 1rem;
    overflow-x: hidden;
  }
  
  .home__title {
    font-size: clamp(1.53rem, 4.59vw, 2.3rem);
    margin-top: 0.5rem;
    /* Force maximum 2 lines display on mobile */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(2 * 1.2 * 1em);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .home__description {
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-1);
  }
  
  /* FIX: Réduction drastique de l'animation initiale sur mobile */
  .reveal-element {
    transform: translateY(5px) !important;
  }
  
  /* FIX: Assurer que le bouton principal de réservation soit toujours visible sur mobile */
  .home__buttons.reveal-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .home__features {
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--mb-1-5);
    gap: 0.75rem;
  }
  
  .feature-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
  }
  
  .home__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: var(--mb-1-5);
    width: 100%;
  }
  
  .home__buttons .button {
    width: 100%;
    max-width: 300px;
    padding: 0.65rem 1rem;
    font-size: var(--small-font-size);
    white-space: nowrap;
  }
  
  .home__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .image-premium-frame {
    max-width: 400px;
    margin: 3rem auto 0;
  }
}

@media screen and (max-width: 480px) {
  .home {
    padding: 2rem 0;
  }
  
  .home__content {
    gap: 2rem;
  }
  
  .home__badge {
    padding: 0.5rem 0.75rem;
  }
  
  .badge__text {
    font-size: var(--smaller-font-size);
  }
  
  .feature-item {
    padding: 0.5rem 0.75rem;
  }
  
  .stat--premium {
    padding: 1rem;
  }

  .image-premium-frame {
    max-width: 300px;
    margin: 5rem auto 0 !important;
  }
}

/*=============== FRENCH METHOD SECTION ===============*/
.method-french {
  background: var(--body-color);
  padding: 2.5rem 0;
  position: relative;
  visibility: visible !important;
  display: block !important;
}

.method-french::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.french-pillars-compact {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
  visibility: visible !important;
  opacity: 1 !important;
}

.pillar-compact {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-2);
  border: 2px solid rgba(220, 20, 60, 0.15);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  visibility: visible !important;
  opacity: 1 !important;
}

.pillar-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

.pillar-compact:hover::before {
  opacity: 1;
}

.pillar-compact:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.pillar-letter {
  font-size: 2rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 215, 0, 0.1);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.pillar-info {
  flex: 1;
  position: relative;
  z-index: 3;
}

.pillar-info h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.pillar-info p {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin: 0;
}

.pillar-benefit {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  background: rgba(220, 20, 60, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.method-cta-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.proof-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.proof-inline i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.proof-inline strong {
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .method-french {
    padding: 2rem 0;
    overflow-x: hidden;
  }
  
  .french-pillars-compact {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
  }
  
  .pillar-compact {
    display: flex !important;
    width: 100%;
    max-width: 320px;
    padding: 0.75rem 1rem;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    background: var(--gradient-2) !important;
    border: 2px solid rgba(220, 20, 60, 0.15) !important;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
  
  .pillar-letter {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11;
  }
  
  .pillar-info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11;
    flex: 1;
    min-width: 0;
  }
  
  .pillar-benefit {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11;
  }
  
  .method-cta-compact {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
  }
  
  .method-cta-compact .button {
    width: 100%;
    max-width: 280px;
  }
}

@media screen and (max-width: 480px) {
  .home {
    padding: 1.5rem 0;
  }
  
  .home__content {
    padding: 0 0.5rem;
  }
  
  .home__title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
  }
  
  .home__buttons .button {
    max-width: 280px;
    padding: 0.6rem 0.9rem;
    font-size: var(--smaller-font-size);
    white-space: nowrap;
  }
  
  /* FIX: Forcer la visibilité du bouton principal sur mobile 480px */
  .home__buttons.reveal-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
  }
  
  .method-french {
    padding: 1.5rem 0;
  }
  
  .pillar-compact {
    display: flex !important;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    max-width: 300px;
    min-height: 65px;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--gradient-2) !important;
    border: 2px solid rgba(220, 20, 60, 0.15) !important;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    gap: 0.75rem;
  }
  
  .pillar-letter {
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }
  
  .pillar-info {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1;
    min-width: 0;
  }
  
  .pillar-info h4 {
    font-size: var(--small-font-size);
    margin-bottom: 0.15rem;
  }
  
  .pillar-info p {
    font-size: var(--smaller-font-size);
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
    margin: 0;
  }
  
  .pillar-benefit {
    display: inline-block !important;
    font-size: 10px;
    padding: 0.2rem 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }
  
  .image-premium-frame {
    max-width: 300px;
    margin: 5rem auto 0 !important;
  }
}

/*=============== ABOUT ===============*/
.about__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about__data {
  width: 100%;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .about__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about__container {
    gap: 2rem;
  }
  
  .about__image {
    margin-top: 1.5rem;
  }
}

.about__description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
}

.about__features {
  display: grid;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.feature__icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature__content h3 {
  font-size: var(--normal-font-size);
  margin-bottom: 0.35rem;
  color: var(--text-color);
}

.feature__content p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}

/* Test result container styling */
.test-result-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.test-result-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.test-result-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}

.test-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-1);
  color: var(--white-color);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.test-score {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  line-height: 1;
}

.test-label {
  display: block;
  font-size: 0.75rem;
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

@media screen and (max-width: 768px) {
  .test-result-container {
    max-width: 300px;
  }
  
  .test-result-image {
    max-width: 280px;
  }
  
  .test-badge {
    top: -5px;
    right: -5px;
    padding: 0.5rem 0.75rem;
  }
  
  .test-score {
    font-size: 1.25rem;
  }
  
  .test-label {
    font-size: 0.7rem;
  }
}

/*=============== SERVICES ===============*/
.services {
  background: var(--container-color);
}

.services__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service__card {
  background: var(--card-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: var(--transition);
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service__card--featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--card-color) 0%, rgba(220, 20, 60, 0.05) 100%);
}

.service__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-1);
  color: var(--white-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}

.service__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
  margin: 0 auto var(--mb-1);
}

.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.service__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
}

.service__price {
  font-size: 1.75rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.service__price span {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.service__features {
  list-style: none;
  margin-bottom: var(--mb-2);
}

.service__features li {
  padding: 0.5rem 0;
  color: var(--text-color-light);
  position: relative;
  padding-left: 1.5rem;
}

.service__features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

/*=============== PROCESS FLOW HORIZONTAL ===============*/
.process-flow-horizontal {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--container-color);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.process-card {
  background: var(--card-color);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-color);
}

.process-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.process-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: var(--font-bold);
  color: var(--white-color);
  box-shadow: var(--shadow-light);
}

.process-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 20, 60, 0.1);
  border: 2px solid rgba(220, 20, 60, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.process-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.process-card p {
  color: var(--text-color-light);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: var(--small-font-size);
}

.process-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.process-features span {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  padding: 0.25rem 0;
}

.process-price {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  background: rgba(220, 20, 60, 0.1);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-highlight {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  background: rgba(220, 20, 60, 0.1);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-pricing {
  margin-bottom: 1rem;
}

.price-display {
  font-size: 1.75rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.price-display span {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.price-comparison {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  line-height: 1.4;
}

.process-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.process-benefits span {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.process-cta {
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.process-cta:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.process-cta--primary {
  background: var(--gradient-1);
  color: var(--white-color);
  border: none;
  box-shadow: var(--shadow-medium);
}

.process-cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.process-cta i {
  font-size: 1rem;
}

.process-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(220, 20, 60, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(220, 20, 60, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .process-flow-horizontal {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  
  .process-card__header {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .process-flow-horizontal {
    padding: 1rem;
  }
  
  .process-card {
    padding: 1rem;
  }
  
  .process-card__header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .process-icon {
    width: 45px;
    height: 45px;
  }
  
  .process-icon i {
    font-size: 1.25rem;
  }
  
  .price-display {
    font-size: 1.5rem;
  }
}

/*=============== SERVICES CTA ===============*/
.services-cta {
  background: var(--gradient-2);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.services-cta.shimmer-active::before {
  animation: shimmer 2s ease-in-out;
}

.services-cta__content h3 {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.services-cta__content p {
  color: var(--text-color-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.stat-label {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  text-align: center;
}

/*=============== FORCE VISIBILITY FIX ===============*/
.methods__container-compact *,
.articles__container-compact *,
.methods section,
.articles section {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

/*=============== METHODS COMPACT ===============*/
.methods__container-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
}

.method__card-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: var(--card-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  overflow: hidden;
  visibility: visible !important;
  opacity: 1 !important;
}

.method__card-compact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.method__image-compact {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.method__image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.method__card-compact:hover .method__image-compact img {
  transform: scale(1.05);
}

.method__overlay-compact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(220, 20, 60, 0.8), rgba(255, 23, 68, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.method__card-compact:hover .method__overlay-compact {
  opacity: 1;
}

.method__overlay-compact i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.method__card-compact h3 {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .methods__container-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .method__card-compact {
    padding: 0.75rem;
  }
  
  .method__image-compact {
    height: 100px;
  }
  
  .method__overlay-compact i {
    font-size: 1.25rem;
  }
  
  .method__card-compact h3 {
    font-size: var(--small-font-size);
  }
}



/*=============== ARTICLES COMPACT ===============*/
.articles {
  background: var(--container-color);
}

.articles__container-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  visibility: visible !important;
  opacity: 1 !important;
}

.article__card-compact {
  background: var(--card-color);
  border-radius: 8px;
  padding: 0;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  visibility: visible !important;
  opacity: 1 !important;
}

.article__card-compact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.article__image-compact {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.article__image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article__card-compact:hover .article__image-compact img {
  transform: scale(1.05);
}

.article__content-compact {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.article__content-compact h3 {
  font-size: var(--normal-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color);
  line-height: 1.3;
  font-weight: var(--font-medium);
}

.article__content-compact .article__category {
  display: inline-block;
  background: rgba(220, 20, 60, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.article__content-compact .article__link {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  font-size: var(--small-font-size);
  text-decoration: none;
  margin-top: auto;
}

.article__content-compact .article__link:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  .articles__container-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .article__image-compact {
    height: 120px;
  }
  
  .article__content-compact {
    padding: 0.75rem;
  }
  
  .article__content-compact h3 {
    font-size: var(--small-font-size);
  }
}

/*=============== PRICING COMPARISON SIMPLE ===============*/
.comparison-simple {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.comparison-text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.comparison-highlight {
  font-size: var(--small-font-size);
  color: var(--primary-color);
  font-weight: var(--font-bold);
  background: rgba(220, 20, 60, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.value-simple {
  font-size: var(--normal-font-size);
  color: var(--primary-color);
  font-weight: var(--font-bold);
  text-align: center;
}

/*=============== FACTS ===============*/
.facts__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fact__card {
  background: var(--card-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.fact__card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}

.fact__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
  margin: 0 auto var(--mb-1);
}

.fact__card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.fact__card p {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1);
  line-height: 1.6;
}

.fact__source {
  font-size: var(--smaller-font-size);
  color: var(--text-color-dark);
  font-style: italic;
}

/*=============== CTA ===============*/
.cta {
  background: var(--gradient-2);
  text-align: center;
}

.cta__container {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.cta__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  font-size: var(--normal-font-size);
  line-height: 1.6;
}

/*=============== CONTACT ===============*/
.contact {
  background: var(--container-color);
}

.contact__container {
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__data h3 {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.contact__data p {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.contact__info {
  margin-bottom: var(--mb-2);
}

.contact__item {
  display: flex;
  align-items: center;
  margin-bottom: var(--mb-1);
  gap: 1rem;
}

.contact__item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.contact__item a {
  color: var(--text-color-light);
  transition: var(--transition);
}

.contact__item a:hover {
  color: var(--primary-color);
}

.contact__disclaimer {
  background: var(--card-color);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: var(--mb-2);
}

.contact__disclaimer p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin: 0;
}

.contact__form {
  background: var(--card-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form__group {
  margin-bottom: var(--mb-1-5);
}

.form__input,
.form__textarea {
  width: 100%;
  background: var(--container-color);
  color: var(--text-color);
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: var(--transition);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(220, 20, 60, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-color-dark);
}

/*=============== CONTACT FORM FOCUS ANIMATION ===============*/
.contact__form.focus-animation {
  animation: focusGlow 2s ease-in-out;
  transform: scale(1.02);
}

@keyframes focusGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(220, 20, 60, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.4);
    transform: scale(1.02);
  }
}

/*=============== FOOTER ===============*/
.footer {
  background: var(--black-color);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer__logo {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  font-family: var(--heading-font);
  margin-bottom: var(--mb-1);
}

.footer__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--text-color-light);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: var(--mb-1);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.footer__copy {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-color-dark);
  font-size: var(--small-font-size);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--gradient-1);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: var(--z-tooltip);
  box-shadow: var(--shadow-medium);
}

.scrollup:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.scrollup i {
  font-size: 1.2rem;
  color: var(--white-color);
}

.show-scroll {
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--container-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-alt);
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 350px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .home__buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .home__stats {
    grid-template-columns: 1fr;
  }

  .services__container,
  .articles__container,
  .methods__container {
    grid-template-columns: 1fr;
  }

  /* Burger Comparison Mobile */
  .comparison__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison__vs {
    order: 2;
    padding: 1rem 0;
  }

  .vs-circle {
    width: 60px;
    height: 60px;
    font-size: var(--h3-font-size);
  }

  .comparison__card {
    padding: 1.5rem;
  }

  .burger-visual {
    width: 100px;
    height: 120px;
  }

  .science-fact {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (min-width: 568px) {
  .home__buttons {
    justify-content: center;
  }

  .about__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles__container,
  .methods__container,
  .facts__container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Burger Comparison Tablet */
  .comparison__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison__vs {
    order: 2;
  }

  .comparison__card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .section {
    padding: 2.5rem 0 2rem;
  }

  .home {
    height: 100vh;
  }

  .home__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .home__data {
    text-align: left;
  }

  .home__image {
    order: 2;
  }

  .home__buttons {
    justify-content: flex-start;
  }

  .about__container {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
  }

  .contact__container {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles__container,
  .methods__container {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Burger Comparison Desktop */
  .comparison__container {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
  }

  .comparison__vs {
    order: initial;
  }

  .burger-comparison {
    padding: 5rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .articles__container,
  .methods__container,
  .facts__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }


}

/*=============== RESPONSIVE - PROCESS FLOW ===============*/
@media screen and (max-width: 768px) {
  .services-cta {
    padding: 2rem 1.5rem;
  }
  
  .services-cta__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/*=============== SCROLL REVEAL ANIMATIONS ===============*/
/* Elements hidden by default */
.reveal-element {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-element.reveal-left {
  transform: translateX(-60px) translateY(0);
}

.reveal-element.reveal-right {
  transform: translateX(60px) translateY(0);
}

.reveal-element.reveal-scale {
  transform: scale(0.8) translateY(30px);
}

/* Active state when element is visible */
.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered animations for multiple elements */
.reveal-element.delay-1 {
  transition-delay: 0.1s;
}

.reveal-element.delay-2 {
  transition-delay: 0.2s;
}

.reveal-element.delay-3 {
  transition-delay: 0.3s;
}

.reveal-element.delay-4 {
  transition-delay: 0.4s;
}

/* Mobile optimization - reduce translation to prevent spacing issues */
@media screen and (max-width: 768px) {
  .reveal-element {
    transform: translateY(20px) !important; /* Reduced from 60px to 20px */
  }
  
  .reveal-element.reveal-left {
    transform: translateX(-20px) translateY(0) !important; /* Reduced from -60px */
  }
  
  .reveal-element.reveal-right {
    transform: translateX(20px) translateY(0) !important; /* Reduced from 60px */
  }
  
  .reveal-element.reveal-scale {
    transform: scale(0.95) translateY(10px) !important; /* Reduced movement */
  }
  
  /* Ensure home title doesn't create spacing issues */
  .home__title.reveal-element {
    transform: translateY(10px) !important; /* Minimal movement for title */
  }
}

/* Section titles animation */
.section__header {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section__header.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Cards animation */
.card-reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Text reveal animation */
.text-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.text-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Button reveal animation */
.button-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.button-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/*=============== LEGACY ANIMATIONS - REMOVED DUPLICATES ===============*/

/*=============== LEGACY ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*=============== BURGER COMPARISON ===============*/
.burger-comparison {
  background: var(--gradient-2);
  padding: 4rem 0;
}

/* Burger Images Row - Horizontal Layout with 60% Size Reduction */
.burger-images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.burger-image-container {
  text-align: center;
}

.burger-image-reduced {
  width: 40%; /* 60% reduction from original size */
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.burger-image-reduced:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

.burger-title {
  font-size: var(--h3-font-size);
  margin: 1rem 0 0.5rem 0;
  color: var(--text-color);
}

.burger-subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  margin: 0;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: var(--font-bold);
  font-size: 1.2rem;
  box-shadow: var(--shadow-medium);
  animation: pulse 2s infinite;
}

/* Health Comparison Grid */
.health-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.comparison__card {
  background: var(--card-color);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.comparison__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: var(--transition);
}

.comparison__card--bad::before {
  background: linear-gradient(90deg, #FF4444, #CC0000);
}

.comparison__card--good::before {
  background: linear-gradient(90deg, #00D4AA, #00A285);
}

.comparison__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.comparison__card--bad:hover {
  border-color: #FF4444;
}

.comparison__card--good:hover {
  border-color: #00D4AA;
}

.comparison__header {
  text-align: center;
  margin-bottom: var(--mb-2);
}

.comparison__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto var(--mb-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.comparison__card--bad .comparison__icon {
  background: linear-gradient(135deg, #FF4444, #CC0000);
  color: var(--white-color);
}

.comparison__card--good .comparison__icon {
  background: linear-gradient(135deg, #00D4AA, #00A285);
  color: var(--white-color);
}

.comparison__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.comparison__subtitle {
  font-size: var(--small-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: var(--font-medium);
}

.comparison__card--bad .comparison__subtitle {
  color: #FF4444;
}

.comparison__card--good .comparison__subtitle {
  color: #00D4AA;
}

.comparison__image {
  margin: var(--mb-2) 0;
  display: flex;
  justify-content: center;
}

/* Burger Visual Styles */
.burger-visual {
  width: 120px;
  height: 140px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.burger-visual:hover {
  transform: scale(1.05);
}

.burger-visual > div {
  width: 100%;
  position: absolute;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Bun styles */
.bun-top, .bun-bottom {
  height: 20px;
  background: linear-gradient(135deg, #D2691E, #A0522D);
  border: 2px solid #8B4513;
}

.bun-top {
  top: 0;
  border-radius: 50px 50px 8px 8px;
}

.bun-bottom {
  bottom: 0;
  border-radius: 8px 8px 50px 50px;
}

.bun-top.healthy, .bun-bottom.healthy {
  background: linear-gradient(135deg, #8B4513, #654321);
  border-color: #5D4037;
}

.bun-bottom.processed {
  background: linear-gradient(135deg, #FFE4B5, #DEB887);
  border-color: #D2B48C;
}

/* Ingredients */
.lettuce {
  height: 12px;
  top: 20px;
  background: linear-gradient(135deg, #90EE90, #32CD32);
  border-radius: 50px;
}

.lettuce.organic {
  background: linear-gradient(135deg, #228B22, #006400);
}

.tomato {
  height: 8px;
  top: 35px;
  background: linear-gradient(135deg, #FF6347, #DC143C);
  border-radius: 4px;
}

.tomato.organic {
  background: linear-gradient(135deg, #DC143C, #B22222);
}

.cheese {
  height: 6px;
  top: 50px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 2px;
}

.cheese.processed {
  background: linear-gradient(135deg, #FFFF00, #FFCC00);
  opacity: 0.8;
}

.avocado {
  height: 10px;
  top: 45px;
  background: linear-gradient(135deg, #7CB342, #558B2F);
  border-radius: 6px;
}

.meat {
  height: 18px;
  top: 65px;
  background: linear-gradient(135deg, #8B4513, #654321);
  border-radius: 4px;
}

.meat.processed {
  background: linear-gradient(135deg, #CD853F, #A0522D);
  opacity: 0.9;
}

.meat.grass-fed {
  background: linear-gradient(135deg, #654321, #3E2723);
}

.sauce {
  height: 4px;
  top: 85px;
  border-radius: 2px;
}

.sauce.industrial {
  background: linear-gradient(135deg, #FFB347, #FF8C00);
}

.seeds {
  height: 6px;
  top: 85px;
  background: linear-gradient(135deg, #8D6E63, #5D4037);
  border-radius: 10px;
}

/* Ingredients List */
.ingredients-list {
  margin-bottom: var(--mb-2);
}

.ingredients-list h4 {
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.ingredients-list ul {
  list-style: none;
}

.ingredients-list li {
  padding: 0.5rem 0;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
}

.ingredient-bad, .ingredient-good {
  font-weight: var(--font-medium);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  font-size: var(--smaller-font-size);
}

.ingredient-bad {
  background: rgba(255, 68, 68, 0.2);
  color: #FF4444;
}

.ingredient-good {
  background: rgba(0, 212, 170, 0.2);
  color: #00D4AA;
}

/* Health Impact */
.health-impact h4 {
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.impact-meter {
  background: var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: var(--mb-1);
}

.impact-meter--bad {
  border-left: 4px solid #FF4444;
}

.impact-meter--good {
  border-left: 4px solid #00D4AA;
}

.impact-label {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.impact-bar {
  width: 100%;
  height: 8px;
  background: var(--container-color);
  border-radius: 4px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.impact-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.impact-fill--bad {
  background: linear-gradient(90deg, #FF4444, #CC0000);
}

.impact-fill--good {
  background: linear-gradient(90deg, #00D4AA, #00A285);
}

.impact-value {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  margin-left: 0.5rem;
}

.impact-meter--bad .impact-value {
  color: #FF4444;
}

.impact-meter--good .impact-value {
  color: #00D4AA;
}

.impact-description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  line-height: 1.4;
}

/* VS Element */
.comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.vs-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--white-color);
  box-shadow: var(--glow-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Comparison Actions */
.comparison__actions {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.comparison__actions .button {
  margin: 0.5rem;
}

.comparison__toggle {
  background: var(--gradient-1);
}

/* Science Section */
.comparison__science {
  background: var(--container-color);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
}

.science-fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.science-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white-color);
  flex-shrink: 0;
}

.science-content h4 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.science-content p {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  line-height: 1.6;
}

/* Animations */
.burger-visual.animate {
  animation: burgerBounce 0.6s ease;
}

@keyframes burgerBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1) rotate(2deg); }
}

.comparison__card.highlight {
  border-color: var(--primary-color);
  box-shadow: var(--glow-primary);
}

/*=============== PREMIUM VISUAL COMPARISON ===============*/
.premium-comparison {
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 50%, #000000 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.premium-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(220, 20, 60, 0.03) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(1deg); }
}

/* Premium Header */
.premium-comparison__header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
}

.header-badge__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.premium-comparison__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: var(--heading-font);
}

.title-accent {
  background: linear-gradient(135deg, #DC143C 0%, #FF1744 50%, #DC143C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.premium-comparison__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.premium-comparison__container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Premium Visual Comparison */
.visual-comparison {
  margin-bottom: 4rem;
}

.comparison-viewer {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(220, 20, 60, 0.1);
  cursor: col-resize;
  user-select: none;
  transition: all 0.3s ease;
}

.comparison-viewer:hover {
  box-shadow: 
    0 35px 70px -12px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(220, 20, 60, 0.2);
}

/* Premium Images */
.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.comparison-image--before {
  z-index: 1;
}

.comparison-image--after {
  z-index: 2;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0.1s ease;
}

.comparison-image--after img {
  display: block !important;
  opacity: 1 !important;
}

/* Premium Overlays */
.image-overlay {
  position: absolute;
  top: 24px;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(30px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.image-overlay--before {
  left: 24px;
  border-left: 3px solid #FF4444;
}

.image-overlay--after {
  right: 24px;
  border-left: 3px solid #00D4AA;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.overlay-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.overlay-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.impact-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.impact-badge--negative {
  background: rgba(255, 68, 68, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.impact-badge--positive {
  background: rgba(0, 212, 170, 0.15);
  color: #4ECDC4;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

/* Premium Controller */
.comparison-controller {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(220, 20, 60, 0.8) 0%, 
    rgba(220, 20, 60, 1) 50%, 
    rgba(220, 20, 60, 0.8) 100%
  );
  z-index: 20;
  cursor: col-resize;
  transform: translateX(-50%);
  box-shadow: 
    0 0 20px rgba(220, 20, 60, 0.5),
    0 0 40px rgba(220, 20, 60, 0.2);
}

.comparison-controller::before {
  content: '';
  position: absolute;
  top: 0;
  left: -25px;
  width: 52px;
  height: 100%;
  cursor: col-resize;
}

/* Premium Handle */
.controller-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(220, 20, 60, 0.2) 50%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(220, 20, 60, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.controller-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(220, 20, 60, 0.5),
    0 0 30px rgba(220, 20, 60, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.handle-grip {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.handle-indicator {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium Interaction Guide */
.interaction-guide {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.guide-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guide-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(220, 20, 60, 0.1));
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-icon i {
  color: #DC143C;
  font-size: 1.125rem;
}

.guide-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Premium Nutrition Analysis */
.nutrition-analysis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.analysis-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.analysis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: all 0.3s ease;
}

.analysis-card--standard::before {
  background: linear-gradient(90deg, #FF4444, #FF6B6B);
}

.analysis-card--optimized::before {
  background: linear-gradient(90deg, #00D4AA, #4ECDC4);
}

.analysis-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.analysis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.analysis-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.analysis-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.analysis-status--negative {
  background: rgba(255, 68, 68, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.analysis-status--positive {
  background: rgba(0, 212, 170, 0.15);
  color: #4ECDC4;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

/* Nutrition Breakdown */
.nutrition-breakdown {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nutrition-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nutrition-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(220, 20, 60, 0.3);
  transform: translateX(4px);
}

.nutrition-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.nutrition-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nutrition-name {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
}

.nutrition-effect {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Impact Summary */
.impact-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border-left: 3px solid;
}

.analysis-card--standard .impact-summary {
  border-left-color: #FF4444;
}

.analysis-card--optimized .impact-summary {
  border-left-color: #00D4AA;
}

.impact-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.impact-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.analysis-card--standard .impact-percentage {
  color: #FF6B6B;
}

.analysis-card--optimized .impact-percentage {
  color: #4ECDC4;
}

/* Health Impact (legacy) */
.health-impact {
  text-align: center;
}

.impact-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.impact-badge--bad {
  background: rgba(255, 68, 68, 0.2);
  color: #FF4444;
  border: 1px solid #FF4444;
}

.impact-badge--good {
  background: rgba(0, 212, 170, 0.2);
  color: #00D4AA;
  border: 1px solid #00D4AA;
}

.health-impact p {
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  line-height: 1.4;
}

/* Premium Actions */
.premium-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.action-btn--reset:hover {
  background: rgba(255, 255, 255, 0.1);
}

.action-btn--demo:hover {
  background: rgba(220, 20, 60, 0.2);
  border-color: rgba(220, 20, 60, 0.4);
}

.action-btn--primary {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(220, 20, 60, 0.6));
  border-color: rgba(220, 20, 60, 0.5);
}

.action-btn--primary:hover {
  background: linear-gradient(135deg, rgba(220, 20, 60, 1), rgba(220, 20, 60, 0.8));
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.action-btn i {
  font-size: 1.125rem;
}

.action-btn span {
  font-weight: 500;
}

/* Loading State */
.slider-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-color);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  z-index: 100;
  display: none;
}

.slider-loading.show {
  display: block;
}

/* Premium Responsive Design */
@media screen and (max-width: 1024px) {
  .premium-comparison {
    padding: 6rem 0;
  }
  
  .premium-comparison__header {
    margin-bottom: 4rem;
  }
  
  .premium-comparison__title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .comparison-viewer {
    height: 400px;
  }
  
  .nutrition-analysis {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .premium-comparison {
    padding: 4rem 0;
  }
  
  .header-badge {
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .premium-comparison__header {
    margin-bottom: 3rem;
  }
  
  .premium-comparison__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .premium-comparison__subtitle {
    font-size: 1rem;
  }
  
  .comparison-viewer {
    height: 350px;
    border-radius: 16px;
  }
  
  .image-overlay {
    padding: 1rem 1.5rem;
    top: 16px;
    border-radius: 12px;
  }
  
  .image-overlay--before {
    left: 16px;
  }
  
  .image-overlay--after {
    right: 16px;
  }
  
  .overlay-title {
    font-size: 1rem;
  }
  
  .overlay-subtitle {
    font-size: 0.75rem;
  }
  
  .controller-handle {
    width: 50px;
    height: 50px;
  }
  
  .handle-grip {
    font-size: 1rem;
  }
  
  .handle-indicator {
    font-size: 0.6rem;
  }
  
  .interaction-guide {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .guide-item {
    justify-content: center;
  }
  
  .nutrition-analysis {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .analysis-card {
    padding: 1.5rem;
  }
  
  .premium-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .action-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .premium-comparison {
    padding: 3rem 0;
  }
  
  .comparison-viewer {
    height: 280px;
    border-radius: 12px;
  }
  
  .image-overlay {
    padding: 0.75rem 1rem;
    top: 12px;
  }
  
  .image-overlay--before {
    left: 12px;
  }
  
  .image-overlay--after {
    right: 12px;
  }
  
  .overlay-title {
    font-size: 0.9rem;
  }
  
  .impact-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
  }
  
  .controller-handle {
    width: 40px;
    height: 40px;
  }
  
  .handle-indicator {
    display: none;
  }
  
  .analysis-card {
    padding: 1rem;
  }
  
  .analysis-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .nutrition-item {
    padding: 0.75rem;
  }
  
  .nutrition-icon {
    font-size: 1.25rem;
  }
  
  .impact-summary {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .impact-percentage {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .slider-wrapper {
    height: 250px;
  }
  
  .slider-label {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0.75rem;
    width: calc(100% - 1.5rem);
  }
  
  .slider-label--before {
    margin-bottom: 0.75rem;
  }
  
  .slider-label--after {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: auto;
  }
}

/* Animation for auto-demo */
@keyframes sliderSweep {
  0%, 10% { left: 10%; }
  50% { left: 90%; }
  90%, 100% { left: 10%; }
}

.slider-divider.auto-animate {
  animation: sliderSweep 4s ease-in-out infinite;
}

.slider-image--after.auto-animate {
  transition: clip-path 0.3s ease;
}

/* Active detail card styles */
.detail-card.active {
  border-color: var(--primary-color);
  box-shadow: var(--glow-primary);
  transform: translateY(-2px);
}

/* Fallback placeholders */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--container-color), var(--card-color));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  border: 2px dashed var(--border-color);
  border-radius: 8px;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.image-placeholder p {
  font-size: var(--normal-font-size);
  margin-bottom: 0.5rem;
  text-align: center;
}

.image-placeholder small {
  font-size: var(--small-font-size);
  opacity: 0.7;
  text-align: center;
}

/* Additional fixes for image slider */
.slider-image img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure proper stacking context */
.slider-image--before {
  z-index: 1 !important;
}

.slider-image--after {
  z-index: 2 !important;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%) !important;
}

/* Debug helper - remove in production */
.slider-wrapper {
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-image {
  outline: 1px solid rgba(255, 0, 0, 0.2);
}

/* Improve contrast for labels */
.slider-label {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Enhance button visibility */
.slider-actions .button {
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.slider-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

/* Better responsive sizing */
@media screen and (max-width: 576px) {
  .slider-comparison {
    padding: 2rem 0;
  }
  
  .slider-wrapper {
    height: 200px;
    border-radius: 8px;
  }
  
  .slider-label {
    font-size: var(--smaller-font-size);
    padding: 0.5rem;
  }
  
  .label-text {
    font-size: var(--small-font-size);
  }
  
  .impact-indicator {
    font-size: 0.7rem;
  }
  
  .slider-handle {
    width: 35px;
    height: 35px;
  }
  
  .handle-text {
    display: none;
  }
  
  .detail-card {
    padding: 1rem;
  }
  
  .ingredient-icon {
    font-size: 1rem;
  }
}

/*=============== PHILOSOPHY SECTION ===============*/
.philosophy-section {
  background: linear-gradient(180deg, 
    #000000 0%, 
    #0A0A0A 50%, 
    #000000 100%);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(220, 20, 60, 0.2);
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.philosophy-intro {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.philosophy-intro .philosophy-text {
  flex: 1;
}

.philosophy-text {
  font-size: var(--normal-font-size);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: var(--transition);
}

.stat-block:hover {
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 20, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.stat-content h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-content p {
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.philosophy-approach h3 {
  font-size: var(--h2-font-size);
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: var(--heading-font);
}

.approach-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.approach-point {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.15);
  transition: var(--transition);
}

.approach-point:hover {
  border-color: rgba(220, 20, 60, 0.4);
  background: rgba(0, 0, 0, 0.8);
}

.point-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.point-header i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.point-header h4 {
  font-size: var(--h3-font-size);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: var(--font-semi-bold);
}

.approach-point p {
  font-size: var(--small-font-size);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .philosophy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .approach-points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .philosophy-section {
    padding: 2rem 0;
  }
  
  .philosophy-intro {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .philosophy-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .approach-points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-block {
    padding: 0.75rem;
  }
  
  .approach-point {
    padding: 1rem;
  }
}

/*=============== PREMIUM OFFER ===============*/
.premium-offer {
  background: linear-gradient(135deg, 
    rgba(8, 8, 16, 0.98) 0%, 
    rgba(15, 15, 23, 0.95) 50%, 
    rgba(25, 25, 35, 0.92) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.premium-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(119, 198, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.offer-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
}

.offer-block {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.offer-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(120, 119, 198, 0.6) 0%, 
    rgba(255, 119, 198, 0.4) 50%, 
    rgba(119, 198, 255, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-block:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 30px rgba(120, 119, 198, 0.1);
}

.offer-block:hover::before {
  opacity: 1;
}

.offer-block--consultation {
  background: rgba(120, 119, 198, 0.05);
}

.offer-block--program {
  background: rgba(255, 119, 198, 0.05);
  position: relative;
}

.offer-block--program::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  transform: rotate(25deg);
  pointer-events: none;
}

.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.block-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(120, 119, 198, 0.2), rgba(120, 119, 198, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 119, 198, 0.3);
}

.block-icon--premium {
  background: linear-gradient(135deg, rgba(255, 119, 198, 0.2), rgba(255, 119, 198, 0.1));
  border-color: rgba(255, 119, 198, 0.3);
}

.block-icon i {
  font-size: 1.5rem;
  color: var(--first-color);
}

.block-badge {
  padding: 0.5rem 1rem;
  background: rgba(120, 119, 198, 0.2);
  color: var(--first-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(120, 119, 198, 0.3);
}

.block-badge--premium {
  background: linear-gradient(135deg, rgba(255, 119, 198, 0.2), rgba(255, 215, 0, 0.1));
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
}

.block-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.block-subtitle {
  color: var(--text-color-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.block-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-item i {
  color: var(--first-color);
  font-size: 1rem;
  background: rgba(120, 119, 198, 0.1);
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item span {
  color: var(--text-color-light);
  font-size: 0.95rem;
}

.block-value {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(120, 119, 198, 0.1);
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(120, 119, 198, 0.2);
}

.value-label {
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.value-amount {
  font-size: 1.2rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  text-decoration: line-through;
}

.value-free {
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  color: var(--first-color);
  background: rgba(120, 119, 198, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}

.block-pricing {
  margin-bottom: 2rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: var(--font-semibold);
  color: var(--first-color);
}

.price-amount {
  font-size: 3rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  font-family: 'Orbitron', monospace;
  margin: 0 0.25rem;
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-color-light);
  font-weight: var(--font-medium);
}

.price-comparison {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.comparison-item {
  font-size: 0.85rem;
  color: var(--text-color-light);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}

.price-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--first-color);
  font-size: 0.9rem;
  font-weight: var(--font-medium);
}

.price-guarantee i {
  font-size: 1rem;
}

.block-cta {
  text-align: center;
}

.cta-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn--free {
  background: linear-gradient(135deg, rgba(120, 119, 198, 0.8), rgba(120, 119, 198, 0.6));
  color: var(--white-color);
  border: 1px solid rgba(120, 119, 198, 0.4);
}

.cta-btn--free:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(120, 119, 198, 0.9), rgba(120, 119, 198, 0.7));
  box-shadow: 0 12px 40px rgba(120, 119, 198, 0.3);
}

.cta-btn--premium {
  background: linear-gradient(135deg, rgba(255, 119, 198, 0.8), rgba(255, 215, 0, 0.6));
  color: var(--title-color);
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-weight: var(--font-bold);
}

.cta-btn--premium:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255, 119, 198, 0.9), rgba(255, 215, 0, 0.7));
  box-shadow: 0 12px 40px rgba(255, 119, 198, 0.4);
}

.offer-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  color: var(--text-color-light);
  font-size: 0.95rem;
  font-style: italic;
}

/* Legacy quick-offer classes - DEPRECATED */
.quick-offer__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quick-offer__header .section__subtitle {
  color: var(--primary-color);
  font-weight: var(--font-bold);
  font-size: var(--small-font-size);
}

.quick-offer__header .section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0;
  line-height: 1.3;
  color: var(--text-color);
}

.quick-offer__container {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--card-color);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
}

/* Features horizontales */
.quick-offer__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feature-quick {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--container-color);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-quick:hover {
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.feature-quick i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-quick span {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  white-space: nowrap;
}

/* Prix et comparaison */
.quick-offer__pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.price-display {
  text-align: center;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-currency {
  font-size: var(--normal-font-size);
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.price-amount {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  line-height: 1;
}

.price-period {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-medium);
}

.price-note {
  font-size: var(--smaller-font-size);
  color: var(--primary-color);
  font-weight: var(--font-medium);
  background: rgba(220, 20, 60, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.price-comparison {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.comparison-text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-medium);
  text-transform: uppercase;
}

.comparison-items {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comparison-mini {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--container-color);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.comparison-mini:hover {
  border-color: var(--primary-color);
}

.comparison-mini i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.comparison-mini span {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  white-space: nowrap;
}

/* CTA */
.quick-offer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--gradient-1);
  color: var(--white-color);
  border: none;
  border-radius: 8px;
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-medium);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cta-primary i {
  font-size: 1rem;
}

.cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: var(--transition);
}

.cta-secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.cta-secondary i {
  font-size: 0.875rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .quick-offer__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .quick-offer__features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .quick-offer__pricing {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .quick-offer {
    padding: 1rem 0;
  }
  
  .quick-offer__header .section__title {
    font-size: var(--h3-font-size);
  }
  
  .quick-offer__container {
    padding: 1rem;
  }
  
  .quick-offer__features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .quick-offer__cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .quick-offer__features {
    grid-template-columns: 1fr;
  }
  
  .feature-quick span {
    font-size: 0.75rem;
  }
  
  .comparison-items {
    justify-content: center;
  }
  
  .quick-offer__cta {
    flex-direction: column;
  }
}

/* Responsive pour Premium Offer */
@media screen and (max-width: 968px) {
  .offer-blocks {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .offer-block {
    padding: 2rem;
  }
  
  .price-main {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  
  .price-comparison {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .premium-offer {
    padding: 3rem 0;
  }
  
  .offer-block {
    padding: 1.5rem;
  }
  
  .block-title {
    font-size: 1.25rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

/* ========== Quick Offer Section - Horizontal Layout ========== */
.quick-offer {
    background: var(--body-color);
    padding: 1.8rem 0;
    position: relative;
}

.quick-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color-alt) 0%, transparent 30%, transparent 70%, var(--primary-color-alt) 100%);
    opacity: 0.05;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.offer-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.offer-card--premium {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--card-color) 0%, var(--container-color) 100%);
    position: relative;
    overflow: hidden;
}

.offer-card--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 20%);
    opacity: 0.03;
}

.offer-card--free {
    border-color: var(--text-color-light);
}

.offer-card--comparison {
    background: linear-gradient(135deg, var(--container-color) 0%, var(--card-color) 100%);
}

.offer-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.3);
}

.offer-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem auto;
    font-size: 1.1rem;
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.offer-card h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: var(--font-semi-bold);
}

.offer-card p {
    color: var(--text-color-light);
    margin-bottom: 0.8rem;
    font-size: var(--small-font-size);
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.offer-features span {
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
    padding: 0.1rem 0;
}

.offer-price {
    margin-bottom: 0.8rem;
    font-weight: var(--font-semi-bold);
}

.offer-card--free .offer-price {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.offer-card--premium .offer-price .price-main {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: var(--font-bold);
    display: block;
}

.offer-card--premium .offer-price .price-main small {
    font-size: 1rem;
    color: var(--text-color-light);
    font-weight: var(--font-medium);
}

.offer-card--premium .offer-price .price-sub {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    display: block;
    margin-top: 0.25rem;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-label {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    flex: 1;
    text-align: left;
}

.comparison-price {
    color: var(--text-color);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
}

.comparison-diff {
    background: rgba(255, 69, 58, 0.1);
    color: #ff453a;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.comparison-diff--save {
    background: rgba(48, 209, 88, 0.1);
    color: #30d158;
}

.offer-value {
    background: var(--container-color);
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.offer-value span {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    display: block;
}

.offer-value strong {
    color: var(--primary-color);
    font-weight: var(--font-semi-bold);
    margin-top: 0.25rem;
    display: block;
}

.offer-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--container-color);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.offer-cta p {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .quick-offer {
        padding: 2rem 0;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .offer-card {
        padding: 1.25rem 1rem;
    }
    
    .offer-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .offer-card h3 {
        font-size: 1.125rem;
    }
    
    .offer-card--premium .offer-price .price-main {
        font-size: 1.75rem;
    }
    
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .comparison-price {
        align-self: flex-end;
    }
}

.image-premium-frame {
  max-width: 500px;
  margin: 0 auto;
}

/*=============== MY SERVICES SECTION ===============*/
.my-services {
  background: linear-gradient(135deg, 
    rgba(8, 8, 16, 0.98) 0%, 
    rgba(15, 15, 23, 0.95) 50%, 
    rgba(25, 25, 35, 0.92) 100%);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.my-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.my-services__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.services-intro {
  text-align: left;
  margin-bottom: 2.5rem;
}

.services-intro h3 {
  font-size: 1.95rem !important; /* 1.5rem * 1.3 = 1.95rem */
  font-family: var(--heading-font);
  color: #FFFFFF;
  margin-bottom: 1rem !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  font-weight: var(--font-semi-bold);
}

.services-philosophy,
.services-approach {
  font-size: 1.14rem !important; /* 0.875rem * 1.3 = 1.14rem */
  line-height: 1.5 !important; /* Slightly increased for readability */
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem !important;
  max-width: 100%;
}

.services-philosophy strong,
.services-approach strong {
  color: #FFD700;
  font-weight: var(--font-bold);
}

.services-methodology {
  margin: 2rem 0;
}

.services-methodology h4 {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  color: var(--primary-color);
  margin-bottom: 0.8rem !important;
  font-family: var(--heading-font);
}

.methodology-steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
}

.step {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  min-width: 180px;
  flex: 1;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(220, 20, 60, 0.6) 0%, 
    rgba(255, 119, 198, 0.4) 50%, 
    rgba(119, 198, 255, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 4px 15px rgba(220, 20, 60, 0.1);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(220, 20, 60, 0.6));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: var(--font-bold);
  color: #FFFFFF;
  margin: 0 auto 0.6rem auto;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.step-content h5 {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  margin-bottom: 0.3rem !important;
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
}

.step-content p {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  color: var(--text-color-light);
  line-height: 1.4;
}

.services-exclusivity {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.services-exclusivity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.exclusivity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  margin-bottom: 1.2rem;
}

.exclusivity-badge i {
  font-size: 1rem;
  color: #FFD700;
}

.exclusivity-badge span {
  color: #FFD700;
  font-weight: var(--font-semi-bold);
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  letter-spacing: 0.5px;
}

.services-exclusivity h4 {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  color: #FFFFFF;
  margin-bottom: 0.8rem !important;
  font-family: var(--heading-font);
}

.services-exclusivity p {
  font-size: 1.14rem !important; /* 0.875rem * 1.3 = 1.14rem */
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem !important;
  max-width: 100%;
}

.services-exclusivity strong {
  color: #FFD700;
  font-weight: var(--font-semi-bold);
}

.service-promise {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important;
}

.cta-limited {
  margin-top: 1.5rem;
}

.availability-note {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  font-style: italic;
}

.availability-note i {
  color: #FFD700;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .my-services {
    padding: 2rem 0;
  }
  
  .my-services__content {
    padding: 0 1.5rem;
  }
  
  .methodology-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .services-exclusivity {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .my-services {
    padding: 1.5rem 0;
  }
  
  .my-services__content {
    padding: 0 1rem;
  }
  
  .services-intro {
    margin-bottom: 2rem;
  }
  
  .methodology-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step {
    padding: 1rem;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .services-exclusivity {
    padding: 1.2rem;
  }
  
  .exclusivity-badge {
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .services-intro h3 {
    font-size: var(--h3-font-size);
  }
  
  .services-methodology h4 {
    font-size: var(--normal-font-size);
  }
  
  .step {
    padding: 0.8rem;
  }
  
  .step-content h5 {
    font-size: var(--small-font-size);
  }
  
  .services-exclusivity h4 {
    font-size: var(--normal-font-size);
  }
  
  .service-promise {
    font-size: var(--small-font-size) !important;
  }
}

/*=============== SPECIFIC SECTIONS COMPACT OPTIMIZATION ===============*/

/* 1. Transformation Biologique Complète - Quick Offer Section */
.quick-offer {
  padding: 1.2rem 0 0.8rem !important;
}

.quick-offer .section__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.3rem !important;
}

.quick-offer .section__description {
  font-size: 0.8rem !important;
  margin-bottom: 1rem !important;
}

.offer-grid {
  gap: 1rem !important;
  margin-top: 1rem !important;
}

.offer-card {
  padding: 1.2rem 1rem !important;
}

.offer-card h3 {
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
}

.offer-card p {
  font-size: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

/* 2. Philosophy Section - "Mais qui suis-je pour donner des conseils ?" */
.philosophy-section {
  padding: 1.2rem 0 !important;
}

.philosophy-section .section__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.3rem !important;
}

.philosophy-text {
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
  margin-bottom: 0.8rem !important;
}

.philosophy-stats {
  gap: 1rem !important;
  margin: 1rem 0 !important;
}

.stat-block {
  padding: 0.8rem !important;
}

.stat-content h4 {
  font-size: 0.9rem !important;
  margin-bottom: 0.2rem !important;
}

.stat-content p {
  font-size: 0.75rem !important;
}

.approach-points {
  gap: 0.8rem !important;
  margin-top: 1rem !important;
}

.approach-point {
  padding: 0.8rem !important;
}

.approach-point h4 {
  font-size: 0.9rem !important;
  margin-bottom: 0.3rem !important;
}

.approach-point p {
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
}

/* 3. About Section - "Pourquoi me faire confiance ?" */
.about {
  padding: 1.2rem 0 !important;
}

.about .section__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.3rem !important;
}

.about__description {
  font-size: 0.8rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.3 !important;
}

.about__features {
  gap: 0.8rem !important;
}

.about__features .feature {
  padding: 0.8rem !important;
}

.about__features .feature__content h3 {
  font-size: 0.9rem !important;
  margin-bottom: 0.2rem !important;
}

.about__features .feature__content p {
  font-size: 0.75rem !important;
}

.about__img {
  max-width: 40% !important;
}

/* 4. Premium Comparison - "Transformation Nutritionnelle" */
.premium-comparison {
  padding: 1.2rem 0 !important;
}

.premium-comparison__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.3rem !important;
}

.premium-comparison__subtitle {
  font-size: 0.8rem !important;
  margin-bottom: 1rem !important;
}

.visual-comparison {
  max-height: 300px !important;
}

.comparison-image img {
  max-height: 280px !important;
}

.nutrition-analysis {
  margin-top: 1.2rem !important;
  gap: 1rem !important;
}

.analysis-card {
  padding: 0.8rem !important;
}

.analysis-title {
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
}

.nutrition-item {
  margin-bottom: 0.5rem !important;
}

.nutrition-name {
  font-size: 0.8rem !important;
}

.nutrition-effect {
  font-size: 0.7rem !important;
}

/* 5. Articles Section - May contain transformation content */
.articles {
  padding: 1.2rem 0 !important;
}

.articles .section__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.3rem !important;
}

.articles__container-compact {
  gap: 1rem !important;
}

.article__card-compact {
  padding: 0.8rem !important;
}

.article__content-compact h3 {
  font-size: 0.85rem !important;
  margin-bottom: 0.3rem !important;
}

.article__category {
  font-size: 0.7rem !important;
  padding: 0.2rem 0.4rem !important;
}

/* Global compact adjustments for all targeted sections */
.section__header {
  margin-bottom: 0.8rem !important;
}

.section__subtitle {
  font-size: 0.7rem !important;
  margin-bottom: 0.3rem !important;
}

/* Ensure sharp corners are maintained */
.offer-card,
.stat-block,
.approach-point,
.feature,
.analysis-card,
.article__card-compact,
.visual-comparison,
.nutrition-item {
  border-radius: 2px !important;
}

/* Special compact responsive adjustments */
@media screen and (max-width: 768px) {
  .philosophy-stats {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  
  .approach-points {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  
  .nutrition-analysis {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .offer-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
}

/* 6. Facts Section - "Faits scientifiques sur le vieillissement" */
.facts {
  padding: 1.2rem 0 !important;
}

.facts .section__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.3rem !important;
}

.facts__container {
  gap: 1rem !important;
  margin-top: 1rem !important;
}

.fact__card {
  padding: 0.8rem !important;
}

.fact__card h3 {
  font-size: 0.9rem !important;
  margin-bottom: 0.4rem !important;
}

.fact__card p {
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5rem !important;
}

.fact__source {
  font-size: 0.7rem !important;
}

.fact__icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  margin-bottom: 0.6rem !important;
  font-size: 1.3rem !important;
}

/* Additional responsive for facts section */
@media screen and (max-width: 768px) {
  .facts__container {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .fact__card {
    padding: 0.7rem !important;
  }
}

/* Fix for philosophy stat-icons (including DNA icon) */
.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.stat-block {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 2px !important;
  transition: var(--transition);
}

.stat-block:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.stat-icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  background: var(--gradient-1);
  border-radius: 0 !important; /* Sharp corners as requested */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.3rem !important;
  flex-shrink: 0;
  margin-bottom: 0 !important;
}

.stat-icon i {
  font-size: 1.3rem !important;
  color: var(--white-color) !important;
  display: block !important;
}

.stat-content {
  flex: 1;
}

.stat-content h4 {
  font-size: 0.9rem !important;
  margin-bottom: 0.2rem !important;
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

.stat-content p {
  font-size: 0.75rem !important;
  color: var(--text-color-light);
  line-height: 1.3;
  margin: 0;
}

/* Restore animations and increase font sizes by 30% for specific sections */

/*=============== ANIMATION RESTORATION ===============*/
/* Ensure animations are not overridden by compact styles */
.reveal-element {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-element.reveal-left {
  transform: translateX(-60px) translateY(0);
}

.reveal-element.reveal-right {
  transform: translateX(60px) translateY(0);
}

.reveal-element.reveal-scale {
  transform: scale(0.8) translateY(30px);
}

.reveal-element.revealed {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

.reveal-element.delay-1 {
  transition-delay: 0.1s;
}

.reveal-element.delay-2 {
  transition-delay: 0.2s;
}

.reveal-element.delay-3 {
  transition-delay: 0.3s;
}

.reveal-element.delay-4 {
  transition-delay: 0.4s;
}

.card-reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.text-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.text-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.button-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.button-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/*=============== FONT SIZE INCREASES (30% larger) ===============*/

/* 1. "Ma philosophie Mais qui suis-je pour donner des conseils ?" */
.philosophy-section .section__title {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  margin-bottom: 0.3rem !important;
}

.philosophy-section .section__subtitle {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  margin-bottom: 0.3rem !important;
}

.philosophy-text {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important;
  margin-bottom: 0.8rem !important;
}

.stat-content h4 {
  font-size: 1.17rem !important; /* 0.9rem * 1.3 = 1.17rem */
  margin-bottom: 0.2rem !important;
}

.stat-content p {
  font-size: 0.975rem !important; /* 0.75rem * 1.3 = 0.975rem */
}

/* 2. "Pourquoi French Biohacking ?" */
.philosophy-approach h3 {
  font-size: 1.56rem !important; /* 1.2rem * 1.3 = 1.56rem */
  margin-bottom: 0.8rem !important;
  color: var(--text-color);
}

.approach-point h4 {
  font-size: 1.17rem !important; /* 0.9rem * 1.3 = 1.17rem */
  margin-bottom: 0.3rem !important;
}

.approach-point p {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important;
}

/* 3. "Mes résultats Pourquoi me faire confiance ?" */
.about .section__title {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  margin-bottom: 0.3rem !important;
}

.about .section__subtitle {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  margin-bottom: 0.3rem !important;
}

.about__description {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}

.about__features .feature__content h3 {
  font-size: 1.17rem !important; /* 0.9rem * 1.3 = 1.17rem */
  margin-bottom: 0.2rem !important;
}

.about__features .feature__content p {
  font-size: 0.975rem !important; /* 0.75rem * 1.3 = 0.975rem */
}

/*=============== ENSURE ANIMATIONS WORK WITH COMPACT STYLES ===============*/
/* Override any conflicting compact styles that might break animations */
.philosophy-section .reveal-element,
.about .reveal-element,
.philosophy-approach .reveal-element {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.stat-block,
.approach-point,
.feature {
  transition: all 0.3s ease, opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Ensure hover effects still work */
.stat-block:hover,
.approach-point:hover,
.feature:hover {
  transform: translateY(-2px) !important;
  border-color: var(--primary-color) !important;
  box-shadow: var(--shadow-light) !important;
}

/*=============== FONT SIZE INCREASES (30% larger) FOR NEW SECTIONS ===============*/

/* 4. "Mes Services" Section - CORRECTED WITH MORE SPECIFIC SELECTORS */
.my-services .services-intro h3 {
  font-size: 1.95rem !important; /* 1.5rem * 1.3 = 1.95rem */
  margin-bottom: 1rem !important;
  color: var(--text-color) !important;
}

.my-services .services-philosophy,
.my-services .services-approach {
  font-size: 1.04rem !important; /* Same as philosophy-text: 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important; /* Same as philosophy-text */
  margin-bottom: 1rem !important;
  color: var(--text-color-light) !important;
}

.my-services .services-methodology h4 {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  margin-bottom: 0.8rem !important;
  color: var(--text-color) !important;
}

.my-services .step-content h5 {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  margin-bottom: 0.3rem !important;
  font-weight: var(--font-semi-bold) !important;
  color: var(--text-color) !important;
}

.my-services .step-content p {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  color: var(--text-color-light) !important;
  line-height: 1.4 !important;
}

.my-services .services-exclusivity h4 {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  margin-bottom: 0.8rem !important;
  color: var(--text-color) !important;
}

.my-services .services-exclusivity p {
  font-size: 1.04rem !important; /* Same as philosophy-text: 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important; /* Same as philosophy-text */
  margin-bottom: 1rem !important;
  color: var(--text-color-light) !important;
}

.my-services .service-promise {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important;
  color: var(--primary-color) !important;
  font-weight: var(--font-semi-bold) !important;
}

.my-services .exclusivity-badge span {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  font-weight: var(--font-semi-bold) !important;
}

.my-services .availability-note {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  color: var(--text-color-light) !important;
}

/* Additionally target any potential overriding styles */
section.my-services p {
  font-size: 1.04rem !important; /* Same as philosophy-text */
  line-height: 1.4 !important; /* Same as philosophy-text */
}

section.my-services h3 {
  font-size: 1.95rem !important;
}

section.my-services h4 {
  font-size: 1.43rem !important;
}

section.my-services h5 {
  font-size: 1.04rem !important;
}

@media screen and (max-width: 768px) {
  .burger-images-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .vs-divider {
    order: 2;
  }
  
  .burger-image-container:first-child {
    order: 1;
  }
  
  .burger-image-container:last-child {
    order: 3;
  }
  
  .burger-image-reduced {
    width: 60%;
  }
  
  .health-comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-card {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .burger-images-row {
    gap: 1.5rem;
  }
  
  .burger-image-reduced {
    width: 80%;
  }
  
  .vs-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .burger-title {
    font-size: 1.1rem;
  }
  
  .burger-subtitle {
    font-size: 0.9rem;
  }
}

/*=============== FONT SIZE INCREASES (30% larger) FOR CONTACT SECTION ===============*/

/* 5. "Commencez dès aujourd'hui" Section (Contact) */
.contact .section__title {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  margin-bottom: 0.3rem !important;
}

.contact .section__subtitle {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  margin-bottom: 0.3rem !important;
}

.contact__data h3 {
  font-size: 1.43rem !important; /* 1.1rem * 1.3 = 1.43rem */
  margin-bottom: 0.8rem !important;
  color: var(--text-color) !important;
}

.contact__data p {
  font-size: 1.04rem !important; /* Same as philosophy-text: 0.8rem * 1.3 = 1.04rem */
  line-height: 1.4 !important; /* Same as philosophy-text */
  margin-bottom: 1rem !important;
  color: var(--text-color-light) !important;
}

.contact__disclaimer p {
  font-size: 0.91rem !important; /* 0.7rem * 1.3 = 0.91rem */
  color: var(--text-color-light) !important;
}

.contact__item {
  font-size: 1.04rem !important; /* 0.8rem * 1.3 = 1.04rem */
}

/*=============== SHARP CORNERS FOR MY-SERVICES AND CONTACT SECTIONS ===============*/

/* My-Services Section - Remove all border-radius */
.my-services .step,
.my-services .services-exclusivity,
.my-services .exclusivity-badge,
.my-services .cta-limited .button {
  border-radius: 0 !important;
}

/* Contact Section - Remove all border-radius */
.contact .contact__form,
.contact .contact__disclaimer,
.contact .form__input,
.contact .form__textarea {
  border-radius: 0 !important;
}

.contact .button {
  border-radius: 0 !important;
  padding: 0.65rem 1.2rem !important;
  font-size: 0.9rem !important;
  max-width: 200px !important;
}

/* Quick Offer Section - Remove all border-radius (partie de "Commencez dès aujourd'hui") */
.quick-offer .offer-card,
.quick-offer .offer-badge,
.quick-offer .button,
.quick-offer .comparison-diff {
  border-radius: 0 !important;
}

/*=============== BURGER IMAGES SIDE BY SIDE ===============*/
.burger-images-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 3rem 0;
}

.burger-image-side {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.burger-image-side:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

.burger-explanation {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--container-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.explanation-text {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design for Side by Side Burgers */
@media screen and (max-width: 768px) {
  .burger-images-centered {
    flex-direction: column;
    gap: 2rem;
  }
  
  .burger-image-side {
    width: 250px;
  }
  
  .burger-explanation {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .burger-image-side {
    width: 200px;
  }
  
  .burger-explanation {
    padding: 1rem;
  }
  
  .explanation-text {
    font-size: var(--small-font-size);
  }
}

/*=============== FREE CALL SECTION - OPTIMIZED FOR CONVERSION ===============*/
.free-call-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.free-call-card {
  background: var(--gradient-2);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.free-call-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
  transition: left 0.6s ease;
}

.free-call-card:hover::before {
  left: 100%;
}

.free-call-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: var(--secondary-color);
}

.call-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.call-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  box-shadow: var(--glow-primary);
}

.call-icon i {
  font-size: 1.5rem;
  color: var(--white-color);
  font-weight: bold;
}

.call-header h3 {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-family: var(--heading-font);
  font-weight: var(--font-bold);
}

.call-subtitle {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  font-style: italic;
}

.call-content {
  display: grid;
  gap: 1.2rem;
}

.what-you-get h4 {
  color: var(--primary-color);
  font-size: var(--normal-font-size);
  margin-bottom: 0.8rem;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: var(--font-semi-bold);
}

.benefits-list {
  display: grid;
  gap: 0.6rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  background: rgba(220, 20, 60, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(220, 20, 60, 0.1);
  transform: translateX(3px);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1rem;
  min-width: 16px;
}

.benefit-item span {
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
}

.social-proof-mini {
  background: var(--container-color);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--primary-color);
  margin: 0.8rem 0;
}

.proof-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.proof-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.3rem;
}

.proof-item strong {
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.call-cta {
  text-align: center;
  margin-top: 0.8rem;
}

.call-cta .button {
  padding: 1rem 1.5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-preview {
  background: var(--gradient-2);
  border: 1px solid var(--secondary-color);
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
}

.method-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 15px 15px 0 0;
}

.method-preview h4 {
  color: var(--primary-color);
  font-size: var(--normal-font-size);
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  font-weight: var(--font-semi-bold);
}

.steps-preview {
  display: grid;
  gap: 0.8rem;
}

.step-preview {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  background: rgba(220, 20, 60, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: var(--transition);
}

.step-preview:hover {
  background: rgba(220, 20, 60, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--gradient-1);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: 0.9rem;
  min-width: 30px;
  box-shadow: var(--glow-primary);
}

.step-content {
  flex: 1;
}

.step-content h5 {
  color: var(--primary-color);
  font-size: var(--small-font-size);
  margin-bottom: 0.2rem;
  font-family: var(--heading-font);
  font-weight: var(--font-semi-bold);
}

.step-content p {
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  line-height: 1.4;
}

/* Responsive Design - Optimized for Conversion */
@media screen and (max-width: 1024px) {
  .free-call-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .free-call-container {
    max-width: 600px;
    gap: 1rem;
  }
  
  .free-call-card {
    padding: 1.2rem;
  }
  
  .call-icon {
    width: 50px;
    height: 50px;
  }
  
  .call-icon i {
    font-size: 1.3rem;
  }
  
  .call-header h3 {
    font-size: var(--normal-font-size);
  }
  
  .benefits-list {
    gap: 0.5rem;
  }
  
  .benefit-item {
    padding: 0.5rem 0.6rem;
  }
  
  .method-preview {
    padding: 1.2rem;
  }
  
  .step-preview {
    padding: 0.5rem 0.6rem;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .social-proof-mini {
    padding: 0.8rem;
  }
  
  .call-cta .button {
    padding: 0.9rem 1.3rem;
    font-size: var(--small-font-size);
  }
}

@media screen and (max-width: 480px) {
  .free-call-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .free-call-card {
    padding: 1rem;
  }
  
  .call-icon {
    width: 45px;
    height: 45px;
  }
  
  .call-icon i {
    font-size: 1.1rem;
  }
  
  .call-header h3 {
    font-size: var(--small-font-size);
  }
  
  .benefit-item {
    padding: 0.4rem 0.5rem;
    gap: 0.6rem;
  }
  
  .benefit-item span {
    font-size: var(--smaller-font-size);
  }
  
  .step-preview {
    padding: 0.4rem 0.5rem;
    gap: 0.6rem;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
  
  .step-content h5 {
    font-size: var(--smaller-font-size);
  }
  
  .step-content p {
    font-size: 0.7rem;
  }
  
  .social-proof-mini {
    padding: 0.6rem;
  }
  
  .proof-item {
    font-size: var(--smaller-font-size);
  }
  
  .call-cta .button {
    padding: 0.8rem 1.1rem;
    font-size: var(--small-font-size);
    width: 100%;
  }
}

