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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 35px;
}

.lang-btn:hover {
    background: rgba(0, 122, 255, 0.1);
}

.lang-btn.active {
    background: #007AFF;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #007AFF 0%, #0A84FF 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, #007AFF 0%, #4A90E2 100%);
    border-radius: 50% 50% 0 0;
    transform: scale(1.5);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Hero text entrance — slides in from left */
@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-55px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: heroSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.hero h2 {
    animation: heroSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.hero p {
    animation: heroSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-download {
    animation: heroSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s both;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0;
}

.hero h2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.6rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.download-buttons.large {
    justify-content: center;
}

.download-btn img {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.combined-download-badges {
    height: 120px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.combined-download-badges:hover {
    transform: scale(1.05);
}

.combined-download-badges.large {
    height: 160px;
}

/* Hero Download Section */
.hero-download {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0;
}

.hero-download-badges {
    height: 120px;
    max-width: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-download-badges:hover {
    transform: scale(1.05);
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
}

/* Removed - duplicated below */

/* Phone mockup animations */
@keyframes phoneEntrance {
    from {
        opacity: 0;
        transform: rotate(-5deg) translateX(70px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: rotate(-5deg) translateY(0px);
    }
}

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

@keyframes phoneShadow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30); }
    50%       { box-shadow: 0 42px 80px rgba(0, 0, 0, 0.12); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    padding: 8px;
    position: relative;
    /* Entrance (0.4s delay, 0.9s duration) then float loops from 1.3s */
    animation:
        phoneEntrance 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) 0.4s both,
        phoneFloat    4s ease-in-out 1.3s infinite,
        phoneShadow   4s ease-in-out 1.3s infinite;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    border-radius: 32px;
    display: block;
}


/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    font-weight: 600;
}

.tracker-icon {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
}

.analytics-icon {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
}

.community-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.settings-icon {
    background: linear-gradient(135deg, #6C757D 0%, #495057 100%);
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* App Features Section */
.app-features {
    padding: 100px 0;
    background: white;
}

.app-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF 0%, #0A84FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

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

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.download-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.download-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons.large .download-btn img {
    height: 80px;
}

/* Download buttons container */
.download-buttons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Ensure proper alignment in hero section */
.hero-download {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0;
}

/* Center alignment for download section */
.download-section .download-buttons-container {
    justify-content: center;
}

/* Store badge link wrapper */
.store-badge-link {
    display: inline-block;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-badge-link:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.store-badge-link:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Store badge styling */
.store-badge {
    height: 60px;
    width: 180px;
    object-fit: contain;
    display: block;
    cursor: pointer;
}


.hero-download .store-badge {
    height: 70px;
    width: 200px;
}

/* Download section store badges */
.download-section .store-badge {
    height: 80px;
    width: 220px;
}

/* ─── New Custom Download Buttons ─── */
.custom-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111;
    color: white;
    text-decoration: none;
    padding: 13px 22px 13px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 200px;
    cursor: pointer;
}

.custom-dl-btn:hover {
    transform: translateY(-4px) scale(1.04);
}

.custom-dl-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.android-dl-btn:hover {
    box-shadow: 0 14px 38px rgba(61, 220, 132, 0.42);
}

.ios-dl-btn:hover {
    box-shadow: 0 14px 38px rgba(180, 185, 210, 0.4);
}

/* Badge image used as icon inside the button */
.dl-btn-badge-icon {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    border-radius: 4px;
}

.dl-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.dl-btn-sub {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1;
}

.dl-btn-platform {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

/* Large variant for the download section */
.custom-dl-btn.large {
    padding: 16px 28px 16px 18px;
    border-radius: 18px;
    min-width: 230px;
    gap: 14px;
}

.custom-dl-btn.large .dl-btn-badge-icon {
    height: 44px;
}

.custom-dl-btn.large .dl-btn-sub {
    font-size: 12px;
}

.custom-dl-btn.large .dl-btn-platform {
    font-size: 24px;
}

/* Hero section: pulse animation on the new buttons */
.hero-download .custom-dl-btn {
    animation: dlBtnPulse 2.5s ease-in-out 1.4s 3;
}

.hero-download .android-dl-btn {
    animation-delay: 1.4s;
}

.hero-download .ios-dl-btn {
    animation-delay: 1.7s;
}

@keyframes dlBtnPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45), 0 4px 18px rgba(0,0,0,0.35); }
    50%  { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0),  0 4px 18px rgba(0,0,0,0.35); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0),    0 4px 18px rgba(0,0,0,0.35); }
}

/* ─── Legacy Custom Download Buttons (kept for reference) ─── */
/* Custom Download Buttons */
.custom-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.custom-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.custom-download-btn:hover::before {
    left: 100%;
}

.custom-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Android Button Styling */
.android-btn {
    background: linear-gradient(135deg, #3DDC84 0%, #4CAF50 100%);
    color: white;
}

.android-btn:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    border-color: #2E7D32;
}

/* iOS Button Styling */
.ios-btn {
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    color: white;
}

.ios-btn:hover {
    background: linear-gradient(135deg, #0056CC 0%, #003D99 100%);
    border-color: #002966;
}

/* Download Icon */
.download-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-platform-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Download Content */
.download-content {
    flex: 1;
    text-align: left;
}

.download-text {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2px;
}

.platform-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Platform Logo */
.platform-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
}

.platform-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Large buttons for download section */
.custom-download-btn.large {
    padding: 20px 32px;
    min-width: 250px;
}

.custom-download-btn.large .download-icon {
    width: 40px;
    height: 40px;
}

.custom-download-btn.large .main-platform-icon {
    width: 36px;
    height: 36px;
}

.custom-download-btn.large .download-text {
    font-size: 14px;
}

.custom-download-btn.large .platform-name {
    font-size: 22px;
}

.custom-download-btn.large .platform-logo {
    width: 40px;
    height: 40px;
}

.custom-download-btn.large .platform-icon {
    width: 32px;
    height: 32px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF 0%, #0A84FF 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007AFF;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #007AFF 0%, #0A84FF 100%);
    border: none;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Support Section */
.support-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.support-info h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.support-list {
    list-style: none;
    margin-bottom: 20px;
}

.support-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28A745;
    font-weight: bold;
}

.app-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.app-disclaimer p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #333;
    color: white;
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-app-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-download {
        margin: 20px 0;
        justify-content: center;
    }

    .hero-download-badges {
        height: 100px;
    }

    .hero-download .store-badge {
        height: 55px;
        width: 175px;
    }

    .download-section .store-badge {
        height: 65px;
        width: 195px;
    }

    .download-buttons-container {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Custom download buttons — tablet */
    .custom-dl-btn {
        min-width: 175px;
        padding: 12px 18px 12px 12px;
        gap: 10px;
    }

    .dl-btn-badge-icon {
        height: 30px;
    }

    .dl-btn-sub {
        font-size: 10px;
    }

    .dl-btn-platform {
        font-size: 17px;
    }

    .custom-dl-btn.large {
        padding: 14px 22px 14px 14px;
        gap: 12px;
    }

    .custom-dl-btn.large .dl-btn-badge-icon {
        height: 36px;
    }

    .custom-dl-btn.large .dl-btn-platform {
        font-size: 20px;
    }

    .hero h2 {
        font-size: 2.0rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .features h2,
    .app-features h2,
    .download-section h2,
    .contact h2 {
        font-size: 2rem;
    }

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

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-buttons {
        justify-content: center;
    }

    .container {
        padding: 0 15px;
    }
}

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

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero-download {
        margin: 15px 0;
        justify-content: center;
    }

    .hero-download-badges {
        height: 80px;
    }

    .hero-download .store-badge {
        height: 50px;
        width: 165px;
    }

    .download-section .store-badge {
        height: 60px;
        width: 185px;
    }

    .download-buttons-container {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    /* Custom download buttons responsive */
    .custom-download-btn {
        min-width: 180px;
        padding: 14px 20px;
    }

    .custom-download-btn .download-text {
        font-size: 11px;
    }

    .custom-download-btn .platform-name {
        font-size: 16px;
    }

    .custom-download-btn .download-icon {
        width: 28px;
        height: 28px;
    }

    .custom-download-btn .main-platform-icon {
        width: 24px;
        height: 24px;
    }

    .custom-download-btn .platform-logo {
        width: 28px;
        height: 28px;
    }

    .custom-download-btn .platform-icon {
        width: 20px;
        height: 20px;
    }

    .custom-download-btn.large {
        min-width: 200px;
        padding: 16px 24px;
    }

    .custom-download-btn.large .download-text {
        font-size: 12px;
    }

    .custom-download-btn.large .platform-name {
        font-size: 18px;
    }

    .custom-download-btn.large .download-icon {
        width: 32px;
        height: 32px;
    }

    .custom-download-btn.large .main-platform-icon {
        width: 28px;
        height: 28px;
    }

    .custom-download-btn.large .platform-logo {
        width: 32px;
        height: 32px;
    }

    .custom-download-btn.large .platform-icon {
        width: 24px;
        height: 24px;
    }

    .download-btn img {
        height: 50px;
    }

    .download-buttons.large .download-btn img {
        height: 60px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    /* No tilt on mobile — override keyframes to use rotate(0deg) */
    @keyframes phoneEntrance {
        from {
            opacity: 0;
            transform: rotate(0deg) translateX(40px) translateY(15px);
        }
        to {
            opacity: 1;
            transform: rotate(0deg) translateY(0px);
        }
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .support-info {
        text-align: center;
        padding: 30px 15px;
    }

    .support-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
        max-width: fit-content;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-item > div {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item .support-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Custom download buttons mobile responsive */
    .custom-download-btn {
        min-width: 160px;
        padding: 12px 16px;
        gap: 10px;
    }

    .custom-download-btn .download-text {
        font-size: 10px;
    }

    .custom-download-btn .platform-name {
        font-size: 14px;
    }

    .custom-download-btn .download-icon {
        width: 24px;
        height: 24px;
    }

    .custom-download-btn .main-platform-icon {
        width: 20px;
        height: 20px;
    }

    .custom-download-btn .platform-logo {
        width: 24px;
        height: 24px;
    }

    .custom-download-btn .platform-icon {
        width: 18px;
        height: 18px;
    }

    .custom-download-btn.large {
        min-width: 180px;
        padding: 14px 20px;
    }

    .custom-download-btn.large .download-text {
        font-size: 11px;
    }

    .custom-download-btn.large .platform-name {
        font-size: 16px;
    }

    .custom-download-btn.large .download-icon {
        width: 28px;
        height: 28px;
    }

    .custom-download-btn.large .main-platform-icon {
        width: 24px;
        height: 24px;
    }

    .custom-download-btn.large .platform-logo {
        width: 28px;
        height: 28px;
    }

    .custom-download-btn.large .platform-icon {
        width: 20px;
        height: 20px;
    }

    /* Stack buttons vertically on very small screens */
    .download-buttons-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .custom-download-btn {
        width: 100%;
        max-width: 280px;
    }

    /* Custom download buttons — phone */
    .custom-dl-btn {
        min-width: 0;
        width: 100%;
        max-width: 280px;
        padding: 12px 16px 12px 12px;
        gap: 10px;
        justify-content: flex-start;
    }

    .dl-btn-badge-icon {
        height: 26px;
    }

    .dl-btn-sub {
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .dl-btn-platform {
        font-size: 16px;
    }

    .custom-dl-btn.large {
        min-width: 0;
        width: 100%;
        max-width: 280px;
        padding: 13px 16px 13px 12px;
        border-radius: 14px;
    }

    .custom-dl-btn.large .dl-btn-badge-icon {
        height: 30px;
    }

    .custom-dl-btn.large .dl-btn-sub {
        font-size: 10px;
    }

    .custom-dl-btn.large .dl-btn-platform {
        font-size: 18px;
    }
}

/* Smooth animations */
.feature-card,
.download-btn {
    transition: all 0.3s ease;
}

/* Loading states */
.download-btn {
    position: relative;
    overflow: hidden;
}

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

.download-btn:hover::before {
    left: 100%;
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up    { transform: translateY(44px); }
.reveal-left  { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }
.reveal-scale { transform: scale(0.88) translateY(20px); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: opacity 0.4s ease; transform: none !important; }
    .logo, .hero h2, .hero p, .hero-download { animation: none; opacity: 1; }
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007AFF 0%, #0A84FF 100%);
    color: white;
}

.success-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.success-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.back-btn {
    display: inline-block;
    background: white;
    color: #007AFF;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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