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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d;
    color: #f1f1f1;
    line-height: 1.6;
    overflow-x: hidden;
}

.section-title {
    color: #efc500;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #efc500 0%, transparent 100%);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(239, 197, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(239, 197, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            repeating-linear-gradient(90deg, rgba(239, 197, 0, 0.05) 0px, transparent 1px, transparent 80px),
            repeating-linear-gradient(0deg, rgba(239, 197, 0, 0.05) 0px, transparent 1px, transparent 80px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #efc500;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(239, 197, 0, 0.4);
    animation: fadeInDown 1s ease-out;
}

.hero-problems {
    margin-top: 3rem;
}

.problem-item {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d1d1d1;
    animation: fadeInLeft 1s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-item i {
    color: #dc3545;
    font-size: 1.3rem;
}

.hero-solution {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #efc500;
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.5s backwards;
    box-shadow: 0 10px 40px rgba(239, 197, 0, 0.2);
}

.hero-solution .lead {
    color: #f1f1f1;
    font-size: 1.1rem;
}

.hero-promise {
    color: #efc500;
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #efc500 0%, #d4af00 100%);
    border: none;
    color: #000;
    font-size: 1.2rem;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(239, 197, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(239, 197, 0, 0.7);
}

/* ===========================
   STATS SECTION - AMÉLIORÉE
   =========================== */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(239, 197, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid #444;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(239, 197, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #efc500;
    box-shadow: 0 15px 50px rgba(239, 197, 0, 0.4);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(13, 13, 13, 1) 100%);
}

.stat-icon {
    font-size: 4rem;
    color: #efc500;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(239, 197, 0, 0.5));
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotateY(360deg);
    filter: drop-shadow(0 0 30px rgba(239, 197, 0, 0.8));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #efc500;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(239, 197, 0, 0.5);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(239, 197, 0, 0.8);
}

.stat-label {
    font-size: 1.1rem;
    color: #d1d1d1;
    font-weight: 500;
}

.lead-text {
    font-size: 1.3rem;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid #333;
}

.lead-text strong {
    color: #efc500;
    font-weight: 700;
}

/* ===========================
   VISION SECTION
   =========================== */
.vision-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 80px 0;
    position: relative;
}

.vision-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 197, 0, 0.15) 0%, transparent 70%);
    border: 3px solid #efc500;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(239, 197, 0, 0.3);
}

.vision-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(239, 197, 0, 0.08) 10px,
            rgba(239, 197, 0, 0.08) 20px
    );
}

.vision-image i {
    font-size: 12rem;
    color: #efc500;
    opacity: 0.9;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(239, 197, 0, 0.6));
}

.vision-text {
    font-size: 1.2rem;
    color: #e1e1e1;
    margin-bottom: 1rem;
}

.vision-text strong {
    color: #efc500;
    font-weight: 700;
}

.vision-highlight {
    font-size: 1.4rem;
    color: #efc500;
    font-weight: 700;
    margin-top: 2rem;
}

/* ===========================
   PILLARS SECTION
   =========================== */
.pillars-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 80px 0;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid #444;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.pillar-card:hover {
    border-color: #efc500;
    box-shadow: 0 15px 50px rgba(239, 197, 0, 0.3);
    transform: translateY(-5px);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
    padding: 2rem;
    border-bottom: 2px solid #efc500;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(239, 197, 0, 0.3) 0%, transparent 70%);
    border: 3px solid #efc500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(239, 197, 0, 0.4);
}

.pillar-icon i {
    font-size: 2.5rem;
    color: #efc500;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.6));
}

.pillar-title {
    color: #efc500;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.pillar-subtitle {
    color: #d1d1d1;
    font-size: 1.1rem;
    margin: 0;
}

.pillar-content {
    padding: 2rem;
}

.pillar-content p {
    color: #d1d1d1;
    font-size: 1.1rem;
}

/* Automation levels */
.automation-level {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.automation-level:hover {
    border-color: #efc500;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 197, 0, 0.2);
}

.level-badge {
    background: linear-gradient(135deg, #efc500 0%, #d4af00 100%);
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(239, 197, 0, 0.4);
}

.automation-level p {
    color: #d1d1d1;
}

/* Result boxes */
.result-box {
    background: linear-gradient(135deg, rgba(239, 197, 0, 0.15) 0%, rgba(239, 197, 0, 0.05) 100%);
    border-left: 4px solid #efc500;
    padding: 1.2rem 1.5rem;
    border-radius: 5px;
    color: #f1f1f1;
}

.result-box i {
    color: #efc500;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Audit box */
.audit-box {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
}

.audit-box h4 {
    color: #efc500;
    margin-bottom: 1rem;
    font-weight: 700;
}

.audit-box h4 i {
    margin-right: 10px;
}

.audit-box ol {
    color: #d1d1d1;
    padding-left: 1.5rem;
}

.audit-box ol li {
    margin-bottom: 0.7rem;
}

/* Stats inline */
.stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.stat-inline-item {
    text-align: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid #444;
    min-width: 150px;
}

.stat-inline-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #efc500;
    line-height: 1;
    text-shadow: 0 0 15px rgba(239, 197, 0, 0.5);
}

.stat-inline-text {
    display: block;
    color: #d1d1d1;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Feature list */
.feature-list h4 {
    color: #efc500;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list ul li {
    color: #d1d1d1;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list ul li i {
    position: absolute;
    left: 0;
    color: #efc500;
    font-size: 1.2rem;
}

/* Bonus box */
.bonus-box {
    background: linear-gradient(135deg, rgba(239, 197, 0, 0.2) 0%, rgba(239, 197, 0, 0.08) 100%);
    border: 2px solid #efc500;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bonus-box i {
    color: #efc500;
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.6));
}

.bonus-box strong {
    color: #efc500;
}

/* Highlight text */
.highlight-text {
    background: linear-gradient(135deg, rgba(239, 197, 0, 0.25) 0%, rgba(239, 197, 0, 0.1) 100%);
    border-left: 4px solid #efc500;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f1f1;
    border-radius: 5px;
}

/* SEO types */
.seo-type {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.seo-type:hover {
    border-color: #efc500;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 197, 0, 0.2);
}

.seo-type i {
    font-size: 2.5rem;
    color: #efc500;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.5));
}

.seo-type h5 {
    color: #efc500;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.seo-type p {
    color: #d1d1d1;
    font-size: 0.95rem;
    margin: 0;
}

/* Proximity features */
.proximity-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proximity-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #555;
    transition: all 0.3s ease;
}

.proximity-item:hover {
    border-color: #efc500;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(239, 197, 0, 0.2);
}

.proximity-item i {
    font-size: 2.5rem;
    color: #efc500;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.5));
}

.proximity-item strong {
    color: #efc500;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.proximity-item p {
    color: #d1d1d1;
    margin: 0;
}

/* Training levels */
.training-levels {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.training-level {
    flex: 1;
    min-width: 200px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.training-level:hover {
    border-color: #efc500;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(239, 197, 0, 0.2);
}

.training-badge {
    background: linear-gradient(135deg, #efc500 0%, #d4af00 100%);
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(239, 197, 0, 0.4);
}

.training-level p {
    color: #d1d1d1;
    margin: 0;
}

/* Financing box */
.financing-box {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
}

.financing-box h5 {
    color: #efc500;
    margin-bottom: 1rem;
    font-weight: 700;
}

.financing-box h5 i {
    margin-right: 10px;
}

.financing-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.financing-tag {
    background: linear-gradient(135deg, rgba(239, 197, 0, 0.25) 0%, rgba(239, 197, 0, 0.15) 100%);
    border: 2px solid #efc500;
    color: #efc500;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Frequency grid */
.frequency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.frequency-item {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.frequency-item:hover {
    border-color: #efc500;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 197, 0, 0.2);
}

.frequency-item i {
    font-size: 2.5rem;
    color: #efc500;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.5));
}

.frequency-item strong {
    display: block;
    color: #efc500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.frequency-item p {
    color: #d1d1d1;
    margin: 0;
    font-size: 0.95rem;
}

/* ===========================
   RESULTS SECTION
   =========================== */
.results-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 80px 0;
}

.results-table {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #444;
    border-radius: 15px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.results-table thead {
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
}

.results-table th {
    color: #efc500;
    font-weight: 700;
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 3px solid #efc500;
    font-size: 1rem;
}

.results-table th i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.5));
}

.results-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    color: #d1d1d1;
    font-size: 1rem;
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

.objectives-row {
    background: rgba(239, 197, 0, 0.1);
}

.objectives-row td:first-child {
    color: #efc500;
    font-weight: 700;
}

.benefits-row td:first-child {
    color: #efc500;
    font-weight: 700;
}

.results-table td:first-child {
    text-align: left;
    padding-left: 2rem;
}

/* ===========================
   TRENDS SECTION
   =========================== */
.trends-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 80px 0;
}

.trend-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid #444;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.trend-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #efc500;
    box-shadow: 0 15px 50px rgba(239, 197, 0, 0.4);
}

.trend-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(239, 197, 0, 0.3) 0%, transparent 70%);
    border: 3px solid #efc500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(239, 197, 0, 0.4);
}

.trend-icon i {
    font-size: 2.5rem;
    color: #efc500;
    filter: drop-shadow(0 0 10px rgba(239, 197, 0, 0.6));
}

.trend-card h4 {
    color: #efc500;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trend-card p {
    color: #d1d1d1;
    margin: 0;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta-section {
    background: linear-gradient(135deg, #efc500 0%, #d4af00 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.05) 20px,
            rgba(0, 0, 0, 0.05) 40px
    );
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
}

.final-cta-section .lead {
    color: #000;
    font-size: 1.3rem;
}

.final-cta-section strong {
    color: #000;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section .btn-primary {
    background-color: #000;
    border: 3px solid #000;
    color: #efc500;
    font-size: 1.2rem;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.final-cta-section .btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.final-cta-section .btn-outline-light {
    background-color: transparent;
    border: 3px solid #000;
    color: #000;
    font-size: 1.2rem;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.final-cta-section .btn-outline-light:hover {
    background-color: #000;
    color: #efc500;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

@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 pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pillar-header {
        flex-direction: column;
        text-align: center;
    }

    .stats-inline {
        flex-direction: column;
    }

    .training-levels {
        flex-direction: column;
    }

    .results-table {
        font-size: 0.85rem;
    }

    .results-table th,
    .results-table td {
        padding: 0.8rem 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .stat-icon {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .proximity-item:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .vision-image {
        height: 250px;
    }

    .vision-image i {
        font-size: 6rem;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
    }

    .pillar-icon i {
        font-size: 2rem;
    }

    .pillar-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .lead-text {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .trend-icon {
        width: 60px;
        height: 60px;
    }

    .trend-icon i {
        font-size: 2rem;
    }
}