/* ==========================================
   HERO SECTION STYLES
   ========================================== */
.hero {
    padding: 64px 0 96px;
    position: relative;
}

.hero .logo-symbol {
    position: absolute;
    bottom: 170px;
    right: 0;
    width: 650px;
    opacity: 0.1;
    pointer-events: none;
}

.hero .hero-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid #556437;
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero .hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 720px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero .hero-description {
    font-size: 18px;
    color: var(--text-muted-light);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero .hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .hero-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #32d07e;
    margin-bottom: 4px;
}

.hero .hero-stats .stat-label {
    font-size: 13px;
    color: white;
}

/* Hero Breakpoints */
@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 40px;
    }

    .hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero .hero-stats {
        grid-template-columns: 1fr;
    }
}


/* ==========================================
   FLAGSHIP PLATFORMS SECTION STYLES
   ========================================== */
.platforms {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 96px 0;
}

.platforms .platforms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.platforms .platforms-header .view-all {
    font-weight: 700;
    color: #0f5d3c;
}

.platforms .platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.platforms .platform-card {
    background: var(--bg-card-light);
    padding: 36px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.platforms .platform-card .platform-brand {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0f5d3c;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}

.platforms .platform-card .platform-title {
    font-size: 18.4px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #083b2a;
}

.platforms .platform-card .platform-desc {
    color: var(--text-muted-dark);
    margin-bottom: 20px;
}

.platforms .platform-card .card-link {
    font-size: 14px;
    font-weight: 700;
    color: #0f5d3c;
    display: inline-flex;
    align-items: center;
    gap: 6.4px;
}

.platforms .platform-card .card-link:hover {
    color: var(--primary-accent);
}

/* Platforms Breakpoints */
@media (max-width: 1024px) {
    .platforms .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .platforms .platforms-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================
   TRUSTED NATIONWIDE / SWIPER SECTION STYLES
   ========================================== */
.trusted {
    padding: 96px 0;
    text-align: center;
    background-color: #0f5d3c;
}

.trusted .slider-parent {
    position: relative;
}

.trusted .trusted-header {
    max-width: 650px;
    margin: 0 auto 56px;
}

.trusted .trusted-header .label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    color: var(--text-muted-light);
}

.trusted .swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.trusted .swiper-wrapper {
    display: flex;
}

.trusted .swiper-slide {
    flex-shrink: 0;
}

.trusted .logo-card {
    background-color: #ffffff;
    height: 110px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.trusted .logo-card img {
    max-height: 90px;
    max-width: 80%;
    object-fit: contain;
}

.trusted .swiper-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 40px;
}

.trusted .swiper-pagination .swiper-pagination-bullet {
    --size: 12px;
    cursor: pointer;
    display: block;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background: #578e77;
}

.trusted .swiper-pagination .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

.trusted .swiper-button-next,
.trusted .swiper-button-prev {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--border-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s;
    top: 34px;
    position: absolute;
    left: -62px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.trusted .swiper-button-next {
    left: auto;
    transform: scaleX(-1);
    right: -62px;
}

.trusted .swiper-button-next:hover,
.trusted .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Trusted Breakpoints */
@media (max-width: 1390px) {
    .trusted .swiper-button-next,
    .trusted .swiper-button-prev {
        display: none;
    }
}


/* ==========================================
   SYSTEMS INTEGRATOR SECTION STYLES
   ========================================== */
.integrator {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 96px 0;
}

.integrator .integrator-header {
    max-width: 600px;
    margin-bottom: 56px;
}

.integrator .integrator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.integrator .integrator-card {
    background-color: #ffffff;
    padding: 40px 32px;
}

.integrator .integrator-card h3 {
    font-size: 16.8px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #083b2a;
}

.integrator .integrator-card p {
    font-size: 14px;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

/* Integrator Breakpoints */
@media (max-width: 768px) {
    .integrator .integrator-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    padding: 64px 0;
    background-color: var(--bg-dark);
}