/* --- INDEX PAGE SPECIFIC STYLES --- */

/* Ticker Section */
.ticker-wrap {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 8%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    border-bottom: 1px solid #222;
}

.ticker {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    margin-right: 40px;
    font-weight: 600;
}

.ticker-item span.up {
    color: #00ff66;
}

.ticker-item span.down {
    color: #ff3333;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80') center center/cover;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 35px;
    max-width: 700px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Stats Badge */
.stats-badge {
    max-width: 450px;
    margin: -60px auto 60px auto;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    text-align: center;
}

.stats-top {
    background-color: var(--primary-red);
    padding: 30px;
    display: flex;
    justify-content: center;
}

.stats-icon-mock {
    width: 50px;
    height: 38px;
    border: 2.5px dashed #fff;
    border-top: none;
}

.stats-bottom {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 24px;
    font-size: 21px;
    font-weight: 600;
    text-transform: lowercase;
}

/* Intro Section */
.intro-section {
    padding: 60px 8%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 40px 8% 80px 8%;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

/* Calculator Section */
.calc-section {
    padding: 80px 8%;
    background: var(--light-grey);
}

.calc-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.calc-title {
    text-align: center;
    margin-bottom: 30px;
}

.calc-title h2 {
    font-size: 2rem;
    color: var(--dark-bg);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calc-inputs label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.calc-inputs input,
.calc-inputs select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

.calc-output {
    background: var(--dark-bg);
    color: white;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.calc-output h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 10px;
}

.calc-output .yield-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff66;
    line-height: 1;
    margin-bottom: 10px;
}

/* App Showcase */
.app-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 8%;
    background: var(--dark-bg);
    color: #fff;
    flex-wrap: wrap;
}

.app-text {
    flex: 1;
    min-width: 300px;
}

.app-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.app-text h2 span {
    color: var(--primary-red);
}

.app-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.app-img img {
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Dynamic Gallery Grid */
.media-showcase {
    padding: 80px 8%;
    background: var(--light-grey);
    text-align: center;
}

.media-showcase h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
    font-weight: 800;
}

.media-showcase p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 25px;
    text-align: left;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-overlay span {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Strategic Wealth Divisions */
.operations-division {
    padding: 80px 8%;
    background: #fff;
    text-align: center;
}

.operations-division h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 800;
}

.operations-division .section-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ops-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ops-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-blue);
}

.ops-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.ops-card h3 {
    font-size: 20px;
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 700;
}

.ops-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.ops-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
}

.ops-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00ff66;
    border-radius: 50%;
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    padding: 80px 8%;
    background: var(--light-grey);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 15px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 8%;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    text-align: center;
    border-bottom: 4px solid var(--primary-red);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.newsletter-box p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 30px;
    border: 1px solid #333;
    background: #222;
    color: white;
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .app-showcase {
        flex-direction: column;
        text-align: center;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        border-radius: 30px;
    }
}
