/* TechRepair - Premium Light Theme */
/* Couleurs: Bleu & Orange */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Couleurs principales */
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e3a8a;
    --primary-orange: #f97316;
    --primary-orange-light: #fb923c;
    --primary-orange-dark: #ea580c;
    
    /* Couleurs de fond */
    --bg-white: #ffffff;
    --bg-cream: #fefcf9;
    --bg-gray: #f8fafc;
    --bg-blue-light: #eff6ff;
    
    /* Textes */
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-muted: #94a3b8;
    
    /* Bordures et effets */
    --border-light: rgba(30, 64, 175, 0.08);
    --border-medium: rgba(30, 64, 175, 0.15);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    --gradient-mixed: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    --gradient-hero: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-blue-light) 50%, var(--bg-cream) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
   HEADER
   ============================================ */

.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar-brand span {
    color: var(--text-dark) !important;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    background: var(--gradient-primary);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-blue);
}

.logo-icon i {
    color: white;
    font-size: 22px;
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary-custom {
    background: var(--gradient-mixed);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--border-medium);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-outline-custom:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--bg-blue-light);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-banner {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 520px;
}

/* Price Badge */
.price-badge {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 1px solid var(--border-light);
    padding: 20px 30px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.price-main {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
}

.price-main span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
}

.price-tag {
    background: var(--bg-blue-light);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Badge Custom */
.badge-custom {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(30, 64, 175, 0.2);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-custom i {
    color: var(--primary-orange);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    box-shadow: var(--shadow-soft);
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    color: var(--text-gray);
    font-size: 14px;
}

.proof-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.stars {
    color: #fbbf24;
}

/* Hero Image Card */
.hero-image-wrapper {
    animation: fadeInRight 1s ease-out 0.2s both;
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-large), var(--shadow-glow-blue);
    border: 1px solid var(--border-light);
    transition: all 0.5s ease;
}

.dashboard-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-large), 0 0 60px rgba(59, 130, 246, 0.2);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-blue-light) 100%);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-icon {
    background: var(--gradient-primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dashboard-title-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.dashboard-title-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.productivity-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: #059669;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-body {
    padding: 24px;
}

.screenshot-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.screenshot-container:hover img {
    transform: scale(1.02);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

#features {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: transparent;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    transition: all 0.4s ease;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--primary-blue);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: var(--primary-orange);
}

.feature-icon.mixed {
    background: var(--gradient-mixed);
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

#services {
    background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-white) 100%);
    padding: 100px 0;
}

.service-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transition: all 0.4s ease;
}

.service-card.blue::before { background: var(--primary-blue); }
.service-card.orange::before { background: var(--primary-orange); }
.service-card.green::before { background: #10b981; }
.service-card.purple::before { background: #8b5cf6; }
.service-card.pink::before { background: #ec4899; }
.service-card.amber::before { background: #f59e0b; }

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.service-icon.blue {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--primary-blue);
}

.service-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: var(--primary-orange);
}

.service-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.15) 100%);
    color: #10b981;
}

.service-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.15) 100%);
    color: #8b5cf6;
}

.service-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(244, 114, 182, 0.15) 100%);
    color: #ec4899;
}

.service-icon.amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.15) 100%);
    color: #f59e0b;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SCREENSHOTS GALLERY
   ============================================ */

#screenshots {
    background: var(--bg-white);
    padding: 100px 0;
}

.screenshot-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: all 0.5s ease;
    margin-bottom: 30px;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large), var(--shadow-glow-blue);
}

.screenshot-card-header {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-blue-light) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.screenshot-card-header .dots {
    display: flex;
    gap: 6px;
}

.screenshot-card-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-card-header .dot.red { background: #ef4444; }
.screenshot-card-header .dot.yellow { background: #fbbf24; }
.screenshot-card-header .dot.green { background: #22c55e; }

.screenshot-card-header h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    margin-left: 10px;
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   PRICING SECTION
   ============================================ */

#pricing {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-blue-light) 100%);
    padding: 100px 0;
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-mixed);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
}

.pricing-label {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.pricing-price .period {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-equivalent {
    background: var(--bg-blue-light);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    font-size: 18px;
}

.pricing-cta {
    width: 100%;
    padding: 18px 40px;
    font-size: 18px;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================
   PRICING MULTI-CARDS
   ============================================ */

/* Starter Card Styles */
.pricing-starter {
    border: 2px solid var(--border-light);
}

.pricing-starter:hover {
    border-color: #10b981;
}

.pricing-label-starter {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.amount-starter {
    color: #10b981 !important;
}

.pricing-equivalent-starter {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Popular Card Styles */
.pricing-popular {
    border: 3px solid var(--primary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-large), var(--shadow-glow-orange);
    z-index: 10;
    position: relative;
    margin-top: 20px;
    overflow: visible;
}

.pricing-popular:hover {
    transform: scale(1.08);
    border-color: var(--primary-orange);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    white-space: nowrap;
    z-index: 100;
}

.popular-badge i {
    font-size: 14px;
}

.pricing-popular .pricing-equivalent {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: var(--primary-orange-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.pricing-popular .pricing-equivalent i {
    font-size: 18px;
}

/* Premium Card Styles */
.pricing-premium {
    border: 2px solid var(--border-light);
}

.pricing-premium:hover {
    border-color: var(--primary-blue);
}

.pricing-label-premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.amount-premium {
    color: #8b5cf6 !important;
}

.pricing-equivalent-premium {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.btn-premium {
    border-color: #8b5cf6 !important;
    color: #8b5cf6 !important;
}

.btn-premium:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: #8b5cf6 !important;
    color: #7c3aed !important;
}

/* Pricing features strong */
.pricing-features li strong {
    color: var(--primary-blue);
}

/* Pricing Comparison Section */
.pricing-comparison {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.comparison-item {
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: var(--bg-blue-light);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 146, 60, 0.12) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.comparison-item i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.comparison-item:nth-child(1) i,
.pricing-comparison .col-md-4:nth-child(1) .comparison-item i {
    color: #10b981;
}

.comparison-item.highlight i {
    color: var(--primary-orange);
}

.pricing-comparison .col-md-4:nth-child(3) .comparison-item i {
    color: #8b5cf6;
}

.comparison-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.comparison-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive adjustments for multi-cards */
@media (max-width: 991px) {
    .pricing-popular {
        transform: scale(1);
        margin-bottom: 30px;
    }
    
    .pricing-popular:hover {
        transform: scale(1.02);
    }
    
    .pricing-comparison {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 24px;
    }
    
    .popular-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .comparison-item {
        margin-bottom: 20px;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

#reviews {
    background: var(--bg-white);
    padding: 100px 0;
}

.review-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--border-light);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(30, 64, 175, 0.2);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 2px;
}

.review-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-mixed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.review-author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.review-author-info span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--primary-orange-dark) 100%);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h3 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary-custom {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-section .btn-primary-custom:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
}

.cta-section .btn-outline-custom {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.cta-section .btn-outline-custom:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--bg-gray);
    padding: 40px 0 30px;
    border-top: 1px solid var(--border-light);
}

footer .logo-icon {
    box-shadow: none;
}

footer .navbar-brand span {
    font-size: 1.3rem;
}

footer p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

footer a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-blue);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gradient {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--bg-blue-light) 0%, var(--bg-cream) 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-banner {
        padding: 120px 0 80px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .price-badge {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 12px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .pricing-price .amount {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    #features, #services, #pricing, #reviews, #screenshots {
        padding: 60px 0;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 24px;
        font-size: 14px;
    }
}
