:root {
    --black: #000000;
    --white: #ffffff;
    --primary-color: #007261;
    --box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.9);
    --hover-box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.9);
    --border-radius: 12px;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --hover-transform: translateY(-3px);
}

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

body {
    padding: 0;
    background: #bdfaf1;
    font-family: var(--font-family);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Layout */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Common styles for sections */
.hero, .app-preview, .features, .usage-stats, nav {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
    margin: 1rem;
    width: calc(100% - 2rem);
}

.logo {
    min-width: 200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0.5rem;
    background: var(--white);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    background: var(--white);
    text-decoration: none;
}

.social-links i {
    font-size: 24px;
    color: var(--black);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon, .social-links i {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    margin-bottom: 0;
}

.tool-card {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 0;
}

.tool-card img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* Common interactive elements */
.logo,
.social-links a,
.tool-card,
.download-btn,
.tutorial-btn {
    transition: var(--transition);
}

.logo:hover,
.logo:focus,
.social-links a:hover,
.social-links a:focus,
.tool-card:hover,
.tool-card:focus-within {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: auto;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.hero .subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero .screenshot-container {
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero .app-screenshot {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.download-btn, .tutorial-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    transition: var(--transition);
}

.download-btn {
    background: var(--primary-color);
    color: var(--white);
}

.tutorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.tutorial-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.tutorial-btn:hover {
    background: #f9fafb;
    color: var(--primary-color);
}

.tutorial-btn:hover svg {
    transform: scale(1.1);
}

.download-btn:hover,
.tutorial-btn:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* App Preview Section */
.app-preview {
    text-align: center;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 2rem 0;
}

.screenshot-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.app-screenshot {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    position: relative;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 1000px;
    width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--border-radius) - 10px);
}

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

/* Usage Stats */
.usage-stats {
    text-align: center;
    padding: 3rem;
}

.usage-stats h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

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

.stat .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat .label {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Custom Cursor */
.cursor-container {
    pointer-events: none;
}

.circle {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
    opacity: 0.85;
    mix-blend-mode: normal;
    will-change: transform;
    transition: transform 0.05s ease, background-color 0.3s ease;
}

/* Hide default cursor when hovering over clickable elements */
a, button, [role="button"], .feature-card {
    cursor: none !important;
}

/* Show custom cursor on hover */
a:hover ~ .circle,
button:hover ~ .circle,
[role="button"]:hover ~ .circle,
.feature-card:hover ~ .circle {
    transform: scale(1.5);
    background-color: #007261;
}

/* Consolidate Media Queries */
@media (max-width: 768px) {
    main {
        padding: 0 0.5rem;
    }

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

    .hero .subtitle {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 75vh;
        padding: 1.5rem;
    }

    .hero .screenshot-container {
        max-height: 45vh;
    }

    .hero .app-screenshot {
        max-height: 45vh;
    }

    .features, .usage-stats, .other-tools {
        padding: 1.5rem;
    }

    .screenshot-container {
        max-width: 100%;
        padding: 0;
    }

    .app-screenshot {
        max-height: 500px;
        border-radius: 16px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .close-modal {
        right: 10px;
        top: -50px;
    }

    .stats {
        gap: 2rem;
    }

    .stat .number {
        font-size: 2.5rem;
    }
}

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

    .feature-card {
        padding: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Footer */
footer {
    padding: 0.5rem 1rem;
    margin: 0.5rem;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

.footer-logo p {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-credit span {
    color: #58aee7;
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    footer {
        padding: 0.25rem;
        margin: 0.25rem;
    }

    .footer-nav {
        padding: 0.75rem;
    }

    .footer-logo p,
    .footer-credit span {
        font-size: 1rem;
    }
}

/* Remove any old footer styles */
footer p:before,
footer p:after {
    display: none;
}

/* Remove old footer styles */
footer {
    border: none;
    background: transparent;
    padding: 20px;
    margin: 0;
    border-radius: 0;
}

/* Other Tools Section - Final Version */
.other-tools {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 20px;
    margin: 0 0.5rem 0.5rem;
    width: calc(100% - 1rem);
}

.other-tools h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0;
}

.tool-card {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0;
    padding: 0;
}

/* Enhanced Tutorial Button */
.tutorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--black);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tutorial-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.tutorial-btn:hover:before {
    transform: translateX(100%);
}

.tutorial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.tutorial-btn:hover svg {
    transform: scale(1.2);
    fill: var(--white);
}

.tutorial-btn svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Enhanced Video Modal */
.modal-content {
    position: relative;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    max-width: 1000px;
    width: 90%;
    transform: scale(0.7);
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

.close-modal {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--black);
    background: var(--white);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    z-index: 1001;
}

.close-modal:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-color);
    color: var(--white);
}

.modal.show .modal-content {
    transform: scale(1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .other-tools h2 {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 15px;
    }
    
    .close-modal {
        right: 10px;
        top: -50px;
        background: var(--primary-color);
        color: var(--white);
    }
}

/* Header Animation */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    width: 100%;
    padding: 0;
    animation: slideDown 0.8s ease-out forwards;
}

@media (max-width: 768px) {
    header {
        padding: 0;
    }

    main {
        margin: 0 auto;
    }

    footer {
        margin: 0 0.25rem 0.25rem;
        padding: 1rem;
    }

    nav {
        margin: 0.25rem;
    }
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
}

/* Features Showcase */
.features-showcase {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.features-showcase h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
}

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

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.user {
    font-weight: 600;
    color: var(--primary-color);
}

/* Data Points */
.data-points {
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.data-points h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.data-card {
    padding: 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.data-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

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

.data-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.data-card ul {
    list-style: none;
    text-align: left;
    padding: 0 1rem;
}

.data-card li {
    margin-bottom: 0.8rem;
    color: #444;
    position: relative;
    padding-left: 1.5rem;
}

.data-card li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.faq-item {
    padding: 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
    transition: var(--transition);
}

.faq-item:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

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

/* Bottom CTA */
.cta-bottom {
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.cta-bottom p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-showcase,
    .testimonials,
    .data-points,
    .faq,
    .cta-bottom {
        padding: 2rem 1rem;
    }

    .features-showcase h2,
    .testimonials h2,
    .data-points h2,
    .faq h2,
    .cta-bottom h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-card,
    .data-card,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
}

.support-section:before {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0 1rem;
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 600;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.coffee-btn, .subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coffee-btn {
    background: #FFDD00;
    color: var(--black);
}

.subscribe-btn {
    background: #FF0000;
    color: var(--white);
}

.coffee-btn:before, .subscribe-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.coffee-btn:hover:before, .subscribe-btn:hover:before {
    transform: translateX(100%);
}

.coffee-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-box-shadow);
    background: #FFE44D;
}

.subscribe-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-box-shadow);
    background: #FF1a1a;
}

.coffee-btn i, .subscribe-btn i {
    font-size: 1.4rem;
}

.coffee-btn i {
    animation: steamAnimation 2s infinite;
}

.subscribe-btn i {
    animation: pulseAnimation 2s infinite;
}

@keyframes steamAnimation {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .support-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .coffee-btn, .subscribe-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Other Tools Section - Final Version */
.other-tools {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 20px;
    margin: 0 0.5rem 0.5rem;
    width: calc(100% - 1rem);
}

/* Footer - Final Version */
footer {
    background: transparent;
    border: 2px solid var(--black);
    border-top: none;
    border-radius: var(--border-radius);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 20px;
    margin: 0;
    width: 100%;
}

.footer-nav {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

.footer-logo p {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-credit span {
    color: #007261;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Remove margin-bottom from the last section before footer */
.other-tools {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .coffee-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    /* Header & Navigation */
    nav {
        padding: 1rem;
        margin: 0.5rem;
        width: calc(100% - 1rem);
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        min-width: 80%;
        height: 60px;
        margin: 0 auto;
    }

    .social-links {
        width: 100%;
        justify-content: center;
        gap: 1.2rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 20px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .download-btn, .tutorial-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .screenshot-container {
        margin: 30px 0;
    }

    .app-screenshot {
        width: 100%;
        border-radius: 10px;
    }

    /* Features Section */
    .features {
        padding: 40px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    /* Usage Stats */
    .usage-stats {
        padding: 40px 20px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        width: 100%;
    }

    /* Features Showcase */
    .features-showcase {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Data Points */
    .data-points {
        padding: 40px 20px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ Section */
    .faq {
        padding: 40px 20px;
    }

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

    /* CTA Bottom */
    .cta-bottom {
        padding: 40px 20px;
    }

    /* Other Tools */
    .other-tools {
        padding: 40px 20px;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tool-card img {
        width: 100%;
        height: auto;
    }

    /* Support Section */
    .support-section {
        padding: 30px 20px;
    }

    .support-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .coffee-btn, .subscribe-btn {
        width: 100%;
    }

    /* Footer */
    .footer-nav {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Video Modal */
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    /* Cursor Animation */
    .cursor-container {
        display: none; /* Hide cursor animation on mobile */
    }
}

/* Additional breakpoint for very small devices */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

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

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .number {
        font-size: 32px;
    }

    .label {
        font-size: 14px;
    }
}

/* Tablet-specific adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .features, .features-grid, .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero {
        padding: 60px 40px;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.pricing-card.popular:before {
    content: 'Most Popular';
    position: absolute;
    top: 22px;
    right: -32px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-card p {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card .buy-now {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--black);
    box-shadow: var(--box-shadow);
}

.pricing-card .buy-now:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-box-shadow);
}

/* Features Showcase Update */
.features-showcase {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

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

.features-showcase .feature-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: left;
}

.features-showcase .feature-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

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

/* Testimonials Update */
.testimonials {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

.testimonial-card .rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.testimonial-card .user {
    color: var(--primary-color);
    font-weight: 600;
}

/* Data Points Update */
.data-points {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

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

.data-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.data-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--hover-box-shadow);
}

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

.data-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

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

.data-card li {
    margin-bottom: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-card li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-grid,
    .features-showcase .features-grid,
    .testimonials-grid,
    .data-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing h2,
    .features-showcase h2,
    .testimonials h2,
    .data-points h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pricing-card,
    .features-showcase .feature-card,
    .testimonial-card,
    .data-card {
        padding: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }
}

/* Additional Hover Effects */
.pricing-card .buy-now:hover,
.features-showcase .feature-card:hover i,
.data-card:hover i {
    color: var(--primary-color);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}