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

:root {
    --color-primary: #1A73E8;
    --color-primary-dark: #0D47A1;
    --color-blue-50: #EFF6FF;
    --color-blue-100: #DBEAFE;
    --color-blue-200: #BFDBFE;
    --color-blue-400: #60A5FA;
    --color-blue-500: #3B82F6;
    --color-blue-600: #2563EB;
    --color-cyan-200: #A5F3FC;
    --color-cyan-500: #06B6D4;
    --color-indigo-300: #A78BFA;
    --color-indigo-400: #818CF8;
    --color-indigo-500: #6366F1;
    --color-indigo-900: #312E81;
    --color-purple-50: #FAF5FF;
    --color-purple-600: #9333EA;
    --color-purple-700: #7E22CE;
    --color-cyan-900: #164E63;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-yellow-500: #EAB308;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-white);
    color: var(--color-gray-900);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color-white) 0%, rgba(239, 246, 255, 0.3) 50%, var(--color-white) 100%);
    padding: 80px 0 0;
}

/* Animated Background Orbs */
.background-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.2;
}

.orb-left {
    top: 25%;
    left: -192px;
    background: linear-gradient(135deg, var(--color-blue-200) 0%, var(--color-cyan-200) 100%);
    animation: float 8s ease-in-out infinite;
}

.orb-right {
    bottom: 25%;
    right: -192px;
    background: linear-gradient(135deg, var(--color-blue-400) 0%, var(--color-indigo-300) 100%);
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Hero Logo Section */
.hero-logo-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: float-gentle 4s ease-in-out infinite;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-blue-50);
    border: 1px solid var(--color-blue-100);
    padding: 8px 16px;
    border-radius: 9999px;
    width: fit-content;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.badge-text {
    font-size: 0.875rem;
    color: var(--color-primary);
}

/* Hero Headline */
.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 3.75rem;
    letter-spacing: -0.025em;
    line-height: 1;
}

.title-main {
    display: block;
    color: var(--color-gray-900);
    font-weight: 400;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-500);
    max-width: 512px;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

.store-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-gray-900);
    color: var(--color-white);
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.store-button:hover {
    background-color: var(--color-gray-800);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.store-text {
    text-align: left;
}

.store-text-small {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.store-text-large {
    font-size: 1.125rem;
    margin-top: -2px;
    font-weight: 500;
}

.download-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-button:hover .download-icon {
    opacity: 1;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

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

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

.trust-icon.star {
    color: var(--color-yellow-500);
}

.trust-icon.users {
    color: var(--color-primary);
}

/* Hero Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
}

.phone-frame {
    position: relative;
    z-index: 10;
    width: 320px;
    height: 650px;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
    border-radius: 56px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: scale(1.05);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 48px;
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 48px;
}

.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background-color: var(--color-white);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.status-time {
    font-size: 0.875rem;
}

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

.signal-icon {
    width: 16px;
    height: 16px;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 28px;
    background-color: var(--color-gray-900);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    z-index: 30;
}

.app-content {
    padding-top: 64px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-gray-50) 100%);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.app-header h2 {
    font-size: 1.5rem;
    color: var(--color-gray-900);
}

.app-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.lang-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.flag {
    font-size: 1.5rem;
}

.lang-name {
    font-size: 0.875rem;
}

.swap-button {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(26, 115, 232, 0.2);
}

.swap-icon {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.translation-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.translation-card {
    border-radius: 16px;
    padding: 20px;
}

.translation-card.source {
    background-color: var(--color-white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-100);
}

.translation-card.target {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.translation-card p {
    font-size: 0.875rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
}

.action-btn {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.action-btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.action-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.action-btn span {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
    border-radius: 50%;
    filter: blur(64px);
    z-index: -10;
}

/* Stats Section */
.stats-section {
    padding: 64px 0 96px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-gray-900);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-500);
    max-width: 672px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 0 128px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    position: relative;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.05);
    border-color: var(--color-blue-100);
    transform: translateY(-4px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-blue-50) 0%, rgba(224, 231, 255, 1) 100%);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.feature-icon .icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--color-gray-900);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.active-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.feature-description {
    color: var(--color-gray-500);
    line-height: 1.625;
}

/* Preview Section */
.preview-section {
    position: relative;
    padding: 80px 0 128px;
    background: linear-gradient(to bottom, var(--color-gray-50) 0%, var(--color-white) 100%);
    border-radius: 64px;
    overflow: hidden;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.preview-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.preview-phone {
    position: relative;
    margin: 0 auto;
    width: 260px;
    height: 520px;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-700) 100%);
    border-radius: 48px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.preview-phone:hover {
    transform: scale(1.05);
}

.preview-phone.purple {
    background: linear-gradient(135deg, var(--color-indigo-900) 0%, var(--color-purple-700) 100%);
}

.preview-phone.cyan {
    background: linear-gradient(135deg, var(--color-cyan-900) 0%, var(--color-blue-600) 100%);
}

.preview-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.preview-screen.gradient-blue {
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-gray-50) 100%);
}

.preview-screen.gradient-purple {
    background: linear-gradient(to bottom, rgba(250, 245, 255, 1) 0%, rgba(243, 232, 255, 1) 100%);
}

.preview-screen.gradient-cyan {
    background-color: var(--color-white);
}

.preview-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    height: 24px;
    background-color: var(--color-gray-900);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.preview-content {
    padding: 48px 20px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-title {
    font-size: 1.125rem;
    color: var(--color-gray-900);
    margin-bottom: 24px;
}

.preview-lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.preview-lang {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 8px 12px;
}

.flag-emoji {
    font-size: 1.25rem;
}

.lang-code {
    font-size: 0.75rem;
}

.preview-swap {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-swap svg {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

.preview-translations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.preview-box {
    border-radius: 16px;
    padding: 16px;
    font-size: 0.75rem;
}

.preview-box.white {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-900);
}

.preview-box.blue {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.preview-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 24px;
}

.preview-btn {
    background-color: var(--color-gray-100);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 0.75rem;
}

/* Voice Screen */
.preview-content.voice {
    align-items: center;
    justify-content: center;
}

.voice-circle {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.3);
    margin-bottom: 24px;
}

.voice-icon {
    width: 64px;
    height: 64px;
    color: var(--color-white);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.voice-text {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

.voice-subtext {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.audio-waves {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 32px;
}

.wave {
    width: 4px;
    background-color: var(--color-primary);
    border-radius: 9999px;
    height: 20px;
    animation: wave 0.5s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 40px;
    }
}

/* History Screen */
.preview-content.history {
    padding-top: 48px;
}

.history-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    background-color: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    border-radius: 12px;
    padding: 12px;
}

.history-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.arrow-icon {
    width: 12px;
    height: 12px;
    color: var(--color-gray-400);
}

.time {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-left: auto;
}

.history-text {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.preview-label {
    text-align: center;
    color: var(--color-gray-600);
}

/* CTA Section */
.cta-section {
    padding: 80px 0 128px;
    position: relative;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 64px;
    padding: 64px 32px 96px;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.decoration-1 {
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background-color: rgba(255, 255, 255, 0.1);
}

.decoration-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background-color: rgba(13, 71, 161, 0.3);
}

.cta-content {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(191, 219, 254, 1);
    max-width: 672px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding-top: 16px;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cta-button.primary:hover {
    background-color: var(--color-gray-50);
}

.cta-button.secondary {
    background-color: var(--color-gray-900);
    color: var(--color-white);
}

.cta-button.secondary:hover {
    background-color: var(--color-gray-800);
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-icon {
    width: 32px;
    height: 32px;
}

.cta-button-text {
    text-align: left;
}

.cta-button-small {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.cta-button-large {
    font-size: 1.125rem;
    margin-top: -2px;
    font-weight: 500;
}

.cta-download-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .cta-download-icon {
    opacity: 1;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 32px;
    color: rgba(191, 219, 254, 1);
}

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

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

.badge-item span {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    padding: 48px 0 64px;
    border-top: 1px solid var(--color-gray-100);
}

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

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

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: rotate(10deg) scale(1.1);
}

.footer-logo {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Responsive Design */
@media (min-width: 640px) {
    .store-buttons {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 128px 0;
    }

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

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

    .hero-mockup {
        justify-content: flex-end;
    }

    .features-section {
        padding: 128px 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .preview-section {
        padding: 128px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .stat-value {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
}
