/* Landing Page Styles */

/* Global Landing Layout */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.landing-header {
    position: fixed;
    padding: 0 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.logo-text {
    font-size: 1.1rem;
}

.landing-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2c3e50;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #fff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.hero-actions .btn-secondary:hover {
    background: #f8f9fa;
    color: #5a6fd8;
    border-color: #5a6fd8;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.trust-bullets {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-icon {
    color: #28a745;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* New User Welcome Section */
.new-user-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-bottom: 1px solid #e0e7ef;
}

.new-user-section.hidden {
    display: none !important;
}

.new-user-card {
    max-width: 800px;
    margin: 0 auto;
}

.new-user-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e7ef;
    transition: all 0.3s ease;
}

.new-user-content:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.new-user-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.new-user-icon svg {
    width: 24px;
    height: 24px;
}

.new-user-text {
    flex: 1;
}

.new-user-text h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

.new-user-text p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-new-user {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.btn-new-user svg {
    transition: transform 0.2s ease;
}

.btn-new-user:hover svg {
    transform: translateX(4px);
}

/* Responsive design for new user section */
@media (max-width: 768px) {
    .new-user-section {
        padding: 1.5rem 0;
    }
    
    .new-user-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .new-user-text h3 {
        font-size: 1.1rem;
    }
    
    .new-user-text p {
        font-size: 0.9rem;
    }
    
    .btn-new-user {
        width: 100%;
        justify-content: center;
    }
}

/* Problem-Solution Section */
.problem-solution-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.problem h2,
.solution h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem p,
.solution p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.benefit-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.benefit-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefits-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.benefits-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.benefits-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-cta .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.benefits-cta .btn-primary:hover {
    background: #f8f9fa;
    color: #5a6fd8;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Section titles in purple backgrounds */
.problem-solution-section .section-title,
.quick-start-section .section-title,
.benefits-section .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.benefits-section .section-subtitle {
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-note {
    color: #28a745;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Quick Start Section */
.quick-start-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-start-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.quick-start-steps {
    flex: 1;
}

.quick-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.quick-step:last-child {
    border-bottom: none;
}

.step-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    text-align: center;
}

.quick-start-cta {
    flex-shrink: 0;
}

.quick-start-section .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.quick-start-section .btn-primary:hover {
    background: #f8f9fa;
    color: #5a6fd8;
    transform: translateY(-2px);
}

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quote-block {
    text-align: center;
}

blockquote {
    margin: 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

blockquote:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
}

cite {
    color: #6c757d;
    font-weight: 500;
    font-style: normal;
}


/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.final-cta-section p,
.final-cta-section .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-section .btn-primary {
    border: none;
}

.final-cta-section .btn-primary:hover {
    transform: translateY(-2px);
}

.final-cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.final-cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

.cta-button-group {
    flex: 1;
    max-width: 420px;
    min-width: 280px;
    display: flex;
}

.cta-button-group.hidden {
    display: none !important;
}

.cta-equal {
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.cta-equal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-equal:hover::before {
    left: 100%;
}

.cta-equal:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(102, 126, 234, 0.3);
}

.cta-equal:focus {
    outline: none;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(102, 126, 234, 0.3);
    transform: translateY(-6px) scale(1.02);
}

.cta-equal:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.cta-equal:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.cta-equal strong {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.cta-equal:hover strong {
    color: #667eea;
}

.cta-description {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.5;
    margin-top: 0.5rem;
    color: #6c757d;
    transition: opacity 0.3s ease;
}

.cta-equal:hover .cta-description {
    opacity: 0.9;
}

/* New CTA Card Container Styles */
.cta-card-container {
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-card-container:hover::before {
    left: 100%;
}

.cta-card-container:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(102, 126, 234, 0.3);
}

.cta-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.cta-card-container .cta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.cta-card-container:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.cta-card-container strong {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.cta-card-container:hover strong {
    color: #667eea;
}

.cta-card-container .cta-description {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    color: #6c757d;
    transition: opacity 0.3s ease;
}

.cta-card-container:hover .cta-description {
    opacity: 0.9;
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
    text-decoration: none;
}

.final-cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.final-cta-section .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Footer */
.landing-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-actions .contact-link {
    color: rgba(255, 255, 255, 0.8);
}

.footer-actions .contact-link:hover {
    color: white;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .landing-nav {
        order: -1;
        gap: 1rem;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-bullets {
        justify-content: center;
        gap: 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .benefits-cta {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .benefits-cta h3 {
        font-size: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-start-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .final-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .cta-button-group {
        width: 100%;
        max-width: 380px;
        min-width: auto;
    }
    
    .cta-equal {
        min-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .cta-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .cta-equal strong {
        font-size: 1.2rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-equal:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .cta-card-container {
        min-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .cta-card-container .cta-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .cta-card-container strong {
        font-size: 1.2rem;
    }
    
    .cta-card-container .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .cta-card-container:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-bullets {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .cta-button-group {
        max-width: 320px;
    }
    
    .cta-equal {
        min-height: 240px;
        padding: 1.75rem 1.25rem;
    }
    
    .cta-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .cta-equal strong {
        font-size: 1.1rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-card-container {
        min-height: 240px;
        padding: 1.75rem 1.25rem;
    }
    
    .cta-card-container .cta-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .cta-card-container strong {
        font-size: 1.1rem;
    }
    
    .cta-card-container .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-width: 130px;
    }
}

/* What You Need Section */
.what-you-need-section {
    padding: 4rem 0;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.requirement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.requirement-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.requirement-card p {
    color: #6c757d;
    line-height: 1.6;
}

.try-sample-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f0f7ff;
    border-radius: 12px;
    border: 2px dashed #667eea;
}

.try-sample-cta p {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.hero-sub-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.no-signup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #e8f5e8;
    color: #155724;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.no-signup-badge svg {
    color: #28a745;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.detail-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-primary,
.cta-secondary {
    flex: 1;
}

.cta-footer {
    margin-top: 2rem;
    text-align: center;
}

.cta-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-footer a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.cta-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Complete Features Overview Section */
.complete-features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid-comprehensive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-comprehensive {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card-comprehensive:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card-comprehensive h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card-comprehensive p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-sub-list li {
    color: #495057;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-sub-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Capabilities Deep Dive Section */
.capabilities-deep-dive-section {
    padding: 4rem 0;
    background: white;
}

.capabilities-tabs {
    margin-top: 3rem;
}

.capability-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.capability-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.capability-text {
    flex: 1;
}

.capability-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.capability-text p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.capability-features li {
    color: #495057;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.capability-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .try-sample-cta {
        padding: 1.5rem;
    }
    
    .hero-sub-actions {
        margin-top: 1rem;
    }
    
    .no-signup-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        flex: 1;
    }
    
    .features-grid-comprehensive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .capability-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .capability-icon {
        width: 56px;
        height: 56px;
    }
    
    .capability-features {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
