/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Container - Center content with max-width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Base Styles */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b48ff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #6b48ff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #6b48ff, #00ddeb);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-weight: 400;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.trust-divider {
    opacity: 0.5;
}

.hero-cta-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-guarantee {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.95;
}

.trust-indicator {
    font-size: 0.9rem !important;
    opacity: 0.8;
    font-style: italic;
    margin-top: 1rem !important;
}

/* CTA Button */
.cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff5733;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.3);
}

.btn-primary {
    background: #ff5733;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff6b4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #fff;
    color: #6b48ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff5733, #ff6b4a);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 87, 51, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 87, 51, 0.3);
    background: linear-gradient(135deg, #ff6b4a, #ff5733);
}

.pricing-plan .cta-button {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1.1em;
}

.pricing-plan.popular .cta-button {
    background: linear-gradient(135deg, #ff5733, #ff6b4a);
}

.pricing-plan.popular .cta-button:hover {
    background: linear-gradient(135deg, #ff6b4a, #ff5733);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Why CTR Section */
.why-ctr {
    background: #f8f9fa;
}

.why-ctr-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-ctr-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-ctr-content p:last-child {
    margin-bottom: 0;
}

/* CTR Proof Section */
.ctr-proof {
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.proof-image {
    margin: 0 auto 1rem auto;
    max-width: 600px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.proof-image img {
    width: 100%;
    height: auto;
    display: block;
}

.proof-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Case Studies Gallery Styles */
.case-studies-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.case-study-item {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.thumbnail-container {
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.case-study-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.thumbnail-container:hover .case-study-thumbnail {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 72, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-overlay i {
    color: white;
    font-size: 1.5rem;
}

.thumbnail-container:hover .thumbnail-overlay {
    opacity: 1;
}

.case-study-caption {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

#modalCaption {
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
}

.close {
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 35px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Responsive Design for CTR Proof */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-divider {
        display: none;
    }

    .hero-cta-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-container .cta {
        width: 100%;
    }

    /* Case Study Mobile */
    .case-study-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Services Grid Mobile - already handled above with @media 900px */

    /* Benefits Grid Mobile - already handled with @media 640px */

    .ctr-proof {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .case-studies-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .case-study-thumbnail {
        height: 120px;
    }

    .case-study-caption {
        font-size: 0.8rem;
    }

    .proof-image {
        width: 100%;
        max-width: 500px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }

    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    #modalCaption {
        width: 90%;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .case-studies-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .case-study-thumbnail {
        height: 100px;
    }

    .case-study-caption {
        font-size: 0.75rem;
    }

    .proof-image {
        max-width: 400px;
    }
}

/* Benefits Section */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-grid div {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-grid div:hover {
    transform: translateY(-5px);
}

.benefit-grid h3 {
    color: #6b48ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-grid p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Grid - for the "Why Buy From Us?" section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefits-grid .benefit {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefits-grid .benefit:hover {
    transform: translateY(-5px);
}

.benefits-grid .benefit h3 {
    color: #6b48ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefits-grid .benefit p {
    color: #666;
    line-height: 1.6;
}

/* Case Study Section */
.case-study-section {
    background: #f9f9f9;
}

.case-study-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.case-study-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.case-study-content h3 {
    font-size: 1.8rem;
    color: #6b48ff;
    margin-bottom: 1rem;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.results-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.case-study-quote {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid #6b48ff;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.case-study-quote blockquote {
    font-style: italic;
    margin: 0;
}

.case-study-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.case-study-cta-text {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Benefits Section Enhanced */
.benefits-section {
    background: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.benefit-card .benefit-icon {
    font-size: 3rem;
    color: #6b48ff;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.benefit-stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b48ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
}

/* Services Section Enhanced */
.services-section {
    background: #f9f9f9;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5733;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card .service-icon {
    font-size: 3rem;
    color: #6b48ff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
}

.service-pricing {
    text-align: center;
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #6b48ff;
}

.price-period {
    font-size: 1.2rem;
    color: #999;
}

.service-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-cta .cta {
    width: 100%;
    text-align: center;
}

.service-ideal {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section Enhanced */
.faq-section {
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.faq-toggle:hover {
    background: #fff;
}

.faq-icon {
    color: #6b48ff;
    font-size: 1.5rem;
}

.faq-icon-toggle {
    margin-left: auto;
    font-size: 1.5rem;
    color: #6b48ff;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: #666;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-cta .btn-secondary {
    background: #6b48ff;
    color: #fff;
    border: 2px solid #6b48ff;
    box-shadow: 0 4px 15px rgba(106, 72, 255, 0.3);
}

.faq-cta .btn-secondary:hover {
    background: #5a3ee8;
    border-color: #5a3ee8;
    color: #fff;
    box-shadow: 0 6px 20px rgba(106, 72, 255, 0.4);
}

/* What We Don't Do Section */
.dont-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dont-do-item {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.dont-do-item:hover {
    transform: translateY(-5px);
}

.dont-do-item h3 {
    color: #ff5733;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dont-do-item p {
    color: #666;
    line-height: 1.6;
}

.dont-do-icon {
    font-size: 2.5rem;
    color: #ff5733;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.dont-do-item:hover .dont-do-icon {
    transform: scale(1.1);
}

/* Set Your Expectations Section */
.expectations-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.expectations-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.expectations-content p:last-child {
    margin-bottom: 0;
}

/* Icon Styles */
.logo i {
    margin-right: 0.5rem;
    color: #6b48ff;
}

nav a i {
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #6b48ff;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-grid div:hover .benefit-icon {
    transform: scale(1.1);
}

.service-icon {
    font-size: 3rem;
    color: #6b48ff;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover .service-icon {
    transform: scale(1.1);
}

.cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #6b48ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Icon Styles */
.faq-icon {
    font-size: 2rem;
    color: #6b48ff;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
}

/* Services Section */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card h3 {
    color: #6b48ff;
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #6b48ff;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.plan {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    border: 2px solid #6b48ff;
    position: relative;
}

.plan.featured {
    border: 2px solid #ff5733;
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 87, 51, 0.2);
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.plan.featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 51, 0.25);
}

.plan h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.plan .price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5733;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.plan .price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.plan ul {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.plan ul li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    line-height: 1.4;
}

.plan ul li i {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsive design for pricing section */
@media (max-width: 768px) {
    .pricing-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .plan {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .plan.featured {
        transform: scale(1);
    }
    
    .plan.featured:hover {
        transform: translateY(-5px);
    }
    
    .plan h3 {
        font-size: 1.6rem;
    }
    
    .plan .price {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    color: #666;
    font-style: normal;
}

/* Proof Section */
.proof {
    background: #f8f9fa;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.proof-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 0.5rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        text-align: left;
    }

    nav ul.show {
        display: block;
    }

    nav ul li {
        padding: 0.5rem 1rem;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        display: block;
    }

    nav a i {
        width: 1rem;
        margin-right: 0.5rem;
        text-align: center;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .plan.featured {
        transform: none;
    }

    .why-ctr-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .benefit-grid div,
    .faq-item {
        padding: 1.5rem;
    }

    .benefit-grid h3,
    .faq-item h3 {
        font-size: 1.2rem;
    }

    .benefit-icon,
    .service-icon,
    .faq-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.benefit-grid div,
.card,
.feature-item,
.plan,
.testimonial,
.faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Value Table Styles */
.value-table {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin: 2rem 0;
}

.value-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.value-row:last-child {
    border-bottom: none;
}

.value-row.total-row {
    background: linear-gradient(135deg, #6b48ff, #00ddeb);
    color: #fff;
    font-weight: 600;
}

.value-item {
    font-weight: 500;
    color: #333;
}

.value-row.total-row .value-item {
    color: #fff;
}

.value-price {
    font-weight: 600;
    color: #6b48ff;
    text-align: center;
}

.value-row.total-row .value-price {
    color: #fff;
}

.value-benefit {
    color: #666;
    font-size: 0.9rem;
    text-align: right;
}

.value-row.total-row .value-benefit {
    color: #fff;
}

.cta-subtitle {
    font-size: 0.9rem !important;
    opacity: 0.8;
    margin-top: 1rem !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .value-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .value-benefit {
        text-align: center;
    }
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #6b48ff, #00ddeb);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.guarantee h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 3rem;
    color: #fff;
}

.guarantee-text {
    flex: 1;
    text-align: left;
}

.guarantee-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.guarantee-text p:last-child {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .guarantee {
        padding: 3rem 1rem;
    }
    
    .guarantee h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .guarantee-icon i {
        font-size: 2.5rem;
    }
}

/* Pain Points Section */
.pain-points {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-point {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 2.5rem;
    color: #ff5733;
    margin-bottom: 1.5rem;
}

/* Solution Section */
.solution {
    padding: 5rem 2rem;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

.solution-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight {
    font-size: 1.25rem;
    color: #6b48ff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.daily-tasks {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
    color: #333;
}

.daily-tasks p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.daily-tasks ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.daily-tasks li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.daily-tasks li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #6b48ff;
}

/* Enhanced Pricing Section */
.plan {
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ff5733;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan ul li i {
    color: #6b48ff;
}

/* Enhanced Testimonials */
.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6b48ff, #00ddeb);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pain-points-grid,
    .solution-content {
        padding: 0 1rem;
    }

    .daily-tasks {
        padding: 1.5rem;
    }

    .popular-tag {
        top: -10px;
        right: -10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* SERP CTR specific styles */
.serp-case-study {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.serp-case-study .case-study-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.serp-case-study .case-study-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.serp-cta {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ff5733, #ff6b4a);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255, 87, 51, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.serp-cta h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.serp-cta p {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 600px;
}

.serp-cta .cta-button {
    min-width: 250px;
}

@media (max-width: 768px) {
    .serp-cta {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
    }
    
    .serp-cta h2 {
        font-size: 2rem;
    }
    
    .serp-cta p {
        font-size: 1.1rem;
    }
}

/* SERP CTR specific pricing styles */
.serp-pricing {
    background: #f8f9fa;
    padding: 5rem 0;
}

.serp-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.serp-pricing .pricing-plan {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
}

.serp-pricing .pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.serp-pricing .pricing-plan h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.serp-pricing .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff5733;
    margin: 1.5rem 0;
}

.serp-pricing .price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.serp-pricing .pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.serp-pricing .pricing-plan ul li {
    margin: 1rem 0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.serp-pricing .pricing-plan ul li i {
    color: #ff5733;
}

.serp-pricing .pricing-plan.popular {
    transform: scale(1.05);
    border: 2px solid #ff5733;
    z-index: 1;
}

.serp-pricing .pricing-plan.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.serp-pricing .popular-tag {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff5733;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 87, 51, 0.3);
}

@media (max-width: 768px) {
    .serp-pricing {
        padding: 3rem 1rem;
    }
    
    .serp-pricing .pricing-grid {
        padding: 0 1rem;
    }
    
    .serp-pricing .pricing-plan {
        padding: 2rem 1.5rem;
    }
    
    .serp-pricing .pricing-plan.popular {
        transform: scale(1);
    }
    
    .serp-pricing .pricing-plan.popular:hover {
        transform: translateY(-10px);
    }
}

/* SERP CTR specific testimonials styles */
.serp-testimonials {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.serp-testimonials .testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.serp-testimonials .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.serp-testimonials .stars {
    color: #ff5733;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.serp-testimonials .testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.serp-testimonials .testimonial cite {
    display: block;
    color: #666;
    font-weight: 600;
    font-style: normal;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .serp-testimonials .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .serp-testimonials {
        padding: 3rem 1rem;
    }
    
    .serp-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .serp-testimonials .testimonial {
        padding: 1.5rem;
    }
}

/* SERP CTR specific footer styles */
.serp-footer {
    background: #f8f9fa;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.serp-footer .footer-bottom {
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .serp-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a:hover i.fa-facebook {
    color: #1877f2;
}

.social-links a:hover i.fa-twitter {
    color: #1da1f2;
}

.social-links a:hover i.fa-soundcloud {
    color: #ff5500;
}

.social-links a:hover i.fa-youtube {
    color: #ff0000;
}

@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
}

.solution-image {
    margin: 2rem auto;
    text-align: center;
    max-width: 100%;
}

.solution-image img.ctr-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .solution-image {
        margin: 1.5rem auto;
    }
}

/* Terms of Service Page Styles */
.terms-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.terms-content h1 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 40px;
    text-align: center;
}

.terms-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
    color: #2563eb;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-section h3 {
    color: #2563eb;
    font-size: 1.4rem;
    margin: 20px 0 15px;
    font-weight: 600;
}

.terms-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #4a5568;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 20px;
}

.terms-section ul li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a5568;
}

.terms-section ul li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

@media (max-width: 768px) {
    .terms-content {
        margin: 60px auto;
        padding: 0 15px;
    }

    .terms-content h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }

    .terms-section h3 {
        font-size: 1.2rem;
    }
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    text-align: center;
}

.video-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-section h2 {
    margin-bottom: 2.5rem;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 1rem;
    }
    
    .video-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .video-container iframe {
        border-radius: 8px;
    }
} 