/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Pricing Cards Section */
.pricing-section {
    background-color: var(--primary-color);
    padding: var(--section-padding);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-pick-banner {
    position: absolute;
    top: .8rem;
    right: -2.1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 2.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(43deg);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 102, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    }
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.pricing-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-rate {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    margin: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.pricing-features i {
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.pricing-card .cta-button {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Table */
.comparison-section {
    background-color: var(--secondary-color);
    padding: var(--section-padding) var(--section-padding) calc(var(--section-padding) * 0.5);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
    padding: 0 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    margin: 2rem 0;
    font-size: 1rem;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border: none;
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 0;
}

.comparison-table td:first-child {
    width: 45%;
    text-align: left;
    padding-left: 0;
    padding-right: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

.comparison-table td:not(:first-child) {
    width: 18.33%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    word-wrap: break-word;
}

.comparison-table th {
    background: transparent;
    color: var(--text-color);
    font-weight: 600;
    padding-bottom: 2rem;
    font-size: 1.2rem;
}

.comparison-table td:first-child {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
}

.comparison-table i.fa-check {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.comparison-table i.fa-times {
    color: #9da2a9;
    font-size: 1.2rem;
}

.comparison-table tr:not(.comparison-cta) td {
    padding: 1rem 0.5rem;
    line-height: 1.4;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--primary-color);
    padding: var(--section-padding);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--primary-color);
    padding: var(--section-padding);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 1rem;
}

.faq-item {
    background: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question h3 {
    color: inherit;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
    font-size: 1rem;
}

.faq-question.active {
    color: var(--accent-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    padding: 0;
    margin: 0;
}

.faq-answer.active {
    height: auto;
    opacity: 1;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
    list-style-type: none;
}

.faq-answer li {
    margin: 0.75rem 0;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
}

.faq-answer strong {
    color: var(--text-color);
    font-weight: 600;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 0;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.highlight-text {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--text-color);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.service-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-item {
    padding: 1.25rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-item i {
    color: var(--accent-color);
}

.service-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Comparison Table CTA Buttons */
.comparison-cta {
    background: none !important;
}

.comparison-cta td {
    padding: 2rem 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.comparison-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    min-width: 120px;
    width: auto;
    white-space: nowrap;
    margin: 0 0.25rem;
}

@media (max-width: 768px) {
    .comparison-cta td {
        padding: 1.5rem 1rem;
    }

    .comparison-cta .cta-button {
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
        min-width: 105px;
    }
}

@media (max-width: 600px) {
    .comparison-cta td {
        padding: 1.25rem 0.75rem;
    }

    .comparison-cta .cta-button {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
        min-width: 85px;
    }
}

@media (max-width: 480px) {
    .comparison-cta td {
        padding: 1rem 0.5rem;
    }

    .comparison-cta .cta-button {
        padding: 0.5rem 0.35rem;
        font-size: 0.75rem;
        min-width: 75px;
    }
}

@media (max-width: 360px) {
    .comparison-cta td {
        padding: 0.75rem 0.4rem;
    }

    .comparison-cta .cta-button {
        padding: 0.4rem 0.25rem;
        font-size: 0.7rem;
        min-width: 65px;
    }
}

/* Modal buttons maintain original styling */
.modal-buttons .cta-button {
    width: auto;
    min-width: 140px;
    padding: 0.8rem 1.5rem;
}

@media (max-width: 768px) {
    .modal-buttons .cta-button {
        min-width: 120px;
        padding: 0.7rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-buttons .cta-button {
        min-width: 100px;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 360px) {
    .modal-buttons .cta-button {
        min-width: 90px;
        padding: 0.5rem 0.75rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pricing-section {
        padding: calc(var(--section-padding) * 0.75);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: min(600px, 95vw);
        margin: 0 auto;
        gap: 2.5rem;
        padding: 0 0.25rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card {
        padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .pricing-features {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .pricing-features ul {
        max-width: min(400px, 90%);
        margin: 0 auto;
        text-align: left;
        padding-left: clamp(1rem, 3vw, 2rem);
    }
    
    .pricing-features li {
        margin: 0.5rem 0;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: calc(var(--section-padding) * 0.5) max(1rem, 2vw);
    }

    .pricing-cards {
        width: min(95vw, 400px);
        padding: 0;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .pricing-card {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem);
        width: 100%;
    }

    .pricing-features {
        padding: 0;
    }

    .pricing-features ul {
        width: min(90%, 300px);
        padding-left: clamp(0.75rem, 2vw, 1rem);
    }

    .price .amount {
        font-size: clamp(2.25rem, 4vw, 2.75rem);
    }

    .pricing-rate {
        font-size: clamp(0.85rem, 1.5vw, 1rem);
    }

    .pricing-header h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .comparison-table-wrapper {
        padding: 0 0.75rem;
    }

    .comparison-table td:first-child {
        width: 48%;
        padding-right: 0.75rem;
        font-size: 0.95rem;
    }

    .comparison-table td:not(:first-child) {
        width: 17.33%;
        font-size: 0.9rem;
    }

    .comparison-cta .cta-button {
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
        min-width: 105px;
    }
}

@media (max-width: 600px) {
    .pricing-section {
        padding: calc(var(--section-padding) * 0.25) min(3vw, 0.75rem);
    }

    .pricing-cards {
        width: min(98vw, 380px);
    }

    .pricing-card {
        padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(0.25rem, 1vw, 0.5rem);
    }

    .pricing-features ul {
        width: min(95%, 280px);
    }

    .comparison-table-wrapper {
        padding: 0 0.5rem;
    }

    .comparison-table td:first-child {
        width: 50%;
        padding-right: 0.5rem;
        font-size: 0.9rem;
    }

    .comparison-table td:not(:first-child) {
        width: 16.67%;
        font-size: 0.85rem;
    }

    .comparison-cta .cta-button {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
        min-width: 85px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: calc(var(--section-padding) * 0.5) max(0.5rem, 1vw);
    }

    .pricing-cards {
        width: 100%;
        max-width: 360px;
    }

    .pricing-card {
        padding: 1.25rem 0.25rem;
    }

    .pricing-features ul {
        width: min(95%, 260px);
        padding-left: 0.75rem;
    }

    .price .amount {
        font-size: clamp(2rem, 3.5vw, 2.25rem);
    }

    .pricing-rate {
        font-size: clamp(0.8rem, 1.25vw, 0.9rem);
    }

    .comparison-table-wrapper {
        padding: 0 0.35rem;
    }

    .comparison-table td:first-child {
        width: 52%;
        padding-right: 0.35rem;
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .comparison-table td:not(:first-child) {
        width: 16%;
        font-size: 0.8rem;
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }

    .comparison-cta td {
        padding: 1rem 0.15rem;
    }

    .comparison-cta .cta-button {
        padding: 0.5rem 0.35rem;
        font-size: 0.75rem;
        min-width: 75px;
    }
}

@media (max-width: 360px) {
    .comparison-table-wrapper {
        padding: 0 0.25rem;
    }

    .comparison-table td:first-child {
        width: 54%;
        padding-right: 0.25rem;
        font-size: 0.8rem;
        line-height: 1.15;
    }

    .comparison-table td:not(:first-child) {
        width: 15.33%;
        font-size: 0.75rem;
    }

    .comparison-cta td {
        padding: 0.75rem 0.1rem;
    }

    .comparison-cta .cta-button {
        padding: 0.4rem 0.25rem;
        font-size: 0.7rem;
        min-width: 70px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-emphasis {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
}

.pricing-emphasis h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.glow-text {
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 4px;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 1px var(--accent-color);
    }
    50% {
        text-shadow: 0 0 2px var(--accent-color);
    }
    100% {
        text-shadow: 0 0 1px var(--accent-color);
    }
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 1rem 0;
    font-style: italic;
}

/* Navigation Active State */
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active:hover {
    color: var(--accent-color);
    opacity: 0.9;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-section .section-title:not(:first-child) {
    margin-top: 4rem;
}

/* Add this at the root level */
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.pricing-hero, .pricing-section, .faq-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hero Section Buttons */
.pricing-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.pricing-hero .hero-button,
.pricing-hero .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    min-width: 180px;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-hero .cta-button.primary,
.pricing-hero .cta-button.secondary {
    min-width: 180px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .pricing-hero .hero-buttons {
        gap: 0.75rem;
    }

    .pricing-hero .hero-button,
    .pricing-hero .cta-button {
        padding: 0.9rem 1.25rem;
        font-size: 1.1rem;
        min-width: 160px;
    }

    .pricing-hero .cta-button.primary,
    .pricing-hero .cta-button.secondary {
        min-width: 160px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero .hero-buttons {
        gap: 0.5rem;
    }

    .pricing-hero .hero-button,
    .pricing-hero .cta-button {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        min-width: 140px;
    }

    .pricing-hero .cta-button.primary,
    .pricing-hero .cta-button.secondary {
        min-width: 140px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .pricing-hero .hero-buttons {
        gap: 0.35rem;
    }

    .pricing-hero .hero-button,
    .pricing-hero .cta-button {
        padding: 0.7rem 0.75rem;
        font-size: 0.95rem;
        min-width: 120px;
    }

    .pricing-hero .cta-button.primary,
    .pricing-hero .cta-button.secondary {
        min-width: 120px;
        font-size: 0.95rem;
    }
}

/* Feature Comparison Grid Buttons */
.comparison-table .feature-grid-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
    min-width: 110px;
    max-width: 90%;
    width: auto;
    white-space: nowrap;
    margin: 0 auto;
    border-radius: 8px;
}

.comparison-cta td {
    padding: 2rem 1.5rem;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .comparison-table .feature-grid-button {
        padding: 0.7rem 0.4rem;
        font-size: 0.85rem;
        min-width: 95px;
        max-width: 85%;
    }
    
    .comparison-cta td {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .comparison-table .feature-grid-button {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
        min-width: 85px;
        max-width: 80%;
    }
    
    .comparison-cta td {
        padding: 1.25rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .comparison-table .feature-grid-button {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
        min-width: 75px;
        max-width: 75%;
    }
    
    .comparison-cta td {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 360px) {
    .comparison-table .feature-grid-button {
        padding: 0.4rem 0.2rem;
        font-size: 0.7rem;
        min-width: 65px;
        max-width: 70%;
    }
    
    .comparison-cta td {
        padding: 0.75rem 0.4rem;
    }
}

/* Ensure table cells have proper spacing */
.comparison-table td:not(:first-child) {
    width: 18.33%;
    padding: 1rem;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .comparison-table td:not(:first-child) {
        width: 17.33%;
        padding: 0.75rem;
    }
}

@media (max-width: 600px) {
    .comparison-table td:not(:first-child) {
        width: 16.67%;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .comparison-table td:not(:first-child) {
        width: 16%;
        padding: 0.4rem;
    }
}

@media (max-width: 360px) {
    .comparison-table td:not(:first-child) {
        width: 15.33%;
        padding: 0.3rem;
    }
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-color);
    animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 102, 255, 0.4), 0 0 30px rgba(0, 102, 255, 0.2), 0 0 50px rgba(0, 102, 255, 0.1);
        color: var(--text-color);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.7), 0 0 40px rgba(0, 102, 255, 0.4), 0 0 60px rgba(0, 102, 255, 0.2);
        color: #ffffff;
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 102, 255, 0.4), 0 0 30px rgba(0, 102, 255, 0.2), 0 0 50px rgba(0, 102, 255, 0.1);
        color: var(--text-color);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1.15rem;
    }
}

/* Add mobile nav styles for consistency */
@media (max-width: 768px) {
    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .nav-links a {
        font-size: 1.2rem;
    }
} 