/* Brightspeed Page Styles */

/* Hero Section */
.brightspeed-hero {
    background: linear-gradient(135deg, #1a0a1f 0%, #0d0312 50%, #000 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.brightspeed-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(199, 109, 232, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.brightspeed-hero .container {
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.dealer-logo {
    max-width: 280px;
    height: auto;
}

.reseller-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(199, 109, 232, 0.1);
    border: 1px solid rgba(199, 109, 232, 0.3);
    border-radius: 12px;
}

.reseller-badge span {
    color: #C76DE8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reseller-badge img {
    max-width: 220px;
    height: auto;
    border-radius: 8px;
}


.hero-content-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, #C76DE8 0%, #7B3E94 100%);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(91deg, #fff 0.61%, #9ca3af 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Key Features Pills */
.key-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 109, 232, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(199, 109, 232, 0.15);
    transform: translateY(-2px);
}

.feature-pill svg {
    width: 24px;
    height: 24px;
    fill: #C76DE8;
}

.feature-pill span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* Hero Image */
.hero-image-wrapper {
    margin-top: 60px;
    text-align: center;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Plans Section */
.plans-section {
    background: linear-gradient(180deg, #000 0%, #0d0312 50%, #1a0a1f 100%);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(91deg, #fff 0.61%, #9ca3af 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Plan Cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}


.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(199, 109, 232, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C76DE8, #7B3E94);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(199, 109, 232, 0.5);
    box-shadow: 0 20px 60px rgba(199, 109, 232, 0.15);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(199, 109, 232, 0.15) 0%, rgba(123, 62, 148, 0.1) 100%);
    border-color: rgba(199, 109, 232, 0.4);
}

.plan-card.featured::before {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C76DE8, #7B3E94);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-speed {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.plan-speed span {
    color: #C76DE8;
}

.plan-tagline {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.plan-features li svg path {
    fill: #C76DE8;
}

.plan-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #C76DE8, #7B3E94);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(199, 109, 232, 0.3);
    color: #fff;
}

/* Voice Section */
.voice-section {
    background: linear-gradient(180deg, #1a0a1f 0%, #0d0312 100%);
    padding: 100px 0;
}

.voice-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(199, 109, 232, 0.2);
    border-radius: 24px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.voice-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.voice-content h3 {
    font-size: 24px;
    color: #C76DE8;
    margin-bottom: 25px;
}

.voice-content p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}

.voice-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voice-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #d1d5db;
    font-size: 16px;
}

.voice-features li svg {
    width: 22px;
    height: 22px;
}

.voice-features li svg path {
    fill: #C76DE8;
}

.voice-image {
    text-align: center;
}

.voice-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid rgba(199, 109, 232, 0.1);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-content h4 {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-content p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .voice-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .voice-image {
        order: -1;
    }
}

@media screen and (max-width: 992px) {
    .brightspeed-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 38px;
    }

    .logo-section {
        gap: 30px;
    }

    .dealer-logo {
        max-width: 200px;
    }

    .section-title {
        font-size: 32px;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .voice-content h2 {
        font-size: 28px;
    }
}


@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .key-features {
        gap: 12px;
    }

    .feature-pill {
        padding: 10px 16px;
        font-size: 14px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plans-grid {
        grid-template-columns: 1fr !important;
    }

    .plan-speed {

        font-size: 26px;
    }

    .voice-card {
        padding: 30px 20px;
    }

    .logo-section {
        flex-direction: column;
        gap: 20px;
    }
}

/* Extra Mobile Responsive - Override inline styles */
@media screen and (max-width: 576px) {
    .brightspeed-hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 26px !important;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px !important;
    }

    .key-features {
        flex-direction: column;
        gap: 10px;
    }

    .feature-pill {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 14px;
        font-size: 13px;
    }

    .reseller-badge {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .reseller-badge img {
        max-height: 35px;
    }

    .section-title {
        font-size: 24px !important;
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-speed {
        font-size: 22px !important;
    }

    .plan-tagline {
        font-size: 13px;
        min-height: auto !important;
    }

    .plan-features li {
        font-size: 13px;
    }

    .plan-cta {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Override inline banner styles */
    section[style*="padding: 50px"] {
        padding: 30px 0 !important;
    }

    section[style*="padding: 40px"] {
        padding: 25px 0 !important;
    }

    /* Fix inline flex containers */
    div[style*="display: flex"][style*="flex-wrap: wrap"] {
        gap: 15px !important;
    }

    div[style*="min-width: 280px"] {
        min-width: 100% !important;
        padding: 20px !important;
    }

    /* Pricing text size adjustments */
    span[style*="font-size: 48px"] {
        font-size: 36px !important;
    }

    span[style*="font-size: 36px"] {
        font-size: 28px !important;
    }

    h2[style*="font-size: 32px"],
    h3[style*="font-size: 28px"] {
        font-size: 22px !important;
    }

    h3[style*="font-size: 24px"] {
        font-size: 20px !important;
    }

    /* Disclaimer section */
    .disclaimer-content {
        padding: 20px 15px;
    }

    .disclaimer-content p {
        font-size: 12px;
    }

    /* Voice section adjustments */
    .voice-card {
        padding: 20px 15px;
    }

    .voice-content h2 {
        font-size: 22px !important;
    }

    .voice-content h3 {
        font-size: 18px !important;
    }

    .voice-features li {
        font-size: 13px;
    }
}