/* =================================================================
   LUMINEFY - Premium Solar Installer Loyalty Program
   Jeton.com-inspired Fintech Grade Landing Page
   ================================================================= */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - New Vibrant Scheme */
    --primary-purple: #FF7A00;
    --primary-cyan: #0A66FF;
    --accent-pink: #EC4899;
    --accent-emerald: #10B981;
    --white: #FFFFFF;
    --dark: #0F172A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    --gradient-secondary: linear-gradient(135deg, var(--primary-cyan), var(--accent-emerald));
    --gradient-combo: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan), var(--accent-pink));
    
    /* White Mode Colors */
    --bg-light: #FFFFFF;
    --bg-lighter: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-purple: #FF7A00;
    --text-cyan: #0A66FF;
    
    /* Glass Effects for Light Mode */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 80px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);


    --white: #ffffff;

    --orange: #f97316;
    --orange-soft: rgba(249, 115, 22, 0.35);
    --orange-light: rgba(249, 115, 22, 0.2);

    --blue: #3b82f6;
    --blue-soft: rgba(59, 130, 246, 0.35);
    --blue-light: rgba(59, 130, 246, 0.2);
}


html {
    overflow-x: hidden;
    scroll-snap-type: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(10, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    animation: gradient-move 15s ease infinite;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-snap-type: none;
    scroll-behavior: auto;
    position: relative;
}

@keyframes gradient-move {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.energy-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.energy-ring:nth-child(1) {
    columns: var(--orange);
}
.energy-ring:nth-child(2) {
    columns: var(--blue);
    border-top-color: var(--primary-blue);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.energy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    animation: pulse-core 1s ease-in-out infinite;
}

.loader-text {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-combo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    animation: load-progress 2s ease-in-out forwards;
}

/* ===== CUSTOM CURSOR - DISABLED ===== */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

.cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    box-shadow: 0 0 20px var(--primary-orange),
                0 0 40px var(--primary-orange),
                0 0 60px rgba(255, 122, 0, 0.5);
    animation: cursor-pulse 1.5s ease-in-out infinite;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
}

.cursor-outline::before,
.cursor-outline::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-blue));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: electric-spark 1s ease-in-out infinite;
}

.cursor-outline::after {
    animation-delay: 0.5s;
    transform: translate(-50%, -50%) rotate(90deg);
}

.cursor-dot.cursor-hover,
.cursor-outline.cursor-hover {
    transform: scale(2);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 9999;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-combo);
    width: 0%;
    transition: width 0.1s ease;
}

/* ===== CONTENT WRAPPER - 80% WIDTH ===== */
.content-wrapper {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .content-wrapper {
        width: 85%;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        width: 80%;
    }
}

/* ===== ANIMATED BACKGROUND - DISABLED ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    display: none !important;
}
    filter: contrast(1.2);
}

/* Floating Orbs Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(10, 102, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

/* orb-float animation - DISABLED */
/*
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}
*/

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contacts {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.contact-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.phone-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #1877F2, #0A5FD8);
    border-color: #1877F2;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #E4405F, #D6249F, #FD7E14);
    border-color: #E4405F;
}

.twitter-btn:hover {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
    border-color: #1DA1F2;
}

/* ===== GLASS CARD SYSTEM ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.12);
}

/* ===== HERO SECTION - CLEAN & POWERFUL ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 30%, #f0f7ff 70%, #fff5f0 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Logo Watermark */
.logo-watermark {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    max-width: 1200px;
    opacity: 0.93;
    z-index: 0;
    pointer-events: none;
    animation: watermark-pulse 8s ease-in-out infinite;
}

.logo-watermark img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes watermark-pulse {
    0%, 100% { 
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 30%;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #FF7A00, #ff9933);
    top: 20%;
    left: 15%;
    animation: float-shape 25s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0A66FF, #3385ff);
    top: 60%;
    right: 20%;
    animation: float-shape 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, #FF7A00, #ff9933);
    bottom: 30%;
    left: 25%;
    animation: rotate-shape 30s linear infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, #0A66FF, #3385ff);
    top: 40%;
    right: 15%;
    animation: float-shape 22s ease-in-out infinite;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: linear-gradient(180deg, #FF7A00, #0A66FF);
    bottom: 15%;
    right: 30%;
    animation: rotate-shape 28s linear infinite reverse;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -20px) rotate(270deg); }
}

@keyframes rotate-shape {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Wave Pattern */
.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    opacity: 0.6;
}

.wave-pattern svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: none;
    opacity: 0.15;
}

.wave-1 {
    fill: #FF7A00;
    animation: wave-animate 8s ease-in-out infinite;
}

.wave-2 {
    fill: #0A66FF;
    animation: wave-animate 12s ease-in-out infinite reverse;
}

@keyframes wave-animate {
    0%, 100% { d: path('M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z'); }
    50% { d: path('M0,30 Q300,70 600,30 T1200,30 L1200,120 L0,120 Z'); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float-orb 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.4), transparent 70%);
    top: -10%;
    left: -5%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 102, 255, 0.4), transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: 8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.3), rgba(10, 102, 255, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 15s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(50px, -50px) scale(1.15); opacity: 0.6; }
    50% { transform: translate(-30px, -80px) scale(1.1); opacity: 0.4; }
    75% { transform: translate(-50px, 30px) scale(0.95); opacity: 0.55; }
}

/* hero-glow animation - DISABLED */
/*
@keyframes hero-glow {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
}
*/

.hero-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    top:20px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 122, 0, 0.08);
    border: 2px solid rgba(255, 122, 0, 0.2);
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 122, 0, 0.12);
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.title-line {
    display: block;
    margin-bottom: 8px;
}

.title-word {
    display: inline-block;
    margin-right: 16px;
    transition: transform 0.3s ease;
    animation: color-pulse 3s ease-in-out infinite;
}

.title-word:hover {
    transform: translateY(-5px) scale(1.05);
    animation-play-state: paused;
}

.text-orange {
    color: #f58227;
    background: linear-gradient(135deg, #f58227, #ff9933, #f58227);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite, color-pulse 3s ease-in-out infinite;
}

.text-blue {
    color: #1b76bb;
    background: linear-gradient(135deg, #1b76bb, #3399dd, #1b76bb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite reverse, color-pulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes color-pulse {
    0%, 100% { 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.85;
        filter: brightness(1.1);
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 22px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-button,
.cta-primary {
    background: linear-gradient(135deg, #FF7A00 0%, #ff9933 50%, #FF7A00 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-button::before,
.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background-position: 100% 50%;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-primary:hover::before {
    transform: translateX(100%);
}

.cta-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(10, 102, 255, 0.15);
}

.btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: translateX(3px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(200, 200, 200, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f58227, #1b76bb);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f58227, #ff9933);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(245, 130, 39, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #f58227, #1b76bb);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(245, 130, 39, 0.5);
}

.stat-item:hover .stat-icon::before {
    opacity: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #f58227, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Hero Right Section */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-orange);
    transition: all 0.4s ease;
    animation: float-showcase 6s ease-in-out infinite;
}

@keyframes float-showcase {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 122, 0, 0.2);
    border-color: var(--primary-blue);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1), transparent 70%);
    z-index: -1;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 1s ease, filter 1s ease, transform 0.4s ease;
}

.product-image img.active {
    opacity: 1;
    filter: blur(0px);
    z-index: 2;
}

.product-image img.blurring {
    filter: blur(20px);
    opacity: 0;
}

.showcase-card:hover .product-image img.active {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.floating-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float-chip 4s ease-in-out infinite;
}

.chip-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.chip-2 {
    top: 50%;
    right: -40px;
    animation-delay: 1s;
}

.chip-3 {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float-chip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-chip i {
    color: var(--primary-orange);
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.25);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    border-radius: 14px;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card:hover .metric-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.6);
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 600px;
}

/* Remove old visual-grid */
.visual-grid {
    display: none;
}

/* Main Visual Card */
.main-visual {
    position: absolute;
    top: 50px;
    left: 0;
    width: 350px;
    z-index: 2;
}

/* Secondary Visual Card */
.secondary-visual {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 280px;
    z-index: 1;
}




/* ===============================
   BASIC IMAGE SHADOW
================================ */
.img-shadow {
    filter:
        drop-shadow(0 12px 24px var(--blue-light))
        drop-shadow(0 4px 10px var(--blue-soft));
    transition: filter 0.4s ease, transform 0.4s ease;
}

/* Hover lift */
.img-shadow:hover {
    transform: translateY(-8px);
    filter:
        drop-shadow(0 20px 40px var(--blue-soft))
        drop-shadow(0 6px 16px var(--orange-light));
}

/* ===============================
   SOFT FLOATING IMAGE
================================ */
.img-float {
    animation: image-float 6s ease-in-out infinite;
}

@keyframes image-float {
    0%, 100% {
        transform: translateY(0);
        filter:
            drop-shadow(0 14px 30px var(--blue-light));
    }
    50% {
        transform: translateY(-20px);
        filter:
            drop-shadow(0 26px 50px var(--blue-soft));
    }
}

/* ===============================
   GLOW ACCENT IMAGE
================================ */
.img-glow {
    filter:
        drop-shadow(0 0 0 var(--white))
        drop-shadow(0 0 18px var(--orange-light))
        drop-shadow(0 12px 30px var(--blue-light));
}

/* ===============================
   HOVER GLOW (CTA IMAGES)
================================ */
.img-glow-hover {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.img-glow-hover:hover {
    transform: scale(1.05);
    filter:
        drop-shadow(0 0 26px var(--orange-soft))
        drop-shadow(0 16px 40px var(--blue-soft));
}

/* ===============================
   CIRCULAR / LOGO IMAGES
================================ */
.img-logo {
    filter:
        drop-shadow(0 8px 16px var(--blue-light));
    transition: filter 0.3s ease;
}

.img-logo:hover {
    filter:
        drop-shadow(0 12px 28px var(--blue-soft))
        drop-shadow(0 0 18px var(--orange-light));
}

/* ===============================
   PERFORMANCE & MOBILE
================================ */
@media (hover: none) {
    .img-shadow:hover,
    .img-glow-hover:hover,
    .img-logo:hover {
        transform: none;
        filter:
            drop-shadow(0 10px 20px var(--blue-light));
    }
}



/* Glass Float Style */
/* .glass-float {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-gentle 6s ease-in-out infinite;
} */

.secondary-visual {
    animation-delay: 1s;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.glass-float:hover img {
    transform: translateY(-15px) scale(1.05);
    /* box-shadow: 0 30px 80px rgba(255, 122, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 122, 0, 0.3); */
}

.visual-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

/* Modern Card Design */
.modern-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--primary-orange);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.2),
                0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-gentle 8s ease-in-out infinite;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 122, 0, 0.3),
                0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(10, 102, 255, 0.05));
}

.hero-product-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.modern-card:hover .hero-product-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
    backdrop-filter: blur(10px);
}

.card-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

/* Remove old border effect */
.visual-item::before {
    display: none;
}

.visual-item:hover::before {
    display: none;
}

.visual-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.visual-item:hover .visual-image img {
    transform: scale(1.1);
}

.visual-badge {
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    border-top: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.visual-badge::before {
    content: '';\n    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-combo);
}

.visual-item:hover .visual-badge {
    opacity: 1;
    color: var(--primary-orange);
}

/* Floating Stats Card */
.floating-stats-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(20px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    animation: float-stats 4s ease-in-out infinite;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.floating-stats-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-combo);
    border-radius: 24px;
    z-index: -1;
    animation: rotate-border 4s linear infinite;
    filter: blur(60px);
}

.floating-stats-card:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 122, 0, 0.3);
}

@keyframes float-stats {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
}

.stats-card-header i {
    color: var(--primary-orange);
    font-size: 16px;
}

.stats-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.earnings-row:last-child {
    border-bottom: none;
}

.earnings-row span:first-child {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.earnings-value {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-primary);
}

.earnings-value.highlight {
    color: var(--primary-orange);
    font-size: 22px;
    text-shadow: 0 2px 10px rgba(255, 122, 0, 0.2);
}

/* ===== CTA BUTTONS (Keep for other sections) ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-cta {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.4);
}

.primary-cta::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;
    z-index: -1;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.6);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 28px;
    height: 46px;
    border: 3px solid var(--primary-purple);
    border-radius: 14px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: scroll-down 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.5);
}

/* ===== SECTION STRUCTURE ===== */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    z-index: 2;
    scroll-snap-align: none;
}

.section-container {
    width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    /* line-height: 0.4; */
    margin-bottom: 25px;
    color: var(--text-primary);
    visibility: visible;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 3px;
    box-shadow: 0 0 20px var(--primary-purple);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan), var(--accent-pink));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-cyan);
}

.section-title:hover::after {
    width: 100%;
}

/* Shimmer animation - DISABLED for performance */
/*
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
*/

.title-decoration {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 10px 28px;
    border-radius: 50px;
    visibility: visible;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.title-decoration::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;
}

.title-decoration:hover::before {
    left: 100%;
}

.title-decoration:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 122, 0, 0.5);
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(255, 122, 0, 0.7), 0 0 60px rgba(10, 102, 255, 0.3); }
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.section-subtitle:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* ===== PREMIUM SOLAR SOLUTIONS SECTION ===== */
.solutions-section {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 118, 187, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 12s ease-in-out infinite;
}

.solutions-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 130, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 12s ease-in-out infinite reverse;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 130, 39, 0.1), rgba(27, 118, 187, 0.1));
    border: 2px solid rgba(245, 130, 39, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #f58227;
    margin-bottom: 20px;
}

.solutions-badge i {
    font-size: 14px;
}

/* Compact 4-Card Grid Container */
.solutions-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 20px;
}

/* Compact Premium Glass Card Styling */
.solution-card {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(31, 38, 135, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideIn 0.6s ease-out forwards;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flowing Gradient Border */
.solution-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        135deg,
        rgba(245, 130, 39, 0.5) 0%,
        rgba(27, 118, 187, 0.5) 25%,
        rgba(245, 130, 39, 0.5) 50%,
        rgba(27, 118, 187, 0.5) 75%,
        rgba(245, 130, 39, 0.5) 100%
    );
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderWave 10s ease infinite;
}

@keyframes borderWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glass Shimmer Effect */
.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmerEffect 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerEffect {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 18px 60px rgba(31, 38, 135, 0.2),
        0 6px 18px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.solution-card:hover::before {
    opacity: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(245, 130, 39, 0.6) 0%, 
        rgba(27, 118, 187, 0.6) 50%,
        rgba(245, 130, 39, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
 

/* Slider Navigation Buttons */
.solutions-nav-prev,
.solutions-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(31, 38, 135, 0.15);
}

.solutions-nav-prev {
    left: 0;
}

.solutions-nav-next {
    right: 0;
}

.solutions-nav-prev:hover,
.solutions-nav-next:hover {
    background: rgba(245, 130, 39, 0.9);
    border-color: rgba(245, 130, 39, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(245, 130, 39, 0.4);
}

.solutions-nav-prev i,
.solutions-nav-next i {
    font-size: 18px;
    color: #1b76bb;
    transition: color 0.3s ease;
}

.solutions-nav-prev:hover i,
.solutions-nav-next:hover i {
    color: #ffffff;
}

.solutions-nav-prev.swiper-button-disabled,
.solutions-nav-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Slider Pagination */
.solutions-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.solutions-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(27, 118, 187, 0.3);
    opacity: 1;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.solutions-pagination .swiper-pagination-bullet:hover {
    background: rgba(27, 118, 187, 0.5);
    transform: scale(1.2);
}

.solutions-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f58227, #1b76bb);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(245, 130, 39, 0.4);
}   transition: opacity 0.5s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(31, 38, 135, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.solution-card:hover::before {
    opacity: 1;
}

.featured-solution {
    border: 1px solid rgba(245, 130, 39, 0.5);
    background: linear-gradient(
        135deg,
        rgba(245, 130, 39, 0.08),
        rgba(27, 118, 187, 0.08)
    );
}

.solution-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #f58227, #ff9933);
    border-radius: 16px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 130, 39, 0.4);
}

.solution-featured-badge i {
    font-size: 9px;
}

.solution-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.solution-card:hover .solution-image {
    transform: scale(1.08);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover .solution-overlay {
    opacity: 1;
}

.solution-icon-badge {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f58227;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon-badge {
    transform: translateY(0);
}

.solution-content {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.solution-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f58227;
    background: rgba(245, 130, 39, 0.12);
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.solution-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.solution-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.solution-features li {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-features li i {
    color: #10b981;
    font-size: 12px;
    flex-shrink: 0;
}

.solution-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(200, 200, 200, 0.15);
}

.solution-power {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.solution-power i {
    color: #f58227;
    font-size: 14px;
}

.solution-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f58227, #ff9933);
    color: #ffffff;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(245, 130, 39, 0.3);
    white-space: nowrap;
}

.solution-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.solution-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 18px rgba(245, 130, 39, 0.4);
}

.solution-btn:hover i {
    transform: translateX(2px);
}
    margin: 0 0 20px 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.solution-features li i {
    color: #10b981;
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-features li {
    color: var(--text-primary);
    transform: translateX(3px);
}

.solution-card:hover .solution-features li i {
    transform: scale(1.2);
}

.solution-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid rgba(200, 200, 200, 0.15);
    margin-top: auto;
}

.solution-power {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.solution-power i {
    color: #f58227;
    font-size: 16px;
}

.solution-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f58227, #ff9933);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 130, 39, 0.3);
}

.solution-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.solution-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(245, 130, 39, 0.4);
}

.solution-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Grid Layout */
@media (max-width: 1200px) {
    .solutions-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .solutions-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        padding: 0 15px;
    }
    
    .solution-image-wrapper {
        height: 180px;
    }
    
    .solution-title {
        font-size: 18px;
    }
    
    .solution-description {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }
    
    .solution-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .solution-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Logo Watermark - Bigger on Mobile */
    .logo-watermark {
        width: 70%;
        max-width: 400px;
        opacity: 0.15;
        top: 5%;
    }
    
    /* Stats Grid - Single Column on Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 18px 20px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
    }
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: var(--section-padding) 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Glassmorphism Card */
.offer-card {
    padding: 40px 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 200, 200, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff7b003c, #0a68ff2a, #ff7b0044, #0a68ff31);
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.offer-card:hover::before {
    opacity: 1;
}

.featured-card {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(10, 102, 255, 0.1));
    border: 2px solid rgba(255, 122, 0, 0.4);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--primary-orange);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.offer-card:hover .card-icon {
    transform: scale(1.05);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}

.card-price {
    margin-bottom: 20px;
}

.currency {
    font-size: 20px;
    color: var(--primary-purple);
    font-weight: 700;
}

.amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 4px;
}

.period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.savings-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* .card-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.5);
} */

.featured-button {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.featured-button:hover {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

/* Animate.css delays */
[data-animate-delay="0.1s"] {
    animation-delay: 0.1s;
}

[data-animate-delay="0.3s"] {
    animation-delay: 0.3s;
}

[data-animate-delay="0.5s"] {
    animation-delay: 0.5s;
}
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: 0 2px 20px rgba(255, 122, 0, 0.3);
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
}

.featured-price .amount {
    color: var(--primary-blue);
    text-shadow: 0 2px 20px rgba(10, 102, 255, 0.3);
}

.savings-badge {
    text-align: center;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 25px;
}

.card-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 700;
}

.card-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    /* background: var(--gradient-primary); */
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.card-button:hover {
    /* background: linear-gradient(135deg, #FF9933, var(--primary-orange)); */
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

.featured-button {
    background: var(--gradient-combo);
    border: none;
}

.featured-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.5);
}

/* ===== LOYALTY SECTION ===== */
.loyalty-section {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.03) 0%, rgba(10, 102, 255, 0.03) 100%);
}

.loyalty-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.power-meter {
    width: 100%;
}

.meter-container {
    padding: 50px;
}

.meter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.meter-label {
    font-size: 18px;
    color: var(--text-secondary);
}

.meter-value {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-combo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meter-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.meter-bar {
    position: relative;
}

.bar-fill {
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.4);
}

.bar-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--white);
    z-index: 2;
}

.meter-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.meter-stat {
    text-align: center;
}

.meter-stat .stat-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: 0 2px 15px rgba(10, 102, 255, 0.2);
    margin-bottom: 8px;
}

.meter-stat .stat-label {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    opacity: 0.85;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 130, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 10s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 118, 187, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 10s ease-in-out infinite reverse;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 130, 39, 0.1), rgba(27, 118, 187, 0.1));
    border: 2px solid rgba(245, 130, 39, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #f58227;
    margin-bottom: 20px;

    position: absolute;
    top: -40px;
}

.testimonial-badge i {
    font-size: 14px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 200, 200, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f58227, #1b76bb);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.featured-testimonial {
    background: linear-gradient(135deg, rgba(245, 130, 39, 0.05), rgba(27, 118, 187, 0.05));
    border: 2px solid rgba(245, 130, 39, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f58227, #ff9933);
    border-radius: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 130, 39, 0.3);
}

.featured-badge i {
    font-size: 10px;
}

.testimonial-header-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    position: relative;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58227, #ff9933);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(245, 130, 39, 0.3);
}

.avatar-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.testimonial-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.testimonial-author-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 60px;
    line-height: 0.5;
    color: rgba(245, 130, 39, 0.15);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    padding-left: 5px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(200, 200, 200, 0.2);
}

.testimonial-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #f58227;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
}

.testimonial-verified i {
    font-size: 14px;
}

/* Hover effects */
.testimonial-card:hover .avatar-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 130, 39, 0.4);
}

.testimonial-card:hover .testimonial-rating i {
    animation: star-bounce 0.5s ease;
}

@keyframes star-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .featured-testimonial {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-testimonial {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-footer {
        flex-wrap: wrap;
    }
    
    .testimonial-verified {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== CONTACT SECTION ===== */
        left: 10px;
    }
    
    .secondary-visual {
        width: 200px;
        bottom: 20px;
        right: 10px;
    }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 50%, #FFFFFF 100%);
    padding: var(--section-padding) 0;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.new-badge {
    background: linear-gradient(135deg, #10B981, #059669);
}

.premium-badge {
    background: var(--gradient-combo);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 800;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-info p {
    opacity: 1;
}

.product-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-orange);
}

.product-specs i {
    font-size: 14px;
}

/* ===== CALCULATOR SECTION - REDESIGNED ===== */
.calculator-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    position: relative;
}

.calculator-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 122, 0, 0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 35px;
}

.calculator-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
    background: var(--gradient-combo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calculator-header p {
    color: var(--text-secondary);
    font-size: 19px;
    font-weight: 500;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(10, 102, 255, 0.05));
    padding: 25px;
    border-radius: 16px;
    border: 2px solid rgba(255, 122, 0, 0.15);
}

.input-group label {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-blue));
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    opacity: 0.9;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.6);
    transition: all 0.3s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.8);
}

input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.6);
}

.input-value {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-orange);
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 122, 0, 0.3);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-card {
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(10, 102, 255, 0.1));
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 122, 0, 0.3);
}

.result-label {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.result-amount {
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-combo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 122, 0, 0.3);
}

.calculator-breakdown {
    padding: 30px;
    background: rgba(248, 249, 250, 0.8);
    border: 2px solid rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid rgba(255, 122, 0, 0.1);
    color: var(--text-secondary);
    font-weight: 600;
    background: var(--white);
    border-radius: 10px;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:last-child {
    font-weight: 800;
    color: var(--primary-orange);
    font-size: 20px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 118, 187, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}

.video-section::after {
    content: '';
    position: absolute;
    bottom: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 130, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite reverse;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-content {
    padding-right: 20px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 130, 39, 0.1), rgba(27, 118, 187, 0.1));
    border: 2px solid rgba(245, 130, 39, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #f58227;
    margin-bottom: 25px;
    position: absolute;
    top: 40px;
}

.video-badge i {
    font-size: 16px;
}

.video-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 500px;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.highlight-item {
    position: relative;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 200, 200, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f584271d, #1b76bb2f);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 130, 39, 0.1), rgba(27, 118, 187, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #f58227;
    transition: all 0.4s ease;
}

.highlight-item:hover .highlight-number {
    background: linear-gradient(135deg, #f58227, #ff9933);
    color: #ffffff;
    transform: scale(1.1);
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f58227, #ff9933);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(245, 130, 39, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #f58227, #1b76bb);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(245, 130, 39, 0.5);
}

.highlight-item:hover .highlight-icon::before {
    opacity: 1;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.video-player-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 2;
    transition: all 0.4s ease;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
}

.play-icon {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58227, #ff9933);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(245, 130, 39, 0.5);
    transition: all 0.4s ease;
    z-index: 2;
}

.play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(245, 130, 39, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

.play-ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.play-button:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(245, 130, 39, 0.7);
}

.play-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover .play-text {
    transform: translateY(-3px);
}

.video-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

.video-duration i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-content {
        padding-right: 0;
        text-align: center;
    }
    
    .video-title {
        font-size: 36px;
    }
    
    .video-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-badge {
        display: inline-flex;
    }
    
    .video-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .video-title {
        font-size: 28px;
    }
    
    .video-highlights {
        display: none;
    }

     .video-badge{
        display: none;
    }
    
    .highlight-item {
        padding: 25px 20px;
    }
    
    .play-icon-wrapper,
    .play-icon {
        width: 70px;
        height: 70px;
    }
    
    .play-icon {
        font-size: 24px;
    }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--primary-orange);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 24px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.03) 0%, rgba(10, 102, 255, 0.03) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    max-width: 600px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.whatsapp-method .method-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.method-value {
    font-size: 18px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: var(--bg-lighter);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(10, 102, 255, 0.15);
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 18px;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.5);
}

/* ===== FINAL CTA - REDESIGNED ===== */
.final-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(10, 102, 255, 0.05) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    width: fit-content;
}

.badge-icon {
    font-size: 18px;
}

.cta-main-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-blue);
}

.cta-main-title::first-line {
    color: var(--text-primary);
}

.cta-description {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0.85;
    font-weight: 500;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.3);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.cta-right {
    width: 100%;
}

.cta-card {
    padding: 50px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.cta-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-row select {
    cursor: pointer;
}

.form-row select option {
    background: var(--white);
    color: var(--text-primary);
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.cta-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.cta-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.5);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
}

.trust-item i {
    color: var(--primary-orange);
    font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 122, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 122, 0, 0.8); }
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll-down {
    0% { opacity: 0.8; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0.8; transform: translateX(-50%) translateY(20px); }
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-core {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes load-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes lightning-strike {
    0%, 90%, 100% { opacity: 0; transform: scaleY(0); }
    92% { opacity: 1; transform: scaleY(1); }
    94% { opacity: 0.5; }
    96% { opacity: 1; }
    98% { opacity: 0.6; }
}

@keyframes spark-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-100vh) scale(1.5); opacity: 0.8; }
    90% { opacity: 0.3; }
}

@keyframes electric-pulse {
    0%, 100% { opacity: 0; width: 0%; }
    50% { opacity: 0.8; width: 100%; }
}

@keyframes cursor-pulse {
    0%, 100% { transform: scale(1); box-shadow: none; }
    50% { transform: scale(1); box-shadow: none; }
}

@keyframes electric-spark {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    20% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    40% { opacity: 0; transform: translate(-50%, -100%) scale(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet - 2 columns for offers */
@media (max-width: 1200px) and (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hero-images {
        display: block;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 40px;
    }
    
    section {
        min-height: auto;
        padding: 60px 0;
    }
    
    /* Hero Section Responsive */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 5%;
    }
    
    .hero-left {
        text-align: left;
    }
    
    .hero-title {
        font-size: clamp(48px, 7vw, 72px);
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .hero-right {
        padding: 20px 0;
    }
    
    .floating-stats-card {
        position: static;
        margin-top: 30px;
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .featured-card {
        border-width: 2px;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .content-wrapper {
        width: 95%;
        padding: 0 15px;
    }
    
    /* Hero Section Mobile */
    .hero-grid {
        padding: 0 20px;
        gap: 40px;
        min-height: auto;
        padding-top: 0px;
        padding-bottom: 60px;
    }
    
    .hero-left {
        gap: 30px;
    }
    
    .hero-badge {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
    }
    
    .title-word {
        margin-right: 12px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 16px;
    }
    
    .metric-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .floating-stats-card {
        width: 100%;
        right: 0;
        bottom: 0;
        padding: 20px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .amount {
        font-size: 32px;
    }
    
    .meter-container {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .floating-contacts {
        right: 20px;
        bottom: 20px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-main-title {
        font-size: 28px;
    }
    
    .calculator-wrapper {
        padding: 30px 20px;
    }
    
    .result-amount {
        font-size: 32px;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }
}

@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

