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

:root {
    /* Logo-inspired vibrant green color palette */
    --primary-green: #38A73E;
    --secondary-green: #4AB550;
    --light-green: #6BC471;
    --lighter-green: #A8E5AD;
    --dark-green: #2D8A33;
    --accent-green: #4AB550;
    --vibrant-green: #38A73E;
    --earth-brown: #8b6f47;
    --cream: #faf9f6;
    --white: #ffffff;
    --text-dark: #1a2e1f;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --shadow: rgba(56, 167, 62, 0.12);
    --shadow-hover: rgba(56, 167, 62, 0.25);
    --shadow-large: rgba(56, 167, 62, 0.15);
    --gradient-primary: linear-gradient(135deg, #38A73E 0%, #4AB550 50%, #6BC471 100%);
    --gradient-hero: linear-gradient(135deg, #faf9f6 0%, #e8f5e9 50%, #c8e6c9 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(56, 167, 62, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 
        0 3px 10px rgba(56, 167, 62, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(56, 167, 62, 0.15);
    background: rgba(255, 255, 255, 0.5);
    padding: 2px;
}

.logo:hover .logo-image {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(56, 167, 62, 0.3);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -1px;
    transition: color 0.3s ease;
    line-height: 1;
}

.logo:hover .logo-text {
    color: var(--dark-green);
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.25rem;
    letter-spacing: 0.2px;
    display: inline-block;
    background: none;
    border: none;
    box-shadow: none;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vibrant-green), transparent);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(56, 167, 62, 0.3);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.nav-links a span {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--vibrant-green);
    transform: translateY(-2px);
    background: none;
    border: none;
    box-shadow: none;
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a:hover::after {
    width: 60%;
    opacity: 1;
}

.nav-links a:hover span {
    transform: translateY(-1px);
    color: var(--vibrant-green);
}

.nav-links a:active {
    transform: translateY(0);
}

/* Active state for current section */
.nav-links a.active {
    color: var(--vibrant-green);
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
}

.nav-links a.active::before {
    width: 80%;
    background: linear-gradient(90deg, transparent, var(--vibrant-green), transparent);
    box-shadow: 0 2px 8px rgba(56, 167, 62, 0.4);
}

.nav-links a.active span {
    color: var(--vibrant-green);
    font-weight: 700;
    transform: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
    overflow: hidden;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(56, 167, 62, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 157, 110, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-green);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--light-green);
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

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

.phone-demo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    padding: 40px;
}

.phone-demo::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 167, 62, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.phone-mockup {
    position: relative;
    width: 340px;
    height: 680px;
    transform-style: preserve-3d;
    animation: phoneFloat 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotateY(-8deg) rotateX(2deg);
    }
    50% {
        transform: translateY(-25px) rotateY(8deg) rotateX(-2deg);
    }
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
    animation: shadowPulse 8s ease-in-out infinite;
}

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

.phone-frame {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    border-radius: 48px;
    padding: 12px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8),
        inset 0 2px 8px rgba(255, 255, 255, 0.05),
        inset 0 -2px 8px rgba(0, 0, 0, 0.9);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 35px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    border-radius: 0 0 24px 24px;
    z-index: 10;
    box-shadow: 
        inset 0 -3px 6px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-top: none;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 7px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 4px;
    z-index: 11;
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.8);
}

/* Add side bezel highlights for 3D effect */
.phone-frame {
    position: relative;
}

.phone-frame {
    background-image: 
        linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%),
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 0 0 2px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 36px 36px 0 0;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 10px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.phone-time {
    font-weight: 700;
    letter-spacing: -0.3px;
}

.phone-battery {
    width: 26px;
    height: 13px;
    border: 1.5px solid #000;
    border-radius: 2.5px;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
}

.phone-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 4px;
    width: 2.5px;
    height: 5px;
    background: #000;
    border-radius: 0 1.5px 1.5px 0;
}

.phone-battery::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 18px;
    height: 9px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
    border-radius: 1px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.swipe-container {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f5 100%);
    z-index: 1;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 18px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.app-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 167, 62, 0.1), transparent);
}

.app-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1;
}

.app-filter {
    background: var(--vibrant-green);
    color: white;
    padding: 9px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(56, 167, 62, 0.25),
        0 2px 6px rgba(56, 167, 62, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-filter:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 16px rgba(56, 167, 62, 0.3),
        0 3px 8px rgba(56, 167, 62, 0.25);
}

.app-filter:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 2px 8px rgba(56, 167, 62, 0.25),
        0 1px 4px rgba(56, 167, 62, 0.2);
}

.swipe-card {
    position: absolute;
    width: calc(100% - 32px);
    height: calc(100% - 140px);
    margin: 16px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: grab;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    will-change: transform;
}

.swipe-card:active {
    cursor: grabbing;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.18),
        0 6px 20px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transform: scale(0.98);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 58%;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.swipe-card:hover .card-image {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    background: rgba(255, 255, 255, 0.98);
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 800;
    color: var(--vibrant-green);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.swipe-card:hover .card-badge {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.2),
        0 3px 8px rgba(0, 0, 0, 0.15);
}

.card-like-overlay,
.card-nope-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    width: 150px;
    height: 150px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.card-like-overlay {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.95) 0%, rgba(34, 197, 94, 0.95) 100%);
    border: 4px solid rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 8px 32px rgba(52, 211, 153, 0.4),
        0 4px 16px rgba(52, 211, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-nope-overlay {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    border: 4px solid rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 8px 32px rgba(239, 68, 68, 0.4),
        0 4px 16px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-like-overlay svg,
.card-nope-overlay svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.card-like-overlay span,
.card-nope-overlay span {
    color: white;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 4px;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 24px 28px 28px;
    height: 42%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.user-verified {
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
}

.user-verified::before {
    content: '✓';
    font-size: 11px;
    font-weight: 700;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
    font-weight: 400;
}

.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.tag {
    background: #f1f5f9;
    color: var(--primary-green);
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid rgba(56, 167, 62, 0.1);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: auto;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.card-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary-green);
    stroke-width: 2.5;
}

.card-action-btn {
    background: var(--vibrant-green);
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(56, 167, 62, 0.25);
    letter-spacing: 0.3px;
}

.card-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(56, 167, 62, 0.3);
    background: var(--secondary-green);
}

.card-action-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(56, 167, 62, 0.25);
}

.card-1 {
    z-index: 3;
    animation: swipeCard1 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.card-1 .like-overlay {
    animation: showLike1 15s infinite;
}

.card-2 {
    z-index: 2;
    animation: swipeCard2 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: 5s;
}

.card-2 .nope-overlay {
    animation: showNope2 15s infinite;
    animation-delay: 5s;
}

.card-3 {
    z-index: 1;
    animation: swipeCard3 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: 10s;
}

.card-3 .like-overlay {
    animation: showLike3 15s infinite;
    animation-delay: 10s;
}

@keyframes swipeCard1 {
    0%, 25% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        filter: brightness(1);
    }
    27% {
        transform: translateX(15px) translateY(-5px) rotate(3deg) scale(1.02);
        opacity: 1;
        z-index: 3;
        filter: brightness(1.05);
    }
    28% {
        transform: translateX(30px) translateY(-8px) rotate(8deg) scale(1.02);
        opacity: 1;
        z-index: 3;
        filter: brightness(1.1);
    }
    30% {
        transform: translateX(350px) translateY(80px) rotate(30deg) scale(0.75);
        opacity: 0;
        z-index: 2;
        filter: brightness(0.8);
    }
    31%, 100% {
        transform: translateX(-400px) translateY(0) rotate(-30deg) scale(0.75);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.8);
    }
}

@keyframes showLike1 {
    0%, 25% {
        transform: translate(-50%, -50%) rotate(-10deg) scale(0);
        opacity: 0;
    }
    27% {
        transform: translate(-50%, -50%) rotate(5deg) scale(1.2);
        opacity: 1;
    }
    28% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
        opacity: 0.95;
    }
    29% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    30% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.95);
        opacity: 0.7;
    }
    31%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 0;
    }
}

@keyframes swipeCard2 {
    0%, 25% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.95);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.9);
    }
    28% {
        transform: translateX(-400px) translateY(0) rotate(-30deg) scale(0.75);
        opacity: 0;
        z-index: 2;
        filter: brightness(0.8);
    }
    30%, 58% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        filter: brightness(1);
    }
    60% {
        transform: translateX(-10px) translateY(5px) rotate(-3deg) scale(1.01);
        opacity: 1;
        z-index: 3;
        filter: brightness(1.05);
    }
    61% {
        transform: translateX(-25px) translateY(8px) rotate(-8deg) scale(1.01);
        opacity: 1;
        z-index: 3;
        filter: brightness(1.1);
    }
    63% {
        transform: translateX(-400px) translateY(80px) rotate(-30deg) scale(0.75);
        opacity: 0;
        z-index: 2;
        filter: brightness(0.8);
    }
    64%, 100% {
        transform: translateX(-400px) translateY(0) rotate(-30deg) scale(0.75);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.8);
    }
}

@keyframes showNope2 {
    0%, 58% {
        transform: translate(-50%, -50%) rotate(10deg) scale(0);
        opacity: 0;
    }
    60% {
        transform: translate(-50%, -50%) rotate(-5deg) scale(1.2);
        opacity: 1;
    }
    61% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
        opacity: 0.95;
    }
    62% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    63% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.95);
        opacity: 0.7;
    }
    64%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 0;
    }
}

@keyframes swipeCard3 {
    0%, 58% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.95);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.9);
    }
    61% {
        transform: translateX(-400px) translateY(0) rotate(-30deg) scale(0.75);
        opacity: 0;
        z-index: 2;
        filter: brightness(0.8);
    }
    63%, 88% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        filter: brightness(1);
    }
    90% {
        transform: translateX(15px) translateY(-5px) rotate(3deg) scale(1.02);
        opacity: 1;
        z-index: 3;
        filter: brightness(1.05);
    }
    91% {
        transform: translateX(30px) translateY(-8px) rotate(8deg) scale(1.02);
        opacity: 1;
        z-index: 3;
        filter: brightness(1.1);
    }
    93% {
        transform: translateX(350px) translateY(80px) rotate(30deg) scale(0.75);
        opacity: 0;
        z-index: 2;
        filter: brightness(0.8);
    }
    94%, 100% {
        transform: translateX(-400px) translateY(0) rotate(-30deg) scale(0.75);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.8);
    }
}

@keyframes showLike3 {
    0%, 88% {
        transform: translate(-50%, -50%) rotate(-10deg) scale(0);
        opacity: 0;
    }
    90% {
        transform: translate(-50%, -50%) rotate(5deg) scale(1.2);
        opacity: 1;
    }
    91% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
        opacity: 0.95;
    }
    92% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    93% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.95);
        opacity: 0.7;
    }
    94%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 0;
    }
}

.card-image {
    width: 100%;
    height: 60%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.card-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 24px;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.card-location {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.swipe-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.swipe-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swipe-indicator.active {
    background: var(--vibrant-green);
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(56, 167, 62, 0.3);
}

/* Demo Section */
.demo-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
    position: relative;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
        background: linear-gradient(90deg, transparent, rgba(56, 167, 62, 0.2), transparent);
}

.demo-subtitle {
    text-align: center;
    font-size: 1.55rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
    background: linear-gradient(135deg, #2d4a35 0%, #64748b 50%, #2d4a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.demo-feature {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(56, 167, 62, 0.1);
        box-shadow: 0 4px 20px rgba(56, 167, 62, 0.08);
}

.demo-feature:hover {
    transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(56, 167, 62, 0.15);
    border-color: var(--light-green);
}

.demo-feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.1) 0%, rgba(74, 181, 80, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-feature:hover .demo-feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(56, 167, 62, 0.3);
}

.demo-feature-icon svg {
    width: 44px;
    height: 44px;
}

.demo-feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.demo-feature p {
    font-size: 1.15rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.8;
    letter-spacing: 0.6px;
    font-style: italic;
    background: linear-gradient(135deg, #2d4a35 0%, #64748b 50%, #2d4a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--vibrant-green) 60%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.hero-subtitle {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.9;
    max-width: 600px;
    letter-spacing: 1px;
    font-style: italic;
    background: linear-gradient(135deg, #2d4a35 0%, #64748b 50%, #2d4a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.hero-download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-download-buttons .download-btn {
    min-width: 220px;
    padding: 1.4rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
    color: var(--primary-green);
    border-radius: 22px;
    box-shadow: 
        0 10px 32px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(56, 167, 62, 0.12);
}

.hero-download-buttons .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 167, 62, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.hero-download-buttons .download-btn svg {
    width: 40px;
    height: 40px;
    color: var(--vibrant-green);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 3px 6px rgba(56, 167, 62, 0.2));
    padding: 6px;
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.08) 0%, rgba(74, 181, 80, 0.08) 100%);
    border-radius: 12px;
}

.hero-download-buttons .download-btn:hover svg {
    transform: scale(1.12) rotate(6deg);
    filter: drop-shadow(0 5px 10px rgba(56, 167, 62, 0.3));
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.15) 0%, rgba(74, 181, 80, 0.15) 100%);
}

.hero-download-buttons .download-btn-content {
    position: relative;
    z-index: 2;
}

.hero-download-buttons .download-btn:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 18px 48px rgba(0, 0, 0, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(56, 167, 62, 0.2);
    border-color: rgba(56, 167, 62, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.hero-download-buttons .download-label {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #64748b;
    text-transform: uppercase;
}

.hero-download-buttons .download-btn:hover .download-label {
    opacity: 1;
    color: var(--vibrant-green);
}

.hero-download-buttons .download-platform {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-green) 50%, var(--vibrant-green) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.hero-download-buttons .download-btn:hover .download-platform {
    transform: translateX(2px);
}

.btn {
    padding: 1.1rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(56, 167, 62, 0.25);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(56, 167, 62, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(56, 167, 62, 0.25);
    border-color: var(--primary-green);
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(45deg);
    }
}

/* Statistics Section */
.stats-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
        background: linear-gradient(90deg, transparent, rgba(56, 167, 62, 0.2), transparent);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 1.5rem auto 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(56, 167, 62, 0.1);
    box-shadow: 
        0 4px 20px rgba(45, 134, 89, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(56, 167, 62, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--light-green);
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.1) 0%, rgba(74, 181, 80, 0.1) 100%);
    border-radius: 20px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Features Section */
.features-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8faf9 0%, var(--white) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 167, 62, 0.2), transparent);
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(56, 167, 62, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 181, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Feature Phases - Alternating Layout */
.feature-phases {
    max-width: 1400px;
    margin: 5rem auto 0;
    padding: 0 20px;
    z-index: 1;
}

.feature-phase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 10rem;
    position: relative;
}

.phase-phone {
    opacity: 0;
    transform: translateX(-80px) scale(0.9);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phase-right .phase-phone {
    transform: translateX(80px) scale(0.9);
}

.phase-content {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.phase-right .phase-content {
    transform: translateX(-40px);
}

.feature-phase.visible .phase-phone {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.feature-phase.visible .phase-content {
    opacity: 1;
    transform: translateX(0);
}

.feature-phase:last-child {
    margin-bottom: 0;
}

.feature-phase::after {
    content: '';
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 4rem;
    background: linear-gradient(180deg, var(--vibrant-green) 0%, transparent 100%);
    opacity: 0.3;
}

.feature-phase:last-child::after {
    display: none;
}

.phase-left {
    grid-template-columns: 1fr 1fr;
}

.phase-left .phase-phone {
    order: 1;
}

.phase-left .phase-content {
    order: 2;
}

.phase-right {
    grid-template-columns: 1fr 1fr;
}

.phase-right .phase-content {
    order: 1;
}

.phase-right .phase-phone {
    order: 2;
}

.phase-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phase-phone-mockup {
    width: 320px;
    height: 640px;
    position: relative;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-phase.visible .phase-phone-mockup {
    animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.feature-phase:hover .phase-phone-mockup {
    transform: scale(1.05);
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.2));
}

.phase-phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-radius: 45px;
    padding: 10px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.phase-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 35px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    border-radius: 0 0 24px 24px;
    z-index: 10;
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.8);
}

.phase-phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.phase-phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 10px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phase-phone-time {
    font-weight: 700;
    letter-spacing: -0.3px;
}

.phase-phone-battery {
    width: 26px;
    height: 13px;
    border: 1.5px solid #000;
    border-radius: 2.5px;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
}

.phase-phone-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 4px;
    width: 2.5px;
    height: 5px;
    background: #000;
    border-radius: 0 1.5px 1.5px 0;
}

.phase-phone-battery::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 18px;
    height: 9px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
    border-radius: 1px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.phase-phone-content {
    height: calc(100% - 50px);
    overflow: hidden;
    background: #f8f9fa;
}


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

.phase-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.feature-phase.visible .phase-title {
    opacity: 1;
    transform: translateY(0);
}

.phase-title .highlight {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 8px;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.phase-description {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    font-style: italic;
    background: linear-gradient(135deg, #2d4a35 0%, #64748b 50%, #2d4a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-phase.visible .phase-description {
    opacity: 1;
    transform: translateY(0);
}

.phase-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.phase-checklist li:hover {
    transform: translateX(5px);
    color: var(--vibrant-green);
}

.feature-phase.visible .phase-checklist li {
    opacity: 1;
    transform: translateX(0);
}

.feature-phase.visible .phase-checklist li:nth-child(1) {
    transition-delay: 0.9s;
}

.feature-phase.visible .phase-checklist li:nth-child(2) {
    transition-delay: 1.1s;
}

.feature-phase.visible .phase-checklist li:nth-child(3) {
    transition-delay: 1.3s;
}

.phase-checklist li svg {
    width: 24px;
    height: 24px;
    color: var(--vibrant-green);
    flex-shrink: 0;
    margin-top: 2px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-phase.visible .phase-checklist li svg {
    transform: scale(1);
}

.feature-phase.visible .phase-checklist li:nth-child(1) svg {
    transition-delay: 1s;
}

.feature-phase.visible .phase-checklist li:nth-child(2) svg {
    transition-delay: 1.2s;
}

.feature-phase.visible .phase-checklist li:nth-child(3) svg {
    transition-delay: 1.4s;
}

/* Phone Screen Content Styles */
.phase-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease 0.3s;
}

.feature-phase.visible .phase-app-header {
    opacity: 1;
    transform: translateY(0);
}

.phase-app-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.phase-app-filter {
    background: var(--vibrant-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.phase-swipe-container {
    position: relative;
    width: 100%;
    height: 500px;
    padding: 16px;
    overflow: hidden;
}

.phase-swipe-card {
    position: absolute;
    width: calc(100% - 32px);
    height: 450px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: grab;
    user-select: none;
}

.phase-swipe-card:active {
    cursor: grabbing;
}

.phase-card-1 {
    z-index: 3;
    animation: phaseSwipeCard1 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.phase-card-1 .phase-like-overlay {
    animation: phaseShowLike1 12s infinite;
}

.phase-card-2 {
    z-index: 2;
    animation: phaseSwipeCard2 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: 4s;
}

.phase-card-2 .phase-nope-overlay {
    animation: phaseShowNope2 12s infinite;
    animation-delay: 4s;
}

.phase-card-3 {
    z-index: 1;
    animation: phaseSwipeCard3 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: 8s;
}

.phase-card-3 .phase-like-overlay {
    animation: phaseShowLike3 12s infinite;
    animation-delay: 8s;
}

.phase-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.phase-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phase-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vibrant-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phase-like-overlay,
.phase-nope-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 167, 62, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.3s ease;
}

.phase-nope-overlay {
    background: rgba(220, 53, 69, 0.85);
}

.phase-like-overlay svg,
.phase-nope-overlay svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.phase-card-info {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.phase-card-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}

.phase-card-action {
    color: var(--vibrant-green);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes phaseSwipeCard1 {
    0%, 30% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        filter: brightness(1);
    }
    32% {
        transform: translateX(10px) translateY(-3px) rotate(2deg) scale(1.01);
        opacity: 1;
        z-index: 3;
    }
    35% {
        transform: translateX(300px) translateY(0) rotate(25deg) scale(0.8);
        opacity: 0;
        z-index: 3;
    }
    36%, 100% {
        transform: translateX(300px) translateY(0) rotate(25deg) scale(0.8);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes phaseShowLike1 {
    0%, 30% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    31% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    33% {
        opacity: 0;
        transform: scale(1.2) rotate(10deg);
    }
    34%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
}

@keyframes phaseSwipeCard2 {
    0%, 30% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.95);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.9);
    }
    31% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        filter: brightness(1);
    }
    33% {
        transform: translateX(-10px) translateY(-3px) rotate(-2deg) scale(1.01);
        opacity: 1;
        z-index: 3;
    }
    36% {
        transform: translateX(-300px) translateY(0) rotate(-25deg) scale(0.8);
        opacity: 0;
        z-index: 3;
    }
    37%, 100% {
        transform: translateX(-300px) translateY(0) rotate(-25deg) scale(0.8);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes phaseShowNope2 {
    0%, 30% {
        opacity: 0;
        transform: scale(0.8) rotate(10deg);
    }
    31% {
        opacity: 1;
        transform: scale(1.1) rotate(-5deg);
    }
    33% {
        opacity: 0;
        transform: scale(1.2) rotate(-10deg);
    }
    34%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(10deg);
    }
}

@keyframes phaseSwipeCard3 {
    0%, 63% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(0.95);
        opacity: 0;
        z-index: 1;
        filter: brightness(0.9);
    }
    64% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        filter: brightness(1);
    }
    66% {
        transform: translateX(10px) translateY(-3px) rotate(2deg) scale(1.01);
        opacity: 1;
        z-index: 3;
    }
    69% {
        transform: translateX(300px) translateY(0) rotate(25deg) scale(0.8);
        opacity: 0;
        z-index: 3;
    }
    70%, 100% {
        transform: translateX(300px) translateY(0) rotate(25deg) scale(0.8);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes phaseShowLike3 {
    0%, 63% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    64% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    66% {
        opacity: 0;
        transform: scale(1.2) rotate(10deg);
    }
    67%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
}

.phase-verification-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.phase-verify-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.1) 0%, rgba(74, 181, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vibrant-green);
    margin-bottom: 24px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-phase.visible .phase-verify-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: checkmarkPulse 2s ease-in-out infinite 1s;
}

@keyframes checkmarkPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(56, 167, 62, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(56, 167, 62, 0);
    }
}

.phase-verify-icon svg {
    width: 50px;
    height: 50px;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.feature-phase.visible .phase-verify-icon svg {
    transform: scale(1);
}

.phase-verification-screen h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.6s;
}

.feature-phase.visible .phase-verification-screen h3 {
    opacity: 1;
    transform: translateY(0);
}

.phase-verification-screen p {
    color: var(--vibrant-green);
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.8s;
}

.feature-phase.visible .phase-verification-screen p {
    opacity: 1;
    transform: translateY(0);
}

.phase-chat-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.phase-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phase-chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.phase-chat-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}

.phase-chat-status {
    font-size: 12px;
    color: var(--vibrant-green);
    font-weight: 600;
}

.phase-chat-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.phase-message {
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 70%;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.feature-phase.visible .phase-message {
    opacity: 1;
    transform: translateY(0);
}

.feature-phase.visible .phase-message:nth-child(1) {
    transition-delay: 0.5s;
}

.feature-phase.visible .phase-message:nth-child(2) {
    transition-delay: 0.7s;
}

.feature-phase.visible .phase-message:nth-child(3) {
    transition-delay: 0.9s;
}

.phase-message.received {
    background: #f1f3f5;
    color: #1a1a1a;
    align-self: flex-start;
    transform: translateX(-20px);
}

.feature-phase.visible .phase-message.received {
    transform: translateX(0);
}

.phase-message.sent {
    background: var(--vibrant-green);
    color: white;
    align-self: flex-end;
    transform: translateX(20px);
}

.feature-phase.visible .phase-message.sent {
    transform: translateX(0);
}

.phase-feed-screen {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-feed-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-phase.visible .phase-feed-post {
    opacity: 1;
    transform: translateY(0);
}

.feature-phase.visible .phase-feed-post:nth-child(1) {
    transition-delay: 0.5s;
}

.feature-phase.visible .phase-feed-post:nth-child(2) {
    transition-delay: 0.7s;
}

.phase-feed-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

.phase-feed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-phase.visible .phase-feed-image {
    transform: scale(1);
}

.phase-feed-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 12px 16px;
}

.phase-feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.phase-feed-user-info {
    flex: 1;
}

.phase-feed-username {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 15px;
    margin-bottom: 2px;
}

.phase-feed-time {
    font-size: 12px;
    color: var(--text-light);
}

.phase-feed-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

.phase-feed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-phase.visible .phase-feed-image {
    transform: scale(1);
}

.phase-feed-content {
    padding: 16px;
}

.phase-feed-text {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.4;
}

.phase-feed-description {
    font-size: 15px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.7;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-style: italic;
    background: linear-gradient(135deg, #2d4a35 0%, #64748b 50%, #2d4a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.phase-feed-actions {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Download Section */
.download-section {
    padding: 140px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.download-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.download-section .section-title {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.download-section .section-title::after {
    background: rgba(255, 255, 255, 0.4);
    height: 4px;
    width: 100px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.download-subtitle {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    margin-bottom: 4rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.8px;
    font-style: italic;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.98) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.download-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 3.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
    color: var(--primary-green);
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 260px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(56, 167, 62, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid rgba(56, 167, 62, 0.15);
    backdrop-filter: blur(10px);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 167, 62, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(56, 167, 62, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

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

.download-btn:hover::after {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.25),
        0 10px 24px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(56, 167, 62, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(56, 167, 62, 0.2);
    border-color: rgba(56, 167, 62, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.download-btn:active {
    transform: translateY(-4px) scale(1.01);
}

.download-btn svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(56, 167, 62, 0.25));
    padding: 8px;
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.08) 0%, rgba(74, 181, 80, 0.08) 100%);
    border-radius: 14px;
}

.download-btn:hover svg {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 6px 12px rgba(56, 167, 62, 0.35));
    background: linear-gradient(135deg, rgba(56, 167, 62, 0.15) 0%, rgba(74, 181, 80, 0.15) 100%);
}

.download-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.download-label {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.download-btn:hover .download-label {
    opacity: 1;
    color: var(--vibrant-green);
    transform: translateY(-1px);
}

.download-platform {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-green) 50%, var(--vibrant-green) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.download-btn:hover .download-platform {
    transform: translateX(3px);
    background-size: 200% 100%;
    animation: gradientShift 1.5s ease infinite;
}

/* Partners Section */
.partners-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #faf9f6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(56, 167, 62, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(56, 167, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.partners-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 167, 62, 0.02) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.partners-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--vibrant-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-20px);
    animation: titleFadeIn 1s ease-out 0.3s forwards;
    letter-spacing: -1px;
}

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

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--vibrant-green), transparent);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.partners-subtitle {
    text-align: center;
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--text-light);
    margin-bottom: 5rem;
    font-style: italic;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    animation: subtitleFadeIn 1s ease-out 0.6s forwards;
}

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

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.partner-logo-wrapper {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 280px;
    width: 100%;
}

.partner-logo-wrapper.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardSlideIn {
    0% {
        transform: translateX(-30px) scale(0.9);
        opacity: 0;
    }
    60% {
        transform: translateX(5px) scale(1.02);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.partner-logo-wrapper:nth-child(1) {
    transition-delay: 0.1s;
}

.partner-logo-wrapper:nth-child(2) {
    transition-delay: 0.2s;
}

.partner-logo-wrapper:nth-child(3) {
    transition-delay: 0.3s;
}

.partner-logo-wrapper:nth-child(4) {
    transition-delay: 0.4s;
}

.partner-logo-wrapper:nth-child(5) {
    transition-delay: 0.5s;
}

.partner-logo-wrapper:nth-child(6) {
    transition-delay: 0.6s;
}

.partner-logo-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(2deg) rotateX(2deg);
    box-shadow: 
        0 20px 60px rgba(56, 167, 62, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(56, 167, 62, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(56, 167, 62, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.partner-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 120px;
    max-width: 100%;
    filter: grayscale(30%) brightness(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.partner-logo-wrapper:nth-child(1) .partner-logo {
    animation-delay: 0s;
}

.partner-logo-wrapper:nth-child(2) .partner-logo {
    animation-delay: 0.8s;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

.partner-logo-card:hover .partner-logo {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.08) rotate(-1deg);
    animation-play-state: paused;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-green) 50%, #2D8A33 100%);
    color: var(--white);
    padding: 5rem 20px 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.footer-logo-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    padding: 4px;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 3px 10px rgba(0, 0, 0, 0.5);
}

.footer-logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-text {
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.98) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-links a:hover::before {
    width: 80%;
}

.footer-links .admin-link {
    position: static;
    font-size: 0.95rem;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-links .admin-link:hover {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}


/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.admin-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.admin-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.admin-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.admin-modal-close:hover {
    color: var(--text-dark);
}

.admin-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.admin-form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.admin-form-group input:focus {
    outline: none;
    border-color: var(--vibrant-green);
    box-shadow: 0 0 0 3px rgba(56, 167, 62, 0.1);
}

.admin-submit-btn {
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.admin-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 167, 62, 0.3);
}

.admin-submit-btn:active {
    transform: translateY(0);
}

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

    .hero-text {
        text-align: center;
    }

    .phone-demo {
        margin-top: 3rem;
        padding: 30px;
    }

    .phone-demo::before {
        width: 350px;
        height: 350px;
    }

    .phone-mockup {
        width: 300px;
        height: 600px;
    }
    
    .app-title {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

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

    .section-title {
        font-size: 2.25rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .nav-links a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-links a:hover {
        transform: translateY(-1px);
    }

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

    .feature-phases {
        padding: 0 10px;
    }
    
    .feature-phase {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }
    
    .phase-left,
    .phase-right {
        direction: ltr;
    }
    
    .phase-right > * {
        direction: ltr;
    }
    
    .phase-phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .phase-title {
        font-size: 2.25rem;
    }
    
    .phase-description {
        font-size: 1.15rem;
    }
    
    .demo-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .download-subtitle {
        font-size: 1.3rem;
    }
    
    .demo-feature p {
        font-size: 1.05rem;
    }
    
    .partners-title {
        font-size: 2.25rem;
    }
    
    .partners-subtitle {
        font-size: 1.15rem;
    }
    
    .partners-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .partner-logo-wrapper {
        min-width: 180px;
        max-width: 240px;
        flex: 1 1 calc(50% - 1rem);
    }
    
    .partner-logo-card {
        padding: 1.5rem 2rem;
        min-height: 160px;
    }
    
    .partner-logo {
        max-height: 100px;
    }
    
    @media (max-width: 640px) {
        .partners-grid {
            gap: 1.5rem;
        }
        
        .partner-logo-wrapper {
            min-width: 150px;
            max-width: 100%;
            flex: 1 1 100%;
        }
        
        .partner-logo-card {
            min-height: 140px;
        }
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-download-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-download-buttons .download-btn {
        width: 100%;
        min-width: auto;
    }

    .phone-demo {
        padding: 20px;
    }

    .phone-demo::before {
        width: 300px;
        height: 300px;
    }

    .phone-mockup {
        width: 260px;
        height: 520px;
    }

    .swipe-card {
        height: calc(100% - 120px);
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .stat-card,
    .feature-card {
        padding: 2rem;
    }
}

/* Scroll animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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