.hero {
    background: linear-gradient(135deg,
            #071426,
            #0d2444,
            #133d70);

    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    top: -200px;
    right: -100px;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -150px;
    left: -100px;
    filter: blur(80px);
}

.hero h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    color: #d4af37;
}

.hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 20px;
}



.trust-strip {
    margin-top: 0;
    padding: 70px 0;
    background: #f8fafc;
}

.trust-wrapper {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-box {
    text-align: center;
    padding: 25px 20px;
    border-right: 1px solid #edf2f7;
    transition: .3s;
    background: #fff;
}

.trust-box:last-child {
    border-right: none;
}

.trust-box:hover {
    transform: translateY(-8px);
    background: #fafcff;
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4af37;
    background: rgba(212, 175, 55, .08);
    border: 1px solid rgba(212, 175, 55, .2);
}

.trust-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0d2444;
    margin-bottom: 8px;
}

.trust-box p {
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

@media(max-width:991px) {
    .trust-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-box:nth-child(2) {
        border-right: none;
    }

    .trust-box {
        border-bottom: 1px solid #edf2f7;
    }
}

@media(max-width:576px) {
    .trust-strip {
        margin-top: 20px;
    }

    .trust-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-box {
        border-right: none;
    }
}



.tv-problems-section {
    padding: 40px 0;
    background: linear-gradient(180deg,
            #f8fbff 0%,
            #ffffff 100%);
    position: relative;
}

.section-header {
    max-width: 850px;
    margin: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .25);
    color: #c9a227;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
    margin-top: 25px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
}

.problem-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all .4s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
}

.problem-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #d4af37,
            #f6e27a,
            #d4af37);
    transform: scaleX(0);
    transition: .4s;
}

.problem-card:hover:before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(8, 32, 61, .12);
}

.problem-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #d4af37;
    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .12),
            rgba(212, 175, 55, .04));
    border: 1px solid rgba(212, 175, 55, .20);
}

.problem-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #08203d;
    margin-bottom: 15px;
}

.problem-card h4:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin: 12px auto 0;
    border-radius: 10px;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 0;
}

@media(max-width:991px) {

    .section-header h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .tv-problems-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .section-header p {
        font-size: 16px;
    }

}


.brands-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.brands-section .section-title {
    margin-bottom: 50px;
}

.brands-section .section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
}

.brands-section .section-title p {
    color: #6b7280;
    font-size: 18px;
}

.brands-slider {
    position: relative;
    overflow: hidden;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
}

.brand-item {
    width: 220px;
    height: 120px;
    background: #fff;
    margin: 0 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.brand-item img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: .3s;
}

.brand-item:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Edge Fade Effect */
.brands-slider::before,
.brands-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
}

.brands-slider::before {
    left: 0;
    background: linear-gradient(to right,
            #fff,
            transparent);
}

.brands-slider::after {
    right: 0;
    background: linear-gradient(to left,
            #fff,
            transparent);
}


.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
            #f7f9fc,
            #ffffff);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .25);
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
    margin-top: 25px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 20px;
    line-height: 1.8;
}

.process-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    overflow: visible;
    border: 1px solid #edf2f7;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);

    transition: .4s;
}

.process-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #d4af37,
            #f6e27a,
            #d4af37);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    color: #d4af37;

    background: #08203d;

    border: 6px solid #fff;

    box-shadow:
        0 10px 30px rgba(8, 32, 61, .15);
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: #e8d6a0;
    line-height: 1;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #08203d;
    margin-bottom: 15px;
}

.process-card p {
    color: #6b7280;
    line-height: 1.8;
}

.process-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;
    background: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);

    color: #b88918;
    font-size: 18px;

    z-index: 10;
}

.process-row .col-lg-3:last-child .process-arrow {
    display: none;
}

.process-features {
    margin-top: 70px;

    background: #fff;
    border-radius: 25px;

    padding: 35px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 38px;
    color: #d4af37;
}

.feature-item strong {
    display: block;
    color: #08203d;
    font-size: 18px;
}

.feature-item span {
    color: #6b7280;
}

@media(max-width:991px) {

    .process-arrow {
        display: none;
    }

    .process-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 42px;
    }
}

@media(max-width:767px) {

    .process-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .section-header p {
        font-size: 16px;
    }
}



.tv-service-portal {
    padding: 100px 0;
    background: #f8fafc;
}

.portal-header {
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.portal-badge {
    display: inline-block;
    background: #08203d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.portal-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
    margin-top: 20px;
}

.portal-header p {
    font-size: 20px;
    color: #6b7280;
}

.portal-card,
.coverage-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.portal-card h3,
.coverage-card h3 {
    color: #08203d;
    font-weight: 700;
    margin-bottom: 20px;
}

.portal-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.portal-card h4 {
    margin-top: 30px;
    color: #08203d;
}

.portal-list {
    padding-left: 20px;
}

.portal-list li {
    margin-bottom: 12px;
    color: #555;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.city-grid span {
    background: #1b4977;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.city-grid span:hover {
    background: #08203d;
    color: #fff;
}

.portal-bottom {
    margin-top: 50px;
}

.benefit-box {
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.benefit-box:hover {
    transform: translateY(-8px);
}

.benefit-box i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit-box h4 {
    font-size: 20px;
    color: #08203d;
}


.premium-footer {
    background: #06172d;
    color: #fff;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}