/* Homepage New Sections Styling */

.introSection {
    padding: var(--spacing-section) 0;
    background-color: var(--dark-1);
    color: var(--text-main);
}

.introGrid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.introImage {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.introImage img {
    width: 100%;
    height: auto;
    display: block;
}

.introContent h2 {
    font-size: var(--fs-h2);
    margin-bottom: 24px;
    color: var(--yellow);
}

.introContent p {
    font-size: var(--fs-body);
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-sub);
}

/* Stats Bar Section */
.statsBarSection {
    background-color: var(--dark-2);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.statsBarGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.statsBarItem {
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.statsBarItem:last-child {
    border-right: none;
}

.statsBarNumber {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .statsBarGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .statsBarItem {
        border-right: none;
    }
    .statsBarItem:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* To/From Section */
.toFromSection {
    padding: var(--spacing-section) 0;
    background-color: var(--dark-2);
}

.toFromGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.toFromCard {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toFromCard h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--yellow);
}

.toFromCard p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-sub);
}

.toFromList {
    list-style: none;
    padding: 0;
}

.toFromList li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.toFromList li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

.terminalInfo {
    margin-top: 30px;
    padding: 15px;
    background: rgba(245, 192, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--yellow);
}

/* Pricing Section */
.pricingSection {
    padding: var(--spacing-section) 0;
    background-color: var(--dark-1);
}

.pricingIntro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricingIntro p {
    margin-bottom: 20px;
    color: var(--text-sub);
}

.pricingExamples {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.pricingExamples h3 {
    margin-bottom: 24px;
    text-align: center;
    color: var(--yellow);
}

.pricingList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.pricingList li {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.95rem;
}

.vanInfo {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--text-sub);
}

.pricingCta {
    text-align: center;
    margin-top: 40px;
}

/* Closing CTA */
.closingCtaSection {
    padding: var(--spacing-section) 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.closingCtaContent {
    max-width: 900px;
    margin: 0 auto;
}

.closingCtaContent h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--yellow);
}

.closingCtaContent p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.closingCtaBtns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .introGrid, .toFromGrid, .pricingList {
        grid-template-columns: 1fr;
    }
}
