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

:root {
    --primary: #6366F1;
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --accent: #EC4899;
    --accent-light: #F472B6;
    --success: #10B981;
    --warning: #F59E0B;
    
    --white: #FFFFFF;
    --black: #000000;
    
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-light: #F8FAFC;
    --bg-lighter: #F1F5F9;
    
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 1.1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-lg {
    padding: 1.2rem 2.25rem;
    font-size: 1.05rem;
}

.btn-download {
    width: 100%;
    justify-content: center;
    padding: 1.35rem;
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
}

.download-icon {
    font-size: 1.75rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.download-text small {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 2rem 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
    top: 40%;
    right: 5%;
    animation: float 9s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
    animation: slideInDown 0.6s ease;
}

.hero-title {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.8s ease 0.1s both;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideInDown 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    animation: slideInDown 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: slideInUp 0.8s ease 0.4s both;
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Phone Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease 0.2s both;
}

.phone-showcase {
    position: relative;
    width: fit-content;
}

.phone-frame {
    width: 300px;
    height: 620px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: #000;
    border-radius: 0 0 35px 35px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    border-radius: 45px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.status-bar {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--gray-200);
}

.time {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
}

.app-display {
    flex: 1;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-header {
    margin-bottom: 2rem;
    text-align: center;
}

.app-title {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.check-in-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.check-in-button {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3), 0 0 0 0 rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 12px 50px rgba(99, 102, 241, 0.4), 0 0 0 10px rgba(99, 102, 241, 0); }
}

.check-in-time {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.contacts-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-900);
}

.phone-glow {
    position: absolute;
    inset: -25px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-header h2 {
    font-size: 3.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
    font-weight: 400;
}

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

.feature-card {
    padding: 2.75rem;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

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

.gradient-bg-1 { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.gradient-bg-2 { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%); }
.gradient-bg-3 { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); }
.gradient-bg-4 { background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); }
.gradient-bg-5 { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.gradient-bg-6 { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); }

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.steps-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step-card {
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.step-number {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.workflow-visual {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.workflow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.workflow-icon {
    font-size: 3rem;
}

.workflow-item p {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.workflow-arrow {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Screenshots */
.screenshots {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.screenshot-card {
    text-align: center;
    transition: all 0.4s ease;
}

.screenshot-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--white);
    overflow: hidden;
    position: relative;
    border: 2px dashed var(--gray-300);
    transition: all 0.4s ease;
}

.screenshot-placeholder:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.home-screen {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.contacts-screen {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.settings-screen {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.placeholder-content i {
    font-size: 3.5rem;
    opacity: 0.9;
}

.placeholder-content p {
    font-size: 1.6rem;
    font-weight: 800;
}

.placeholder-content span {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

.screenshot-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: var(--gray-900);
}

.screenshot-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    padding: 2.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
    border-color: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
}

/* Why It Matters */
.why-matters {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.why-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
}

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

.illustration-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6.5rem;
    color: var(--primary);
    border: 2px dashed rgba(99, 102, 241, 0.3);
}

/* Download Section */
.download {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.download-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.orb-download-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
}

.orb-download-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
}

.download-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.download-container h2 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.download-container p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-weight: 400;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.download-note {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4.5rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 120px 1.5rem 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 3rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 260px;
        height: 540px;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .features-grid,
    .steps-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .download-buttons {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .download-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 1rem 40px;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .phone-frame {
        width: 220px;
        height: 460px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
