* {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: #CC0000;
}

.header-container {
    width: 100%;
}

.utility-menu {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background-color: #ccc;
    text-align: right;
}

.utility-menu a {
    font-size: 15px;
    color: #000033;
    padding-right: 25px;
}

.navbar {
    background-color: #fff;
    position: relative;
    height: 125px;
}

.nav-wrapper {
    text-align: center;
}

.navbar img {
    width: 10%;
    float: left;
    vertical-align: middle;
}

.navbar ul {
    line-height: 125px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: #000;
    text-decoration: none;
    padding: 14px 20px;
    letter-spacing: 1.5px;
}

.navbar ul li a:hover {
    border-bottom: solid orange 2px;
}

.hero-container {
    width: 100%;
}

.hero-block {
    height: 600px;
    background-color: #fff;
}

.hero-block h1 {
    font-weight: 700;
    font-size: 75px;
    padding-left: 10%;
    color: #fff;
}

.title {
    padding-top: 8vh;
}

#future {
    color: orange;
}

.hero-block p {
    padding-top: 20px;
    font-size: 22px;
    color: #fff;
    padding-left: 10%;
    width: 30%;
}

/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
.action-block-container {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
}

.action-block-container a {
    margin-right: 10vw;
    color: #fff;
    background-color: #000033;
    padding: 1.3% 4%;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.action-block-container-2 {
    width: 100%;
    background-color: #f0e6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    flex-direction: row-reverse;
}

.action-block-container-2 a {
    margin-left: 10vw;
    color: #fff;
    background-color: #000033;
    padding: 1.3% 4%;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
.action-block {
    color: #000033;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10vw;
}

.action-block h3 {
    font-size: 30px;
}

.action-block p {
    padding-top: 15px;
    width: 40vw;
    font-size: 20px;
}

.action-block-2 {
    color: #000033;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10vw;
    border-radius: 10px;
    padding-left: 10%;
}

.action-block-2 h3 {
    font-size: 30px;
}

.action-block-2 p {
    padding-top: 15px;
    width: 40vw;
    font-size: 20px;
}

/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/* Container */
.plans-container {
    padding: 50px 20px;
    background: #f4f6f9;
}

/* Grid */
.plans-4x {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.plan {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.25s ease;
}

.plan:hover {
    transform: translateY(-6px);
}

/* Popular highlight */
.plan.popular {
    border: 2px solid #cc0000;
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #cc0000;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Plan badge */
.badge {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Price */
.price {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    color: #6b7280;
}

/* Speed */
.speed {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* FCC-style label box */
.label {
    text-align: left;
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.label p {
    margin-bottom: 6px;
}

/* Button */
.btn-main {
    display: inline-block;
    padding: 10px 18px;
    background: #cc0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-main:hover {
    background: #a30000;
}


/* Footer container */
.footer-container {
    background: #0f172a;
    color: #e5e7eb;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

/* Grid layout */
.footer-4x-dark {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Sections */
.footer-section p:first-child {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Tagline */
.footer-section p:nth-child(2) {
    font-size: 14px;
    color: #9ca3af;
}

/* Lists */
.footer-section ul {
    list-style: none;
    margin-top: 10px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

/* Links */
.footer-section ul li a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14px;
    transition: 0.2s ease;
    position: relative;
}

/* Hover effect */
.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Subtle divider line */
.footer-container::after {
    content: "";
    display: block;
    margin-top: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* Optional bottom text (if you add later) */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
}

.footer-logo {
    margin-top: 15px;
    width: 140px;
    height: auto;
    display: block;
}






















/* Very small screens */
@media screen and (max-width: 480px) {
    .header-container {
        display: none;
    }

    .hero-block {
        height: 100%;
        padding-bottom: 8vh;
        text-align: left;
    }

    .hero-block h1 {
        font-size: 40px;
    }

    .hero-block p {
        font-size: 20px;
        width: 80%;
    }

    .action-block-container {
        all: initial;
        width: 100%;
    }

    .action-block-container a {
        visibility: hidden;
    }

    .action-block {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }

    .action-block-container-2 {
        all: initial;
        width: 100%;
        background-color: #f0e6ff;
        display: block;
    }

    .action-block-container-2 a {
        visibility: hidden;
    }

    .action-block-2 {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block-2 h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block-2 p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }
}

/* Normal phones */
@media screen and (min-width: 481px) and (max-width: 767px) {
    .header-container {
        display: none;
    }

    .action-block-container {
        all: initial;
        width: 100%;
    }

    .action-block-container a {
        visibility: hidden;
    }

    .action-block-container-2 a {
        visibility: hidden;
    }

    .action-block {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }

    .action-block-container-2 {
        all: initial;
        width: 100%;
        background-color: #f0e6ff;
        display: block;
    }

    .action-block-container-2 a {
        visibility: hidden;
    }

    .action-block-2 {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block-2 h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block-2 p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }
}

/* Tablets / iPads */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .action-block-2 {
        margin: 0 auto;
        text-align: center;
        padding: 25px;
        max-width: 50vw;
    }

    .action-block-2 h3 {
        font-size: 30px;
        text-align: center;
    }

    .action-block-2 p {
        font-size: 20px;
        width: 100%;
        margin: 0 auto;
    }

}

/* Small laptops */
@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .action-block-container-2 a {
        width: 100%;
        text-align: center;
    }

    .action-block-container {
        width: 100%;
        align-items: center;
        height: 400px;
    }

    .action-block-container a {
        margin-right: 10vw;
        padding: 1.3% 4%;
    }

    .action-block-container-2 a {
        max-width: 10vw;
    }

}











@media (max-width: 1000px) {
    .plans-4x {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .plans-4x {
        grid-template-columns: 1fr;
    }
}











@media (max-width: 900px) {
    .footer-4x-dark {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-4x-dark {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 800px) {
    .footer-4x-dark {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
        /* remove slide effect for mobile */
    }
}

@media (max-width: 800px) {
    .footer-section:first-child p:nth-child(2)::after {
        margin-left: auto;
        margin-right: auto;
    }
}



/* Center on mobile */
@media (max-width: 800px) {
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}