/* Hero Section - Diagonal Split */
.hero-vibe {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-vibe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffedd5 50%, #fce7f3 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.hero-vibe::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

.hero-content-vibe {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hero-title-vibe {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #ec4899 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out, gradientShift 6s ease infinite;
    letter-spacing: -0.03em;
}

.hero-subtitle-vibe {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #6b7280;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero-buttons-vibe {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Features - Circular Bubbles */
.features-vibe {
    padding: 80px 0;
    background: white;
}

.bubbles-grid-vibe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bubble-vibe {
    background: linear-gradient(145deg, #fdf2f8 0%, #ffedd5 100%);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bubble-vibe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 40%;
    transition: all 0.6s ease;
}

.bubble-vibe:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.bubble-vibe:hover::before {
    animation: float 3s ease-in-out infinite;
}

.bubble-icon-vibe {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.bubble-icon-vibe img {
    width: 40px;
}

.bubble-vibe h3 {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.bubble-vibe p {
    position: relative;
    z-index: 1;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Security */
.safe-vibe {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffedd5 100%);
}

.safe-content-vibe {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.safe-content-vibe h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.safe-content-vibe > p {
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.shield-badge-vibe {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.1);
}

.shield-badge-vibe img {
    width: 24px;
}

.badge-container-vibe {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Use Cases - Accordion */
.cases-vibe {
    padding: 80px 0;
    background: white;
}

.accordion-vibe {
    max-width: 700px;
    margin: 0 auto;
}

.panel-vibe {
    background: linear-gradient(145deg, #fdf2f8 0%, #fff 100%);
    border: 2px solid #fce7f3;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.panel-vibe.active {
    background: linear-gradient(145deg, #fdf2f8 0%, #ffedd5 100%);
    border-color: #ec4899;
}

.panel-header-vibe {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
}

.panel-icon-vibe {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-icon-vibe img {
    width: 24px;
}

.panel-title-vibe {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.panel-arrow-vibe {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.panel-vibe.active .panel-arrow-vibe {
    transform: rotate(180deg);
}

.panel-body-vibe {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.panel-vibe.active .panel-body-vibe {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.panel-body-vibe p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CTA */
.action-vibe {
    padding: 100px 0;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #ec4899 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-vibe::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.action-content-vibe {
    position: relative;
    z-index: 1;
}

.action-content-vibe h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.action-content-vibe p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-vibe {
        font-size: 2.2rem;
    }

    .bubbles-grid-vibe {
        grid-template-columns: 1fr;
    }

    .bubble-vibe {
        padding: 2rem 1.5rem;
    }

    .panel-header-vibe {
        padding: 1rem 1.25rem;
    }

    .panel-icon-vibe {
        width: 40px;
        height: 40px;
    }

    .panel-icon-vibe img {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-vibe {
        font-size: 1.8rem;
    }

    .action-content-vibe h2 {
        font-size: 1.6rem;
    }
}
