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

html {
    scroll-behavior: smooth;
}

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;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #007a78 0%, #019671 30%, #00a7c8 70%, #0081a8 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.logo-text,
.footer-logo .logo-text {
    font-family: 'Paytone One', sans-serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.5px;
}


/* Navbar for terms page */
.terms-page .navbar {
    background: linear-gradient(135deg, #FF6200, #FF8A00);
    box-shadow: 0 4px 20px rgba(255, 98, 0, 0.3);
    margin-bottom: 0;
}

.terms-page .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.nav-brand:hover {
    color: white !important;
    text-decoration: none;
}

.nav-brand span {
    color: white !important;
}

.terms-page .nav-links a {
    color: white !important;
}

.terms-page .logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.terms-page .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.logo-icon {
    width: 86px;
    height: 86px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

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

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    overflow: hidden;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

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

.highlight {
    background: linear-gradient(45deg, #FFEA00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-2 {
    background: linear-gradient(45deg, #e03400, #c60101);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-text {
    color: #FF6200;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #FFEA00;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}



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

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-buttons .btn {
    flex: 1;
    justify-content: center;
    min-width: 200px;
    padding: 18px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.3);
}

.btn.disabled,
.download-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.disabled:hover,
.download-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.2);
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease 1s forwards;
    margin-right: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #001a23;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.screenshot-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.screenshot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

.app-preview {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-icons {
    display: flex;
    gap: 8px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.app-title h3 {
    color: #1A1A1A;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 2px 0;
    letter-spacing: -0.5px;
}

.app-title p {
    color: #666666;
    font-size: 14px;
    margin: 0;
}

.widget-button {
    background: #FF6200;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget-button:hover {
    background: #FF8A00;
    transform: translateY(-2px);
}

/* Status Card */
.status-card {
    background: linear-gradient(135deg, #00C853, #00A844);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
    position: relative;
    overflow: hidden;
}

.status-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.status-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.status-icon i {
    color: white;
    font-size: 20px;
}

.status-text h4 {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.status-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    margin: 0;
}

.status-badge {
    margin-bottom: 12px;
}

.status-badge span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-info {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 500;
}

.info-value {
    color: white;
    font-size: 10px;
    font-weight: 600;
}

/* Calendar Card */
.calendar-card {
    background: rgba(255, 98, 0, 0.05);
    border: 1.5px solid rgba(255, 138, 0, 0.2);
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.15);
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6200, #FF8A00);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 4px 12px rgba(255, 98, 0, 0.3);
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.card-text {
    flex: 1;
}

.card-text h4 {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 2px 0;
    letter-spacing: -0.5px;
}

.card-text p {
    color: #666666;
    font-size: 10px;
    font-weight: 500;
    margin: 0;
}

.card-arrow {
    color: #FF6200;
    font-size: 14px;
    background: rgba(255, 98, 0, 0.1);
    padding: 4px;
    border-radius: 10px;
}

.card-features {
    background: white;
    border-radius: 10px;
    padding: 8px;
    border: 1px solid #ecf0f1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.feature-item i {
    color: #FF6200;
    font-size: 12px;
    width: 16px;
    text-align: center;
}

.feature-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    color: #1A1A1A;
    font-size: 11px;
    font-weight: 600;
}

.feature-subtitle {
    color: #666666;
    font-size: 9px;
}

.feature-divider {
    height: 1px;
    background: #ecf0f1;
    margin: 4px 0;
}

/* App Version */
.app-version {
    text-align: center;
    margin-top: 8px;
}

/* Terms Section */
.terms-section {
    padding: 40px 0 80px;
    background: #F5F5F5;
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.terms-content h1 {
    color: #1A1A1A;
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    color: #666666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-section-content h2 {
    color: #FF6200;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFEA00;
}

.terms-section-content h3 {
    color: #1A1A1A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.terms-section-content p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-section-content ul {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section-content li {
    margin-bottom: 8px;
}

.terms-section-content a {
    color: #FF6200;
    text-decoration: none;
    font-weight: 500;
}

.terms-section-content a:hover {
    color: #FF8A00;
    text-decoration: underline;
}

.terms-section-content strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* Responsive for terms */
@media (max-width: 768px) {
    .terms-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .terms-section-content h2 {
        font-size: 1.3rem;
    }
}

.app-version span {
    color: #999999;
    font-size: 10px;
    font-weight: 500;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1A1A1A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

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

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF8A00, #FF6200);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-free,
.badge-premium {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.badge-free {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.badge-premium {
    background: linear-gradient(135deg, #FF8A00 0%, #FF6200 100%);
    color: white;
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: white;
}

.screenshots-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.screenshot-item {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 620px;
    background: #00000000;
    border-radius: 30px;
    padding: 0px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.phone-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.screenshot-content {
    /* padding: 2px; */
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.screenshot-header {
    text-align: center;
    margin-bottom: 20px;
}

.screenshot-header h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.screenshot-header p {
    font-size: 12px;
    color: #bdc3c7;
}

.screenshot-calendar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
    font-weight: 600;
}

.calendar-day.trading {
    background: linear-gradient(45deg, #00C853, #00A844);
}

.status-dot {
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: #FF6200;
    border-radius: 50%;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.notification-item i {
    color: #FF8A00;
    font-size: 16px;
}

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-text strong {
    font-size: 12px;
    margin-bottom: 2px;
}

.notification-text span {
    font-size: 10px;
    color: #bdc3c7;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.toggle {
    width: 40px;
    height: 20px;
    background: #7f8c8d;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle.active {
    background: #00C853;
}

.toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle.active::after {
    transform: translateX(20px);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff5e00 0%, #ffa600 100%);
    color: white;
    text-align: center;
}

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

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 32px;
}

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

.btn-label {
    font-size: 12px;
    opacity: 0.8;
}

.btn-name {
    font-size: 18px;
    font-weight: 600;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #F5F5F5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #1A1A1A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-brand:hover {
    color: white;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-phone {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .screenshots-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .screenshots-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Alpha Testing Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.modal-header i {
    font-size: 48px;
    color: #FF8A00;
    margin-bottom: 15px;
    display: block;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.modal-body {
    padding: 25px 30px;
    text-align: center;
}

.modal-body p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.modal-footer .btn {
    width: 100%;
    justify-content: center;
}

.modal-btn {
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6200 100%) !important;
    color: white !important;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
    background: linear-gradient(135deg, #FF9500 0%, #FF7300 100%) !important;
}

.modal-btn span {
    color: white !important;
}

/* Responsive modal */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 25px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px 25px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 24px;
    }
}
