/* Index Specific Styles */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--white);
    border-radius: 30px;
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-gold {
    color: var(--gold);
    position: relative;
}

.highlight-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.6;
}

/* App buttons */
.app-btn-subtitle {
    font-size: 0.75rem;
    display: block;
    opacity: 0.8;
}

.app-btn-title {
    font-size: 1.3rem;
    line-height: 1;
}

/* Mockup inner styles */
.mockup-frame {
    width: 320px;
    height: 650px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 45px;
    border: 8px solid var(--white);
    box-shadow: 0 30px 60px rgba(11, 25, 44, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dynamic-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* Section 2 */
.section-title {
    color: var(--navy-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Section 3 (B2B) */
.b2b-section {
    background-color: var(--navy-blue);
    padding: 8rem 5%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.b2b-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.b2b-text {
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.b2b-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, #F1C40F 100%);
    padding: 5rem 5%;
    text-align: center;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .b2b-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .cta-card { padding: 3rem 1.5rem; }
}
