/* Recreated Hero Section Stylesheet */
.recreated-hero {
    position: relative;
    background: radial-gradient(circle at 75% 50%, #0d1e3a 0%, #050b14 60%, #030712 100%);
    overflow: hidden;
    padding: 140px 0 100px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

/* Background Glowing Arcs & Grid */
.recreated-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.recreated-hero__bg-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 70%;
    height: 90%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(6, 12, 40, 0) 70%);
    filter: blur(80px);
    opacity: 0.9;
    animation: heroGlowPulse 6s ease-in-out infinite;
}

.recreated-hero__bg-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(6, 12, 40, 0) 65%);
    mix-blend-mode: screen;
    animation: heroGlowDrift 10s ease-in-out infinite alternate;
}

.recreated-hero__bg-lines {
    position: absolute;
    inset: -50px;
    background-image:
        radial-gradient(rgba(37, 99, 235, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(rgba(37, 99, 235, 0.08) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.5;
    animation: heroLinesDrift 18s linear infinite;
}

@keyframes heroGlowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.08);
    }
}

@keyframes heroGlowDrift {
    0% {
        transform: translate(-4%, -3%);
    }

    100% {
        transform: translate(4%, 3%);
    }
}

@keyframes heroLinesDrift {
    0% {
        background-position: 0 0, 25px 25px;
    }

    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

.recreated-hero__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Column Content */
.hero-content-col {
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: #3b82f6;
}

.hero-breadcrumb span {
    color: #fff;
    font-weight: 600;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.15s forwards;
}

.hero-title span {
    color: #2563eb;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}


.hero-desc {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.45s forwards;
}

/* Buttons style matching screenshot */
.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    text-decoration: none;
}

.btn-explore:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.btn-quote-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fbbf24;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid #fbbf24;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-quote-outline:hover {
    background: #fbbf24;
    color: #030712;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.3);
}

/* Scroll Cue */
.hero-scroll-cue {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    cursor: pointer;
    width: fit-content;
}

.hero-scroll-cue svg {
    animation: bounce 2s infinite;
}

/* Right Column Visual (Podium & Products) */
.hero-visual-col {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* 3D Platform/Podium Base */
.podium-base {
    position: absolute;
    bottom: 40px;
    width: 380px;
    height: 60px;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    border-radius: 50%;
    border: 2px solid #2563eb;
    box-shadow:
        0 0 20px rgba(37, 99, 235, 0.4),
        inset 0 0 15px rgba(37, 99, 235, 0.6);
    z-index: 2;
    animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.podium-base__inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #0b0f19;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Podium Glow Rings */
.podium-ring {
    position: absolute;
    bottom: 35px;
    width: 440px;
    height: 80px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    transform: scale(0.8);
    opacity: 0;
    animation: ringGlow 3s infinite alternate ease-in-out, scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Floating Products */
.podium-product {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.podium-product:hover {
    transform: translateY(-8px) scale(1.03);
    filter: drop-shadow(0 15px 25px rgba(37, 99, 235, 0.4));
}

/* Product placement */
.product-panel {
    bottom: 110px;
    right: 0px;
    width: 220px;
    z-index: 2;
}

.product-battery {
    bottom: 80px;
    right: 50px;
    width: 140px;
    z-index: 3;
}

.product-inverter {
    bottom: 80px;
    left: 20px;
    width: 165px;
    z-index: 4;
}

.product-inverter-small {
    bottom: 70px;
    left: 110px;
    width: 115px;
    z-index: 5;
}

/* Sparkling electrical particles in background */
.podium-sparks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #06b6d4;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px #2563eb, 0 0 20px #06b6d4;
    opacity: 0;
    animation: floatSpark 4s infinite linear;
}

.spark:nth-child(1) {
    left: 40%;
    --tx: 30px;
    animation-delay: 0s;
    animation-duration: 3s;
}

.spark:nth-child(2) {
    left: 55%;
    --tx: -40px;
    animation-delay: 0.8s;
    animation-duration: 4.2s;
}

.spark:nth-child(3) {
    left: 70%;
    --tx: 20px;
    animation-delay: 1.5s;
    animation-duration: 3.5s;
}

.spark:nth-child(4) {
    left: 30%;
    --tx: -30px;
    animation-delay: 2.2s;
    animation-duration: 4.8s;
}

.spark:nth-child(5) {
    left: 50%;
    --tx: 50px;
    animation-delay: 3s;
    animation-duration: 3.8s;
}

/* SVG Product Mockups styling */
.podium-product svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-visual-img {
    width: 100%;
    max-width: 400px;
    animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatImage 6s infinite ease-in-out;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes ringGlow {
    0% {
        box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
        border-color: rgba(6, 182, 212, 0.1);
    }

    100% {
        box-shadow: 0 0 25px rgba(37, 99, 235, 0.3);
        border-color: rgba(37, 99, 235, 0.4);
    }
}

@keyframes floatSpark {
    0% {
        transform: translateY(220px) translateX(0) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(30px) translateX(var(--tx, 40px)) scale(1.2);
        opacity: 0;
    }
}

/* Responsive grid styling */
@media (max-width: 1024px) {
    .recreated-hero {
        padding: 120px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content-col {
        align-items: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-eyebrow::before {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-scroll-cue {
        justify-content: center;
    }

    .hero-visual-col {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .recreated-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-explore,
    .btn-quote-outline {
        width: 100%;
    }

    .hero-visual-col {
        height: 320px;
    }

    .podium-base {
        width: 280px;
        height: 46px;
        bottom: 20px;
    }

    .podium-ring {
        width: 320px;
        height: 60px;
        bottom: 15px;
    }

    .product-panel {
        width: 160px;
        right: 0px;
        bottom: 80px;
    }

    .product-battery {
        width: 100px;
        right: 35px;
        bottom: 50px;
    }

    .product-inverter {
        width: 120px;
        left: 10px;
        bottom: 55px;
    }

    .product-inverter-small {
        width: 85px;
        left: 80px;
        bottom: 45px;
    }
}