/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add subtle glow effects to match design card */
.container {
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1A1A1F;
    background-image: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 50%, #1A1A1F 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(106, 90, 205, 0.2);
}

.navbar.scrolled {
    background: rgba(26, 26, 31, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(106, 90, 205, 0.4));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(106, 90, 205, 0.6));
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #6A5ACD;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

/* Full navigation menu - shown by default */
.nav-menu-full {
    display: flex;
}

.nav-menu-condensed {
    display: none;
}

/* Condensed navigation for medium screens */
@media (max-width: 1024px) {
    .nav-menu-full {
        display: none;
    }
    
    .nav-menu-condensed {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-menu-condensed .cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6A5ACD;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6A5ACD;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(106, 90, 205, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #7B68EE, #9370DB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 50%, #1A1A1F 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #6A5ACD;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.light-highlight {
    color: #8067C2;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.green-highlight {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7B68EE, #9370DB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6A5ACD;
}

.btn-outline {
    background: transparent;
    color: #6A5ACD;
    border: 2px solid #6A5ACD;
}

.btn-outline:hover {
    background: #6A5ACD;
    color: white;
    box-shadow: 0 0 15px rgba(106, 90, 205, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Ensure icon-based stat aligns with number-based stats */
.stat i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #10b981;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.section-header p {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(42, 42, 63, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.about-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.about-list i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6A5ACD;
    margin-top: 0.25rem;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.6;
}

.app-download-section {
    background: rgba(42, 42, 63, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 220px;
}

.app-download-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.app-download-section p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Web Launch Section */
.web-launch-section {
    background: rgba(42, 42, 63, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.web-launch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.web-launch-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.web-launch-icon i {
    font-size: 2rem;
    color: white;
}

.web-launch-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.web-launch-section p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 300px;
}

.web-launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #10b981, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.web-launch-btn:hover {
    background: linear-gradient(135deg, #059669, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.web-launch-btn i {
    font-size: 1rem;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Vertical App Store Buttons */
.app-store-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.store-btn-vertical, .play-btn-vertical {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 180px;
    transition: transform 0.3s ease;
    overflow: visible;
    border-radius: 12px;
    padding: 2px;
}

.store-btn-vertical:hover, .play-btn-vertical:hover {
    transform: translateY(-3px);
}

.store-btn-vertical img, .play-btn-vertical img {
    height: 100%;
    width: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.2);
    transition: box-shadow 0.3s ease;
    max-width: 100%;
    object-fit: contain;
}

.store-btn-vertical:hover img, .play-btn-vertical:hover img {
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.4);
}

.store-btn, .play-btn {
    display: inline-flex;
    align-items: center;
    height: 50px;
    width: 150px;
    justify-content: center;
    transition: transform 0.3s ease;
    overflow: visible;
    padding: 2px;
}

.store-btn:hover, .play-btn:hover {
    transform: translateY(-2px);
}

.store-btn img, .play-btn img {
    height: 100%;
    width: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.2);
    transition: box-shadow 0.3s ease;
    max-width: 100%;
    object-fit: contain;
}

.store-btn:hover img, .play-btn:hover img {
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(106, 90, 205, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* Footer column alignments */
.footer-content .footer-section:nth-child(1) {
    text-align: left;
}

.footer-content .footer-section:nth-child(2) {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content .footer-section:nth-child(2) h4 {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content .footer-section:nth-child(3) {
    text-align: right;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(106, 90, 205, 0.4));
}

.footer-logo h3 {
    color: #6A5ACD;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #6A5ACD;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
    vertical-align: middle;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(106, 90, 205, 0.2);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 90, 205, 0.3);
}

.social-links a:hover {
    background: #6A5ACD;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(106, 90, 205, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: minmax(200px, 1fr) minmax(150px, 1fr) minmax(150px, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1000px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: minmax(180px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: minmax(160px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
        gap: 0.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 850px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: minmax(140px, 1fr) minmax(90px, 1fr) minmax(90px, 1fr);
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 800px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: minmax(120px, 1fr) minmax(80px, 1fr) minmax(80px, 1fr);
        gap: 0.25rem;
    }
    
    .container {
        padding: 0 5px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-content .footer-section:nth-child(1) {
        text-align: left;
    }
    
    .footer-content .footer-section:nth-child(2) {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content .footer-section:nth-child(2) h4 {
        text-align: left;
        width: 100%;
    }
    
    .footer-content .footer-section:nth-child(3) {
        text-align: right;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: left;
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu-full,
    .nav-menu-condensed {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 31, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(106, 90, 205, 0.2);
        gap: 0;
    }
    
    .nav-menu-full.active,
    .nav-menu-condensed.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content .footer-section:nth-child(1),
    .footer-content .footer-section:nth-child(2),
    .footer-content .footer-section:nth-child(3) {
        text-align: center;
        display: block;
        align-items: unset;
    }
    
    .footer-content .footer-section:nth-child(2) h4 {
        text-align: center;
        width: auto;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* App Page Specific Styles */
.app-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 50%, #1A1A1F 100%);
    color: white;
    text-align: center;
    position: relative;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.app-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.app-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    position: relative;
}

.app-screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-image {
    position: relative;
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.app-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 100%);
    position: relative;
}

.app-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.feature-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid rgba(106, 90, 205, 0.3);
    background: rgba(26, 26, 31, 0.8);
    color: #cccccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    border-color: #6A5ACD;
    color: #6A5ACD;
    background: rgba(106, 90, 205, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white;
    border-color: #6A5ACD;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.tab-content {
    background: rgba(42, 42, 63, 0.8);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.panel-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.panel-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.feature-list i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.panel-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-app {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    position: relative;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.mobile-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mobile-features {
    margin-bottom: 2rem;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-feature i {
    font-size: 1.5rem;
    color: #6A5ACD;
    margin-top: 0.25rem;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
}

.mobile-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.mobile-feature p {
    color: #cccccc;
    font-size: 1rem;
        margin: 0;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 150px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn img {
    height: 100%;
    width: auto;
}

.mobile-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Active nav link styling */
.nav-link.active {
    color: #6A5ACD;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments for app page */
@media (max-width: 768px) {
    .app-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    
    .panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
    
    .web-launch-section {
        padding: 1.5rem;
    }
    
    .web-launch-icon {
        width: 60px;
        height: 60px;
    }
    
    .web-launch-icon i {
        font-size: 1.5rem;
    }
    
    .web-launch-section h3 {
        font-size: 1.25rem;
    }
    
    .web-launch-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .app-store-buttons-vertical {
        gap: 1rem;
    }
    
    .store-btn-vertical, .play-btn-vertical {
        height: 55px;
        width: 160px;
    }
    
    .app-download-section {
        min-width: 200px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .app-hero-content h1 {
        font-size: 2rem;
    }
    
    .tab-content {
        padding: 2rem 1rem;
    }
    
    .panel-text h3 {
        font-size: 1.5rem;
    }
    
    .mobile-text h2 {
        font-size: 2rem;
    }
}

/* How it Works Page Styles */
.how-it-works-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 50%, #1A1A1F 100%);
    color: white;
    text-align: center;
    position: relative;
}

.how-it-works-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.how-it-works-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.how-it-works-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.overview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    position: relative;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.overview-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #6A5ACD;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.stat-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.overview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.business-process,
.user-process {
    padding: 80px 0;
}

.business-process {
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    position: relative;
}

.business-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.user-process {
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 100%);
    position: relative;
}

.user-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.process-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(42, 42, 63, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-features i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.payment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A3F 0%, #1A1A1F 100%);
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.payment-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.payment-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.payment-feature i {
    font-size: 1.5rem;
    color: #6A5ACD;
    margin-top: 0.25rem;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
}

.payment-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.payment-feature p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.payment-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 42, 63, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.flow-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.875rem;
    color: #cccccc;
    margin: 0;
}

.flow-arrow {
    color: #6A5ACD;
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.5);
}

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 63, 0.8);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #646adb, #4c8bf0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Condensed Process Steps */
.process-steps-condensed {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: rgba(42, 42, 63, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 350px;
    max-width: 100%;
}

/* Medium screens - single column layout */
@media (max-width: 900px) {
    .process-steps-condensed {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .step-card {
        width: 100%;
    }
}

/* Large screens - ensure 2x2 layout with larger cards */
@media (min-width: 1200px) {
    .process-steps-condensed {
        grid-template-columns: repeat(2, 400px);
        gap: 2rem;
    }
    
    .step-card {
        width: 400px !important;
    }
}

/* Extra large screens - even larger cards */
@media (min-width: 1400px) {
    .process-steps-condensed {
        grid-template-columns: repeat(2, 450px);
        gap: 2.5rem;
    }
    
    .step-card {
        width: 450px !important;
        padding: 2rem;
    }
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.4);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-header .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.step-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.step-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}

/* Mobile App Grid Layout */
.mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-features-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* New Feature Navigation Layout */
.feature-navigation {
    margin-top: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-tab {
    padding: 1rem 2rem;
    background: rgba(42, 42, 63, 0.8);
    border: 2px solid rgba(106, 90, 205, 0.3);
    color: #cccccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.category-tab:hover {
    border-color: #6A5ACD;
    color: #6A5ACD;
    background: rgba(106, 90, 205, 0.1);
}

.category-tab.active {
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white;
    border-color: #6A5ACD;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.feature-content-area {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-sidebar {
    background: rgba(42, 42, 63, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.sidebar-section {
    display: none;
}

.sidebar-section.active {
    display: block;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #cccccc;
}

.sidebar-item:hover {
    background: rgba(106, 90, 205, 0.1);
    color: #6A5ACD;
}

.sidebar-item.active {
    background: linear-gradient(135deg, #6A5ACD, #7B68EE 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.sidebar-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.sidebar-item span {
    font-weight: 500;
}

.feature-content {
    background: rgba(42, 42, 63, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
    min-height: 500px;
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
}

.feature-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.feature-text p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.feature-list i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

/* Responsive image sizing */
@media (max-width: 1024px) {
    .feature-img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .feature-img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .feature-img {
        max-width: 250px;
    }
}

/* Responsive adjustments for How it Works page */
@media (max-width: 768px) {
    .how-it-works-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-condensed {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .step-card {
        width: 100%;
        padding: 1.25rem;
    }
    
    .step-header {
        gap: 0.75rem;
    }
    
    .step-header .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .step-header h3 {
        font-size: 1.1rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
}

/* Title Section Styles (Homepage) */
.title {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1A1A1F 0%, #2A2A3F 50%, #1A1A1F 100%);
    color: white;
    text-align: center;
    position: relative;
}

.title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(106, 90, 205, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.title-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.title-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.title-description {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    opacity: 0.9;
    line-height: 1.6;
}

.title-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.title-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .title-title {
        font-size: 2.25rem;
    }
    .title-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .title-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-hero h1 {
        font-size: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .payment-text h2 {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .flow-step {
        min-width: 120px;
        padding: 1rem;
    }
    
    .store-btn-vertical, .play-btn-vertical {
        height: 50px;
        width: 150px;
    }
    
    .app-download-section {
        min-width: 180px;
        padding: 1rem;
    }
    
    .step-card {
        padding: 1rem;
    }
    
    .step-header .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .step-header h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
    
    .benefit-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .mobile-app-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .mobile-features {
        gap: 1.5rem;
    }
}

/* Tablet responsive for mobile app grid */
@media (max-width: 1024px) {
    .mobile-app-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
    }
    
    .mobile-features {
        gap: 1.75rem;
    }
    
    .feature-content-area {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-sidebar {
        order: 2;
    }
    
    .feature-content {
        order: 1;
        min-height: auto;
    }
    
    .feature-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .category-tab {
        width: 200px;
        text-align: center;
    }
}