/* 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: #1a1a1a;
    background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #007aff;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #007aff;
}

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

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    animation: slideInLeft 1s ease-out;
}

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

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #007AFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #007AFF;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

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

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-circle {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-main-image {
    position: relative;
    width: 80%;
    height: auto;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.05);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(45deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.typing-effect {
    position: relative;
}

.typing-effect::after {
    content: '|';
    animation: blink 1s infinite;
    color: #ffd89b;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #007AFF;
    opacity: 0.6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #007aff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 122, 255, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
    }
}

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

.app-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
}

.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

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

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Phone */
.hero-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: slideInRight 1s ease-out 0.3s both;
}

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

.phone-container {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.phone-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 8px #1a202c,
        0 0 0 12px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #4a5568;
    border-radius: 2px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.screenshot-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.screenshot.active {
    opacity: 1;
    transform: translateX(0);
}

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

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.time {
    font-weight: 600;
    font-size: 0.875rem;
}

.status-icons {
    display: flex;
    gap: 5px;
    font-size: 0.75rem;
}

.app-content h2 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.balance-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.balance-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.balance-card.expense {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
}

.balance-card .label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.balance-card .amount {
    font-size: 1.25rem;
    font-weight: 700;
}

.chart-preview {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 60px;
    background: #f7fafc;
    border-radius: 8px;
    padding: 10px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px 4px 0 0;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

.transaction-list,
.subscription-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item,
.subscription-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f7fafc;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.transaction-item:hover,
.subscription-item:hover {
    transform: scale(1.02);
}

.category,
.service {
    font-size: 1.5rem;
}

.details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.name {
    font-weight: 600;
    color: #2d3748;
}

.date,
.frequency {
    font-size: 0.75rem;
    color: #718096;
}

.amount {
    font-weight: 700;
}

.amount.income {
    color: #38a169;
}

.amount.expense {
    color: #e53e3e;
}

.payment {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.next {
    font-size: 0.75rem;
    color: #718096;
}

/* Feature Selector */
.feature-selector {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    white-space: nowrap;
}

.feature-tab.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.tab-icon {
    font-size: 1.5rem;
}

.tab-content h4 {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.tab-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #007aff 0%, #0056b3 100%);
    border-radius: 2px;
}

.features-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    flex: 1;
}

.features-background {
    position: absolute;
    /* left: -20px; */
    top: 50%;
    /* transform: translateY(-50%); */
    /* z-index: 1; */
    pointer-events: none;
}

.background-sideicon {
    width: 300px;
    height: auto;
    opacity: 0.3;
}

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

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

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

.feature-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #007aff 0%, #0056b3 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-highlight {
    transform: scaleX(1);
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: #f8faff;
}

.screenshots-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.screenshots-description {
    text-align: center;
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    margin-top: 4rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Demo Section - Remove entirely */
.demo-section {
    display: none;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.demo-description {
    text-align: center;
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 3rem;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.demo-tab.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: scale(1.05);
}

.demo-tab:hover:not(.active) {
    border-color: #667eea;
    transform: translateY(-2px);
}

.demo-content {
    position: relative;
    min-height: 400px;
}

.demo-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-panel.active {
    opacity: 1;
    transform: translateY(0);
}

.demo-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.demo-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    color: #4a5568;
    font-weight: 500;
}

.demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup,
.tracking-mockup,
.subscriptions-mockup,
.reports-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* App Store Success Section */
.stats {
    padding: 6rem 0;
    background: #043873;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #043873 0%, #0562a8 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.stats-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.app-store-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #007AFF;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-plus {
    font-size: 3rem;
    font-weight: 600;
    color: #007AFF;
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: #007AFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.user-testimonials {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content h4 {
    color: #007AFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #007AFF;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(0, 122, 255, 0.7);
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2rem;
    }
    
    .app-store-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .user-testimonials {
        height: 250px;
        margin-bottom: 3rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-content h4 {
        font-size: 1.3rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-nav {
        margin-top: 1rem;
    }
}

/* Privacy Section */
.privacy {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.privacy-content {
    padding: 2rem 0;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #007AFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-description {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.privacy-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.privacy-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 122, 255, 0.2));
    transition: transform 0.3s ease;
}

.privacy-main-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .privacy {
        padding: 4rem 0;
    }
    
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-description {
        font-size: 1.1rem;
    }
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.download-description {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.download-btn.ios {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

.download-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.download-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.download-icon svg {
    width: 24px;
    height: 24px;
    fill: #007AFF;
}

.download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-store {
    font-size: 1rem;
    font-weight: 600;
}

.availability-status {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status.available {
    background: rgba(56, 161, 105, 0.1);
    color: #38a169;
}

.status.coming-soon {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
}

.app-store-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    font-size: 1.5rem;
}

.rating-text {
    color: #718096;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #043873;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #043873 0%, #0562a8 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.buy-coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #007AFF;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid transparent;
}

.buy-coffee-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.buy-coffee-btn span {
    font-size: 1.2rem;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.developer-info {
    text-align: right;
}

.developer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.developer-title {
    color: #007AFF;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.developer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .developer-info {
        text-align: center;
    }
    
    .developer-social {
        justify-content: center;
    }
    
    .buy-coffee-btn {
        align-self: center;
    }
}

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

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

    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .image-container {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .nav-link {
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        flex-wrap: nowrap;
    }
    
    .nav-title {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.25rem;
        font-size: 0.85rem;
    }
    
    .nav-link {
        padding: 0.2rem 0.4rem;
    }
    
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-title {
        font-size: 0.95rem;
    }
    
    .logo {
        width: 24px;
        height: 24px;
    }
    
    /* Download section mobile styles */
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .download-buttons .btn,
    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .availability-status {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .status {
        width: 100%;
        text-align: center;
    }
    
    /* Footer mobile styles */
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .developer-social {
        justify-content: center;
    }
    }
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

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

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
