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

:root {
    --primary-blue: #1E90FF;
    --primary-purple: #6B46C1;
    --primary-gradient: linear-gradient(135deg, #1E90FF 0%, #6B46C1 100%);
    --recover-green: #4FD1C7;
    --recover-teal: #14B8A6;
    --recover-gradient: linear-gradient(135deg, #4FD1C7 0%, #14B8A6 100%);
    --dark-bg: #0F172A;
    --light-bg: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --border-light: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    touch-action: manipulation;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.nav-logo .logo {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #6B46C1 50%, #4FD1C7 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

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

.hero-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--dark-bg);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #2D3748;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #4A5568;
    border-radius: 3px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-preview {
    width: 120px;
    height: auto;
    z-index: 2;
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #FAFBFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-mission {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.ios-bg {
    background: var(--primary-gradient);
}

.productivity-bg {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.innovation-bg {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.feature-card:hover .icon-background {
    opacity: 0.2;
    transform: scale(1.1);
}

.icon {
    font-size: 40px;
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-stats .stat {
    background: var(--light-bg);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ios-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.productivity-glow {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.innovation-glow {
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Apps Section */
.apps {
    padding: 100px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.app-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.app-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-card.featured {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--recover-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.app-logo img {
    width: 120px;
    height: auto;
    border-radius: 20px;
}

.app-icon-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--recover-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-title.tismo {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-status {
    color: var(--recover-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    background: var(--light-bg);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 20px;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
}

.email-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
}

.partnership-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-bg);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-email {
    font-weight: 600;
    color: var(--text-primary);
}

.copy-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.copy-btn.copied {
    background: #10B981;
}

.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.contact-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-footer p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-tagline {
    margin-top: 8px !important;
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
/* Mobile styles for RecoverMe card - Square compact design */
@media (max-width: 768px) {
    .apps {
        padding: 40px 0;
        min-height: auto;
    }

    .app-card.featured {
        min-height: auto;
        height: auto;
        padding: 15px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        border-radius: 16px;
        width: 85%;
        max-width: 320px;
        box-sizing: border-box;
        overflow: hidden;
        border: 1.5px solid var(--recover-teal);
        justify-content: flex-start;
        gap: 6px;
    }
    
    .app-card.featured .app-logo {
        margin-bottom: 8px;
    }
    
    .app-card.featured .app-logo img {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .app-card.featured .app-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .app-card.featured .app-title {
        font-size: 1.5rem;
        margin-bottom: 2px;
        font-weight: 700;
    }
    
    .app-card.featured .app-status {
        font-size: 0.75rem;
        margin-bottom: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .app-card.featured .app-description {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 5px;
        margin-bottom: 15px;
        text-align: center;
        color: var(--text-secondary);
    }
    
    .app-card.featured .app-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .app-card.featured .feature-tag {
        font-size: 0.7rem;
        padding: 8px 6px;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        border-radius: 8px;
        background: var(--light-bg);
    }
    
    .app-card.featured .app-cta {
        width: 100%;
    }
    
    .app-card.featured .app-cta {
        width: 100%;
        margin-top: auto;
    }
    
    .app-card.featured .app-cta .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 12px 20px;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 15px;
    }
    
    .nav-logo .logo {
        height: 60px;
    }
    
    .hero {
        padding: 100px 0 30px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
        margin: 0 auto;
    }
    
    .animated-bg {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .apps {
        padding: 40px 10px;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .app-showcase {
        gap: 20px;
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .app-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding: 20px;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .app-logo img {
        width: 50px;
        height: 50px;
        margin: 0 auto 8px;
    }
    
    .app-title {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .app-status {
        font-size: 0.7rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }
    
    .app-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .app-features {
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
        white-space: nowrap;
    }
    
    .app-cta .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .coming-soon-section {
        padding: 25px 15px;
        margin: 20px auto 0;
        width: 90%;
        max-width: 350px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
    }
    
    .coming-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
        font-weight: 700;
    }
    
    .coming-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.3;
        color: var(--text-secondary);
    }
    
    .coming-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        margin-top: 15px;
    }
    
    .coming-card {
        padding: 20px 15px;
        background: var(--white);
        border-radius: 15px;
        gap: 10px;
    }
    
    .coming-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .coming-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .coming-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .coming-card h4 {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .coming-card p {
        font-size: 0.75rem;
        line-height: 1.3;
        display: none;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .icon {
        font-size: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-card-main {
        padding: 40px 25px;
        max-width: 100%;
    }
    
    .contact-icon-large {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .contact-card-main h3 {
        font-size: 1.5rem;
    }
    
    .contact-email-large {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    .copy-btn-large {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .legal {
        padding: 60px 0;
    }
    
    .legal-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-card {
        padding: 30px;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-logo img {
        height: 80px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 80px);
    }
    
    .modal-close {
        right: 20px;
        top: 20px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .coming-card {
        padding: 15px 12px;
    }
    
    .coming-card h4 {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .coming-card p {
        display: block;
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .coming-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .coming-icon {
        width: 35px;
        height: 35px;
    }

    .coming-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .app-card.featured {
        padding: 12px 10px;
        width: 85%;
        max-width: 300px;
        margin: 0 auto;
        gap: 5px;
    }

    .app-card.featured .app-logo img {
        width: 45px;
        height: 45px;
    }

    .app-card.featured .app-title {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .app-card.featured .app-status {
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .app-card.featured .app-description {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .app-card.featured .app-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        margin-bottom: 10px;
    }

    .app-card.featured .feature-tag {
        font-size: 0.6rem;
        padding: 4px 3px;
    }

    .app-card.featured .app-cta .btn {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .coming-soon-section {
        margin-top: 30px;
        padding: 25px 15px;
    }

    .coming-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .coming-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .coming-grid {
        gap: 8px;
    }

    .coming-card {
        padding: 10px 8px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .apps {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        font-size: 0.95rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .app-card {
        padding: 15px;
    }
    
    .app-logo img {
        width: 50px;
        height: 50px;
    }
    
    .app-title {
        font-size: 1.2rem;
    }
    
    .app-description {
        font-size: 0.85rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
        white-space: nowrap;
    }
    
    
    .coming-icon {
        font-size: 1.3rem;
    }
    
}

/* Animated Background Elements */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: morphFloat 20s infinite ease-in-out;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    top: 10%;
    left: -10%;
    animation-duration: 18s;
}

.sphere-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #4FD1C7 0%, #14B8A6 100%);
    bottom: 10%;
    right: -5%;
    animation-duration: 22s;
    animation-delay: 2s;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFD700 0%, #FF6B6B 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-delay: 4s;
}

@keyframes morphFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05) rotate(270deg);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatRotate 15s infinite linear;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation: floatBounce 10s infinite ease-in-out;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    transform: rotate(45deg);
    animation: floatRotate 20s infinite linear reverse;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 30%;
    border-radius: 50% 20% 80% 20%;
    animation: floatMorph 12s infinite ease-in-out;
}

@keyframes floatRotate {
    from { transform: rotate(0deg) translateX(20px); }
    to { transform: rotate(360deg) translateX(20px); }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
}

@keyframes floatMorph {
    0%, 100% { border-radius: 50% 20% 80% 20%; transform: scale(1); }
    25% { border-radius: 20% 80% 50% 70%; transform: scale(1.1); }
    50% { border-radius: 80% 30% 60% 40%; transform: scale(0.95); }
    75% { border-radius: 40% 60% 30% 80%; transform: scale(1.05); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced App Cards */
.app-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(79, 209, 199, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover::before {
    opacity: 1;
}

.app-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 209, 199, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.app-card:hover .card-glow {
    opacity: 1;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.coming-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6B46C1 0%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 15px 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.coming-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}

.coming-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.coming-icon.finance {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.coming-icon.habit {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: white;
}

.coming-icon.vault {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
}

.coming-icon svg {
    width: 24px;
    height: 24px;
}

.coming-card:hover .coming-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.coming-card h4 {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
}

.coming-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.2); }
}

/* Enhanced Feature Cards with 3D */
.feature-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
}

/* Interactive Button Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Phone Mockup Enhancement */
.phone-mockup {
    animation: phoneFloat 6s infinite ease-in-out;
    box-shadow: 
        0 20px 40px -5px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(107, 70, 193, 0.2);
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-screen {
    position: relative;
    overflow: hidden;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Glassmorphism Effects */
.contact-card,
.contact-form-card,
.stat-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navbar Enhancement */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Simplified Contact Section */
.contact-simple {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.contact-card-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 144, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-main:hover::before {
    opacity: 1;
}

.contact-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.2);
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #1E90FF 0%, #6B46C1 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-card-main h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #6B46C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-detail-large {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-email-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 15px 30px;
    background: var(--light-bg);
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
}

.copy-btn-large {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.copy-btn-large.copied {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

/* Legal Section */
.legal {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.legal-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.legal-placeholder {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Legal Modals */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    padding: 30px 40px;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1E90FF 0%, #6B46C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 1px solid var(--border-light);
}

.modal-close {
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 35px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px 40px;
    max-height: calc(80vh - 100px);
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.modal-body h3:first-of-type {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-body ul {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 25px;
    margin-bottom: 20px;
}

.modal-body ul li {
    margin-bottom: 10px;
}

.legal-meta {
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text-secondary);
}

.legal-divider {
    height: 1px;
    background: var(--border-light);
    margin: 40px 0;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1E90FF 0%, #6B46C1 100%);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6B46C1 0%, #1E90FF 100%);
}