/* ========================================
   🏠 STYLE-HOME.CSS - VERSION NETTOYÉE
   Styles UNIQUEMENT pour éléments homepage spécifiques
   Header/Navigation maintenant dans style-navigation.css
   ======================================== */



/* ========================================
   🌈 HERO SECTION HOMEPAGE
   ======================================== */

.hero-primary {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 35%, #8b5cf6 70%, #f59e0b 100%) !important;
    color: white !important;
    text-align: center;
    padding: 8rem 2rem 6rem;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0.3 !important;
}

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

.hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-primary::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
    pointer-events: none;
}

.hero-spotlight {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-spotlight h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    color: white !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Piliers hero */
.hero-pillars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 160px;
}

.pillar:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pillar span {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Boutons hero */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.hero-cta-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}



/* ========================================
   🏠 AJOUT LIENS PILIERS HERO - INTÉGRATION SANS CONFLIT
   À ajouter dans la section HERO du style-home.css
   ======================================== */

/* Liens dans le texte hero - couleur blanche préservée */
.hero-lead a {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(255, 255, 255, 0.5) !important;
    text-underline-offset: 3px !important;
    transition: all 0.3s ease !important;
}

.hero-lead a:hover,
.hero-lead a:visited,
.hero-lead a:active,
.hero-lead a:focus {
    color: white !important;
    text-decoration-color: white !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3) !important;
}

/* Piliers cliquables - préservation du design existant */
.pillar-link {
    color: white !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    transition: inherit !important;
}

.pillar-link:hover,
.pillar-link:visited,
.pillar-link:active,
.pillar-link:focus {
    color: white !important;
    text-decoration: none !important;
}

/* Préservation des effets hover existants sur .pillar */
.pillar:hover .pillar-link {
    color: white !important;
}

.pillar:hover .pillar-icon,
.pillar:hover span {
    color: white !important;
}

/* Liens contextuels hero - nouvelle section */
.hero-links {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-links-intro {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-link:visited,
.hero-link:active,
.hero-link:focus {
    color: white !important;
    text-decoration: none !important;
}

.hero-link-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-link-text {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Responsive pour les liens hero */
@media (max-width: 768px) {
    .hero-links-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-link {
        padding: 0.8rem 1.2rem;
        gap: 0.6rem;
    }
    
    .hero-link-text {
        font-size: 0.85rem;
    }
    
    .hero-links {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-links-grid {
        gap: 0.5rem;
    }
    
    .hero-link {
        padding: 0.7rem 1rem;
        gap: 0.5rem;
    }
    
    .hero-link-icon {
        font-size: 1.1rem;
    }
    
    .hero-link-text {
        font-size: 0.8rem;
    }
}



/* ========================================
   🛠️ CALCULATEUR GÉONUMÉROLOGIE
   ======================================== */

   /* Bordure violette haut de module calculateur */
.geo-calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8e44ad, #6a1b9a) !important;
    border-radius: 24px 24px 0 0;
}

.tools-interactive {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-soft) 100%);
    padding: 6rem 2rem;
    position: relative;
}

.tools-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-expanded {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-expanded h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.section-header-expanded p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.geo-calculator-container {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.geo-calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.calculator-subtitle {
    font-size: 1.25rem;
    color: var(--theme-primary);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Flow logique */
.logic-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(102, 126, 234, 0.1);
    min-width: 140px;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(102, 126, 234, 0.2);
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

.flow-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0.6;
}

/* Formulaire calculateur */
.calculator-form {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1.25rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    background: var(--color-bg);
    transition: var(--transition);
    font-weight: 500;
}

.input-wrapper input:focus {
    border-color: var(--theme-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.input-wrapper label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: var(--color-bg);
    padding: 0 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-primary);
    letter-spacing: 0.025em;
}

.calculate-button {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

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

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

.calculate-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.calculate-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.error-display {
    background: linear-gradient(135deg, #fed7d7, #fbb6ce);
    color: #c53030;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    display: none;
    border-left: 4px solid #e53e3e;
    font-weight: 500;
}

/* ========================================
   📊 RÉSULTATS DU CALCULATEUR
   ======================================== */
.calculator-results {
    display: none;
    animation: fadeInUp 0.8s ease-out;
}

.results-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.results-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.number-result-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.number-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
    opacity: 0;
    transition: var(--transition);
}

.number-result-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.number-result-card:hover::before {
    opacity: 1;
}

.number-reduced-display {
    font-size: 5rem;
    font-weight: 200;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.number-reduced-display:hover {
    color: var(--theme-secondary);
    transform: scale(1.05);
}

.number-type-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.source-number-display {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.symbol-result-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition);
}

.symbol-result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.symbol-visual-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
    transition: var(--transition);
}

.symbol-visual-container:hover {
    transform: scale(1.05);
    border-color: var(--theme-primary);
    box-shadow: var(--shadow-medium);
}

.symbol-real-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.symbol-icon-fallback {
    font-size: 5rem;
    color: var(--theme-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.symbol-name-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.symbol-link {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.symbol-link:hover {
    color: var(--theme-secondary);
    background: rgba(102, 126, 234, 0.05);
}

/* ========================================
   📊 MATRICE TOPOLOGIQUE
   ======================================== */
.matrix-result-container {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.matrix-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.topology-headers {
    margin-bottom: 1rem;
}

.topology-header-row {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.world-header-empty {
    background: transparent;
}

.mode-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.mode-header.personnel {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
}

.mode-header.relationnel {
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.1), rgba(236, 72, 153, 0.1));
}

.mode-header.universel {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
}

.mode-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mode-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.topology-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.topology-row {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.world-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    text-align: center;
    min-height: 70px;
    justify-content: center;
}

.topology-row.spirituel .world-label {
    background: linear-gradient(135deg, var(--color-gold), #fbbf24);
}

.topology-row.psychique .world-label {
    background: linear-gradient(135deg, #db2777, #ec4899);
}

.topology-row.physique .world-label {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.world-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.world-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.matrix-number-cell {
    width: 100%;
    height: 70px;
    border-radius: var(--radius-md);
    background: var(--color-bg);
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.matrix-number-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    opacity: 0;
    transition: var(--transition);
}

.matrix-number-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--theme-primary);
}

.matrix-number-cell:hover::before {
    opacity: 0.1;
}

.matrix-number-cell.active {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: white;
    border-color: var(--theme-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
    z-index: 10;
}

.matrix-number-cell.active::before {
    opacity: 0.2;
}

/* Interprétations */
.topology-interpretation,
.symbol-interpretation {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.interpretation-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interpretation-content,
.symbol-interpretation-content {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.interpretation-content.active,
.symbol-interpretation-content.active {
    animation: fadeInUp 0.5s ease-out;
}

.interpretation-highlight {
    padding: 1rem 1.5rem !important;
    border-radius: var(--radius-md) !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    border-left: 4px solid var(--theme-primary) !important;
    margin-bottom: 1.5rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1) !important;
    transition: var(--transition) !important;
    display: block !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08)) !important;
    color: var(--theme-primary) !important;
}

.interpretation-highlight:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

.profile-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(102, 126, 234, 0.08)) !important;
    border-color: rgba(139, 92, 246, 0.2) !important;
    border-left-color: var(--theme-accent) !important;
    color: var(--theme-accent) !important;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1) !important;
    padding: 1rem 1.5rem !important;
    border-radius: var(--radius-md) !important;
    border: 2px solid rgba(139, 92, 246, 0.2) !important;
    border-left: 4px solid var(--theme-accent) !important;
    margin-bottom: 1.5rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: var(--transition) !important;
}

.profile-highlight:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}
    .highlight-box-2::before {
            content: "💡";
            position: absolute;
            top: -10px;
            left: 20px;
            background: rgba(34, 197, 94, 0.2);
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 1.2em;
        }
            .highlight-box-2 {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
        }
/* ========================================
   📊 CARACTÉRISTIQUES SYMBOLE
   ======================================== */
.symbol-enriched-details {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.characteristics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.characteristic-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.characteristic-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-primary);
    opacity: 0;
    transition: var(--transition);
}

.characteristic-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.characteristic-item:hover::before {
    opacity: 1;
}

.characteristic-item.famille::before { background: #f59e0b; }
.characteristic-item.energie::before { background: #8b5cf6; }
.characteristic-item.energie-type::before { background: #06b6d4; }
.characteristic-item.corps::before { background: #ec4899; }
.characteristic-item.profil::before { background: #10b981; }
.characteristic-item.decision::before { background: #f97316; }
.characteristic-item.verbe::before { background: #6366f1; }
.characteristic-item.engagement::before { background: #ef4444; }

.characteristic-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.characteristic-content {
    flex: 1;
}

.characteristic-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.characteristic-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

/* Étapes de calcul */
.calculation-steps-display {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.steps-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.calculation-step-item {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--theme-primary);
}

.reset-calculator-btn {
    background: transparent;
    color: var(--theme-primary);
    border: 2px solid rgba(102, 126, 234, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 3rem;
    font-size: 1rem;
}

.reset-calculator-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
}

/* ========================================
   🎯 OUTILS COMPLÉMENTAIRES
   ======================================== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tool-card {
    background: var(--color-bg);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.tool-card-featured {
    border: 2px solid var(--theme-accent);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.tool-card-featured::before {
    background: linear-gradient(90deg, var(--theme-accent), var(--theme-primary));
    transform: scaleX(1);
}

.tool-card-featured .tool-icon {
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.tool-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tool-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.tool-card-featured h4 {
    color: var(--theme-accent);
    font-size: 1.5rem;
}

.tool-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tool-card.profil-complet::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #fcd34d) !important;
}
.tool-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--theme-accent), var(--theme-primary));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: var(--shadow-soft);
}

.tool-link-primary {
    background: linear-gradient(135deg, #f59e0b, var(--theme-accent));
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #7c3aed, #5a6fd8);
    color: white;
}

.tool-link-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #7c3aed);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}



.tool-card {
    overflow: hidden; /* masque ce qui déborde */
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* plus doux */
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.03); /* zoom + soulèvement */
    box-shadow: var(--shadow-large);
}

.tool-card:hover .tool-icon,
.tool-card:hover h4,
.tool-card:hover p {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.fade-in-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Préserve les effets hover */
.fade-in-animation:hover {
    transform: translateY(-8px) scale(1.03) !important;
}

/* Bordure or royal pour la carte featured */
.tool-card-featured::before {
    background: linear-gradient(90deg, #b45309, #d97706, #f59e0b, #fbbf24) !important;
    height: 6px !important;
}

/* Icône avec dégradé or royal */
.tool-card-featured .tool-icon {
    background: linear-gradient(135deg, #92400e, #b45309, #d97706, #f59e0b) !important;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4) !important;
}


/* Bouton or royal */
.tool-card-featured .tool-link-primary {
    background: linear-gradient(135deg, #92400e, #b45309, #d97706, #f59e0b) !important;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4) !important;
}

/* Hover bouton or royal */
.tool-card-featured .tool-link-primary:hover {
    background: linear-gradient(135deg, #78350f, #92400e, #b45309) !important;
    box-shadow: 0 12px 35px rgba(217, 119, 6, 0.6) !important;
}

/* Titre avec dégradé or */
.tool-card-featured h4 {
    background: linear-gradient(135deg, #92400e, #d97706, #f59e0b) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ========================================
   📺 SECTION VIDÉO
   ======================================== */
.section-block {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.header-section-v1 {
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(167, 139, 250, 0.08) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.header-section-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.header-section-v1 h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.header-section-v1 .tagline {
    font-size: 1.3rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.header-section-v1 .tagline strong {
    color: #8b5cf6;
    font-weight: 600;
    position: relative;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

.content-enhanced {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.content-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

.content-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.18);
}

.content-enhanced p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.btn-red {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    color: white;
}

.video-embed iframe {
    width: 100%;
    height: 315px;
    border-radius: 12px;
    border: none;
}

/* ========================================
   ✨ TÉMOIGNAGES
   ======================================== */
.testimonials-smart {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-smart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

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

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.nav-btn:hover,
.nav-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.testimonials-showcase {
    position: relative;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    min-height: 400px;
    transition: all 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -5px;
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.author-role {
    color: #718096;
    font-size: 0.9rem;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #667eea;
    transform: scale(1.2);
}

.testimonials-actions {
    display: flex;
    gap: 1rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.pause-btn.paused {
    background: #f56565;
    color: white;
}

.testimonials-cta {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.testimonials-cta h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.cta-modern {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

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

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

/* ========================================
   📱 RESPONSIVE DESIGN
   ======================================== */

/* Large Tablet */
@media (max-width: 1024px) {
    .hero-primary {
        min-height: 90vh;
        padding: 6rem 1.5rem 4rem;
    }
    
    .results-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .geo-calculator-container {
        padding: 3rem 2rem;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .hero-primary {
        padding: 5rem 1rem 3rem;
        min-height: 80vh;
    }
    
    .hero-pillars {
        flex-direction: column;
        align-items: center;
    }
    
    .pillar {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .geo-calculator-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .calculator-title {
        font-size: 2rem;
    }

    .form-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logic-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .results-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .results-left {
        order: 1;
        gap: 1.5rem;
    }
    
    .number-result-card,
    .symbol-result-card {
        padding: 1.5rem;
    }
    
    .number-reduced-display {
        font-size: 3rem;
    }
    
    .source-number-display {
        font-size: 1.5rem;
    }
    
    .symbol-visual-container {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem auto;
    }
    
    .symbol-real-image {
        width: 90px;
        height: 90px;
    }
    
    .symbol-icon-fallback {
        font-size: 3rem;
    }
    
    .matrix-result-container {
        order: 2;
        padding: 1.5rem;
    }
    
    .matrix-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .topology-headers {
        display: none;
    }
    
    .topology-grid {
        display: block;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .topology-row {
        display: block;
        margin-bottom: 2rem;
        padding: 1rem;
        background: var(--color-bg-light);
        border-radius: var(--radius-md);
        border-left: 4px solid;
    }
    
    .topology-row.spirituel {
        border-left-color: var(--color-gold);
    }
    
    .topology-row.psychique {
        border-left-color: #ec4899;
    }
    
    .topology-row.physique {
        border-left-color: #06b6d4;
    }
    
    .world-label {
        min-height: auto;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        text-align: center;
    }
    
    .world-name {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .world-subtitle {
        font-size: 0.7rem;
    }
    
    .topology-numbers {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .matrix-number-cell {
        height: 50px;
        font-size: 1.2rem;
        border-radius: var(--radius-sm);
    }
    
    .number-with-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mode-label-mobile {
        font-size: 0.65rem;
        color: var(--text-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        margin-top: 0.25rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .category-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .topology-interpretation,
    .symbol-interpretation {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .interpretation-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .interpretation-content,
    .symbol-interpretation-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .interpretation-highlight,
    .profile-highlight {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    .hero-primary {
        padding: 4rem 0.75rem 3rem;
        min-height: 70vh;
    }
    
    .geo-calculator-container {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .calculator-form {
        padding: 1.5rem 1rem;
    }
    
    .symbol-visual-container {
        width: 110px;
        height: 110px;
        margin: 0 auto 1rem auto;
    }
    
    .symbol-real-image {
        width: 80px;
        height: 80px;
    }
    
    .symbol-icon-fallback {
        font-size: 2.5rem;
    }
    
    .matrix-result-container {
        padding: 1rem 0.75rem;
        margin: 0;
    }
    
    .topology-row {
        margin-bottom: 1.5rem;
        padding: 0.75rem 0.5rem;
        border-left-width: 3px;
    }
    
    .world-label {
        padding: 0.4rem 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }
    
    .world-name {
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .world-subtitle {
        font-size: 0.65rem;
    }
    
    .topology-numbers {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .matrix-number-cell {
        height: 45px;
        font-size: 1.1rem;
        padding: 0;
    }
    
    .mode-label-mobile {
        font-size: 0.6rem;
        margin-top: 0.2rem;
        line-height: 1.2;
    }
    
    .topology-interpretation,
    .symbol-interpretation {
        padding: 0.75rem 0.5rem;
        margin-top: 0.75rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .interpretation-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .interpretation-content,
    .symbol-interpretation-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .interpretation-highlight,
    .profile-highlight {
        padding: 0.6rem 0.75rem !important;
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .symbol-enriched-details {
        padding: 1.5rem 0.75rem;
        margin-top: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .characteristic-item {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .characteristic-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .characteristic-label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .characteristic-value {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .calculation-steps-display {
        padding: 1.5rem 0.75rem;
        margin-top: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .steps-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .calculation-step-item {
        font-size: 0.9rem;
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonials-smart {
        padding: 2rem 0.5rem !important;
    }
    
    .testimonials-grid {
        padding: 0 0.25rem !important;
        gap: 1rem !important;
    }
    
    .testimonial-card {
        padding: 1rem 0.75rem !important;
        margin: 0 !important;
    }
    
    .testimonial-content p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .nav-btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .author-avatar {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .category-badge {
        padding: 0.15rem 0.5rem !important;
        font-size: 0.7rem !important;
    }
}

/* Mobile Tiny (≤320px) */
@media (max-width: 320px) {
    .geo-calculator-container {
        margin: 0.25rem !important;
        padding: 1rem 0.5rem !important;
    }
    
    .matrix-result-container {
        padding: 0.75rem 0.25rem !important;
    }
    
    .topology-numbers {
        gap: 0.3rem !important;
    }
    
    .matrix-number-cell {
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .mode-label-mobile {
        font-size: 0.55rem !important;
    }
    
    .world-label {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    .world-name {
        font-size: 0.7rem !important;
    }
    
    .world-subtitle {
        font-size: 0.6rem !important;
    }
}

/* Optimisations navigateurs */
@supports (-webkit-touch-callout: none) {
    .hero-primary {
        -webkit-background-size: cover;
        background-attachment: scroll;
    }
    
    .pillar {
        -webkit-backdrop-filter: blur(20px);
    }
    
    .hero-cta-primary {
        -webkit-backdrop-filter: blur(20px);
    }
}

/* Safari - Netteté renforcée */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .symbol-real-image {
        image-rendering: -webkit-optimize-contrast !important;
        -webkit-backface-visibility: hidden !important;
    }
}

/* Chrome/Edge - Anti-aliasing */
@supports (image-rendering: crisp-edges) {
    .symbol-real-image {
        image-rendering: crisp-edges !important;
    }
}

/* Firefox - Optimisation */
@-moz-document url-prefix() {
    .symbol-real-image {
        image-rendering: crisp-edges !important;
        -moz-backface-visibility: hidden !important;
    }
}

/* Classes pour iPhone portrait détecté en JavaScript */
.iphone-portrait .geo-calculator-container {
    margin: 0.25rem !important;
    padding: 1rem 0.75rem !important;
}

.iphone-portrait .matrix-result-container {
    padding: 0.75rem 0.5rem !important;
}

.iphone-portrait .topology-row {
    padding: 0.6rem 0.4rem !important;
}

.iphone-portrait .characteristic-item {
    padding: 0.8rem 0.6rem !important;
}

.iphone-portrait .interpretation-highlight,
.iphone-portrait .profile-highlight {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
    padding: 0.5rem 0.6rem !important;
}

/* Optimisation performance */
.hero-primary {
    contain: layout style paint;
    z-index: 1 !important;
    position: relative !important;
}

/* Ajoutez à la fin pour forcer la priorité */
.hero-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 35%, #8b5cf6 70%, #f59e0b 100%) !important;
    min-height: 60vh !important;
    padding: 4rem 2rem 3rem !important;
}

@media (max-width: 768px) {
    .hero-primary {
        min-height: 50vh !important;
        padding: 3rem 1rem 2rem !important;
    }
}

/* ========================================
   🎨 PATCH COULEURS DYNAMIQUES ULTRA SIMPLE
   ======================================== */

/* Tous les boutons CTA utilisent maintenant le thème dynamique */
.tool-link,
.tool-link-primary,
.calculate-button,
.btn-red,
.cta-modern,
.hero-cta-primary:hover,
.nav-btn:hover,
.nav-btn.active,
.control-btn:hover,
.matrix-number-cell.active {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary)) !important;
}

.tool-link:hover,
.tool-link-primary:hover,
.btn-red:hover,
.cta-modern:hover {
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary)) !important;
}
/* ========================================
   💻 CORRECTION CALCULATEUR IPAD PAYSAGE
   À ajouter dans style-home.css
   ======================================== */

@media (max-width: 1199px) and (min-width: 1024px) and (orientation: landscape) {
    
    /* Conteneur calculateur */
    .geo-calculator-container {
        padding: 2.5rem 1.5rem !important;
        margin: 1rem 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Layout résultats */
    .results-layout {
        display: grid !important;
        grid-template-columns: 1fr !important; /* 1 colonne sur iPad paysage */
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .results-left {
        display: flex !important;
        flex-direction: row !important; /* Côte à côte */
        gap: 1.5rem !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .number-result-card,
    .symbol-result-card {
        flex: 1 !important;
        max-width: calc(50% - 0.75rem) !important;
        padding: 1.5rem !important;
    }


    
    /* Matrice résultats */
    .matrix-result-container {
        padding: 2rem 1.5rem !important;
        width: 100% !important;
        order: 2 !important;
    }
    
    /* Headers topologie */
    .topology-headers {
        margin-bottom: 1rem !important;
    }
    
    .topology-header-row {
        display: grid !important;
        grid-template-columns: 100px 1fr 1fr 1fr !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Grille topologique */
    .topology-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .topology-row {
        display: grid !important;
        grid-template-columns: 100px 1fr 1fr 1fr !important;
        gap: 0.75rem !important;
        align-items: center !important;
    }
    
    .world-label {
        min-height: 60px !important;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    .world-name {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
    }
    
    .world-subtitle {
        font-size: 0.65rem !important;
        margin-top: 0.2rem !important;
    }
    
    .matrix-number-cell {
        height: 60px !important;
        font-size: 1.3rem !important;
        border-radius: 8px !important;
    }
    
    /* Mode headers */
    .mode-header {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    .mode-icon {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .mode-label {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
    }
    
    /* Conteneur matrice ajusté */
    .matrix-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Interprétations */
    .topology-interpretation,
    .symbol-interpretation {
        padding: 1.5rem !important;
        margin-top: 1rem !important;
    }
    
    .interpretation-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .interpretation-content,
    .symbol-interpretation-content {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .interpretation-highlight,
    .profile-highlight {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    

    /* Caractéristiques symbole */
    .symbol-enriched-details {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .characteristics-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
    
    .characteristic-item {
        padding: 1rem !important;
        gap: 0.75rem !important;
    }
    
    /* Étapes de calcul */
    .calculation-steps-display {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .calculation-step-item {
        font-size: 0.9rem !important;
        padding: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
}

//* ========================================
   📱 CORRECTION CALCULATEUR IPAD PORTRAIT  
   Présentation identique à iPhone (en lignes)
   ======================================== */

@media (max-width: 1023px) and (min-width: 768px) and (orientation: portrait) {
    
    /* Headers topologie - MASQUÉS comme sur iPhone */
    .topology-headers {
        display: none !important;
    }
    
    /* Grille topologique - EN BLOCS comme sur iPhone */
    .topology-grid {
        display: block !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .topology-row {
        display: block !important;
        margin-bottom: 2rem !important;
        padding: 1rem !important;
        background: var(--color-bg-light) !important;
        border-radius: 12px !important;
        border-left: 4px solid !important;
    }
    
    .topology-row.spirituel {
        border-left-color: var(--color-gold) !important;
    }
    
    .topology-row.psychique {
        border-left-color: #ec4899 !important;
    }
    
    .topology-row.physique {
        border-left-color: #06b6d4 !important;
    }
    
    .world-label {
        min-height: auto !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
        border-radius: 8px !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    .world-name {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
    }
    
    .world-subtitle {
        font-size: 0.7rem !important;
    }
    
    /* Nombres en grille 3x1 */
    .topology-numbers {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }
    
    .matrix-number-cell {
        height: 55px !important;
        font-size: 1.2rem !important;
        border-radius: 8px !important;
    }
    
    /* Labels des modes mobiles */
    .number-with-label {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .mode-label-mobile {
        font-size: 0.65rem !important;
        color: var(--text-light) !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.03em !important;
        margin-top: 0.25rem !important;
    }
    
  /* Conteneur calculateur */
    .geo-calculator-container {
        padding: 2rem 1.5rem !important;
        margin: 1rem 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Flow logic - Pastilles en ligne horizontale */
    .logic-flow {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin: 1.5rem 0 !important;
        padding: 0 1rem !important;
    }
    
    .flow-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex: 1 !important;
        max-width: 80px !important;
    }
    
    .flow-icon {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        font-weight: bold !important;
        margin-bottom: 0.5rem !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    }
    
    .flow-label {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        color: #4a5568 !important;
        line-height: 1.2 !important;
    }
    
    .flow-arrow {
        flex: 0 0 auto !important;
        font-size: 1.5rem !important;
        color: #a0aec0 !important;
        margin: 0 0.5rem !important;
        transform: translateY(-10px) !important; /* Ajuste la position verticale de la flèche */
    }
    
    /* Layout résultats */
    .results-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .results-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .number-result-card,
    .symbol-result-card,
    .idea-result-card {
        width: 100% !important;
        max-width: none !important;
        padding: 1.5rem !important;
        margin-bottom: 0 !important;
    }
    
    /* Ajustement du titre */
    .calculator-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .calculator-subtitle {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        opacity: 0.8;
    }

    @media (orientation: portrait) {
    
    /* Empêcher le débordement horizontal */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Conteneurs principaux */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Pastilles en ligne horizontale */
    .logic-flow {
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
    
    /* Assurer que tous les conteneurs restent dans l'écran */
    .container,
    .geo-calculator-container,
    .main-content {
        width: 100% !important;
        max-width: 100vw !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
    .matrix-result-container {
        order: 2 !important;
        padding: 1.5rem !important;
    }
    
    .matrix-title {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }
}

/* ========================================
   🎨 AMÉLIORATION DESIGN TOOL-CARDS
   À ajouter à la fin de style-home.css
   ======================================== */

/* DESIGN GLASSMORPHISM POUR LES CARTES */
.tool-card {
    /* Conserve vos styles existants + ajouts */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    position: relative !important;
    /* Vos styles existants restent */
}

/* BORDURE COLORÉE TOP - NOUVELLE */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #8b5cf6);
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

/* AMÉLIORATION ICÔNES - CERCLE COLORÉ */
.tool-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: white !important;
    margin: 0 auto 1.5rem !important;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease !important;
}

/* TITRES AVEC DÉGRADÉ */
.tool-card h4 {
    background: linear-gradient(135deg, #1e293b, #475569, #667eea) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    /* Conserve font-size et autres styles existants */
}

/* BOUTONS AVEC DESIGN UNIFORME */
.tool-link,
.tool-link-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%) !important;
    border-radius: 50px !important;
    padding: 0.9rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* EFFET SHIMMER SUR BOUTONS */
.tool-link::before,
.tool-link-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.tool-link:hover::before,
.tool-link-primary:hover::before {
    left: 100%;
}

/* CARTE FEATURED SPÉCIALE */
.tool-card-featured {
    background: rgba(255, 255, 255, 0.98) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15) !important;
}

.tool-card-featured::before {
    background: linear-gradient(90deg, #f59e0b, #8b5cf6, #667eea) !important;
    height: 6px !important;
}

.tool-card-featured .tool-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #8b5cf6 50%, #667eea 100%) !important;
    width: 80px !important;
    height: 80px !important;
    font-size: 2.2rem !important;
    animation: gentle-pulse 3s ease-in-out infinite !important;
}

.tool-card-featured .tool-link-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #8b5cf6 50%, #667eea 100%) !important;
    padding: 0.9rem 2rem !important;
    font-size: 1rem !important;
}

/* ANIMATION PULSE DOUCE */
@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* AMÉLIORATION HOVER EXISTANT */
.tool-card:hover .tool-icon {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4) !important;
}

.tool-card:hover .tool-link,
.tool-card:hover .tool-link-primary {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4) !important;
}

/* RESPONSIVE - CONSERVE VOS STYLES MOBILES */
@media (max-width: 768px) {
    .tool-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.8rem !important;
    }
    
    .tool-card-featured .tool-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 2rem !important;
    }
}

/* ========================================
   📊 SECTIONS COMPARAISON ET LEAD MAGNETS
   Nouvelles sections marketing intégrées
   ======================================== */

/* Conteneur de comparaison */
.comparison-container {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #e9ecef 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-soft);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.comparison-column.probleme {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: var(--radius-md);
    padding: 2rem;
    border-left: 4px solid #ef4444;
    transition: var(--transition);
}

.comparison-column.probleme:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.comparison-column.solution {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: var(--radius-md);
    padding: 2rem;
    border-left: 4px solid #22c55e;
    transition: var(--transition);
}

.comparison-column.solution:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.comparison-item .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.comparison-item p {
    margin: 0;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Badges de crédibilité */
.credibility-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 120px;
    transition: var(--transition);
}

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

.badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
}

.badge-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Étapes processus */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    min-width: 180px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

.step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--theme-primary);
    font-weight: 600;
    opacity: 0.6;
}

/* Section Lead Magnet */
.lead-magnet-section {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.lead-magnet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lead-magnet-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lead-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.lead-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.lead-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.lead-form {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.lead-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.lead-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.lead-form button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.lead-form button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.lead-trust {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
    align-items: center;
}

.lead-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Section urgence */
.urgency-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.urgency-banner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.urgency-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.urgency-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-counter {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-cta {
    background: white;
    color: #f59e0b;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.urgency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #f59e0b;
}

/* ========================================
   📱 RESPONSIVE - SECTIONS MARKETING
   ======================================== */

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credibility-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .badge {
        min-width: auto;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .lead-magnet-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lead-form {
        flex-direction: column;
    }
    
    .lead-trust {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-container {
        padding: 2rem 1rem;
    }
    
    .step {
        min-width: 250px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lead-magnet-section {
        padding: 3rem 1rem;
    }
    
    .lead-content h3 {
        font-size: 1.5rem;
    }
    
    .urgency-section {
        padding: 1.5rem 1rem;
    }
    
    .comparison-container {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .steps-container {
        padding: 1rem 0;
    }
    
    .step {
        padding: 1rem;
        min-width: 200px;
    }
}

/* ========================================
   💎 MÉTHODE STEPS - DISPOSITION LOSANGE CORRECTE
   ======================================== */
.methode-steps .steps-container {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 600px !important;
    position: relative !important;
}

/* Étape 1 - centrée */
.methode-steps .step:nth-child(1) {
    display: block !important;
    width: 250px !important;
    margin: 0 auto 3rem auto !important;
    position: relative !important;
}

/* Étapes 2 et 3 - centrées ensemble */
.methode-steps .step:nth-child(2),
.methode-steps .step:nth-child(3) {
    display: inline-block !important;
    width: 250px !important;
    margin: 0 1rem 3rem 1rem !important;
    vertical-align: top !important;
    position: relative !important;
}

/* Étape 4 - centrée */
.methode-steps .step:nth-child(4) {
    display: block !important;
    width: 250px !important;
    margin: 0 auto !important;
    position: relative !important;
}

/* Flèches de connexion */
/* 1 vers 2 */
.methode-steps .step:nth-child(1)::after {
    content: '↙' !important;
    position: absolute !important;
    bottom: -2rem !important;
    left: -3rem !important;
    font-size: 2rem !important;
    color: var(--theme-primary) !important;
    opacity: 0.7 !important;
}

/* 1 vers 3 */
.methode-steps .step:nth-child(1)::before {
    content: '↘' !important;
    position: absolute !important;
    bottom: -2rem !important;
    right: -3rem !important;
    font-size: 2rem !important;
    color: var(--theme-primary) !important;
    opacity: 0.7 !important;
}

/* 2 vers 4 */
.methode-steps .step:nth-child(2)::after {
    content: '↘' !important;
    position: absolute !important;
    bottom: -2rem !important