/* Homepage Specific Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-black) 0%, #0a1015 50%, var(--brand-teal) 100%);
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(164, 207, 205, 0.1) 35px, rgba(164, 207, 205, 0.1) 70px);
}

.sphere-visual {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(82, 183, 185, 0.15), 
        rgba(37, 80, 94, 0.1) 40%, 
        transparent 70%);
    filter: blur(60px);
    animation: spherePulse 15s ease-in-out infinite;
}

@keyframes spherePulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.15; }
    50% { transform: scale(1.2) translateY(-30px); opacity: 0.25; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: var(--brand-sand);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--support-teal-bright), var(--brand-sea));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .accent {
    color: var(--brand-orange);
}

.hero-description {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 750px;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Proof Section */
.proof {
    padding: 6rem 3rem;
    background: var(--brand-teal);
    border-top: 1px solid rgba(164, 207, 205, 0.2);
    border-bottom: 1px solid rgba(164, 207, 205, 0.2);
}

.proof-container {
    max-width: 1400px;
    margin: 0 auto;
}

.proof h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--brand-sand);
    font-weight: 400;
}

.badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .badges {
        grid-template-columns: 1fr;
    }
}

.badge {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(164, 207, 205, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.badge:hover {
    border-color: var(--support-teal-bright);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(82, 183, 185, 0.2);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.badge-icon img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.badge h3 {
    font-size: 1.1rem;
    color: var(--support-orange);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.badge p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Problem Section */
.problem {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--brand-sand);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(243, 143, 30, 0.1), rgba(243, 143, 30, 0.05));
    border: 1px solid rgba(243, 143, 30, 0.3);
    border-left: 4px solid var(--brand-orange);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(243, 143, 30, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--brand-sand);
}

.stat-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 8rem 3rem;
    background: var(--bg-section);
    position: relative;
}

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.solution-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.solution-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(82, 183, 185, 0.3);
    box-shadow: 0 8px 32px rgba(82, 183, 185, 0.2);
}

.orbital-system {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(82, 183, 185, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit:nth-child(1) { width: 200px; height: 200px; }
.orbit:nth-child(2) { width: 300px; height: 300px; animation-duration: 30s; }
.orbit:nth-child(3) { width: 400px; height: 400px; animation-duration: 40s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.core-sphere {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, var(--support-teal-bright), var(--brand-teal));
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(82, 183, 185, 0.4);
    z-index: 10;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--support-teal-bright);
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--support-teal-bright);
    font-weight: 600;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ROI Section */
.roi {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.roi-calculator {
    background: linear-gradient(135deg, rgba(82, 183, 185, 0.05), rgba(37, 80, 94, 0.05));
    border: 2px solid rgba(82, 183, 185, 0.3);
    padding: 4rem;
    margin-top: 4rem;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--support-orange);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(82, 183, 185, 0.3);
    color: var(--brand-sand);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.savings-output {
    text-align: center;
    padding: 3rem;
    background: rgba(243, 143, 30, 0.1);
    border: 2px solid var(--brand-orange);
    margin-top: 2rem;
}

.savings-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--support-teal-bright);
}

.savings-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}
