.lp-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    animation: spin 60s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lp-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.lp-hero h1 {
    font-size: 3.5rem;
    color: #1c1c1c;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.lp-hero p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Elements */
.lp-floating-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lp-floating-item {
    position: absolute;
    width: 160px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    opacity: 0.85;
    animation: float 8s ease-in-out infinite;
}

/* Position variations */
.fb-1 {
    top: 10%;
    left: 5%;
    width: 180px;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.fb-2 {
    bottom: 15%;
    left: 10%;
    width: 140px;
    transform: rotate(10deg);
    filter: blur(2px);
    animation-delay: 2s;
}

.fb-3 {
    top: 15%;
    right: 5%;
    width: 220px;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.fb-4 {
    bottom: 20%;
    right: 10%;
    width: 150px;
    transform: rotate(-10deg);
    filter: blur(2px);
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--r, 0deg));
    }

    100% {
        transform: translateY(0px) rotate(var(--r, 0deg));
    }
}

.lp-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 100px;
    padding: 0 10px;
}

.lp-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.lp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d40000, #ff4d4d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.lp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 0, 0, 0.1);
}

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

.lp-card-title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1c1c1c;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
}

.lp-card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d40000;
}

.lp-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.lp-card strong {
    color: #1c1c1c;
    font-weight: 600;
}

.lp-cta-button {
    display: inline-block;
    background-color: #d40000;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 0, 0, 0.3);
}

.lp-cta-button:hover {
    background-color: #b30000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 0, 0, 0.4);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .lp-hero h1 {
        font-size: 2.5rem;
    }

    .lp-floating-item {
        opacity: 0.3;
    }

    /* Less distracting on mobile */
}