/* Hero Section */
.hero-section {
    min-height: 95vh;
    background: var(--gradient-overlay),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><defs><pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(214,184,59,0.05)" stroke-width="1.5"/></pattern></defs><rect width="1440" height="800" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(214, 184, 59, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 135, 195, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 15s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
    50% { transform: scale(1.15) translate(30px, -30px); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214, 184, 59, 0.15);
    border: 1px solid rgba(214, 184, 59, 0.3);
    color: var(--primary-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 650px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-blue);
    padding: 0.7rem 3rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    font-size: 1.05rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: var(--blue-dark);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 0.7rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}


/* Hero Carousel */
.hero-section .carousel-item {
    min-height: 95vh;
    align-items: center;
    padding: 10em;
}

.hero-section .carousel-indicators {
    bottom: 40px;
    z-index: 3;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.hero-section .carousel-indicators button.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background: rgba(214, 184, 59, 0.2);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Responsive carousel controls */
@media (max-width: 768px) {
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-section .carousel-control-prev {
        left: 15px;
    }
    
    .hero-section .carousel-control-next {
        right: 15px;
    }
}


/* Pillars Section */
.pillars-section {
    padding: 120px 0;
    background: linear-gradient(180deg, white 0%, var(--gray-100) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(10, 135, 195, 0.1);
    color: var(--primary-blue);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3.5rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.pillar-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 135, 195, 0.15);
    border-color: rgba(10, 135, 195, 0.2);
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 135, 195, 0.1) 0%, rgba(214, 184, 59, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-icon i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-title {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.pillar-stat {
    display: inline-block;
    background: rgba(214, 184, 59, 0.1);
    color: var(--gold-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* How it works */
.how-section {
    padding: 120px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 25px rgba(214, 184, 59, 0.3);
}

.step-title {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.7;
}

.step-badge {
    display: inline-block;
    background: rgba(10, 135, 195, 0.1);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid var(--gray-100);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(214, 184, 59, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(10, 135, 195, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Why AURA */
.why-section {
    padding: 120px 0;
    background: var(--gradient-overlay);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="3" cy="3" r="2" fill="rgba(214,184,59,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.why-title {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Personas Section */
.personas-section {
    padding: 120px 0;
    background: white;
}

.persona-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.persona-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(214, 184, 59, 0.15);
    transform: translateY(-8px);
}

.persona-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.persona-icon i {
    font-size: 2.5rem;
    color: white;
}

.persona-role {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.persona-benefit {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}