/* Hybrid Solar Systems Page Styles */
:root {
    --primary-blue: #3b82f6;
    --dark-blue: #1d4ed8;
    --light-blue: #dbeafe;
    --accent-blue: #60a5fa;
    --hybrid-purple: #8b5cf6;
    --savings-green: #10b981;
    --premium-gold: #f59e0b;
    --white: #ffffff;
    --off-white: #f9fafb;
    --light-gray: #f3f4f6;
    --dark-gray: #6b7280;
    --text-dark: #1f2937;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Animation Classes */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-image {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.8s ease 0.2s forwards;
}

.animate-header {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hybridPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }
    70% { 
        box-shadow: 0 0 0 20px rgba(139, 92, 246, 0);
    }
}

@keyframes smartGlow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
    }
}

/* Hybrid Hero Section */
.hybrid-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    color: var(--white);
}

.hybrid-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-blue), var(--hybrid-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: smartGlow 3s infinite;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--hybrid-purple));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--accent-blue), var(--hybrid-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.badge:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--hybrid-purple);
    transform: translateY(-5px);
}

.badge i {
    color: var(--hybrid-purple);
    font-size: 18px;
}

.badge span {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
    gap: 15px;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--hybrid-purple);
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    border: 3px solid rgba(139, 92, 246, 0.2);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-container img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    padding: 30px;
    color: var(--white);
}

.overlay-content h3 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--hybrid-purple);
}

.overlay-content p {
    margin: 0 0 20px;
    opacity: 0.9;
    font-size: 16px;
}

.benefits-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.logo-item:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.logo-item i {
    color: var(--hybrid-purple);
    font-size: 16px;
}

.logo-item span {
    font-size: 12px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.scroll-down:hover {
    transform: translateY(5px);
}

.scroll-down i {
    font-size: 24px;
    animation: bounce 2s infinite;
    color: var(--hybrid-purple);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-down span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

/* Hybrid Advantages */
.hybrid-advantages {
    padding: 100px 0;
    background: var(--off-white);
    background-image: 
        linear-gradient(45deg, rgba(139, 92, 246, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(139, 92, 246, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(139, 92, 246, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(139, 92, 246, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.section-header .highlight {
    color: var(--hybrid-purple);
    position: relative;
    display: inline-block;
}

.section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--hybrid-purple);
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightExpand 1s ease 0.5s forwards;
}

@keyframes highlightExpand {
    to {
        transform: scaleX(1);
    }
}

.section-description {
    font-size: 20px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comparison Chart */
.comparison-chart {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-bottom: 60px;
    overflow: hidden;
    border: 2px solid var(--light-blue);
}

.chart-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    padding: 30px;
}

.chart-col {
    text-align: center;
}

.chart-col h3 {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chart-col.ongrid h3 {
    color: #ef4444;
}

.chart-col.hybrid h3 {
    color: #fbbf24;
}

.chart-col.offgrid h3 {
    color: #10b981;
}

.chart-price {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.chart-body {
    padding: 30px;
}

.chart-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.chart-row:last-child {
    border-bottom: none;
}

.row-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.row-value {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.row-value i {
    font-size: 20px;
}

.row-value.ongrid i {
    color: #ef4444;
}

.row-value.hybrid i {
    color: var(--hybrid-purple);
}

.row-value.offgrid i {
    color: #10b981;
}

.row-value span {
    font-size: 14px;
    color: var(--dark-gray);
}

.chart-footer {
    background: var(--off-white);
    padding: 30px;
    border-top: 2px solid var(--light-blue);
}

.verdict {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border: 2px solid var(--hybrid-purple);
    box-shadow: var(--shadow-md);
}

.verdict i {
    font-size: 48px;
    color: var(--premium-gold);
}

.verdict h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 5px;
    font-weight: 700;
}

.verdict p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 16px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.advantage-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--hybrid-purple);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--hybrid-purple);
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.advantage-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.advantage-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-stats .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--hybrid-purple);
    font-family: 'Montserrat', sans-serif;
}

.advantage-stats .stat-label {
    font-size: 12px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.working-modes {
    margin-bottom: 60px;
}

.mode-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mode-tab {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    color: var(--dark-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.mode-tab.active {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border-color: var(--hybrid-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.mode-tab:hover:not(.active) {
    border-color: var(--hybrid-purple);
    color: var(--hybrid-purple);
    transform: translateY(-2px);
}

.mode-details {
    display: none;
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-blue);
}

.mode-details.active {
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .mode-details.active {
        flex-direction: column;
    }
}

.mode-diagram {
    flex: 1;
}

.diagram-container {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
}

.power-source {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    padding: 20px;
    border-radius: var(--radius);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.source-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.source-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.source-arrow i {
    font-size: 32px;
    color: var(--hybrid-purple);
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.power-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.flow-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    border: 2px solid var(--light-blue);
    text-align: center;
    transition: var(--transition);
}

.flow-item:hover {
    transform: translateY(-5px);
    border-color: var(--hybrid-purple);
    box-shadow: var(--shadow-md);
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--hybrid-purple);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.flow-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.flow-percentage {
    font-size: 24px;
    font-weight: 800;
    color: var(--hybrid-purple);
    font-family: 'Montserrat', sans-serif;
}

.mode-description {
    flex: 1;
}

.mode-description h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mode-description h3 i {
    color: var(--hybrid-purple);
}

.mode-description p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.mode-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.mode-description li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.mode-description li i {
    color: var(--savings-green);
}

.mode-benefits {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--hybrid-purple);
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.benefit i {
    color: var(--hybrid-purple);
}

.mode-stats {
    display: flex;
    gap: 30px;
}

.mode-stats .stat {
    text-align: center;
}

.mode-stats .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--hybrid-purple);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.mode-stats .stat-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Intelligence Features */
.intelligence-features {
    margin-top: 60px;
}

.intelligence-features h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.intelligence-features h3 i {
    color: var(--hybrid-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--hybrid-purple);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--hybrid-purple);
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--hybrid-purple);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Hybrid Components */
.hybrid-components {
    padding: 100px 0;
    background: var(--off-white);
}

.components-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.component-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
}

@media (max-width: 992px) {
    .component-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.showcase-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
}

.component-showcase:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--hybrid-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.showcase-badge.premium {
    background: var(--premium-gold);
}

.showcase-content h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.showcase-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Inverter Features */
.inverter-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature i {
    font-size: 28px;
    color: var(--hybrid-purple);
    margin-top: 5px;
}

.feature-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.inverter-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
}

.spec {
    text-align: center;
}

.spec-label {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.spec-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Battery Comparison */
.battery-comparison {
    margin-bottom: 30px;
}

.comparison-header h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.comparison-table {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
}

.table-row.header {
    background: var(--light-blue);
    font-weight: 600;
    color: var(--text-dark);
}

.table-row.header div {
    padding: 15px;
}

.table-row div {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-row:last-child div {
    border-bottom: none;
}

.table-row i {
    color: var(--savings-green);
}

/* BMS Features */
.bms-features {
    margin-bottom: 30px;
}

.bms-features h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bms-features h4 i {
    color: var(--hybrid-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .bms-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--hybrid-purple);
    transform: translateY(-5px);
}

.feature i {
    font-size: 24px;
    color: var(--hybrid-purple);
}

.feature span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Monitoring Features */
.monitoring-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.monitoring-features .feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: transparent;
    border: none;
    padding: 0;
}

.monitoring-features .feature:hover {
    transform: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--hybrid-purple);
    border: 2px solid rgba(139, 92, 246, 0.1);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.app-badges {
    display: flex;
    gap: 10px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--hybrid-purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.analytics-features,
.alert-types {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.analytics-features span,
.alert-types span {
    background: var(--off-white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--dark-gray);
    border: 1px solid var(--light-gray);
}

/* Hybrid Packages */
.hybrid-packages {
    padding: 100px 0;
    background: var(--white);
}

.packages-selector {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    border: 2px solid var(--light-blue);
}

.selector-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.option {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    color: var(--dark-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.option.active {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border-color: var(--hybrid-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.option:hover:not(.active) {
    border-color: var(--hybrid-purple);
    color: var(--hybrid-purple);
    transform: translateY(-2px);
}

.battery-selector {
    text-align: center;
}

.battery-selector h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.battery-selector h4 i {
    color: var(--hybrid-purple);
}

.battery-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.battery-option {
    position: relative;
}

.battery-option input {
    display: none;
}

.battery-option input:checked + .option-content {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border-color: var(--hybrid-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.option-content {
    background: var(--white);
    padding: 20px 30px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 150px;
}

.option-content:hover {
    border-color: var(--hybrid-purple);
    transform: translateY(-2px);
}

.option-content i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--hybrid-purple);
}

.option-content span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.option-content small {
    font-size: 14px;
    color: var(--dark-gray);
}

.battery-option input:checked + .option-content i,
.battery-option input:checked + .option-content span,
.battery-option input:checked + .option-content small {
    color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
    transition: var(--transition);
    display: none;
}

.package-card.active {
    display: block;
}

.package-card.popular {
    border-color: var(--hybrid-purple);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--hybrid-purple);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.package-badge {
    background: var(--light-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
}

.package-badge.popular {
    background: linear-gradient(135deg, var(--premium-gold), #d97706);
    color: var(--white);
}

.package-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--light-gray);
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.price-note {
    font-size: 14px;
    color: var(--dark-gray);
}

.package-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.package-specs .spec {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.package-specs .spec i {
    color: var(--hybrid-purple);
    font-size: 18px;
}

.package-backup {
    margin-bottom: 25px;
}

.package-backup h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-backup h4 i {
    color: var(--hybrid-purple);
}

.backup-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.backup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.backup-load {
    font-size: 14px;
    color: var(--dark-gray);
}

.backup-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--hybrid-purple);
}

.package-savings {
    background: rgba(139, 92, 246, 0.1);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.saving {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.saving:last-child {
    margin-bottom: 0;
}

.saving-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.saving-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--hybrid-purple);
}

.package-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    gap: 15px;
}

.package-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-blue);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 40px;
    border: 1px solid var(--primary-blue);
}

.package-note i {
    font-size: 24px;
    color: var(--primary-blue);
}

.package-note p {
    color: var(--text-dark);
    font-size: 16px;
    margin: 0;
}

/* Savings Calculator */
.savings-calculator {
    padding: 100px 0;
    background: var(--off-white);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.calculator-input {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
}

.input-header {
    text-align: center;
    margin-bottom: 40px;
}

.input-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
}

.input-header h3 i {
    color: var(--hybrid-purple);
    background: rgba(139, 92, 246, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.input-header p {
    color: var(--dark-gray);
    font-size: 16px;
}

.input-section {
    margin-bottom: 30px;
}

.input-section h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-section h4 i {
    color: var(--hybrid-purple);
}

.input-group {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
}

.input-group input[type="range"] {
    width: 100%;
    margin-bottom: 15px;
    height: 6px;
    border-radius: 3px;
    background: var(--light-gray);
    outline: none;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hybrid-purple);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.range-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.range-value span {
    font-size: 24px;
    font-weight: 700;
    color: var(--hybrid-purple);
    font-family: 'Montserrat', sans-serif;
}

.range-value small {
    font-size: 14px;
    color: var(--dark-gray);
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    position: relative;
    flex: 1;
}

.radio-option input {
    display: none;
}

.radio-option input:checked + .radio-content {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border-color: var(--hybrid-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.radio-content {
    background: var(--white);
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.radio-content:hover {
    border-color: var(--hybrid-purple);
    transform: translateY(-2px);
}

.radio-content i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--hybrid-purple);
}

.radio-content span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.radio-content small {
    font-size: 14px;
    color: var(--dark-gray);
}

.radio-option input:checked + .radio-content i,
.radio-option input:checked + .radio-content span,
.radio-option input:checked + .radio-content small {
    color: var(--white);
}

.calculate-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    gap: 15px;
}

.calculator-results {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--light-blue);
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    animation: hybridPulse 2s infinite;
}

.results-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.results-header p {
    color: var(--dark-gray);
    font-size: 16px;
}

.savings-summary {
    margin-bottom: 40px;
}

.savings-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    padding: 30px;
    border-radius: var(--radius);
    border: 2px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.savings-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--hybrid-purple);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.savings-content {
    flex: 1;
}

.savings-label {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.savings-detail {
    font-size: 14px;
    color: var(--dark-gray);
}

.savings-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .savings-stats {
        grid-template-columns: 1fr;
    }
}

.savings-stats .stat {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.savings-stats .stat-label {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.savings-stats .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--hybrid-purple);
    font-family: 'Montserrat', sans-serif;
}

.savings-timeline {
    background: var(--off-white);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    border: 1px solid var(--light-gray);
}

.savings-timeline h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.savings-timeline h4 i {
    color: var(--hybrid-purple);
}

.timeline-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bar-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    min-width: 60px;
}

.bar-fill {
    flex: 1;
    height: 30px;
    background: linear-gradient(90deg, var(--hybrid-purple), var(--primary-blue));
    border-radius: 15px;
    position: relative;
    transition: width 1s ease;
}

.bar-value {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.savings-breakdown {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border: 2px solid var(--light-blue);
}

.savings-breakdown h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.savings-breakdown h4 i {
    color: var(--hybrid-purple);
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--light-gray);
}

.breakdown-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-item.total {
    padding-top: 15px;
    border-top: 2px solid var(--hybrid-purple);
    font-weight: 700;
}

.item-label {
    font-size: 16px;
    color: var(--text-dark);
}

.item-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--hybrid-purple);
}

.results-cta {
    display: flex;
    gap: 20px;
}

@media (max-width: 576px) {
    .results-cta {
        flex-direction: column;
    }
}

/* Installation Process */
.installation-process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    position: relative;
}

@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hybrid-purple), var(--primary-blue));
    z-index: 1;
}

@media (max-width: 1200px) {
    .process-timeline::before {
        display: none;
    }
}

.timeline-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--hybrid-purple);
}

.timeline-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--hybrid-purple);
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    transform: scale(1.1);
}

.timeline-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.timeline-duration {
    font-size: 12px;
    color: var(--hybrid-purple);
    font-weight: 600;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--off-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--light-blue);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--hybrid-purple);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.hybrid-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    position: relative;
    overflow: hidden;
}

.hybrid-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    opacity: 0.3;
}

.cta-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-content {
        padding: 40px;
    }
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    animation: hybridPulse 2s infinite;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.cta-content p {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--hybrid-purple);
    font-weight: 500;
    border: 1px solid var(--light-gray);
}

.cta-features .feature i {
    color: var(--hybrid-purple);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
    gap: 15px;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--hybrid-purple);
    border-color: var(--hybrid-purple);
}

.cta-btn.secondary:hover {
    background: var(--hybrid-purple);
    color: var(--white);
    transform: translateY(-5px);
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px dashed var(--light-gray);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    transition: var(--transition);
}

.guarantee-item:hover {
    color: var(--hybrid-purple);
    transform: translateY(-3px);
}

.guarantee-item i {
    font-size: 20px;
    color: var(--hybrid-purple);
}

/* Footer */
.footer {
    background: #1f2937;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hybrid-purple), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.logo-text h3 {
    font-size: 20px;
    margin: 0;
    color: var(--white);
}

.logo-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--hybrid-purple);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 20px;
    color: var(--white);
    margin: 0 0 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--hybrid-purple);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--hybrid-purple);
    font-size: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--white);
    margin: 0 0 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.emergency-contact {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(220, 38, 38, 0.1);
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-top: 20px;
}

.emergency-contact i {
    color: #ef4444;
    font-size: 24px;
}

.emergency-contact h4 {
    font-size: 16px;
    color: var(--white);
    margin: 0 0 5px;
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-policies {
    display: flex;
    gap: 30px;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-policies a:hover {
    color: var(--hybrid-purple);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat::after {
        display: none;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .results-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .badge {
        justify-content: center;
    }
    
    .benefits-logos {
        justify-content: center;
    }
    
    .calculator-input,
    .calculator-results {
        padding: 30px 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
    }
}