:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --accent: #10b981;
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --dark: #111827;
    --gray-dark: #374151;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --light: #f9fafb;
    --white: #ffffff;
    --radius: 6px;
    --shadow: 0 2px 4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 4px 12px rgb(0 0 0 / 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--light);
    color: var(--gray-dark);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px; /* Adjust based on your horizontal logo size */
    width: auto;
    margin-right: 10px;
}

section {
    padding: 3.5rem 0;
    position: relative;
}

.bg-light {
    background-color: var(--light);
}

.bg-white {
    background-color: var(--white);
}

.bg-gradient {
    background: linear-gradient(180deg, var(--white) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.section-divider .shape-fill {
    fill: #FFFFFF;
}

.divider-flip {
    transform: rotate(0deg);
    top: 0;
    bottom: auto;
}

.divider-primary .shape-fill {
    fill: #4f46e5;
}



.divider-white .shape-fill {
    fill: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary);
}

p {
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.message-container {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.alert-info {
    background-color: #dbeafe;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

/* Navigation */
.nav {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.nav-brand span {
    color: var(--primary);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }
    
    .nav-brand {
        margin-bottom: 1rem;
    }
    
    .nav div {
        display: flex;
        width: 50%;
        justify-content: space-between;
    }
    
    .nav .btn {
        margin: 0;
        padding: 0.75rem 1.25rem;
        width: 48%;
        text-align: center;
    }
}

/* Smaller screens */
@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.25rem;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--light) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.warning-badge {
    display: inline-block;
    background-color: var(--danger);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    color: var(--danger);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Problem Section */
.problem {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.problem-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: var(--light);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: scale(1.02);
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 3.5rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.step:hover {
    transform: scale(1.02);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--danger);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: var(--light);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.02);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--danger);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 3.5rem 0;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    border-top: 4px solid var(--primary);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--gray);
    font-size: 1rem;
    display: block;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    padding-left: 1.75rem;
    position: relative;
}

.pricing-features li:before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    border-radius: var(--radius);
}

.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    position: relative;
    cursor: pointer;
    padding-right: 2rem;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    color: var(--gray);
}

.faq-answer.active {
    display: block;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
}

.testimonials-coming-soon {
    padding: 1.5rem;
    background-color: var(--light);
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 0.5rem 0.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease, transform 0.1s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Loading state class */
.btn-loading {
    background-color: rgba(128, 128, 128, 0.7) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(128, 128, 128, 0.7) !important;
    pointer-events: none;
    transform: scale(0.95);
}

.btn-loading::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: rgba(79, 70, 229, 0.05);
}

/* Button ripple effect */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:active::after {
    animation: ripple 0.4s ease-out;
}


@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

.btn:active::after {
    animation: ripple 0.4s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .pricing-price {
        font-size: 2.5rem;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 2.5rem 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1.25rem;
    }
    .problem-grid, .benefits-grid, .steps {
        grid-template-columns: 1fr;
    }
    .problem-item, .benefit-card, .step {
        padding: 1rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content {
    margin: 2% auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #bbb;
}

.preview-image-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
}

.preview-image {
    width: 100%;
    height: auto;
    filter: blur(4px);
    transition: all 0.3s ease;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.preview-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.preview-button:hover {
    background: #2563eb;
    transform: translate(-50%, -50%) scale(1.05);
}

.preview-image-container:hover .preview-image {
    filter: blur(2px);
}

.video-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px; /* Changed from 560px to 800px */
    width: 100%;
}

.video-thumbnail {
    position: relative;
}

.video-image {
    width: 100%;
    height: auto;
    filter: blur(4px);
    transition: all 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: #2563eb;
    transform: translate(-50%, -50%) scale(1.05);
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    display: none; /* Add this line */
}

/* Add this to your existing mobile responsive navigation section */

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: center; /* Changed from flex-start to center */
        padding: 1rem 0;
    }
    
    .site-logo {
        justify-content: center; /* Center the logo content */
        margin-bottom: 1.5rem; /* Standard spacing between logo and buttons */
        width: 100%; /* Take full width */
    }
    
    .logo-image {
        height: 50px; /* Reduced from 60px */
        margin-right: 10px; /* Keep existing spacing between image and text */
    }
    
    .nav div:not(.site-logo) { /* Target button container specifically */
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav .btn {
        margin: 0;
        padding: 0.75rem 1.25rem;
        width: 48%;
        text-align: center;
    }
}

/* Smaller screens - keep existing but update logo size */
@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.25rem;
    }
    
    .logo-image {
        height: 45px; /* Even smaller on very small screens */
    }
}

.divider-wave-2 svg { transform: scaleX(-1); } /* Flip horizontally */
.divider-wave-3 svg { transform: scaleY(1.2); } /* Make taller */
