:root {
    --btn-blue: #0b74da;
    --btn-blue-hover: #9aa1a6;
    --btn-radius: 8px;
    --card-bg: #072233;
    --card-accent: #05283f;
    --hero-radius: 18px
}

html {
    scroll-behavior: smooth;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    transform: scale(1.05);
}

.sticky-cta a:hover {
    transform: unset !important;
}


/* Topbar */

.topbarSec {
    background-color: #03233b;
}

.top-bar {
    color: white;
    height: auto;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.left-links,
.right-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.left-links a {
    color: white;
    text-decoration: none;
    margin: 0 6px;
    font-size: 14px;
    font-weight: 500;
}

.right-status span{
    font-weight: 500;
}

.left-links .divider {
    color: #cfcfcf;
    margin: 0 4px;
}

.right-status {
    font-size: 14px;
}

.dot {
    width: 9px;
    height: 9px;
    background-color: #28d74c;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* -------- Responsive Adjustments -------- */

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 16px;
    }
}

/* Mobile phones (≤ 480px) */
@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        /* align-items: flex-start; */
        align-items: unset;
    }

    .left-links {
        font-size: 13px;
        display: flex;
        justify-content: space-between;
    }

    .left-links a {
        margin: 2px 4px;
    }

    .right-status{
        display: none;
    }
}




/* Navbar */

.nav-bar ul li a {
    color: #1a1a1a;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-bar ul li a:hover {
    color: #005eff;
}



/* Hero */

.hero {
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0)),
        url('../img/hero.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.hero .text {
    background: -webkit-linear-gradient(left, rgb(255, 148, 67), rgb(255, 235, 57));
    justify-content: center;
    border-radius: 4px;
    margin: 0px 0px 5px;
    z-index: 10;
    font-family: var(--font_default);
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 3.2px;
    padding: 5px 8px;
    width: fit-content;
}




/* Pricing */

.pricing h2 {
    font-size: 20px;
}

.pricing ul li span {
    font-size: 15px;
}

.pricing h1 {
    color: #002139;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
}

.pricing .btn {
    background-color: #fff;
    border: 2px solid #005eff;
    color: #005eff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    display: table;
    margin: 20px auto;
}

.pricing .card {
    position: relative;
    transition: box-shadow 200ms ease, transform 120ms ease;
    cursor: pointer;
}

.pricing .card:hover {
    box-shadow: 0 8px 24px #002139;
}






/* Switch Promo Banner */

.switch-promo {
    background: linear-gradient(90deg, #0B74DA 0%, #0563C1 50%, #0563C1 100%);
    padding: 24px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
    color: #fff;
    margin: 0 auto 40px auto;
}

.switch-left {
    display: flex;
    align-items: center;
    justify-content: center
}

.card-visual {
    width: 160px;
    height: 105px;
    background: linear-gradient(135deg, #1A3A52 0%, #0D1F2D 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative
}

.card-amount {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #ffd700
}

.card-image {
    width: 100%;
    height: 100%
}

.card-image svg {
    width: 100%;
    height: 100%
}

.switch-right {
    padding: 8px
}

.switch-title {
    font-size: 28px;
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.3
}

.switch-phone {
    font-size: 18px;
    margin: 0 0 12px;
    font-weight: 700;
    color: #ffd700
}

.switch-desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #e3f0ff
}

@media (max-width:980px) {
    .switch-promo {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px
    }

    .switch-left {
        order: 1
    }

    .switch-right {
        order: 2
    }

    .switch-title {
        font-size: 24px
    }
}

@media (max-width:480px) {
    .switch-promo {
        padding: 14px;
        gap: 14px
    }

    .card-visual {
        width: 140px;
        height: 90px
    }

    .switch-title {
        font-size: 20px
    }

    .switch-phone {
        font-size: 16px
    }

    .switch-desc {
        font-size: 12px
    }
}



/* CTA */

.cta {
    background-color: #000;
    border-radius: 20px;
    padding: 40px 60px 0px 40px;
    margin: 0 auto;
    color: #fff;
}

.cta h4 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.cta h2 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 10px 0;
}

.cta p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.cta a {
    background-color: #0271eb;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}



/* Table */

.myTable {
    margin: auto;
}

.myTable h2 {
    color: #333;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
}

.myTable p {
    color: #414141;
    padding-bottom: 30px;
    font-size: 17px;
    font-weight: normal;
}

table {
    width: 100%;
    border-radius: 30px;
}

th,
td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

tfoot td {
    background-color: #002139;
    color: #fff !important;
    font-weight: bold;
    font-size: 20px;
}

.tText {
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    color: #414141;
}

.tBg {
    background: #f5faff !important;
}

.tbg2 {
    background: #f9f9f9 !important;
}

.tBg3 {
    background: #0271eb !important;
    color: #fff;
}






/* TV */

.services-section {
    padding: 28px
}

.container.narrow {
    max-width: 1200px;
    margin: 0 auto
}

.hero-title {
    color: #333;
    font-size: 30px;
    margin: 0 0 6px;
    font-weight: 900;
}

.hero-sub {
    color: var(--muted);
    margin: 0 0 20px
}

.hero-card {
    background: linear-gradient(180deg, var(--btn-blue), var(--card-accent));
    padding: 28px;
    border-radius: var(--hero-radius);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center
}

.devices {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(4, 22, 38, 0.45)
}

.hero-right {
    padding: 6px 12px
}

.question {
    font-size: 26px;
    margin: 0 0 6px;
    font-weight: bold;
    text-transform: capitalize;
}

.note {
    color: #bcd3ef;
    margin-top: 0;
    margin-bottom: 18px
}

.choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0;
}

.choice {
    background: var(--btn-blue);
    border: none;
    color: #fff;
    padding: 16px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(3, 28, 56, 0.35);
    transition: background-color 180ms ease, transform 120ms ease
}

.choice:focus {
    outline: 3px solid rgba(255, 255, 255, 0.12);
    outline-offset: 2px
}

.choice:hover {
    background: var(--btn-blue-hover);
    color: #fff;
    transform: translateY(-2px)
}

.choice:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(3, 28, 56, 0.2)
}

.small-note {
    font-size: 13px;
    color: #cfe3f9;
    margin: 6px 0 14px
}

.next-link {
    margin-top: 6px;
    text-align: right;
    font-weight: 700
}

@media (max-width:980px) {
    .hero-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px
    }

    .hero-left {
        order: 1
    }

    .hero-right {
        order: 2
    }

    .choices {
        grid-template-columns: 1fr;
    }

    .choice {
        width: 100%;
    }

    .next-link {
        text-align: left
    }
}

@media (max-width:480px) {
    .hero-title {
        font-size: 22px
    }

    .question {
        font-size: 20px
    }
}








/* Help Section */

.help-section {
    padding: 32px 20px;
}

.help-container {
    margin: 0 auto;
}

.help-card {
    background: linear-gradient(90deg, #0B74DA 0%, #0563C1 100%);
    border-radius: 20px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(11, 116, 218, 0.2);
}

.help-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-image {
    max-width: 100%;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.help-right {
    padding: 10px;
}

.help-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.help-subtitle {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #E3F0FF;
    line-height: 1.5;
}

.help-phone {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
    transition: color 200ms ease, text-shadow 200ms ease;
}

.help-phone:hover {
    color: #FFE44D;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.help-phone:active {
    color: #FFCC00;
}

@media (max-width: 980px) {
    .help-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px;
    }

    .help-image {
        width: 240px;
    }

    .help-title {
        font-size: 26px;
    }

    .help-subtitle {
        font-size: 16px;
    }

    .help-phone {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .help-section {
        padding: 20px 16px;
    }

    .help-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        border-radius: 16px;
    }

    .help-image {
        width: 200px;
    }

    .help-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .help-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .help-phone {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .help-card {
        padding: 16px;
        gap: 16px;
    }

    .help-image {
        width: 160px;
    }

    .help-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .help-subtitle {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .help-phone {
        font-size: 14px;
    }
}













/* Tv Section */

.tv-section {
    padding: 48px 20px;
    background: #FFFFFF;
}

.tv-container {
    margin: 0 auto;
}

.tv-title {
    font-size: 40px;
    font-weight: 700;
    color: #2D3748;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.tv-subtitle {
    font-size: 16px;
    color: #5A6C7D;
    margin: 0 0 32px 0;
    line-height: 1.5;
    font-weight: 400;
}

.tv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.plan-card {
    background: #FFFFFF;
    border: 1px solid #D0D8E0;
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 200ms ease, transform 120ms ease;
}

.plan-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.plan-card.featured {
    border-color: #ccc;
}

.best-value-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FCD34D;
    color: #1A202C;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: 16px;
}

.channels-info {
    font-size: 11px;
    font-weight: 700;
    color: #8892A1;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 2px 0;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #0B74DA;
    margin: 0;
    letter-spacing: -0.3px;
}

.price-section {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1A202C;
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: #5A6C7D;
    font-weight: 400;
    margin-bottom: 4px;
}

.discount-text {
    font-size: 13px;
    margin-bottom: 18px;
    color: #5A6C7D;
    line-height: 1.4;
}

.discount-label {
    display: inline;
    color: #5A6C7D;
}

.discount-price {
    display: inline;
    color: #E53E3E;
    text-decoration: line-through;
    margin-left: 2px;
    font-weight: 500;
}

.includes-section {
    margin-bottom: 18px;
}

.includes-label {
    font-size: 12px;
    font-weight: 700;
    color: #2D3748;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.logo-placeholder {
    width: 36px;
    height: 36px;
    background: #F0F4F8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    color: #A0AEC0;
    text-align: center;
    padding: 2px;
    object-fit: cover;
}

.card-divider {
    border: none;
    border-top: 1px solid #E8ECF1;
    margin: 18px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
    font-weight: 400;
}

.features-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #CBD5E0;
    font-weight: 600;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.tv-footer {
    text-align: center;
    padding-top: 20px;
}

.cta-text {
    font-size: 16px;
    color: #2D3748;
    margin: 0;
    font-weight: 400;
}

.cta-phone {
    color: #0B74DA;
    text-decoration: none;
    font-weight: 600;
    transition: color 150ms ease;
    margin-left: 4px;
}

.cta-phone:hover {
    color: #0563C1;
}


@media (max-width: 1024px) {
    .tv-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .tv-title {
        font-size: 32px;
    }

    .plan-name {
        font-size: 18px;
    }

    .price-amount {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .tv-section {
        padding: 32px 16px;
    }

    .tv-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tv-title {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .tv-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .plan-card {
        padding: 24px;
    }

    .channels-info {
        font-size: 10px;
    }

    .plan-name {
        font-size: 16px;
    }

    .price-amount {
        font-size: 36px;
    }

    .price-period {
        font-size: 14px;
    }

    .discount-text {
        font-size: 12px;
    }

    .includes-label {
        font-size: 11px;
    }

    .logo-placeholder {
        width: 32px;
        height: 32px;
        font-size: 7px;
    }

    .features-list {
        font-size: 13px;
    }

    .best-value-badge {
        padding: 4px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .tv-section {
        padding: 24px 12px;
    }

    .tv-title {
        font-size: 24px;
    }

    .tv-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .tv-cards {
        gap: 14px;
    }

    .plan-card {
        padding: 20px;
    }

    .price-section {
        margin-bottom: 6px;
    }

    .price-amount {
        font-size: 32px;
    }

    .card-divider {
        margin: 14px 0;
    }

    .includes-section {
        margin-bottom: 14px;
    }

    .app-logos {
        gap: 6px;
    }

    .logo-placeholder {
        width: 28px;
        height: 28px;
    }

    .features-list li {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .cta-text {
        font-size: 14px;
    }
}









/* Offer Section */

.offers-section {
    padding: 48px 20px;
    background: #FFFFFF;
}

.offers-container {
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.offer-card {
    background: #FFFFFF;
    border: 1px solid #D0D8E0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 200ms ease;
}

.offer-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.offer-image-area {
    background: linear-gradient(135deg, #E8ECF1 0%, #D0D8E0 100%);
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image-area.dark-bg .image-placeholder {
    background: rgba(0, 0, 0, 0.3);
    color: #666;
}

.offer-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.offer-label {
    font-size: 11px;
    font-weight: 700;
    color: #8892A1;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px 0;
}

.offer-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.offer-description {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.offer-cta {
    font-size: 14px;
    color: #1A202C;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.offer-phone {
    color: #1A202C;
}

.offer-link {
    color: #0B74DA;
    text-decoration: none;
    font-weight: 600;
    transition: color 150ms ease;
    margin-left: 2px;
}

.offer-link:hover {
    color: #0563C1;
    text-decoration: underline;
}

.offer-button {
    background: #0B74DA;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 150ms ease, transform 120ms ease, box-shadow 150ms ease;
    box-shadow: 0 4px 12px rgba(11, 116, 218, 0.25);
    align-self: flex-start;
}

.offer-button:hover {
    background: #0563C1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 116, 218, 0.35);
}

.offer-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(11, 116, 218, 0.2);
}

.offer-button:focus {
    outline: 3px solid rgba(11, 116, 218, 0.2);
    outline-offset: 2px;
}

.offers-disclaimer {
    font-size: 12px;
    color: #8892A1;
    text-align: right;
    margin: 0;
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-image-area {
        width: 100%;
        height: 260px;
    }

    .image-placeholder {
        width: 240px;
        height: 200px;
    }

    .offer-content {
        padding: 28px;
    }

    .offer-title {
        font-size: 24px;
    }

    .offer-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: 32px 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-image-area {
        width: 100%;
        height: 240px;
    }

    .image-placeholder {
        width: 200px;
        height: 180px;
    }

    .offer-content {
        padding: 24px;
    }

    .offer-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .offer-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .offer-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .offers-disclaimer {
        text-align: center;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .offers-section {
        padding: 24px 12px;
    }

    .offers-grid {
        gap: 14px;
    }

    .offer-card {
        border-radius: 16px;
    }

    .offer-image-area {
        height: 200px;
    }

    .image-placeholder {
        width: 160px;
        height: 150px;
        font-size: 12px;
    }

    .offer-content {
        padding: 20px;
    }

    .offer-label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .offer-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .offer-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .offer-cta {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .offer-button {
        padding: 9px 18px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .offer-image-area {
        height: 160px;
    }

    .image-placeholder {
        width: 140px;
        height: 120px;
    }

    .offer-title {
        font-size: 16px;
    }

    .offer-description {
        font-size: 11px;
    }
}











/* Business Section */

:root {
    --primary: #FFB400;
    --overlay-blue: rgba(0, 25, 60, 0.8);
    --text-white: #FFFFFF;
    --text-gray: #CDD1D8;
    --font: "Inter", sans-serif;
}

.spectrum-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url('../img/banner.jpg') center/cover no-repeat;
    color: var(--text-white);
    padding: 40px 0;
}

.spectrum-content {
    background-color: var(--overlay-blue);
    width: 650px;
    height: auto;
    padding: 4rem 4rem;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
}

.spectrum-category {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.spectrum-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    max-width: 480px;
}

.spectrum-subtext {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 460px;
}

.spectrum-price-box {
    display: flex;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.spectrum-price-accent {
    width: 4px;
    background-color: var(--primary);
    margin-right: 1.2rem;
    border-radius: 2px;
}

.spectrum-price-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spectrum-plan-title {
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.spectrum-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.spectrum-price span {
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

.spectrum-bundle-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.spectrum-learn-more {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.spectrum-learn-more:hover {
    color: var(--text-white);
}

.spectrum-contact-line {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.spectrum-phone-icon {
    margin: 0 0.3rem;
}

.spectrum-phone-number {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.spectrum-phone-number:hover {
    text-decoration: underline;
}

.spectrum-cta-button {
    background: var(--primary);
    color: #001C40;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: fit-content;
}

.spectrum-cta-button:hover {
    background: #E0A000;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .spectrum-content {
        width: 55%;
        height: auto;
        padding: 3rem 4rem;
        margin-right: 40px;
    }

    .spectrum-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .spectrum-section {
        justify-content: center;
        padding: 2rem 0;
    }

    .spectrum-content {
        width: 70%;
        height: auto;
        padding: 3rem;
        margin: 0;
    }

    .spectrum-title {
        font-size: 2.2rem;
    }

    .spectrum-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .spectrum-section {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .spectrum-content {
        width: 90%;
        padding: 2.5rem 1.5rem;
        margin: 1.5rem auto;
    }

    .spectrum-price-box {
        justify-content: center;
        align-items: center;
    }

    .spectrum-price-accent {
        display: none;
    }

    .spectrum-cta-button {
        width: 100%;
    }

    .spectrum-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .spectrum-content {
        width: 95%;
        padding: 2rem 1.2rem;
    }

    .spectrum-title {
        font-size: 1.6rem;
    }

    .spectrum-price {
        font-size: 2.2rem;
    }

    .spectrum-cta-button {
        font-size: 0.95rem;
        padding: 0.8rem 1.8rem;
    }
}







/* Content Section */

.legal-section-7abc {
    background-color: #1f1f1f;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 3rem 0;
}

.legal-section-7abc__inner {
    margin: 0 auto;
}

.legal-section-7abc__title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.legal-section-7abc__item {
    margin-bottom: 1.5rem;
}

.legal-section-7abc__heading {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.legal-section-7abc__text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #ccc;
}

.legal-section-7abc__footer {
    font-size: 0.75rem;
    color: #777;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .legal-section-7abc {
        padding: 4rem 2rem;
    }

    .legal-section-7abc__title {
        font-size: 1.75rem;
    }

    .legal-section-7abc__text {
        font-size: 0.9rem;
    }
}




/* Sticky container */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    z-index: 9999;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-cta .cta-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sticky-cta .cta-call {
    background-color: #002c77;
}

.sticky-cta .cta-text {
    color: #fff;
    font-size: 20px;
}

.sticky-cta .cta-order {
    background-color: #0071e3;
}

.sticky-cta .cta-box:hover {
    opacity: 0.9;
}

.sticky-cta .cta-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .sticky-cta {
        flex-direction: column;
    }

    .sticky-cta .cta-box {
        width: 100%;
    }
}




/* Footer */

.footer {
    background-color: #1f1f1f;
    color: #c9c9c9;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    border-top: 10px solid #0271eb;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #bfbfbf;
}

.footer__links a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer__links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a8a8a8;
    padding: 10px 0;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.footer__brand {
    text-align: right;
}

.footer__brand img {
    height: 32px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer__brand-text {
    font-size: 0.85rem;
    color: #bcbcbc;
}

.footer__brand-text a {
    color: #69a9ff;
    text-decoration: none;
}

.footer__brand-text a:hover {
    text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
    }

    .footer__left {
        width: 65%;
    }

    .footer__right {
        width: 30%;
        text-align: right;
    }

    .footer__cta {
        padding: 1rem 3rem;
        font-size: 1.05rem;
    }
}





/* Policy Pages */

.pHero {
    background: linear-gradient(180deg, var(--btn-blue), var(--card-accent));
    padding: 40px;
    border-radius: 30px;
    color: #fff;
    align-items: center;
    margin: 20px auto;
    text-align: center;
}

.pHero h2 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
}

.pContent {
    padding: 20px 0;
}

.pContent .content {
    padding: 10px 0;
}

.pContent h2 {
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
}

.pContent p {
    font-size: 16px;
    color: #4A5568;
}

.pContent ul li {
    font-size: 16px;
    color: #4A5568;
}








/* General */

@media (max-width:786px) {
    .hero {
        width: 90%;
    }

    .switch-promo {
        width: 90%;
    }

    .cta {
        width: 90%;
    }

    .cta h2 {
        font-size: 25px;
    }

    .services-section {
        padding: 17px !important;
    }

    section.legal-section-7abc {
        padding: 20px;
    }

    .pricing h2 {
        font-size: 15px;
    }

    .pHero {
        width: 90%;
        padding: 40px 5px;
    }

    .pContent {
        width: 90%;
    }

    .myTable h2 {
        font-size: 20px;
    }

    .pricing h1 {
        font-size: 24px;
    }

    .cta-box.cta-order {
        display: none;
    }
}