/* Base Styles and Variables */
:root {
    --primary-blue: #4169E1;
    --secondary-blue: #385DCF;
    --primary-green: #8AE05E;
    --secondary-green: #76C64E;
    --light-blue: #E8EFFF;
    --light-green: #EAFFDF;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #F4F5F7;
    --white: #FFFFFF;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: linear-gradient(180deg, 
        var(--light-blue) 0%, 
        rgba(255, 255, 255, 0.98) 20%, 
        var(--light-green) 40%, 
        rgba(255, 255, 255, 0.98) 60%, 
        var(--light-blue) 80%, 
        var(--primary-blue) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--light-blue);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--light-blue);
}

.btn-large {
    padding: 14px 28px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header and Navigation */
header {
    position: relative;
    background: transparent;
    padding-bottom: 80px;
}

nav {
    padding: 20px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo .logo-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-gray);
    font-family: 'Inter', sans-serif;
}

/* --- Desktop Navigation Styles --- */
.desktop-nav-links {
    display: flex; /* Arrange links horizontally */
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 35px; /* Spacing between links */
}

.desktop-nav-links li a {
    color: var(--medium-gray); /* Standard link color */
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0; /* Add some vertical space for hover effect */
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue); /* Underline color */
    transition: width 0.3s ease;
}

.desktop-nav-links li a:hover,
.desktop-nav-links li a:focus {
    color: var(--primary-blue); /* Color change on hover/focus */
}

.desktop-nav-links li a:hover::after,
.desktop-nav-links li a:focus::after {
    width: 100%; /* Animate underline on hover/focus */
}
/* --- End Desktop Navigation Styles --- */

.mobile-menu-btn {
    display: none; /* Hide hamburger on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

/* Base style for mobile nav links - hidden by default on all screens */
.mobile-nav-links {
    display: none;
}

/* Styles for the mobile navigation menu */
/* These rules are now moved inside the 768px media query below */

/* Hamburger button active state ('X' transformation) */
/* These rules are now moved inside the 768px media query below */

/* Hero Section */
.hero {
    padding: 80px 0 0;
}

.hero .container {
    text-align: center;
}

/* Style for the new header within the hero section */
.hero-style-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero-style-header h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-style-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #333333;
    text-shadow: none;
}

/* Style for the app download buttons specifically in the hero */
.hero-app-download {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.hero-app-download .demo-btn {
    background-color: var(--primary-blue);
    color: white;
}

.hero-app-download .demo-btn:hover {
    background-color: var(--secondary-blue);
}

.hero-app-download .app-btn {
    background-color: #000000;
    color: #ffffff;
}

.hero-app-download .app-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

.hero-app-download .app-btn i {
    font-size: 20px;
}

/* Style for the screenshots container */
.hero-style-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-style-screenshots .screenshot-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    overflow: hidden;
}

.hero-style-screenshots .screenshot-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Fixed height/width ratio for all screenshots to maintain consistency */
.hero-style-screenshots .screenshot-item img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: block;
}



/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 255, 255, 0.95) 50%, var(--light-green) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 224, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

.feature-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: 0.2s ease;
}

.feature-card a:hover {
    text-decoration: underline;
    transform: translateY(-3px);
    display: inline-block;
}

.feature-card h3 a {
    color: var(--dark-gray);
}

.feature-card h3 a:hover {
    color: var(--primary-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-icon.blue {
    background-color: var(--primary-blue);
}

.feature-icon.green {
    background-color: var(--primary-green);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* Testimonials Section */
.testimonials {
    background: transparent;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 30%, rgba(138, 224, 94, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 30px;
    flex: 1;
    min-width: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
}

.author-info p {
    color: var(--medium-gray);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.prev-btn, .next-btn {
    background-color: var(--white);
    color: var(--dark-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-blue);
    width: 30px;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    background: transparent;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 70%, rgba(74, 144, 226, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 50px;
}

.contact-info {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method i {
    font-size: 24px;
    color: var(--primary-blue);
}

.contact-method h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-method p {
    margin-bottom: 0;
    font-size: 16px;
}

.contact-method.email-link {
    display: flex;
    cursor: pointer;
    transition: var(--transition);
}

.contact-method.email-link:hover {
    transform: scale(1.02);
}

.contact-method.email-link div p {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-about .footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-about .footer-logo-container .footer-logo {
    height: 35px;
}

.footer-about .footer-logo-container .logo-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.footer-about p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-logo {
    height: 35px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.app-download {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.app-btn:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-1px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    position: relative;
}

.cta-buttons::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
}

.feature-page .app-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-page .app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.app-btn i {
    font-size: 20px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-style-screenshots {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


}

@media (max-width: 768px) {
    .desktop-nav-links {
        display: none; /* Hide desktop links on mobile */
    }

    .mobile-menu-btn {
        display: flex; /* Show hamburger on mobile */
    }

    /* --- Mobile Nav Links Styling (Enhanced Look) --- */
    .mobile-nav-links {
        /* display: none; Replaced by base style above */ 
        position: absolute;
        top: 74px; /* Adjust as needed based on final nav height */
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 245, 247, 0.97)); /* Subtle gradient */
        backdrop-filter: blur(8px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        padding: 0;
        z-index: 1000;
        max-height: 0;
        overflow-y: auto; /* Allow scrolling if menu gets long */
        border-bottom-left-radius: var(--border-radius);
        border-bottom-right-radius: var(--border-radius);
        transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother ease */
    }

    .mobile-nav-links ul {
        list-style: none;
        padding: 15px 0; /* Increased vertical padding */
        margin: 0;
    }

    .mobile-nav-links li {
        text-align: left; /* Align text left */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Softer separator */
    }
    .mobile-nav-links li:last-child {
        border-bottom: none;
    }

    .mobile-nav-links li a {
        display: flex; /* Use flex for icon alignment */
        align-items: center; /* Center items vertically */
        gap: 12px; /* Space between icon and text */
        padding: 24px 32px; /* Increased padding for better touch targets */
        color: var(--dark-gray); /* Darker text for readability */
        text-decoration: none;
        font-weight: 500;
        font-size: 17px; /* Slightly larger font */
        transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    }

    /* Add icons (requires Font Awesome) */
    .mobile-nav-links li a::before {
        font-family: "Font Awesome 6 Free"; /* Ensure correct Font Awesome family */
        font-weight: 900; /* Use solid icons */
        display: inline-block;
        width: 20px; /* Fixed width for alignment */
        text-align: center;
        color: var(--primary-blue); /* Icon color */
        font-size: 16px;
    }
    .mobile-nav-links li a[href="#features"]::before { content: "\f085"; } /* fa-cogs or similar */
    .mobile-nav-links li a[href="#testimonials"]::before { content: "\f086"; } /* fa-comments */
    .mobile-nav-links li a[href="#contact"]::before { content: "\f0e0"; } /* fa-envelope */
    /* Increased specificity and temporary !important test */
    .mobile-nav-links ul li a.mobile-link[href="about-us.html"]::before { 
        content: "\f05a !important"; /* fa-info-circle */
        font-weight: 900 !important; /* Ensure solid weight */
    }
    .mobile-nav-links li a[href="#footer"]::before { content: "\f023"; } /* fa-lock or fa-shield-alt \f3ed */

    .mobile-nav-links li a:hover,
    .mobile-nav-links li a:focus {
        background-color: var(--light-blue);
        color: var(--secondary-blue);
        padding-left: 30px; /* Indent on hover */
    }
    .mobile-nav-links li a:hover::before,
    .mobile-nav-links li a:focus::before,
    .mobile-nav-links li a.active::before {
        color: var(--secondary-blue);
    }

    .mobile-nav-links li a.active,
    .desktop-nav-links li a.active {
        background-color: var(--light-blue);
        color: var(--primary-blue);
        font-weight: 600;
    }

    .desktop-nav-links li a.active::after {
        width: 100%;
    }

    /* Style for when the mobile menu is active/shown */
    .mobile-nav-links.mobile-nav-active {
        display: block; /* Explicitly set display back to block */
        max-height: 70vh; /* Allow scrolling within viewport height */
    }

    /* Hamburger button active state ('X' transformation) */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    /* --- End Mobile Nav Links Styling --- */

    /* Ensure proper spacing for mobile view */
    header {
        padding-bottom: 40px;
    }
    
    .hero {
        padding: 20px 0 0;
    }
    
    .hero .container {
        padding: 0 10px;
    }

    .hero-style-screenshots {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
        width: 100%;
    }
    
    /* Mobile screenshot styling for better visibility */
    .hero-style-screenshots .screenshot-item {
        margin: 0 auto;
        padding: 0;
        overflow: hidden;
        border-radius: 20px;
    }
    
    .hero-style-screenshots .screenshot-item img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        object-fit: contain;
    }



    .hero-style-header h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }

    .showcase-header h2 {
        font-size: 32px;
    }
    
    .showcase-header p {
        font-size: 18px;
    }

    .showcase-screenshots {
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center stack */
        gap: 40px; /* Adjust gap for vertical layout */
    }
    .screenshot-item {
         max-width: 300px; /* Allow slightly wider on mobile stack */
    }

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

    .hero-content h1 {
        font-size: 32px;
    }
    
    section {
        padding: 60px 0;
    }

    /* Mobile app screenshot styling */
    .app-screenshot {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* App screenshot styling */
.app-screenshot {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature Landing Pages */
.subpage-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 50%, var(--primary-blue) 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.subpage-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,20 Q250,80 500,50 T1000,30 L1000,0 L0,0 Z"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.subpage-header .logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.feature-page {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 50%, var(--primary-blue) 100%);
    min-height: 100vh;
    padding: 40px 0 80px;
    position: relative;
}

.feature-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 224, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.feature-page .container {
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.feature-page section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.feature-page section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
}

.feature-page h1, 
.feature-page h2 {
    margin-top: 0;
    margin-bottom: 0.6em;
}

.feature-page h3 {
    margin: 0.8em 0 0.4em;
}



@media (max-width: 768px) {
    .feature-page {
        padding: 80px 0 60px;
    }
    
    .feature-page section {
        margin: 20px auto;
        padding: 50px 30px;
        border-radius: 20px;
        box-shadow: 
            0 20px 40px -12px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .hero-section h1 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .feature-showcase {
        margin-top: 40px;
        gap: 30px;
    }
    
    .feature-showcase .feature-text {
        padding: 30px 20px;
        margin: 0 -10px;
    }
    
    .feature-showcase h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .feature-page {
        padding: 100px 0 60px;
    }
    
    .feature-page section {
        margin: 15px;
        padding: 40px 25px;
        border-radius: 16px;
    }
    
    .hero-section h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-section .lead {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .feature-showcase .feature-text {
        padding: 25px 15px;
        margin: 0 -5px;
    }
}

.hero-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-section .lead {
    font-size: 22px;
    color: var(--medium-gray);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 50px;
    position: relative;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.feature-showcase .feature-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-showcase h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.feature-image {
    display: flex;
    justify-content: center;
    max-width: 350px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.feature-images .feature-image {
    flex: 1;
    max-width: 300px;
}

.feature-details {
    margin: 60px 0;
}

.tracking-explanation,
.recovery-explanation,
.acwr-explanation {
    background: var(--light-blue);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.steps-grid {
    max-width: 1000px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .feature-showcase {
        margin-top: 40px;
        gap: 30px;
    }

    .feature-showcase .feature-text {
        padding: 0 20px;
    }

    .feature-image {
        max-width: 280px;
    }

    .feature-images {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .feature-images .feature-image {
        max-width: 280px;
    }

    .tracking-explanation,
    .recovery-explanation,
    .acwr-explanation {
        padding: 40px 20px;
        margin: 40px -20px;
        border-radius: 0;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.step-card i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

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

/* Macro Adjustment Section */
.macro-adjustment {
    background: var(--light-blue);
    padding: 60px;
    border-radius: 20px;
    margin: 60px 0;
}

.macro-adjustment .visual-placeholder {
    margin: 40px auto;
    max-width: 800px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .macro-adjustment {
        padding: 30px;
    }

    .macro-adjustment .visual-placeholder {
        margin: 20px -10px;
        border-radius: 0;
    }
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
    padding: 60px 0;
    background: var(--light-gray);
    border-radius: 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--dark-gray);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        margin: 40px -20px;
        border-radius: 0;
    }

    .faq-grid {
        padding: 0 20px;
    }
}

/* Feature Links Section - Premium Redesign */
.feature-links {
    padding: 100px 0;
    text-align: center;
    background: transparent;
    position: relative;
}

.feature-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.feature-links h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.feature-links h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.feature-link-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 60px auto 0;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.feature-link-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    border-radius: 24px;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-link-list a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-link-list a:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px -12px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
    color: var(--primary-blue);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-blue), var(--primary-green)) 1;
}

.feature-link-list a:hover::after {
    left: 100%;
}

.feature-link-list a:active {
    transform: translateY(-4px) scale(1.01);
}

/* Feature content styling */
.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 8px;
    display: block;
}

.feature-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--medium-gray);
    opacity: 0.8;
    line-height: 1.4;
    display: block;
}

.feature-link-list a:hover .feature-desc {
    color: var(--secondary-blue);
    opacity: 1;
}

/* Add icons using CSS pseudo-elements */
.feature-link-list a[href*="load-management"]:before {
    content: "⚡";
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-link-list a[href*="nutrition-tracking"]:before {
    content: "🍎";
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-link-list a[href*="recovery-plans"]:before {
    content: "💤";
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .feature-links {
        padding: 80px 20px;
    }
    
    .feature-links h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .feature-links h2::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }

    .feature-link-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px auto 0;
        max-width: 400px;
    }

    .feature-link-list a {
        padding: 35px 25px;
        font-size: 16px;
        border-radius: 20px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .feature-desc {
        font-size: 13px;
    }
    
    .feature-link-list a[href*="load-management"]:before,
    .feature-link-list a[href*="nutrition-tracking"]:before,
    .feature-link-list a[href*="recovery-plans"]:before {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .feature-links {
        padding: 60px 15px;
    }
    
    .feature-links h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .feature-link-list {
        margin: 40px auto 0;
        max-width: 320px;
        gap: 25px;
    }

    .feature-link-list a {
        padding: 30px 20px;
        font-size: 15px;
        border-radius: 18px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .feature-desc {
        font-size: 12px;
    }
    
    .feature-link-list a[href*="load-management"]:before,
    .feature-link-list a[href*="nutrition-tracking"]:before,
    .feature-link-list a[href*="recovery-plans"]:before {
        font-size: 28px;
        margin-bottom: 10px;
    }
}

/* Content Wrapper for Better Readability */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Heading Rhythm */
h2 {
    margin-top: 0.4em;
    margin-bottom: 0.6em;
}

/* Focus States for Accessibility */
.feature-link-list a:focus {
    outline: 3px solid #8AE05E;
    outline-offset: 2px;
}

.app-btn:focus {
    outline: 3px solid #8AE05E;
    outline-offset: 2px;
}

/* All Features CTA Button */
.all-features-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 12px 32px rgba(74, 144, 226, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: 60px auto 0;
    text-align: center;
    max-width: fit-content;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

.all-features-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 48px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-green));
}

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

.all-features-cta:active {
    transform: translateY(-2px) scale(1.01);
}

/* Navigation CTA in Header */
.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta-link {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.nav-cta-link:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.6);
    color: #ffffff;
}

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

.nav-cta-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

@media (max-width: 768px) {
    .subpage-header {
        padding: 40px 0;
    }
    
    .subpage-header .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-cta-link {
        font-size: 11px;
        padding: 8px 16px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .subpage-header {
        padding: 50px 0;
    }
    
    .subpage-header .container {
        gap: 20px;
    }
    
    .nav-cta-link {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* Player Reviews Grid */
.player-reviews {
    background: transparent;
    padding: 80px 0;
    position: relative;
}

.player-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(138, 224, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.review-item {
    position: relative;
    width: 100%;
    min-height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.review-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.2);
}

.review-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 8px;
}

.review-item:hover img {
    transform: scale(1.03);
}

/* Add subtle overlay for better text readability if needed */
.review-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(74, 144, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-item:hover::after {
    opacity: 1;
}

/* Staggered animation effect for premium feel */
.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }
.review-item:nth-child(4) { animation-delay: 0.4s; }
.review-item:nth-child(5) { animation-delay: 0.5s; }
.review-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 768px) {
    .player-reviews {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
        max-width: 600px;
    }
    
    .review-item {
        min-height: 180px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
        padding: 0 10px;
    }
    
    .review-item {
        min-height: 150px;
        border-radius: 12px;
        padding: 5px;
    }
    
    .review-item:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Final Call to Action */
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-pro {
    color: #00ff88;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-app-btn {
    background: #000000;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-app-btn:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-app-btn i {
    font-size: 22px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .final-cta p {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .cta-app-btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    .cta-app-btn i {
        font-size: 20px;
    }
}

/* Dashboard Carousel in Hero */
.dashboard-carousel {
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Demo CTA Button */
.demo-cta {
    text-align: center;
    margin-top: 30px;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.demo-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(65, 105, 225, 0.3);
}

.demo-btn i {
    font-size: 20px;
}

/* Mac Computer Frame */
.mac-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: #e5e5e5;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.mac-header {
    background: #f0f0f0;
    border-radius: 8px 8px 0 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
}

.mac-buttons {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.mac-btn.close {
    background: #ff5f57;
}

.mac-btn.minimize {
    background: #ffbd2e;
}

.mac-btn.maximize {
    background: #28ca42;
}

.mac-title {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-align: center;
    flex: 1;
    margin-right: 80px; /* Balance the buttons on the left */
}

.mac-screen {
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    position: relative;
}

.mac-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 8px 8px;
}

/* Responsive Design for Dashboard Carousel */
@media (max-width: 1024px) {
    .dashboard-carousel {
        max-width: 90%;
    }
    
    .mac-frame {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dashboard-carousel {
        margin: 30px 0;
        max-width: 95%;
    }
    
    .mac-frame {
        padding: 6px;
    }
    
    .mac-header {
        padding: 10px 12px;
    }
    
    .mac-title {
        font-size: 12px;
        margin-right: 60px;
    }
    
    .mac-btn {
        width: 10px;
        height: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .demo-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .demo-btn i {
        font-size: 18px;
    }
} 