/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* TOP BAR */
.topbar {
    background: linear-gradient(90deg,#071b52,#6b4eff);
    color: white;
    padding: 10px 0;
}

.topbar i {
    margin-right: 8px;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 18px 0;
    box-shadow: 0 5px 20px #0002;
}

.logo {  
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #071b52;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-right: 4px;
}

.logo span {
    color: #6b4eff;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    color: #222;
}

.nav-link:hover {
    color: #6b4eff;
}

.support {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support i {
    background: #ece8ff;
    color: #6b4eff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO */
.hero {
    height: 90vh;
    background: url("banner.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    transition: 1s;
}

.hero:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7,27,82,.9), rgba(107,78,255,.5));
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0;
}

.btn-main {
    background: #00d4ff;
    padding: 15px 40px;
    border-radius: 40px;
    color: #111;
    font-weight: bold;
}

.slider {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #ffffff44;
    color: white;
    font-size: 25px;
}

.left {
    left: 25px;
}

.right {
    right: 25px;
}

/* Top Features Section */
.features-section {
    margin-top: 50px;
    margin-bottom: 80px;
    width: 100%;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-row {
    display: grid;
    gap: 24px;
    width: 100%;
}

.row-three {
    grid-template-columns: repeat(3, 1fr);
}

.row-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    border-radius: 4px;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 160px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.light-card {
    background-color: #f7f5f0;
}

.light-card h3 {
    color: #232a30;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.light-card p {
    color: #7a828a;
    font-size: 0.95rem;
    line-height: 1.4;
}

.light-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.dark-card {
    background-color: #2d3339;
}

.dark-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dark-card p {
    color: #a0a7ae;
    font-size: 0.95rem;
    line-height: 1.4;
}

.dark-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-content {
    flex: 1;
    padding-right: 20px;
}

.icon-wrapper {
    width: 75px;
    height: 75px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 20px;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

/* About Section Exact */
.about-section-exact {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.img-container-exact {
    position: relative;
    width: 100%;
    height: 480px;
}

.img-container-exact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.img-box-back {
    position: absolute;
    width: 53%;
    height: 72%;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-box-front {
    position: absolute;
    width: 63%;
    height: 72%;
    bottom: 0;
    right: 0;
    z-index: 3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.block-orange {
    position: absolute;
    background-color: #f2994a;
    width: 75px;
    height: 75px;
    top: 14%;
    left: 45%;
    z-index: 1;
}

.block-teal {
    position: absolute;
    background-color: #00a8b5;
    width: 75px;
    height: 40px;
    bottom: 10%;
    left: 21%;
    z-index: 1;
}

.content-wrap-exact {
    padding-left: 35px;
}

.content-wrap-exact .tag {
    color: #071b52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.content-wrap-exact .heading {
    font-size: 46px;
    font-weight: 800;
    color: #2b354e;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.content-wrap-exact .teal-highlight {
    color: #009ba4;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
}

.content-wrap-exact .para-text {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.list-exact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-exact li {
    font-size: 15px;
    font-weight: 700;
    color: #2b354e;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-exact li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.content-wrap {
    padding-right: 20px;
}

.content-wrap .tagline {
    color: #071b52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.content-wrap .heading {
    font-size: 46px;
    font-weight: 800;
    color: #2b354e;
    line-height: 1.15;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon svg {
    width: 45px;
    height: 45px;
    color: #00a8b5;
}

.stat-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #071b52;
    margin: 0;
    line-height: 1;
}

.stat-text p {
    font-size: 13px;
    color: #7a7a7a;
    margin: 5px 0 0 0;
    font-weight: 500;
}

.content-wrap .description {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    font-weight: 700;
    color: #2b354e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.img-container-layout {
    position: relative;
    width: 100%;
    height: 450px;
}

.img-container-layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-box-large {
    position: absolute;
    width: 72%;
    height: 90%;
    top: 5%;
    right: 0;
    z-index: 2;
}

.img-box-small {
    position: absolute;
    width: 45%;
    height: 70%;
    top: 15%;
    left: 0;
    z-index: 3;
    box-shadow: 15px 0px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: #f7f7f7;
    background-image: radial-gradient(#dbdbdb 1px, transparent 1px), radial-gradient(#dbdbdb 1px, #f7f7f7 1px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.benefits-header {
    margin-bottom: 50px;
}

.benefits-header .tagline {
    color: #071b52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.benefits-header .heading {
    font-size: 44px;
    font-weight: 800;
    color: #2b354e;
    line-height: 1.15;
    letter-spacing: -1px;
}

.benefits-header .right-text {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.7;
    padding-top: 30px;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.benefit-card {
    background: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 55px;
    height: 55px;
    margin: 0 auto 25px auto;
    color: #071b52;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    width: 100%;
    height: 100%;
}

.benefit-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2b354e;
    margin: 0;
}

/* About Section */
.section {
    padding: 80px 0;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

.title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #071b52;
}

.about img {
    width: 100%;
    border-radius: 20px;
}

.about p {
    font-size: 18px;
    line-height: 32px;
}

/* Promo Banner */
.promo-banner {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #23272a 40%, rgba(35, 39, 42, 0.7) 60%, rgba(35, 39, 42, 0.3) 100%), 
                url('banner3.png') no-repeat center right;
    background-size: cover;
    padding: 50px 8%;
    color: #ffffff;
    overflow: hidden;
}

.content-box {
    max-width: 550px;
    z-index: 2;
}

.promo-banner .tagline {
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.promo-banner .description {
    color: #a0a5a9;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.price-text {
    display: flex;
    flex-direction: column;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: #a0a5a9;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.cta-btn {
    background-color: #071b52;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #00d4ff;
}

/* Pricing Grid Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: #071b52;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    color: #2b2b2b;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
}

.card-header {
    text-align: center;
    padding: 40px 20px 30px 20px;
    background: #ffffff;
}

.plan-tag {
    color: #071b52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 24px;
    color: #2b2b2b;
    margin-top: 8px;
    font-weight: 700;
}

.card-body {
    background-color: #f7f5f0;
    padding: 0 40px 40px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.icon-container {
    display: flex;
    gap: 10px;
    margin-top: -25px;
    margin-bottom: 35px;
}

.icon-badge {
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #009ba4;
}

.pricing-card .features-list {
    list-style: none;
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e2db;
    padding-bottom: 30px;
}

.pricing-card .features-list li {
    font-size: 15px;
    color: #666666;
    margin-bottom: 14px;
    position: relative;
    padding-left: 25px;
}

.pricing-card .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #009ba4;
    font-weight: bold;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    background-color: #00d4ff;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    width: auto;
    text-align: center;
}

.btn-primary:hover {
    background-color: black;
}

/* TV Shows Section */
.tv-shows-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
}

.tv-shows-section::after {
    content: "";
    position: absolute;
    right: -10%;
    top: 5%;
    width: 50%;
    height: 90%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/26/World_map_blank_black_white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.media-wrapper {
    position: relative;
    width: 100%;
}

.main-img-box {
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
}

.main-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.media-wrapper::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 20%;
    width: 15px;
    height: 45%;
    background-color: #00a8b5;
    z-index: 1;
}

.orange-speech-badge {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 140px;
    height: 140px;
    background-color: #f2994a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(242, 153, 74, 0.4);
    z-index: 4;
}

.orange-speech-badge span {
    font-family: 'Dancing Script', cursive;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
}

.orange-speech-badge::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 0;
    border-top: 15px solid #f2994a;
    border-left: 15px solid transparent;
    transform: rotate(30deg);
}

.text-container {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.text-container .tagline {
    color: #071b52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.text-container .heading {
    font-size: 46px;
    font-weight: 800;
    color: #2b354e;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-container .desc-text {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    color: #071b52;
    flex-shrink: 0;
}

.feature-icon-box svg {
    width: 100%;
    height: 100%;
}

.feature-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2b354e;
    margin-bottom: 8px;
}

.feature-info p {
    color: #7a7a7a;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fcfbfa;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.faq-left-wrap {
    padding-right: 30px;
}

.faq-left-wrap .tagline {
    color: #071b52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.faq-left-wrap .heading {
    font-size: 48px;
    font-weight: 800;
    color: #2b354e;
    line-height: 1.15;
    letter-spacing: -1px;
}

.faq-accordion-box {
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.2s ease;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #2b354e;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.faq-icon {
    font-size: 22px;
    color: #9ea5b4;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

.faq-content {
    padding: 0 40px 30px 40px;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-content p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Custom Scroll Top Button */
.custom-scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #00d4ff;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-scroll-top-btn:hover {
    background-color: #2b354e;
    transform: translateY(-5px);
}

.custom-scroll-top-btn svg {
    width: 22px;
    height: 22px;
}

.custom-scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Contact Section */
.contact {
    background: #071b52;
    color: white;
    padding: 70px 0;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
}

.contact textarea {
    height: 130px;
}

.contact button {
    background: #00d4ff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    cursor: pointer;
}

.site-status {
    width: 100%;
    background: #ff9800;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

/* Footer */
footer {
    background: #040d25;
    color: white;
    padding: 35px;
    text-align: center;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .row-three, .row-two {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .about-container {
        flex-direction: column;
    }
    .about-images, .about-content {
        width: 100%;
    }
    .about-images {
        height: 500px;
    }
    .content-wrap-exact {
        padding-left: 0;
        margin-top: 40px;
    }
    .content-wrap-exact .heading {
        font-size: 36px;
    }
    .content-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .content-wrap .heading {
        font-size: 36px;
    }
    .benefits-header .right-text {
        padding-top: 15px;
    }
    .benefit-card {
        min-width: 30%;
    }
    .text-container {
        padding-left: 0;
        margin-top: 50px;
    }
    .text-container .heading {
        font-size: 36px;
    }
    .orange-speech-badge {
        width: 110px;
        height: 110px;
        top: 10%;
    }
    .orange-speech-badge span {
        font-size: 16px;
    }
    .faq-left-wrap {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .faq-left-wrap .heading {
        font-size: 38px;
    }
    .faq-header {
        padding: 25px 20px;
    }
    .faq-content {
        padding: 0 20px 25px 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .support {
        margin-top: 15px;
    }
    .img-container-exact {
        height: 360px;
    }
    .block-orange, .block-teal {
        display: none;
    }
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .custom-scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    .img-container-layout {
        height: 320px;
    }
    .benefits-header .heading {
        font-size: 32px;
    }
    .benefit-card {
        min-width: 46%;
        padding: 30px 15px;
    }
    .feature-row {
        flex-direction: column;
        gap: 12px;
    }
    .orange-speech-badge {
        display: none;
    }
}