@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1c262f;
    min-height: 100vh;
    padding: 0;
    color: #ffffff;
    line-height: 1.7;
}

/* Simplified Header - Clean & Minimal */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1c262f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 65px;
    width: auto;
}

.account-icon {
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.2s ease;
}

.account-icon:hover {
    color: #0dc5a1;
    background: rgba(13, 197, 161, 0.1);
}

/* Mobile responsive header */
@media (max-width: 768px) {
    .header-container {
        height: 65px;
        padding: 0 16px;
    }
    
    .header-logo {
        height: 50px;
    }
    
    .account-icon {
        font-size: 20px;
        padding: 6px;
    }
}

.main-content {
    padding-top: 80px;
}

/* Simple Hero Section - Clean & Trustworthy */
.hero {
    position: relative;
    background-image: url('../grids/hero-image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Fallback for browsers that don't support background-attachment: fixed */
@supports not (background-attachment: fixed) {
    .hero {
        background-attachment: scroll;
    }
}

/* iOS Safari fallback - doesn't handle fixed backgrounds well */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-overlay {
    text-align: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

/* Removed subtitle paragraph for cleaner look */

.hero-cta {
    display: inline-block;
    background: #0dc5a1;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta:hover {
    background: #0aa08b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 197, 161, 0.4);
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 56px;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 65px;
        background-attachment: scroll; /* Fallback for mobile */
        background-size: cover; /* Better for small screens */
    }
    
    .hero-overlay {
        padding: 40px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
        border-radius: 12px;
        backdrop-filter: blur(6px);
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    .hero-cta {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Clean How It Works Section */
.how-it-works {
    background: #ffffff;
    padding: 80px 24px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 48px;
}

.how-it-works-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.how-it-works-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.video-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.video-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.play-button {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 3;
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 24px 16px 16px;
    z-index: 2;
}

.video-title-overlay h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Video info styles removed - text now overlaid on thumbnails */

.how-it-works-cta {
    text-align: center;
}

.how-it-works-cta-btn {
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.how-it-works-cta-btn:hover {
    background: #0aa08b;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 16px;
    }
    
    .how-it-works-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .how-it-works-header p {
        font-size: 16px;
        text-align: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .video-title-overlay {
        padding: 20px 12px 12px;
    }
    
    .video-title-overlay h3 {
        font-size: 16px;
    }
    
    .play-overlay {
        width: 50px;
        height: 50px;
    }
    
    .play-button {
        font-size: 16px;
    }
}

/* Clean Pricing Section */
.pricing {
    background: #ffffff;
    padding: 80px 0;
    margin: 0;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.pricing-header p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.billing-toggle {
    display: inline-flex;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.period-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.period-btn.active {
    background: white;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.toggle-btn {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.toggle-btn.active {
    background: #0dc5a1;
    color: white;
    border-color: #111827;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.pricing-card.featured {
    border-color: #0dc5a1;
    box-shadow: 0 4px 20px rgba(13, 197, 161, 0.15);
    border-width: 2px;
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 30px rgba(13, 197, 161, 0.25);
    transform: translateY(-3px);
}

.card-header {
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.card-header p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.popular-badge {
    background: #0dc5a1;
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.card-price {
    margin-bottom: 32px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    display: block;
    margin-bottom: 4px;
}

.period {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

.card-features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.plan-badge {
    background: #0dc5a1;
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 4px;
}

.price-section {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    display: block;
    margin-bottom: 8px;
}

.currency {
    font-size: 18px;
    font-weight: 400;
    color: #111827;
    vertical-align: top;
}

#price-amount {
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    margin: 0 2px;
}

#price-period {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 2px;
}

.savings {
    font-size: 14px;
    color: #059669;
    font-weight: 500;
    margin-bottom: 8px;
}

.price-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.features-section {
    margin-bottom: 32px;
}

.features h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

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

.features li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: 600;
}

.subscribe-btn {
    width: 100%;
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.subscribe-btn:hover {
    background: #0aa08b;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.card-header p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.card-price {
    margin-bottom: 32px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    display: block;
}

.yearly-price {
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    display: none;
}

.period {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.card-features li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: 600;
}

.pricing-cta {
    width: 100%;
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.pricing-cta:hover {
    background: #0aa08b;
}

.pricing-card.featured .pricing-cta {
    background: #0dc5a1;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Clean Testimonials Section */
.testimonials {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.testimonials-cta {
    text-align: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.025em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.testimonial p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    font-size: 14px;
    color: #111827;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #6b7280;
}

.testimonials-cta-btn {
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.testimonials-cta-btn:hover {
    background: #0aa08b;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 16px;
    }
    
    .testimonials-header h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .testimonial {
        padding: 24px;
    }
}

/* Clean FAQ Section */
.faq {
    background: #1c262f;
    padding: 80px 24px;
    width: 100%;
}

.faq-header, .faq-list, .faq-cta {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.faq-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
}

.faq-list {
    margin-bottom: 48px;
}

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

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

.faq-question {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    list-style: none;
    line-height: 1.5;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: #0dc5a1;
}

.expand-icon {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .expand-icon {
    transform: rotate(45deg);
    color: #0dc5a1;
}

.faq-answer {
    padding-bottom: 20px;
    text-align: left;
}

.faq-answer p {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.6;
    margin: 0;
    max-width: 70ch;
}

.faq-cta {
    text-align: center;
}

.faq-cta-btn {
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.faq-cta-btn:hover {
    background: #0aa08b;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 16px;
    }
    
    .faq-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .faq-header p {
        font-size: 16px;
        text-align: center;
    }
    
    .faq-question {
        padding: 16px 0;
        font-size: 15px;
    }
    
    .expand-icon {
        font-size: 16px;
        margin-left: 12px;
    }
    
    .faq-answer {
        padding-bottom: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Minimal Contact Section */
.contact {
    background: #ffffff;
    padding: 80px 24px;
    text-align: center;
    width: 100%;
}

.contact-header, .contact-form, .contact-cta {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.contact-header p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form {
    margin-bottom: 48px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn:hover {
    background: #0aa08b;
    transform: translateY(-1px);
}

.contact-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-cta-btn {
    background: #0dc5a1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.contact-cta-btn:hover {
    background: #0aa08b;
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 16px;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-header p {
        text-align: center;
        font-size: 16px;
    }
    
    .contact-form {
        margin: 0 auto 32px;
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .contact-submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Timeline Section */
.timeline-section {
    background: #1c262f;
    padding: 80px 24px;
    width: 100%;
}

.timeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.timeline-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.timeline-header p {
    font-size: 18px;
    color: #a0a0a0;
    margin: 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Central timeline line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #e5e7eb;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: transparent;
    width: 50%;
    margin-bottom: 40px;
}

/* Timeline dots */
.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #0dc5a1;
    border-radius: 50%;
    top: 20px;
    border: 4px solid #f8f9fa;
    z-index: 1;
}

/* Left timeline items */
.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

/* Right timeline items */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

/* Timeline content */
.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.timeline-year {
    display: inline-block;
    background: #0dc5a1;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Timeline images */
.timeline-image {
    margin: 12px 0 16px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.timeline-img:hover {
    transform: scale(1.02);
}

/* Current version styling */
.timeline-dot.current {
    background: #0dc5a1;
    border-color: #f8f9fa;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Future vision styling */
.timeline-item.future {
    opacity: 0.8;
}

.future-content {
    border: 2px dashed #d1d5db;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.future-year {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.timeline-dot.future-dot {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #f8f9fa;
    position: relative;
}

.timeline-dot.future-dot::after {
    content: '✨';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 16px;
    }
    
    .timeline-header h2 {
        font-size: 28px;
    }
    
    .timeline-header p {
        font-size: 16px;
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }
    
    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 12px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 16px;
    }
}

/* Clean Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 80px;
    padding: 60px 24px 40px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    text-align: left;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #111827;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 16px 32px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .footer-section h4 {
        margin-bottom: 16px;
    }
    
    .footer-section ul {
        text-align: center;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-container {
        padding: 0 16px;
    }
    
    .pricing-header h2 {
        font-size: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .billing-toggle {
        scale: 0.9;
    }
}

.header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.header h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Plan Toggle */
.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.toggle-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
    flex: 1;
    font-family: 'Josefin Sans', sans-serif;
}

.toggle-btn.active {
    background: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
    box-shadow: 0 2px 8px rgba(43, 108, 176, 0.15);
}

.toggle-btn:hover:not(.active) {
    background: #f7fafc;
    border-color: #cbd5e0;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.period-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #4a5568;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
}

.period-btn.active {
    background: #edf4fc;
    border-color: #2b6cb0;
    color: #2b6cb0;
    font-weight: 600;
}

.period-btn:hover:not(.active) {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.badge {
    background: #48bb78;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 6px;
    font-weight: 600;
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 15px 30px rgba(43, 108, 176, 0.05);
    border-color: #cbd5e0;
}

.price-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #1a202c;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.8rem;
    color: #666;
    margin-right: 5px;
    font-weight: 300;
}

#price-amount {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1c262f;
}

#price-period {
    font-size: 1.2rem;
    color: #666;
    margin-left: 8px;
    font-weight: 300;
}

.savings {
    color: #0dc5a1;
    font-weight: 500;
    margin-bottom: 35px;
    font-size: 1rem;
}

/* Features */
.features {
    text-align: left;
    margin: 35px 0;
}

.features h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
    color: #1c262f;
    font-weight: 500;
}

.features ul {
    list-style: none;
    max-width: 450px;
    margin: 0 auto;
}

.features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(28, 38, 47, 0.1);
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0dc5a1;
    font-weight: 600;
}

/* Subscribe Button */
.subscribe-btn {
    width: 100%;
    max-width: 400px;
    padding: 16px 32px;
    background: #0dc5a1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: #0ba688;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(13, 197, 161, 0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.trial-info {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.trust-badges p {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ */
/* Removed duplicate FAQ styles that were overriding dark background */
}

.faq h3 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.8rem;
    color: #1c262f;
    font-weight: 400;
}

/* FAQ Details Styling - Removed conflicting styles */
}

summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
    color: #0dc5a1;
    font-size: 0.8rem;
}

details[open] summary::before {
    transform: rotate(90deg);
}

details p {
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
    padding-left: 25px;
    font-weight: 300;
}

/* Email Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 38, 47, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal h3 {
    color: #1c262f;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 400;
}

.modal p {
    color: #666;
    margin-bottom: 25px;
    font-weight: 300;
}

.email-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 25px;
    font-family: 'Josefin Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #0dc5a1;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-btn.primary {
    background: #2b6cb0;
    color: white;
}

.modal-btn.primary:hover {
    background: #1e4e8c;
}

.modal-btn.secondary {
    background: white;
    color: #4a5568;
    border: 1px solid #cbd5e0;
}

.modal-btn.secondary:hover {
    background: #f7fafc;
    border-color: #a0aec0;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #666;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 20px 15px;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    #price-amount {
        font-size: 3rem;
    }
    
    .price-card {
        padding: 40px 25px;
    }
    
    .plan-toggle {
        max-width: 100%;
    }
    
    .billing-toggle {
        flex-direction: column;
        align-items: center;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .period-btn {
        width: 100%;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-content {
        padding: 30px 25px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* NEW COMPREHENSIVE PAGE STYLES */

/* Container Styles */
.demo-section .section-container {
    background: white;
    border-radius: 20px;
    padding: 80px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.section-container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 15px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* CTA Button Styles */
.cta-primary {
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    box-shadow: 0 4px 15px rgba(13, 197, 161, 0.3);
}

.cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.25);
}

.cta-secondary {
    background: white;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.cta-secondary:hover {
    background: #2b6cb0;
    color: white;
}

.cta-tertiary {
    background: rgba(13, 197, 161, 0.1);
    color: #0dc5a1;
    border: 1px solid rgba(13, 197, 161, 0.3);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.cta-tertiary:hover {
    background: rgba(13, 197, 161, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
    letter-spacing: -0.5px;
}

/* Demo Video Section */
.demo-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 50px;
}

.section-header-left .section-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header-left .section-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.85;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(13, 197, 161, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background: #0dc5a1;
}

.video-content {
    padding: 20px;
}

.video-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 500;
}

.video-content p {
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.video-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.video-badge {
    font-size: 0.85rem;
    color: #2b6cb0;
    padding: 6px 12px;
    background: #edf4fc;
    border-radius: 16px;
    border: 1px solid #2b6cb0;
    font-weight: 600;
}

.video-cta {
    text-align: left;
}

.cta-supporting {
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.7;
    font-style: italic;
}

/* Testimonials Sections */
.testimonials-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.testimonials-section .section-container {
    background: white;
    border-radius: 20px;
    padding: 80px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.testimonial-content {
    padding: 24px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.quote-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.testimonial-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.practice-revolution {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.clinic-essential {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.perfect-precision {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testimonial-results {
    text-align: right;
}

.rating {
    font-size: 1rem;
    margin-bottom: 6px;
}

.result-metric {
    font-size: 0.85rem;
    color: #0dc5a1;
    font-weight: 500;
    display: block;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.result-metric {
    text-align: right;
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #0dc5a1;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Enhanced Testimonial CTA */
.testimonial-cta-enhanced {
    margin-top: 60px;
    padding: 40px;
    background: rgba(13, 197, 161, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(13, 197, 161, 0.2);
    text-align: left;
}

.cta-headline {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: white;
}

.cta-subtext {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-proof-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.proof-item strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0dc5a1;
    margin-bottom: 4px;
}

.proof-item span {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

.testimonial-cta {
    text-align: center;
}

/* Enhanced Pricing Section */
.pricing-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.pricing-section .section-container {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: 20px;
    padding: 80px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pricing-controls {
    margin-top: 40px;
    margin-bottom: 50px;
}

.control-group {
    margin-bottom: 30px;
}

.control-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 12px;
    text-align: left;
}

.plan-toggle, .billing-toggle, .period-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto;
}

.pricing-display {
    display: flex;
    justify-content: center;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-badge {
    background: linear-gradient(135deg, #0dc5a1 0%, #0aa08b 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-description {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 12px;
    font-style: italic;
}

.features-section {
    margin-bottom: 30px;
}

.features h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2b6cb0;
    font-weight: 600;
}

.features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
    color: #4a5568;
}

.feature-icon {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    opacity: 1;
}

.cta-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.trial-info {
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight {
    color: #0dc5a1;
    font-weight: 600;
}

.cta-section .trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-section .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-section .trust-icon {
    font-size: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.additional-cta {
    text-align: center;
    margin: 20px 0;
}

/* Pricing Section Highlight Animation */
.price-card.highlight-glow {
    animation: glowPulse 2s ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(13, 197, 161, 0.2); }
    50% { box-shadow: 0 5px 30px rgba(13, 197, 161, 0.4); }
}

/* Enhanced FAQ Section */
.faq-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.faq-section .section-container {
    background: white;
    border-radius: 20px;
    padding: 80px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-categories {
    margin-bottom: 60px;
}

.faq-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0dc5a1;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(13, 197, 161, 0.3);
}

.faq-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Removed duplicate .faq-item that was adding white background */
}

.faq-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

/* Removed duplicate .faq-item[open] with light background */

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0dc5a1;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.question-text {
    flex: 1;
    margin-right: 16px;
}

.expand-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #718096;
}

.faq-item[open] .expand-icon {
    transform: rotate(180deg);
    color: #2b6cb0;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    animation: fadeInSlide 0.3s ease-out;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 16px;
}

.faq-cta-inline {
    margin-top: 16px;
}

.cta-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.feature-highlight {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.highlight-badge {
    background: rgba(13, 197, 161, 0.15);
    color: #0dc5a1;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(13, 197, 161, 0.3);
}

.security-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.security-badge {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.faq-final-cta {
    background: rgba(13, 197, 161, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(13, 197, 161, 0.2);
}

.final-cta-headline {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.final-cta-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.5;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.final-cta-guarantee {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Enhanced Results Testimonials Section */
.testimonials-results .section-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.live-activity {
    margin-top: 30px;
    margin-bottom: 50px;
}

.activity-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(13, 197, 161, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(13, 197, 161, 0.3);
    width: fit-content;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #0dc5a1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.activity-text {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.results-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.result-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.result-testimonial-card.featured {
    transform: scale(1.02);
    border-color: rgba(13, 197, 161, 0.3);
    box-shadow: 0 8px 20px rgba(13, 197, 161, 0.15);
}

.result-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(13, 197, 161, 0.15);
    border-color: rgba(13, 197, 161, 0.3);
}

.result-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1c262f;
}

.result-badge.time-saver {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.result-badge.accuracy {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
}

.result-testimonial-card .testimonial-content {
    padding: 24px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.result-highlight {
    text-align: right;
}

.big-metric {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0dc5a1;
    line-height: 1;
}

.metric-desc {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.result-testimonial-card .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0dc5a1 0%, #0aa08b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.inline-cta {
    margin-top: 16px;
}

.results-summary {
    background: rgba(13, 197, 161, 0.05);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(13, 197, 161, 0.2);
}

.summary-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b6cb0;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.results-cta-section {
    background: rgba(13, 197, 161, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(13, 197, 161, 0.2);
}

.results-cta-headline {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.results-cta-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.5;
}

.results-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.results-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #718096;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* Enhanced Contact/Support Section */
.contact-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-section .section-container {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 80px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Ensure contact section follows left-aligned pattern */
.contact-section .section-header-left {
    text-align: left;
}

.contact-section .section-title {
    text-align: left;
    color: #1a202c;
}

.contact-section .section-subtitle {
    text-align: left;
    color: #4a5568;
}

.support-promise {
    margin-top: 30px;
    margin-bottom: 50px;
}

.promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 25px;
    color: #c2410c;
    font-weight: 500;
    font-size: 0.95rem;
}

.promise-icon {
    font-size: 1.2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.channels-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 30px;
    text-align: left;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.support-item.priority {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
}

.support-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(13, 197, 161, 0.1);
    border-color: rgba(13, 197, 161, 0.3);
}

.support-icon {
    font-size: 1.8rem;
    width: 50px;
    flex-shrink: 0;
}

.support-details {
    flex: 1;
}

.support-details strong {
    display: block;
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 8px;
}

.support-details p {
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.5;
}

.support-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-badge {
    font-size: 0.8rem;
    padding: 4px 8px;
    background: rgba(13, 197, 161, 0.15);
    color: #0dc5a1;
    border-radius: 12px;
    border: 1px solid rgba(13, 197, 161, 0.25);
}

.meta-badge.online {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

.inline-cta-small {
    margin-top: 12px;
}

.cta-mini {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.quick-contact {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: rgba(13, 197, 161, 0.08);
    border: 1px solid rgba(13, 197, 161, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.contact-subtitle {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.enhanced-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input, .form-select, .form-textarea {
    padding: 12px 16px;
    background: white;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    color: #2d3748;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #a0aec0;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
    background: #f7fafc;
}

.form-select option {
    background: white;
    color: #2d3748;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 197, 161, 0.4);
}

.contact-promise {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #718096;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.support-cta-section {
    background: rgba(13, 197, 161, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(13, 197, 161, 0.2);
}

.cta-headline-large {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.cta-text-large {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons-large {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.support-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-highlight .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b6cb0;
}

.stat-highlight .stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Enhanced Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
}

.trust-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(43, 108, 176, 0.2));
}

/* Contact Section */
.contact-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.support-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.support-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(13, 197, 161, 0.3));
}

.support-details strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2b6cb0;
}

.support-details p {
    opacity: 0.8;
    line-height: 1.5;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

/* Removed duplicate .contact-form with transparency */
    max-width: 500px;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background: white;
    color: #2d3748;
    font-family: 'Josefin Sans', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
}

.contact-cta {
    text-align: center;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.mobile-sticky-cta .cta-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .section-container {
        padding: 40px 25px;
        margin-bottom: 40px;
    }
    
    .hero-container {
        padding: 40px 25px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .benefit-item {
        width: fit-content;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .hero-ctas button {
        width: 100%;
        text-align: center;
    }
    
    .demo-section .section-container {
        padding: 40px 25px;
    }
    
    .section-header-left .section-title {
        font-size: 2.2rem;
    }
    
    .section-header-left .section-subtitle {
        font-size: 1.1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-cta {
        text-align: center;
    }
    
    .video-cta button {
        width: 100%;
    }
    
    .testimonials-section .section-container {
        padding: 40px 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .testimonial-results {
        text-align: left;
    }
    
    .testimonial-cta-enhanced {
        padding: 30px 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons button {
        width: 100%;
    }
    
    .social-proof-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .proof-item {
        align-items: center;
        text-align: center;
    }
    
    .pricing-section .section-container {
        padding: 40px 25px;
    }
    
    .pricing-controls {
        margin-top: 30px;
    }
    
    .control-group {
        margin-bottom: 25px;
    }
    
    .plan-toggle, .billing-toggle {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin: 0;
    }
    
    .toggle-btn, .period-btn {
        width: 100%;
        text-align: center;
    }
    
    .control-label {
        text-align: center;
    }
    
    .price-card {
        padding: 30px 20px;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cta-section .trust-badges {
        gap: 15px;
    }
    
    .faq-section .section-container {
        padding: 40px 25px;
    }
    
    .faq-category {
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .feature-highlight, .security-badges {
        justify-content: center;
    }
    
    .faq-final-cta {
        padding: 40px 20px;
        text-align: center;
    }
    
    .final-cta-headline {
        font-size: 1.5rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonials-results .section-container {
        padding: 40px 25px;
    }
    
    .live-activity {
        margin-top: 25px;
        margin-bottom: 40px;
    }
    
    .activity-indicator {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .results-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-testimonial-card.featured {
        transform: none;
    }
    
    .result-testimonial-card .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .result-highlight {
        text-align: left;
    }
    
    .big-metric {
        font-size: 1.8rem;
    }
    
    .results-summary {
        padding: 30px 20px;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .results-cta-section {
        padding: 40px 20px;
    }
    
    .results-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .results-cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    .results-guarantee {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-info {
        gap: 25px;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }
    
    .result-metric {
        text-align: left;
    }
    
    .rating {
        text-align: left;
    }
    
    /* Contact section mobile responsive */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .channels-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .support-icon {
        align-self: center;
        font-size: 2.5rem;
    }
    
    .quick-contact {
        position: static;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .contact-subtitle {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .enhanced-contact-form {
        gap: 18px;
    }
    
    .form-input, .form-select, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .promise-badge {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .support-promise {
        text-align: center;
        margin: 25px 0 40px 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .support-item {
        padding: 18px;
    }
    
    .support-icon {
        font-size: 2rem;
    }
    
    .support-details strong {
        font-size: 1rem;
    }
    
    .support-details p {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .meta-badge {
        font-size: 0.75rem;
    }
    
    .cta-mini {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ======================================
   MINIMAL FOOTER
====================================== */

.minimal-footer {
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
    margin-top: 80px;
    padding: 50px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #2b6cb0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #718096;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2b6cb0;
}

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

.footer-legal p {
    color: #718096;
    font-size: 0.85rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.security-badge {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.security-badge:hover {
    opacity: 1;
}

.security-badge img {
    height: 30px;
    width: auto;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .minimal-footer {
        padding: 40px 0 25px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 25px;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 0.8rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
    }
    
    .security-badge img {
        height: 25px;
    }
}

/* ======================================
   IRISLAB STYLE SECTIONS
====================================== */

/* Split Hero Section - IrisLab Style */
.hero-split {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.hero-left, .hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image, .hero-iris-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Product Showcase Section */
.product-showcase {
    background: white;
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.showcase-item {
    text-align: center;
}

.showcase-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.showcase-item h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}

.showcase-underline {
    width: 40px;
    height: 2px;
    background: #0dc5a1;
    margin: 0 auto;
}

/* Dark Testimonial Section */
.testimonial-dark {
    background: #1c262f;
    padding: 80px 24px;
    text-align: center;
}

.testimonial-content p {
    font-size: 24px;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content h4 {
    color: white;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 32px;
}

.read-more-btn {
    background: #756e67;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #625b54;
}

/* Final Split Section */
.final-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: white;
}

.final-content {
    flex: 1;
    padding: 80px 60px;
}

.final-content h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 32px;
    font-weight: 400;
}

.final-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.show-more-btn {
    background: #756e67;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 24px;
    transition: background 0.3s ease;
}

.show-more-btn:hover {
    background: #625b54;
}

.final-image {
    flex: 1;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.final-iris-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-split {
        height: 80vh;
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        height: 50%;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .product-showcase {
        padding: 60px 0;
    }
    
    .testimonial-dark {
        padding: 60px 16px;
    }
    
    .testimonial-content p {
        font-size: 20px;
    }
    
    .final-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .final-content {
        padding: 40px 16px;
    }
    
    .final-image {
        height: 50vh;
    }
    
    .final-content h2 {
        font-size: 24px;
    }
}


/* FAQ Items Clean Styling for Dark Background */
.faq-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 0 !important;
}

.faq-question {
    background: transparent !important;
    color: #ffffff !important;
}

.faq-item[open] {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Override any details element styling */
details.faq-item {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

details.faq-item summary {
    background: transparent !important;
    color: #ffffff !important;
}

details.faq-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}


/* FAQ Answer Text Color Override */
.faq-item .faq-answer p,
details.faq-item .faq-answer p {
    color: #c0c0c0 !important;
}
