.hero-about {
    background: var(--gradient);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: glowFloat 12s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cream) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-dark) 0%, transparent 70%);
    top: 50%;
    left: 80%;
    animation-delay: 8s;
}

.hero-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-about-content {
    flex: 1;
    max-width: 650px;
}

.hero-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-about-badge span {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-about-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    position: relative;
}

.title-line.accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line[data-text]::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--accent-gold);
    overflow: hidden;
    white-space: nowrap;
    animation: textReveal 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

.title-line.accent[data-text]::before {
    animation-delay: 1.5s;
}

.hero-about-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-about-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    gap: 1rem;
}

.cta-button.primary:hover .button-glow {
    left: 100%;
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    gap: 1rem;
}

.hero-about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.stat {
    text-align: center;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-about-visual {
    flex: 1;
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease 1s forwards;
}

.visual-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.visual-container .main-image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.main-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.visual-container:hover .image-glow {
    opacity: 0.3;
}

.image-reflection {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    filter: blur(10px);
    transform: scaleY(-1);
    opacity: 0.5;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: floatIcon 8s ease-in-out infinite;
    z-index: 3;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.floating-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-icon i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.floating-icon:hover i {
    color: var(--white);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition);
}

.floating-icon:hover .icon-glow {
    opacity: 1;
}

.icon-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: -8%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 60%;
    left: -10%;
    animation-delay: 3s;
}

.icon-4 {
    top: 45%;
    right: -5%;
    animation-delay: 4.5s;
}

.icon-5 {
    bottom: 15%;
    right: -8%;
    animation-delay: 6s;
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.trust-badge i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.trust-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition);
    z-index: 1;
}

.trust-badge:hover .badge-glow {
    opacity: 0.1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 1px;
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.hero-about-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-about-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.shape-fill {
    fill: var(--white);
    opacity: 0.3;
}

@keyframes textReveal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 968px) {
    .hero-about-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 7rem 1.5rem 4rem;
    }

    .hero-about-title {
        font-size: 3rem;
    }

    .hero-about-actions {
        justify-content: center;
    }

    .hero-about-stats {
        justify-content: center;
    }

    .floating-icon {
        display: none;
    }

    .trust-badge {
        position: static;
        margin: 2rem auto 0;
        max-width: 250px;
        justify-content: center;
    }
}