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

/* iOS safe area support */
:root {
    --vh: 1vh;
}

body {
    font-family: 'Urbanist', sans-serif;
    background: #0F1419;
    color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove tap highlight on interactive elements */
a, button, .store-button-img, .download-btn, .btn-get-started, .btn-login {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
.mobile-menu-toggle:focus-visible {
    outline: 2px solid #A6D04F;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Header/Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    padding-left: max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
    padding-top: max(20px, env(safe-area-inset-top));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #2E353D;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-img {
    width: 65px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-inline {
    height: 1em;
    width: auto;
    object-fit: contain;
    vertical-align: baseline;
    display: inline-block;
    margin: 0 8px;
    position: relative;
    top: 0.1em;
}

.logo-inline-large {
    height: 1em;
    width: auto;
    object-fit: contain;
    vertical-align: baseline;
    display: inline-block;
    margin: 0 10px;
    position: relative;
    top: 0.1em;
}

.steps-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 4px 15px rgba(166, 208, 79, 0.3);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

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

.nav-menu a {
    text-decoration: none;
    color: #C7CDD3;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A6D04F;
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: #A6D04F;
}

.nav-cta {
    display: flex;
    gap: 16px;
}

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

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #A6D04F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu li:nth-child(4) { transition-delay: 0.4s; }

.mobile-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 20px;
}

.mobile-menu a:hover {
    color: #A6D04F;
}

.btn-login {
    padding: 10px 24px;
    background: transparent;
    color: #A6D04F;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    border-radius: 8px;
}

.btn-login:hover {
    background: rgba(166, 208, 79, 0.1);
}

.btn-get-started {
    padding: 10px 24px;
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(166, 208, 79, 0.3);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 208, 79, 0.4);
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch devices */
    .nav-menu a:hover,
    .btn-login:hover,
    .btn-get-started:hover,
    .store-button-img:hover,
    .download-btn:hover,
    .hero-screenshot:hover,
    .hero-screenshot-2:hover,
    .floating-card:hover,
    .avatar:hover,
    .feature-phone:hover,
    .feature-screenshot-solo:hover,
    .ready-screenshot:hover,
    .download-screenshot:hover,
    .testimonial-card:hover,
    .download-btn-dark:hover {
        transform: none;
    }

    /* Keep border color changes on touch */
    .download-btn:hover,
    .floating-card:hover,
    .ready-feature:hover,
    .testimonial-card:hover {
        border-color: #A6D04F;
    }

    /* Increase tap target sizes */
    .nav-menu a,
    .mobile-menu a {
        padding: 12px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-login,
    .btn-get-started {
        min-height: 44px;
        padding: 12px 28px;
    }

    .store-button-img {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .download-btn,
    .download-btn-dark {
        min-height: 44px;
    }
}

/* Hero Section */
.hero-section {
    padding: 140px 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(166, 208, 79, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #C7CDD3;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background-color: #000;
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    min-width: 180px;
    border: 2px solid #1a1a1a;
}

.store-button:hover {
    background-color: #1a1a1a;
    border-color: #A6D04F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 208, 79, 0.3);
}

.store-button-img {
    display: inline-block;
    transition: all 0.3s ease;
}

.store-button-img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.store-badge {
    height: 50px;
    width: auto;
    display: block;
}

.store-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.store-label {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #1B2026;
    color: #FFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #2E353D;
}

.download-btn:hover {
    background: #232A31;
    border-color: #A6D04F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 208, 79, 0.2);
}

.download-icon {
    font-size: 24px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    z-index: 2;
}

.hero-screenshot {
    max-width: 400px;
    height: auto;
    border-radius: 30px;
    z-index: 3;
    position: relative;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.hero-screenshot:hover {
    transform: translateY(-10px);
}

.hero-screenshot-2 {
    max-width: 320px;
    height: auto;
    border-radius: 30px;
    z-index: 2;
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    opacity: 0.9;
    transition: transform 0.3s ease;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-screenshot-2 {
        left: 5px;
        max-width: 200px;
    }
}

.hero-screenshot-2:hover {
    transform: translateY(-50%) scale(0.98);
    opacity: 1;
}

.floating-card {
    position: absolute;
    background: #1B2026;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
    z-index: 4;
    border: 1px solid #2E353D;
    transition: all 0.3s ease;
}

.floating-card:hover {
    border-color: #A6D04F;
    transform: translateY(-5px);
}

.card-1 {
    top: 50px;
    right: 50px;
    width: 200px;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 60px;
    left: -100px;
    width: 160px;
    animation-delay: 1s;
    text-align: center;
}

.card-team {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #1B2026;
    margin-left: -8px;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1) translateY(-2px);
    z-index: 10;
}

.avatar-1 {
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
}

.avatar-2 {
    background: linear-gradient(135deg, #8FCB3C 0%, #A6D04F 100%);
}

.avatar-3 {
    background: #A6D04F;
}

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

.yellow-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(166, 208, 79, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}


.phone-content {
    text-align: center;
    color: white;
}

.phone-emoji {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

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

.phone-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 40px;
    background: linear-gradient(180deg, #0F1419 0%, #1B2026 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(166, 208, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #C7CDD3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.feature-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.yellow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(166, 208, 79, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.feature-phone {
    position: relative;
    width: 340px;
    height: 690px;
    background: #1a1a1a;
    border-radius: 50px;
    box-shadow: 
        0 0 0 12px #0a0a0a,
        0 0 0 14px #1a1a1a,
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(166, 208, 79, 0.2);
    padding: 15px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-phone:hover {
    transform: translateY(-10px);
}

.feature-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.feature-phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.feature-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.feature-screenshot-solo {
    max-width: 350px;
    height: auto;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.feature-screenshot-solo:hover {
    transform: translateY(-10px);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(166, 208, 79, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-number {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 16px;
    color: #C7CDD3;
    line-height: 1.6;
}

/* Ready Section */
.ready-section {
    padding: 100px 40px;
    background: #0F1419;
    position: relative;
}

.ready-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(166, 208, 79, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.ready-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phones-showcase {
    position: relative;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.ready-screenshot {
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.ready-screenshot:hover {
    transform: translateY(-10px);
}

.phone-small {
    width: 280px;
    height: 570px;
    background: #1a1a1a;
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    padding: 15px;
    transform: rotate(-5deg);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.phone-small:hover {
    transform: rotate(-5deg) translateY(-10px);
}

.phone-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.phone-small .feature-phone-screen {
    border-radius: 35px;
}

.yellow-blob-right {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(166, 208, 79, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.ready-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ready-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #1B2026;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #2E353D;
    transition: all 0.3s;
}

.ready-feature:hover {
    border-color: #A6D04F;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(166, 208, 79, 0.15);
}

.ready-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(166, 208, 79, 0.2) 0%, rgba(143, 203, 60, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ready-feature:hover .ready-icon {
    transform: scale(1.1);
}

.ready-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.ready-text p {
    font-size: 15px;
    color: #C7CDD3;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #0F1419 0%, #1B2026 100%);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: #232A31;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E353D;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #A6D04F;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-size: 40px;
    color: #A6D04F;
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #C7CDD3;
    line-height: 1.7;
    margin-bottom: 24px;
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #A6D04F;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .star {
    transform: scale(1.1);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 14px;
    color: #8B939C;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

.download-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite reverse;
}

.download-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    font-size: 56px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}

.download-text p {
    font-size: 18px;
    color: #1B2026;
    margin-bottom: 40px;
    line-height: 1.7;
}

.download-btn-dark {
    background: #0F1419;
    padding: 16px 32px;
    border-radius: 12px;
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.download-btn-dark:hover {
    background: #1B2026;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.download-phones {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-screenshot {
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.download-screenshot:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    background: #0F1419;
    padding: 60px 40px 40px;
    border-top: 1px solid #2E353D;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

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

.footer-brand p {
    color: #8B939C;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2E353D;
    text-align: center;
    color: #8B939C;
    font-size: 14px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-links a {
    color: #A6D04F!important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8FCB3C;
    text-decoration: underline;
}

.footer-links span {
    color: #8B939C;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    bottom: max(30px, env(safe-area-inset-bottom));
    right: 30px;
    right: max(30px, env(safe-area-inset-right));
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A6D04F 0%, #8FCB3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(166, 208, 79, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(166, 208, 79, 0.4);
}

/* Responsive */
/* Tablet Landscape: 1200px and below */
@media (max-width: 1200px) {
    .hero-section,
    .features-grid,
    .ready-grid,
    .download-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image,
    .phones-showcase,
    .feature-phone-container {
        order: -1;
    }

    .yellow-circle,
    .yellow-blob,
    .yellow-blob-right {
        display: none;
    }

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

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

    .hero-section {
        padding: 120px 40px 80px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-screenshot {
        max-width: 350px;
    }

    .hero-screenshot-2 {
        max-width: 280px;
        left: -60px;
    }

    .card-1 {
        top: auto;
        bottom: 120px;
        right: 20px;
        width: 180px;
    }

    .card-2 {
        bottom: 30px;
        left: 20px;
        width: 160px;
    }

    /* Center hero images for tablet */
    .hero-image {
        justify-content: center;
        min-height: 550px;
        padding: 40px 0;
    }

    .hero-screenshot {
        margin: 0 auto;
        margin-left: 80px;
        display: block;
        max-width: 350px;
        position: relative;
    }

    .hero-screenshot-2 {
        left: 10px;
        max-width: 280px;
    }
}

/* Tablet Portrait: 1024px and below (iPad Pro, iPad Air) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .section-title {
        font-size: 40px;
    }

    .download-text h2 {
        font-size: 44px;
    }

    .hero-section {
        padding: 110px 30px 70px;
    }

    .how-it-works,
    .ready-section,
    .testimonials-section {
        padding: 80px 30px;
    }

    .download-section {
        padding: 80px 30px;
    }
}

/* Tablet Portrait Small: 900px and below */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .download-text h2 {
        font-size: 40px;
    }

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

    .hero-image {
        min-height: 520px;
        padding: 40px 0;
    }

    .hero-screenshot {
        max-width: 320px;
        margin-left: 90px;
    }

    .hero-screenshot-2 {
        max-width: 260px;
        left: 15px;
    }

    .card-1 {
        bottom: 130px;
        right: 15px;
        width: 170px;
    }

    .card-2 {
        bottom: 25px;
        left: 15px;
        width: 150px;
    }
}

/* Tablet Portrait: 768px and below */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 16px 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        width: 55px;
        height: 35px;
    }

    /* Typography */
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .download-text h2 {
        font-size: 36px;
    }

    /* Sections Spacing */
    .hero-section {
        padding: 100px 20px 100px;
        gap: 50px;
        overflow: visible;
    }

    .how-it-works,
    .ready-section,
    .testimonials-section {
        padding: 60px 20px;
    }

    .download-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    /* Hero Section */
    .hero-image {
        min-height: 600px;
        justify-content: center;
        padding: 50px 0;
        position: relative;
    }

    .hero-screenshot {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        margin-left: 100px;
        display: block;
        position: relative;
    }

    .hero-screenshot-2 {
        max-width: 270px;
        left: 10px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .floating-card {
        padding: 16px;
    }

    .card-1 {
        top: auto;
        bottom: 150px;
        right: 15px;
        left: auto;
        width: 170px;
    }

    .card-2 {
        bottom: 40px;
        left: 15px;
        width: 150px;
    }

    /* Download Buttons */
    .download-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .store-badge {
        height: 45px;
    }

    /* Features */
    .features-grid,
    .ready-grid {
        gap: 50px;
    }

    .feature-phone-container,
    .phones-showcase {
        justify-content: center;
    }

    .feature-screenshot-solo,
    .ready-screenshot {
        max-width: 100%;
        margin: 0 auto;
    }

    .feature-list {
        gap: 30px;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-content h3 {
        font-size: 20px;
    }

    .feature-content p {
        font-size: 15px;
    }

    /* Ready Section */
    .ready-feature {
        padding: 20px;
    }

    .ready-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .ready-text h4 {
        font-size: 18px;
    }

    .ready-text p {
        font-size: 14px;
    }

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

    .testimonial-card {
        padding: 24px;
    }

    /* Download Section */
    .download-content {
        gap: 50px;
        text-align: center;
    }

    .download-text {
        text-align: center;
    }

    .download-screenshot {
        max-width: 100%;
        margin: 0 auto;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 40px 20px 30px;
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .footer-links {
        flex-wrap: wrap;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
        right: 20px;
        right: max(20px, calc(env(safe-area-inset-right) + 10px));
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Improve readability on mobile */
    p, .hero-subtitle, .section-subtitle, .feature-content p, .ready-text p, .testimonial-text {
        text-align: left;
    }

    .section-header {
        text-align: center;
    }

    /* Disable parallax on mobile */
    .hero-content,
    .hero-image {
        transform: none !important;
    }
}

/* Large Mobile: 480px and below */
@media (max-width: 480px) {
    /* Typography */
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 28px;
    }

    .download-text h2 {
        font-size: 32px;
    }

    /* Sections */
    .hero-section {
        padding: 90px 16px 90px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        overflow: visible;
    }

    .how-it-works,
    .ready-section,
    .testimonials-section {
        padding: 50px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .download-section {
        padding: 50px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    /* Prevent text overflow */
    .hero-content h1,
    .section-title,
    .download-text h2 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Hero */
    .hero-image {
        min-height: 550px;
        padding: 40px 0;
        position: relative;
    }

    .hero-screenshot {
        max-width: 280px;
        width: 100%;
        display: block;
        position: relative;
        margin-left: 70px;
    }

    .hero-screenshot-2 {
        max-width: 240px;
        left: 5px;
    }

    .floating-card {
        padding: 12px;
    }

    .floating-card div {
        font-size: 11px !important;
    }

    .card-1 {
        bottom: 130px;
        right: 10px;
        width: 150px;
    }

    .card-1 div:first-child {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    .card-1 div:nth-child(2) {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }

    .card-2 {
        bottom: 35px;
        left: 10px;
        width: 130px;
    }

    .card-2 div:first-child {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    .card-2 div:nth-child(2) {
        font-size: 18px !important;
    }

    .card-2 div:nth-child(3) {
        font-size: 11px !important;
    }

    .avatar {
        width: 26px;
        height: 26px;
        margin-left: -6px;
    }

    .card-2 .steps-icon {
        width: 26px;
        height: 26px;
    }

    /* Download Buttons */
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .store-button-img {
        width: 100%;
        text-align: center;
    }

    .store-badge {
        height: 50px;
        margin: 0 auto;
    }

    /* Features */
    .feature-item {
        gap: 16px;
    }

    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 12px;
    }

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

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

    /* Ready Features */
    .ready-features {
        gap: 24px;
    }

    .ready-feature {
        padding: 16px;
        gap: 16px;
    }

    .ready-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .ready-text h4 {
        font-size: 16px;
    }

    .ready-text p {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* Logo inline */
    .logo-inline,
    .logo-inline-large {
        max-width: 60px;
    }
}

/* Medium Mobile: 414px and below (iPhone Plus, Pro Max) */
@media (max-width: 414px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-screenshot {
        max-width: 230px;
        margin-left: 120px;
    }

    .hero-screenshot-2 {
        max-width: 190px;
        left: 0px;
    }
}

/* Small Mobile: 375px and below (iPhone SE, iPhone 12/13 mini) */
@media (max-width: 375px) {
    /* Typography */
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .download-text h2 {
        font-size: 28px;
    }

    /* Navbar */
    .navbar {
        padding: 14px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .logo-img {
        width: 50px;
        height: 30px;
    }

    /* Hero */
    .hero-screenshot {
        max-width: 220px;
        width: 100%;
        display: block;
        margin-left: 75px;
    }

    .hero-screenshot-2 {
        display: none;
    }

    /* Sections */
    .section-header {
        margin-bottom: 40px;
    }

    /* Feature Screenshots */
    .feature-screenshot-solo,
    .ready-screenshot,
    .download-screenshot {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Buttons */
    .download-btn-dark {
        padding: 14px 28px;
        font-size: 15px;
    }

    .store-badge {
        height: 48px;
    }
}

/* Extra Small Mobile: 360px and below (Small Android phones) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .download-text h2 {
        font-size: 26px;
    }

    .hero-screenshot {
        max-width: 200px;
        width: 100%;
        display: block;
        margin-left: 70px;
    }

    .feature-screenshot-solo,
    .ready-screenshot,
    .download-screenshot {
        max-width: 260px;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .ready-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Very Small Mobile: 320px and below (iPhone SE 1st gen) */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .download-text h2 {
        font-size: 24px;
    }

    .hero-subtitle,
    .section-subtitle {
        font-size: 14px;
    }

    .hero-screenshot {
        max-width: 180px;
        width: 100%;
        display: block;
        margin-left: 65px;
    }

    .feature-screenshot-solo,
    .ready-screenshot,
    .download-screenshot {
        max-width: 240px;
    }

    .store-badge {
        height: 42px;
    }

    .mobile-menu a {
        font-size: 24px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce blur effects for better performance */
    .yellow-circle,
    .yellow-blob,
    .yellow-blob-right {
        filter: blur(40px) !important;
    }

    /* Disable complex animations on mobile */
    .hero-section::before,
    .how-it-works::before,
    .ready-section::before,
    .download-section::before,
    .download-section::after {
        animation: none !important;
    }

    /* Simplify floating card animations */
    .floating-card {
        animation: none !important;
    }

    /* Add will-change for smooth scrolling */
    .navbar {
        will-change: transform, box-shadow;
    }

    .mobile-menu-overlay {
        will-change: opacity, visibility;
    }

    .mobile-menu li {
        will-change: opacity, transform;
    }
}

/* Landscape mobile orientation */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 20px 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-screenshot {
        max-width: 200px;
    }

    .hero-screenshot-2 {
        max-width: 180px;
    }

    .mobile-menu-overlay {
        padding: 20px;
    }

    .mobile-menu li {
        margin: 20px 0;
    }

    .mobile-menu a {
        font-size: 22px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-content,
    .hero-image {
        transform: none !important;
    }
}


