@import "variables.css";

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

body {
    font-family: var(--font-primary);
    line-height: 1.5;
    color: var(--gray-800);
    background-color: #f9fafb;
}

button {
    font-family: var(--font-primary) !important;
}

header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.primary-bg {
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
}

.shadow-md {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: auto;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
    font-size: 1.25rem;
}

main {
    margin-top: 60px;
}

.hero-container {
    position: relative;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%234CAF50' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: transparent;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 1px rgba(0, 0, 0, 0.12);
}

.hero-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-image video {
        max-width: 100%;
    }
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.large {
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

.cta-button:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--primary);
}

.cta-button::before {
    content: "Early";
    position: absolute;
    top: 4px;
    right: -18px;
    background: #FFD700;
    color: #000;
    font-size: 0.6em;
    padding: 2px 20px;
    transform: rotate(45deg);
    font-weight: 600;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--gray-800);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.nav-button:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--primary);
}

.features {
    background: var(--gray-50);
    padding: 6rem 2rem;
    text-align: center;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-600);
}

.download {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    /* Success page specific styles */
    .success-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .success-content {
        padding: 0;
    }
    
    .success-icon i {
        font-size: 3rem; /* Slightly smaller icon on mobile */
    }
    
    .success-details {
        width: 100%;
    }
    
    .success-step {
        flex-direction: column;
        text-align: center;
        align-items: center !important;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .download-options {
        grid-template-columns: 1fr; /* Stack downloads vertically */
        gap: 0.75rem;
        margin-top: 0.75rem;
    }

    .download-options.three-columns {
        grid-template-columns: 1fr !important;
    }

    .download-button {
        width: 100%;
        justify-content: center;
    }
    
    .download-content {
        justify-content: center;
    }
}

/* Additional responsive fixes */
@media (max-width: 480px) {
    .success-card h2 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .success-step h3 {
        font-size: 1.1rem;
    }
    
    .success-step p {
        font-size: 0.9rem;
    }
    
    .download-button {
        padding: 0.75rem 1rem;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
    
    .download-info {
        font-size: 0.75rem;
    }
}

.download-options {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    flex-direction: row;
}

.download-options.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
    .download-options {
        grid-template-columns: 1fr 1fr;  /* Two columns on desktop */
    }
}

.download-options.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.2s;
    display: flex;
    align-items: center;
}


.download-button:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.download-button i {
    font-size: 1.25rem;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-name {
    font-weight: 500;
}

.download-info {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.125rem;
}

.download-button:not(.disabled):hover {
    transform: translateY(-2px);
}

.guarantee {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 1rem;
}

footer {
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 2rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-credit {
    color: var(--gray-600);
}

.footer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-credit .fa-heart {
    color: #e25555;
    margin: 0 0.25rem;
}

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

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1rem;
    }

    .features-list {
        padding: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .download-options {
        flex-direction: column;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: white;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: pulse 6s infinite;
}

.hero-badge .remaining-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin: 0 0.25rem;
}

@keyframes pulse {
    0% { transform: translateY(0); }
    70% { transform: translateY(0); }
    85% { transform: translateY(-3px); }
    92% { transform: translateY(2px); }
    100% { transform: translateY(0); }
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lifetime-note {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.showcase {
    padding: 4rem 2rem;
    text-align: center;
}

.showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--gray-800);
}

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

.showcase-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
}

.showcase-item img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.showcase-item h3 {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.showcase-item p {
    color: var(--gray-600);
}

.pricing {
    margin: 0 auto;
    padding: 8rem 0rem;
}

.pricing-card-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--border);
}

.success-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: var(--modal-background);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-left {
    text-align: center;
    border-right: 1px solid var(--gray-200);
    padding-right: 3rem;
}

.pricing-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    margin: 1rem 0;
}

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

.price-note {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.pricing-card .cta-button {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-left {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

.faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9fafb;

}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid var(--border);
}

.faq-item h3 {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-600);
}

.ready-section {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.ready-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.guarantee-text {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.9rem !important;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero-features {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-feature {
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex: 1;
}

.feature-icon {
    color: var(--primary);
    font-size: 1rem;
}

.feature-title {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.feature-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
    }
}

.test-mode-banner {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.purchase-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-800);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.loading {
    display: none;
    text-align: center;
    color: var(--gray-600);
    margin-top: 1rem;
}

.loading.visible {
    display: block;
}

.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.success-details {
    margin-top: 3rem;
    text-align: left;
}

.success-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.success-step i {
    font-size: 1.5rem;
    color: var(--primary);
}

.success-step h3 {
    margin: 0 0 0.5rem 0;
    color: var(--gray-800);
}

.success-step p {
    margin: 0;
    color: var(--gray-600);
}


/* Legal Pages Styles */
.legal-content {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.6;
}

.legal-content section {
    margin: 2rem 0;
}

.legal-content h2 {
    color: var(--gray-800);
    margin: 1.5rem 0 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--gray-700);
    margin: 0.5rem 0;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Replace existing social-proof styles with: */
.social-proof {
    background: white;
}

.value-props {
    max-width: 1200px;
    padding: 4rem 2rem;
    margin: 0 auto;
    text-align: center;
}

.value-props h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--border-light);
    transition: transform 0.2s;
}

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

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.trust-banner {
    background: var(--gray-50);
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .trust-items {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Comparison Table */
.comparison-container {
    background-color: white;

}

.comparison {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.comparison-table {
    overflow-x: auto;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: var(--gray-50);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 2px solid var(--border-light);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--gray-700);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table i.fa-check-circle {
    color: var(--primary);
}

.comparison-table i.fa-times {
    color: #dc2626;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--gray-800);
}

.comparison-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .comparison {
        padding: 2rem 1rem;
    }
    
    .comparison h2 {
        font-size: 2rem;
    }
}

/* Special Offer Banner */
.special-offer {
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    color: white;
    text-align: center;
    padding: 0.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: .9rem !important;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.special-offer .highlight {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none; /* Hide by default on mobile */
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .special-offer {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }

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

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

    .hero-feature {
        width: 100%;
    }
}

/* Responsive Feature Grid */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* Responsive Comparison Table */
@media (max-width: 768px) {
    .comparison-table {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .comparison-table table {
        min-width: 650px; /* Slightly smaller for better mobile scrolling */
    }
}

/* Responsive Pricing Section */
@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 1rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 0;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 480px) {
    .download-options {
        padding: 0 1rem;
    }

    .download-button {
        width: 100%;
    }

    .hero-cta {
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .value-grid {
        gap: 1rem;
    }

    .value-card {
        margin: 0 1rem;
    }
}

/* Fix mobile nav menu button positioning */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
    }

    .logo {
        margin-right: 0; /* Remove auto margin */
    }

    .mobile-menu-toggle {
        order: 2; /* Push to the right */
    }
}

/* Fix FAQ grid responsiveness */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        padding: 0 1rem;
    }

    .faq-item {
        min-width: 0; /* Allow items to shrink */
        width: 100%;
    }
}

/* Fix download buttons stacking */
@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .download-button {
        width: 100%;
    }
}

/* Standardize mobile padding across sections */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 4rem 1.5rem;
    }

    /* Features Section */
    .features {
        padding: 4rem 1.5rem;
    }

    /* Value Props */
    .value-props {
        padding: 4rem 1.5rem;
    }

    /* Showcase Section */
    .showcase {
        padding: 4rem 1.5rem;
    }

    /* Comparison Section */
    .comparison {
        padding: 4rem 1.5rem;
    }

    /* FAQ Section */
    .faq {
        padding: 4rem 1.5rem;
    }

    /* Download Section */
    .download {
        padding: 4rem 1.5rem;
    }

    /* Grids and Cards */
    .feature-grid,
    .showcase-grid,
    .value-grid,
    .faq-grid,
    .download-options {
        padding: 0;
    }

    /* Footer */
    .footer-content {
        padding: 0 1.5rem;
    }

    /* Value Cards */
    .value-card {
        margin: 0;
    }
}

/* Blog styles */
.blog-header {
    background: var(--primary);
    position: relative;
    padding: 6rem 2rem 6rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Large circular overlays */
.blog-header::before,
.blog-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.blog-header::before {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
}

.blog-header::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

/* Content */
.blog-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .blog-header {
        padding: 4rem 1.5rem 6rem;
    }
    
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.125rem;
    }
}

.blog-posts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-posts .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Posts Container */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: transform 0.2s;
}

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

.post h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.post-content {
    color: var(--gray-700);
    line-height: 1.6;
}

.post-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

p img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.post-content .gif-container {
    max-width: 800px;
    margin: 2rem auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 9rem;
    align-self: start;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.sidebar-widget p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.sidebar-cta:hover {
    background: var(--primary-dark);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    flex: 1;
}

.recent-post a:hover {
    color: var(--primary);
}

.recent-post time {
    color: var(--gray-600);
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-posts .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 4rem 1.5rem 2rem;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-posts {
        padding: 2rem 1.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.125rem;
    }
}

/* Blog post title links */
.post h2 a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.2s;
}

.post h2 a:hover {
    color: var(--primary);
}

/* Single blog post styles */
.blog-post-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 1rem 0;
    line-height: 1.2;
}

.post-header .post-meta {
    color: var(--gray-600);
    font-size: 1rem;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--gray-800);
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--gray-800);
}

.post-content ul, 
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin: 0.5rem 0;
}

.post-content a {
    color: var(--primary);
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.back-to-blog:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-post-single {
        padding: 2rem 1.5rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
}

/* Clickable post images */
.post-image-link {
    display: block;
    text-decoration: none;
    margin: -2rem -2rem 2rem;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.post-image-link:hover img {
    transform: scale(1.05);
}

.post-image {
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Single post image styles */
.blog-post-single .post-image {
    margin: -4rem -2rem 3rem;
    height: 400px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}

.blog-post-single .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .post-image-link {
        margin: -1.5rem -1.5rem 1.5rem;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .blog-post-single .post-image {
        margin: -2rem -1.5rem 2rem;
        height: 250px;
    }
}

/* Header Icons */
.header-icons {
    margin-bottom: 1.5rem;
}

.header-icons i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease;
}

.header-icons i:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .header-icons i {
        font-size: 2rem;
    }
}

/* Scroll indicator styles */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: .5rem;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: var(--gray-25);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: start;
    gap: .5rem;
}

.author-avatar {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    border-radius: 50%;
    background: var(--gray-100);
}

.author-info h4 {
    color: var(--gray-800);
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.author-info p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.price-increase-warning {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-increase-warning i {
    color: #FFA500;
}

/* Mindful Money Section Styles */
.mindful-money {
    background: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.mindful-money h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.mindful-money .subtitle {
    color: var(--gray-600);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

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

.mindful-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: transform 0.2s;
}

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

.mindful-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mindful-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.mindful-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.mindful-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    position: relative;
}

.mindful-quote i {
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.mindful-quote blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .mindful-money {
        padding: 4rem 1.5rem;
    }

    .mindful-money h2 {
        font-size: 2rem;
    }

    .mindful-money .subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .mindful-grid {
        gap: 1rem;
    }

    .mindful-quote blockquote {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
}


.terms-acceptance {
    font-size: 0.85rem;
    color: #666;
    margin: 1rem 0;
    line-height: 1.4;
}

.terms-acceptance a {
    color: #007bff;
    text-decoration: none;
}

.terms-acceptance a:hover {
    text-decoration: underline;
}


.trusted-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .trusted-proof {
        justify-content: center;
    }
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -8px; /* Creates overlap effect */
    box-shadow: var(--shadow);
}


/* Add to your styles.css */
.legal-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    margin-top: -.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.legal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.svg') center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.legal-banner h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.legal-banner p {
    margin: 0.5rem 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-banner {
        padding: 2rem 1rem;
    }
    
    .legal-banner h1 {
        font-size: 2rem;
    }
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.cta-button-alt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary);
    border-radius: var(--radius);
    border: 0;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button-alt:hover {
    background-color: var(--primary-dark);
}

.cta-button-alt::before {
    content: "Early";
    position: absolute;
    top: 4px;
    right: -18px;
    background: #FFD700;
    color: #000;
    font-size: 0.6em;
    padding: 2px 20px;
    transform: rotate(45deg);
    font-weight: 600;
}

.cta-button-alternate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary);
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-button-alt:hover {
    background-color: var(--primary-dark);
}


