/* ========================================
   DAYPING - Modern iOS-Style Design System
   ======================================== */

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #5BA8D4;
    --primary-light: #7BC4EE;
    --primary-dark: #4A92BD;
    --primary-gradient: linear-gradient(135deg, #5BA8D4 0%, #7BC4EE 100%);

    /* Warm Accent -- complements the cool blue */
    --warm: #E8A87C;
    --warm-light: #F0C4A0;
    --warm-dark: #D4956A;
    --warm-gradient: linear-gradient(135deg, #E8A87C 0%, #F0C4A0 100%);
    --warm-sunset: linear-gradient(135deg, #5BA8D4 0%, #7BC4EE 40%, #E8A87C 100%);

    /* Secondary Colors */
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --green: #10B981;
    --green-light: #34D399;
    --blue: #3B82F6;
    --blue-light: #60A5FA;
    --pink: #EC4899;
    --yellow: #F59E0B;
    --orange: #E8A87C;

    /* Dark Theme -- slightly warmer undertone */
    --bg-dark: #0F0F1A;
    --bg-dark-secondary: #16162B;
    --bg-card: #1C1C30;
    --bg-card-hover: #24243C;

    /* Light Theme */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;

    /* Text Colors */
    --text-primary: #F0F0F5;
    --text-secondary: rgba(240, 240, 245, 0.7);
    --text-muted: rgba(240, 240, 245, 0.45);
    --text-dark: #1F2937;
    --text-dark-secondary: #6B7280;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: #E5E7EB;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 80px rgba(91, 168, 212, 0.25);
    --shadow-warm-glow: 0 0 80px rgba(232, 168, 124, 0.15);

    /* Spacing */
    --nav-height: 72px;
    --container-max: 1200px;
    --section-padding: 100px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon.small {
    width: 28px;
    height: 28px;
}

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

.logo-img.small {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--warm-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-cta {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 24px;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(91, 168, 212, 0.35);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--primary-gradient);
    color: white;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.mobile-lang-switcher .lang-btn {
    flex: 1;
    padding: 12px;
    font-size: 0.95rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    display: block;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.mobile-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-link-cta {
    background: var(--primary-gradient);
    color: white !important;
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 90%;
    background: radial-gradient(ellipse at 30% 40%, rgba(91, 168, 212, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(232, 168, 124, 0.08) 0%, transparent 50%);
    filter: blur(80px);
    pointer-events: none;
    animation: heroGradientShift 12s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(91, 168, 212, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(232, 168, 124, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}

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

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    background: rgba(232, 168, 124, 0.12);
    border: 1px solid rgba(232, 168, 124, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--warm-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

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

.btn-icon-right {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(91, 168, 212, 0.25),
                0 2px 8px rgba(232, 168, 124, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(91, 168, 212, 0.35),
                0 4px 12px rgba(232, 168, 124, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--warm-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Phone */
.hero-phone {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-wrapper {
    position: relative;
}

.phone-frame {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #2A2A3E 0%, #1A1A2E 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0F0F1A;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: var(--bg-dark);
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 450px;
    background: radial-gradient(ellipse at 40% 40%, rgba(91, 168, 212, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 70%, rgba(232, 168, 124, 0.15) 0%, transparent 50%);
    filter: blur(50px);
    z-index: -1;
    animation: phoneGlow 8s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.phone-mockup-img {
    width: 270px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5))
            drop-shadow(0 10px 20px rgba(91, 168, 212, 0.15));
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup-img:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
}

/* App UI in Phone */
.app-ui {
    padding: 50px 16px 20px;
    height: 100%;
}

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

.app-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.app-add {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 600;
}

.app-event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.app-event-card.mini {
    padding: 14px 16px;
}

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

.app-event-card.mini .event-header {
    margin-bottom: 8px;
}

.event-emoji {
    font-size: 1.5rem;
}

.event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.event-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.event-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.event-badge.upcoming {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green-light);
}

.event-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px 4px;
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
}

.countdown-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.event-participants {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.participant-avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    border: 2px solid var(--bg-card);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: var(--bg-dark-secondary);
    font-size: 0.7rem;
}

.participant-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mini-countdown {
    display: flex;
    align-items: center;
}

.mini-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
}

/* New App UI Styles for Hero Mockup */
.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.app-user-info {
    display: flex;
    flex-direction: column;
}

.app-user-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.app-user-events {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.app-notif {
    font-size: 1.1rem;
}

.app-section {
    margin-bottom: 14px;
}

.app-section-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.app-section-title.tomorrow {
    color: var(--primary-light);
}

.app-event-card-new {
    display: flex;
    gap: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid var(--border-color);
}

.app-event-card-new.mini {
    padding: 10px;
    gap: 10px;
}

.app-event-cover {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-event-card-new.mini .app-event-cover {
    width: 40px;
    height: 40px;
}

.app-event-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.app-event-name {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-event-card-new.mini .app-event-name {
    font-size: 0.75rem;
}

.app-event-participants {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.app-event-countdown-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(91, 168, 212, 0.15);
    border-radius: var(--radius-full);
    width: fit-content;
}

.app-event-countdown-pill span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-light);
}

.app-bottom-nav {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(30, 30, 46, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 10px 8px;
    border: 1px solid var(--border-color);
}

.app-bottom-nav .nav-item {
    font-size: 1rem;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.app-bottom-nav .nav-item.active {
    opacity: 1;
}

.app-bottom-nav .nav-item.add {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 1;
}

/* ========================================
   Sections Common
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 168, 124, 0.1);
    border: 1px solid rgba(232, 168, 124, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--warm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg-dark-secondary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -15%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(91, 168, 212, 0.04) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 35%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(232, 168, 124, 0.04) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 168, 124, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 168, 124, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(232, 168, 124, 0.06);
}

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

.feature-card.feature-large {
    grid-column: span 2;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 168, 212, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon-wrapper.orange { background: rgba(232, 168, 124, 0.15); }
.feature-icon-wrapper.purple { background: rgba(139, 92, 246, 0.15); }
.feature-icon-wrapper.green { background: rgba(16, 185, 129, 0.15); }
.feature-icon-wrapper.blue { background: rgba(59, 130, 246, 0.15); }
.feature-icon-wrapper.pink { background: rgba(236, 72, 153, 0.15); }
.feature-icon-wrapper.yellow { background: rgba(245, 158, 11, 0.15); }
.feature-icon-wrapper.gradient { background: var(--primary-gradient); }

.feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
}

.feature-icon-wrapper:not(.gradient) .feature-icon svg {
    stroke: var(--primary-light);
}

.feature-icon-wrapper.orange .feature-icon svg { stroke: var(--warm); }
.feature-icon-wrapper.purple .feature-icon svg { stroke: var(--purple-light); }
.feature-icon-wrapper.green .feature-icon svg { stroke: var(--green-light); }
.feature-icon-wrapper.blue .feature-icon svg { stroke: var(--blue-light); }
.feature-icon-wrapper.pink .feature-icon svg { stroke: var(--pink); }
.feature-icon-wrapper.yellow .feature-icon svg { stroke: var(--yellow); }
.feature-icon-wrapper.gradient .feature-icon svg { stroke: white; }

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Feature Preview */
.feature-preview {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.preview-countdown {
    display: flex;
    gap: 12px;
}

.preview-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.preview-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--warm-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

/* Browser Mockup */
.web-preview {
    margin-top: 24px;
}

.browser-mockup {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.browser-dots span:first-child { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27CA40; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.browser-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.web-event-name {
    font-size: 1rem;
    font-weight: 600;
}

.web-countdown {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-sunset);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(232, 168, 124, 0.25);
}

.step-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
}

.step:hover .step-content {
    transform: translateY(-4px);
    border-color: rgba(232, 168, 124, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 168, 212, 0.15);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-light);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 120px;
    width: 80px;
}

.step-connector svg {
    width: 100%;
    height: auto;
}

/* ========================================
   Screenshots Section
   ======================================== */
.screenshots {
    padding: var(--section-padding) 0;
    background: var(--bg-dark-secondary);
    overflow: hidden;
}

.screenshots-carousel {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.screenshot-phone {
    width: 200px;
    background: linear-gradient(145deg, #2A2A3E 0%, #1A1A2E 100%);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.screenshot-notch {
    width: 70px;
    height: 20px;
    background: #0F0F1A;
    border-radius: 12px;
    margin: 0 auto 8px;
}

.screenshot-content {
    background: var(--bg-dark);
    border-radius: 26px;
    padding: 32px 12px 20px;
    min-height: 340px;
}

.screenshot-mockup-img {
    width: 170px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s ease;
}

.screenshot-card:hover .screenshot-mockup-img {
    transform: translateY(-8px) scale(1.03);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4))
            drop-shadow(0 4px 12px rgba(91, 168, 212, 0.1));
}

.screenshot-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.screenshot-card:hover .screenshot-label {
    color: var(--warm);
}

/* Screenshot App UI */
.ss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ss-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.ss-add {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    font-size: 1rem;
}

.ss-event {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.ss-event.mini {
    padding: 10px 12px;
}

.ss-event-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ss-event.mini .ss-event-top {
    margin-bottom: 0;
}

.ss-emoji {
    font-size: 1.2rem;
}

.ss-event-info {
    display: flex;
    flex-direction: column;
}

.ss-event-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.ss-event-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.ss-countdown {
    display: flex;
    gap: 6px;
}

.ss-cd-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.ss-cd-item span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* Screenshot Detail View */
.screenshot-content.detail {
    padding-top: 20px;
}

.ss-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ss-back {
    font-size: 1.2rem;
    color: var(--primary-light);
}

.ss-detail-title {
    font-size: 0.9rem;
    font-weight: 500;
}

.ss-detail-name {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.ss-detail-countdown {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.ss-dcd-item {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 12px 4px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.ss-dcd-item span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.ss-dcd-item small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ss-detail-participants {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ss-avatars {
    display: flex;
}

.ss-av {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    border: 2px solid var(--bg-dark);
    margin-left: -6px;
}

.ss-av:first-child {
    margin-left: 0;
}

/* Screenshot Create View */
.screenshot-content.create {
    padding-top: 24px;
}

.ss-create-header {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.ss-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-input {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 12px;
    border: 1px solid var(--border-color);
}

.ss-input-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ss-input-value {
    font-size: 0.9rem;
    font-weight: 500;
}

.ss-create-btn {
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    font-weight: 600;
    margin-top: 8px;
}

/* Screenshot Share View */
.screenshot-content.share {
    padding-top: 24px;
}

.ss-share-header {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.ss-share-code {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.ss-code {
    font-family: monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.ss-copy {
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 600;
}

.ss-share-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-share-btn {
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.ss-share-btn.whatsapp {
    background: #25D366;
}

.ss-share-btn.message {
    background: var(--blue);
}

.ss-share-btn.link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

/* New Screenshot Mockup Styles */
.home-screen,
.detail-screen,
.create-screen,
.share-screen {
    display: flex;
    flex-direction: column;
    padding: 16px 10px 50px;
    position: relative;
    min-height: 340px;
}

/* Home Screen Styles */
.ss-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ss-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-avatar {
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.ss-user-info {
    display: flex;
    flex-direction: column;
}

.ss-user-name {
    font-size: 0.7rem;
    font-weight: 600;
}

.ss-user-subtitle {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.ss-notif {
    font-size: 0.9rem;
}

.ss-section {
    margin-bottom: 10px;
}

.ss-section-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ss-section-label.tomorrow {
    color: var(--primary-light);
}

.ss-event-card {
    display: flex;
    gap: 8px;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid var(--border-color);
}

.ss-event-card.mini {
    padding: 6px;
}

.ss-event-img {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ss-event-card.mini .ss-event-img {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
}

.ss-event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ss-event-title {
    font-size: 0.65rem;
    font-weight: 600;
}

.ss-event-meta {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.ss-event-time {
    font-size: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
}

.ss-bottom-nav {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(30, 30, 46, 0.95);
    border-radius: 12px;
    padding: 8px 6px;
    border: 1px solid var(--border-color);
}

.ss-bottom-nav span {
    font-size: 0.8rem;
    opacity: 0.5;
}

.ss-bottom-nav span.active {
    opacity: 1;
}

.ss-bottom-nav span.add {
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
}

/* Detail Screen Styles */
.ss-detail-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ss-back {
    font-size: 1.2rem;
    color: var(--primary-light);
}

.ss-detail-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.ss-more {
    color: var(--text-muted);
    letter-spacing: 2px;
}

.ss-detail-cover {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a3d2d, #2e251a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 12px;
}

.ss-detail-name {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.ss-detail-countdown {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.ss-cd-pill {
    flex: 1;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.ss-cd-pill span {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-light);
}

.ss-cd-pill small {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.ss-detail-section {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.7rem;
    font-weight: 500;
}

.ss-detail-section.utilities {
    opacity: 0.7;
}

.ss-section-icon {
    font-size: 0.9rem;
}

/* Create Screen Styles */
.ss-create-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ss-cancel {
    font-size: 0.65rem;
    color: var(--primary-light);
}

.ss-create-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.ss-done {
    font-size: 0.65rem;
    color: var(--primary-light);
    font-weight: 600;
}

.ss-create-cover {
    width: 70px;
    height: 70px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto 16px;
    border: 1px dashed var(--border-color);
}

.ss-create-cover span {
    font-size: 1.2rem;
}

.ss-create-cover small {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.ss-create-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ss-form-field {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--border-color);
}

.ss-field-label {
    display: block;
    font-size: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ss-field-value {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
}

.ss-field-value.placeholder {
    color: var(--text-muted);
}

/* Share Screen Styles */
.ss-share-top {
    text-align: center;
    margin-bottom: 16px;
}

.ss-share-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.ss-share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.share-screen .ss-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.share-screen .ss-share-btn span {
    font-size: 1.1rem;
}

.share-screen .ss-share-btn small {
    font-size: 0.45rem;
    color: var(--text-muted);
}

.share-screen .ss-share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.share-screen .ss-share-btn.story {
    background: rgba(131, 58, 180, 0.15);
    border-color: rgba(131, 58, 180, 0.3);
}

.share-screen .ss-share-btn.message {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.share-screen .ss-share-btn.copy {
    background: rgba(91, 168, 212, 0.15);
    border-color: rgba(91, 168, 212, 0.3);
}

.ss-share-code {
    margin-bottom: 12px;
}

.ss-code-label {
    display: block;
    font-size: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: center;
}

.ss-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border-color);
}

.ss-code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.ss-copy-icon {
    font-size: 0.9rem;
}

.ss-share-main-btn {
    background: var(--primary-gradient);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    margin-bottom: 12px;
}

.ss-share-main-btn span {
    font-size: 0.75rem;
    font-weight: 600;
}

.ss-qr-section {
    text-align: center;
}

.ss-qr-section small {
    display: block;
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ss-qr-code {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: white;
    border-radius: 6px;
    padding: 4px;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        #1f2937 0px,
        #1f2937 4px,
        white 4px,
        white 8px
    );
    background-size: 8px 8px;
    opacity: 0.6;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 168, 124, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
    color: var(--warm);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Download Section
   ======================================== */
.download {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(232, 168, 124, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--warm-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.download-buttons {
    margin-bottom: 16px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35),
                0 0 20px rgba(232, 168, 124, 0.1);
}

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

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

.store-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.download-visual {
    display: flex;
    justify-content: center;
}

.download-mockup-img {
    width: 200px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4))
            drop-shadow(0 8px 20px rgba(91, 168, 212, 0.12));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-mockup-img:hover {
    transform: translateY(-8px) scale(1.02);
}

.download-phone {
    width: 200px;
    background: linear-gradient(145deg, #2A2A3E 0%, #1A1A2E 100%);
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.download-phone-screen {
    background: white;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qr-code {
    width: 120px;
    height: 120px;
}

.qr-code svg {
    width: 100%;
    height: 100%;
}

.qr-text {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--warm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--warm-sunset);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

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

    .hero-content {
        max-width: 100%;
    }

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

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

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

    .feature-card.feature-large {
        grid-column: span 2;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 400px;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        width: 60px;
        height: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        display: flex;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.feature-large {
        grid-column: span 1;
    }

    .screenshots-carousel {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 24px 20px;
        margin: 0 -24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .screenshots-carousel::-webkit-scrollbar {
        display: none;
    }

    .screenshot-card {
        flex-shrink: 0;
    }

    .footer-links {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .phone-mockup-img {
        width: 220px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .preview-countdown {
        flex-wrap: wrap;
    }

    .preview-item {
        min-width: calc(50% - 6px);
    }
}

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

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

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for hero phone */
.hero-phone {
    animation: subtleFloat 6s ease-in-out infinite;
}

/* Logo text shimmer on hover */
.nav-brand:hover .logo-text {
    background: linear-gradient(90deg, var(--primary), var(--warm), var(--primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 2s ease infinite;
}

/* Button hover micro-interactions */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

/* Warm divider accent */
.stat-divider {
    background: linear-gradient(180deg, transparent, rgba(232, 168, 124, 0.3), transparent);
}
