/* ===== BASE STYLES ===== */
:root {
    --primary: #3a5dca;
    --primary-dark: #2c4ea8;
    --secondary: #4fc484;
    --secondary-dark: #3aa76b;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: -3px;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== COMMON COMPONENTS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header .tag {
    display: inline-block;
    background-color: rgba(58, 93, 202, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: rgb(0, 132, 255);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: rgb(1, 192, 119);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn-text {
    color: var(--primary);
    padding: 8px 0;
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

.badge {
    display: flex;
    align-items: center;
    background-color: rgba(79, 196, 132, 0.1);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    margin-right: 8px;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

a[href="index.html"] {
   margin: 0;
   padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-links a:hover {
    color: var(--primary);
    background-color: rgba(58, 93, 202, 0.1);
}

/* Active state for current page */
.nav-links a.active {
    color: var(--primary);
    background-color: rgba(58, 93, 202, 0.15);
    font-weight: 600;
}

/* Visual indicator under active tab */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Alternative style with border */
.nav-links a.active-border {
    color: var(--primary);
    border: 2px solid var(--primary);
    background-color: rgba(58, 93, 202, 0.05);
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-buttons a:first-child {
    margin-right: 15px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin-bottom: 5px;
    border-radius: 3px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 24px;
}

/* Add a small triangle pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}


/* ===== STICKY CTA (POPUP STYLE) ===== */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #dae4ff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    width: 320px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    animation: slideInUp 0.3s ease-out;
    box-sizing: border-box;
}

.sticky-cta p {
    margin-bottom: 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.4 !important;
}

.sticky-cta .btn {
    align-self: flex-start !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    width: auto !important;
}

.sticky-cta .btn-primary {
    background: #007bff !important;
    color: white !important;
    border: none !important;
}

.sticky-cta .btn-primary:hover {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
}

.sticky-cta .close-btn {
    position: absolute !important;
    top: 8px !important;
    right: 12px !important;
    background: none !important;
    border: none !important;
    font-size: 20px !important;
    color: #999 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
}

.sticky-cta .close-btn:hover {
    color: #666 !important;
    background: #f5f5f5 !important;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-cta.closing {
    animation: slideOutDown 0.3s ease-in forwards !important;
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100px);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 0;
    background: transparent; 
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1; 
    width: 100%;
    padding: 80px 20px;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.cta-buttons {
    justify-content: center;
    display: flex;
    margin-bottom: 25px;
}

.cta-buttons .btn:first-child {
    margin-right: 35px;
}

/* Make buttons bigger and more prominent */
.cta-buttons .btn {
    padding: 16px 32px; /* Increased from typical 12px 24px */
    font-size: 18px; /* Larger font size */
    font-weight: 600; /* Semi-bold text */
    min-width: 160px; /* Minimum width for consistency */
    border-radius: 8px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth hover effects */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

/* Primary button styling */
.cta-buttons .btn-primary {
    background: #007bff;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Secondary button styling */
.cta-buttons .btn-secondary {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Alternative styling for outline buttons */
.cta-buttons .btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.cta-buttons .btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Extra large variant */
.cta-buttons .btn-xl {
    padding: 20px 40px;
    font-size: 20px;
    min-width: 200px;
}

.guarantee {
    display: flex;
    align-items: center;
}

/* Hero Section Alternative Styles */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
    line-height: 1.2;
}

.highlight {
    color: #4299e1;
}

.hero-description {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero Video Styles */
.hero-video {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.video-fallback {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
}

/* Custom video controls */
.hero-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-pause-button {
    background-color: #2563eb;
    border-radius: 50%;
}

/* ===== TRUST SECTION ===== */
.trust {
    background-color: white;
    text-align: center;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.client-logos img {
    height: 40px;
    margin: 15px 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logos img:hover {
    opacity: 1;
}

.metrics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.metric {
    text-align: center;
    padding: 20px;
}

.metric h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.metric p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    background-color: var(--light);
    position: relative;
}

/* Features Tabs */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0; 
    background-color: white;
    padding: 8px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    border-bottom: none; 
}

.features-content {
    position: relative;
    min-height: 400px;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-top: none; 
    border-radius: 0 0 var(--border-radius) var(--border-radius); 
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.tab-button {
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    max-width: 250px;
    font-family: 'Poppins', sans-serif;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--border-radius);
}

.tab-button.active {
    color: white;
    transform: translateY(-2px);
}

.tab-button.active::before {
    opacity: 1;
}

.tab-button span {
    position: relative;
    z-index: 1;
}

.tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--light-gray);
    width: 100%;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.tab-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.tab-button.active .tab-progress::after {
    animation: progressFill 15s linear;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.feature-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-panel.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-info {
    flex: 1;
    max-width: 600px;
}

.feature-info .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-info .feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-info h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-info p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.tab-button.active .tab-progress.animating::after {
    animation: progressFill 15s linear;
}

.tab-button.active .tab-progress.paused::after {
    width: var(--progress-width, 0%);
    animation: none;
}

.tab-button.active .tab-progress.resuming::after {
    width: 100%;
    transition: width var(--remaining-time, 15s) linear;
}

/* Features Section Alternative */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #4299e1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #4299e1;
    font-size: 24px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.feature-description {
    color: #718096;
    line-height: 1.6;
}

/* ===== COACHES SECTION ===== */
.coaches {
    background-color: white;
}

.coaches-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.coaches-image {
    flex: 1;
}

.coaches-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.coach-spotlight {
    display: flex;
    align-items: center;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

.coach-image {
    flex: 0 0 30%;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-story {
    flex: 1;
    padding: 30px;
}

.coach-story h3 {
    margin-bottom: 15px;
}

.coach-story p {
    margin-bottom: 15px;
}

/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
    line-height: 1.3;
}

.results-description {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: #4a5568;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.stat-blue .stat-number { color: #4299e1; }
.stat-green .stat-number { color: #48bb78; }
.stat-purple .stat-number { color: #9f7aea; }
.stat-orange .stat-number { color: #ed8936; }

/* ===== ROI CALCULATOR SECTION ===== */
.roi-calculator {
    background-color: white;
}

.calculator-wrapper {
    display: flex;
    gap: 40px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.calculator-form {
    flex: 1;
    padding: 30px;
}

.calculator-results {
    flex: 1;
    padding: 30px;
    background-color: var(--primary);
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="range"] {
    width: 100%;
    margin-bottom: 8px;
}

.form-group output {
    font-weight: 500;
    color: var(--primary);
}

.result-box {
    background-color: white;
    color: var(--dark);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.result-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.result-box .big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.result-box .explainer {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.improvement-potential {
    margin-bottom: 20px;
}

.improvement-potential h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.potential-metric {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-cta {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
}

.calculator-cta p {
    margin-bottom: 15px;
}

.calculator-cta form {
    display: flex;
    gap: 10px;
}

.calculator-cta input {
    flex: 1;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: none;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--light);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #e5e7eb;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.author-company {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

/* ===== ENTERPRISE SECTION ===== */
.enterprise {
    background-color: var(--light);
    padding: 60px 0;
}

.enterprise-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.enterprise-image {
    flex: 1;
}

.enterprise-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-points {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cta-box {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.cta-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--gray);
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light);
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-answer {
    padding: 20px;
    background-color: white;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
    font-size: 1rem;
}

.faq-more {
    text-align: center;
}

/* ===== DEMO REQUEST SECTION ===== */
.demo-request {
    background-color: var(--primary);
    color: white;
}

.demo-content {
    max-width: 700px;
    margin: 0 auto;
}

.demo-content h2 {
    color: white;
}

.demo-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 30px;
    color: var(--dark);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.demo-guarantee {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.demo-guarantee i {
    margin-right: 5px;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 170px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.7;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.exit-popup h3 {
    margin-bottom: 15px;
}

.exit-popup p {
    margin-bottom: 20px;
}

.exit-popup form {
    display: flex;
    gap: 10px;
}

.exit-popup input {
    flex: 1;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}carousel {
    position: relative;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-content p {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 110px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.navigation-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary);
}

/* Testimonials Section Alternative */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

/** Video inside dashboard entrprise in index.html **/
.feature-info {
    flex: 1;
    max-width: 35%;
}

.feature-info h3 {
    font-size: 1.4rem; /* Plus petit que la taille par défaut */
    margin-bottom: 10px;
}

.feature-info p {
    font-size: 0.9rem; /* Plus petit que la taille par défaut */
    line-height: 1.4;
    color: #666;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.8rem; /* Réduit la taille de l'icône */
}

.feature-panel {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-panel.active {
    display: flex;
}

/* CSS pour optimiser les performances vidéo */

/* Optimisation GPU pour les vidéos */
.enterprise-analytics-video,
.end-to-end-workflow-video,
.coach-dashboard-video {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Optimisations performance */
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform; /* Optimise les animations */
    backface-visibility: hidden; /* Évite les flickers */
}

/* Placeholder image pendant le chargement */
.video-placeholder {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

/* Bouton de lecture personnalisé */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(74, 144, 255, 0.9);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 255, 0.3);
    z-index: 10;
}

.video-play-btn:hover {
    background: rgba(74, 144, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 144, 255, 0.4);
}

.video-play-btn i {
    margin-right: 8px;
}
.feature-video {
    position: relative;
    flex: 1.5;
    max-width: 60%;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.video-loading {
    position: relative;
}

.video-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a90ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}