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

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

/* Container and Layout */
.container {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 10;
}

/* Background Pattern */
.background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.card-shape {
    position: absolute;
    background: linear-gradient(45deg, #dc2626, #ea580c);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 80px;
    left: 40px;
    width: 64px;
    height: 80px;
    transform: rotate(12deg);
    animation-delay: 0s;
}

.card-2 {
    top: 160px;
    right: 80px;
    width: 48px;
    height: 64px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.card-3 {
    bottom: 160px;
    left: 80px;
    width: 56px;
    height: 72px;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.card-4 {
    bottom: 80px;
    right: 40px;
    width: 40px;
    height: 56px;
    transform: rotate(-12deg);
    animation-delay: 3s;
}

.card-5 {
    top: 240px;
    left: 33.33%;
    width: 32px;
    height: 48px;
    transform: rotate(90deg);
    animation-delay: 4s;
}

.card-6 {
    top: 128px;
    right: 33.33%;
    width: 48px;
    height: 64px;
    transform: rotate(-30deg);
    animation-delay: 5s;
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
}

.logo-container {
    max-width: 28rem;
    margin: 0 auto;
}

.logo {
    width: 128px;
    height: 128px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    transition: transform 0.3s ease;
    display: block;
}

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

.title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(to right, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Main Content */
.main-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .title {
        font-size: 4rem;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 146, 60, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.feature-icon {
    flex-shrink: 0;
    padding: 0.5rem;
    background: linear-gradient(to right, #f97316, #dc2626);
    border-radius: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    text-align: center;
    margin-bottom: 3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 4px solid #4ade80;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

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

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

.download-btn:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    background: linear-gradient(to right, #16a34a, #15803d);
    border-color: #22d3ee;
}

@media (min-width: 768px) {
    .download-btn {
        font-size: 1.5rem;
    }
}

.download-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Trust Indicators */
.trust-indicators {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-number {
    font-size: 1.875rem;
    font-weight: bold;
}

.trust-item:nth-child(1) .trust-number {
    color: #22c55e;
}

.trust-item:nth-child(2) .trust-number {
    color: #f97316;
}

.trust-item:nth-child(3) .trust-number {
    color: #dc2626;
}

.trust-label {
    color: #6b7280;
    font-weight: 500;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(251, 146, 60, 0.2);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.footer p {
    color: #6b7280;
    font-weight: 500;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.download-btn {
    animation: pulse 2s infinite;
}

.download-btn:hover {
    animation: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.download-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .background-pattern {
        display: none;
    }
    
    .download-btn {
        background: #22c55e !important;
        color: white !important;
        text-decoration: underline;
    }
}