:root {
    --metro-blue: #007ABB;
    --metro-blue-dark: #005E8F;
    --metro-blue-light: #009FE8;
    --metro-red: #E42026;
    --metro-green: #029847;
    --bg-light: #F2F8FF;
    --bg-soft: #E9F3FF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(0, 122, 187, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 122, 187, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 122, 187, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 122, 187, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 159, 232, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(2, 152, 71, 0.03) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-light) 0%, var(--bg-soft) 50%, var(--bg-light) 100%);
}

/* Metro Lines Animation */
.metro-lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    opacity: 0.4;
}

.metro-line {
    position: absolute;
    height: 3px;
    border-radius: 3px;
    animation: moveLine 20s linear infinite;
}

.metro-line.blue {
    background: linear-gradient(90deg, transparent, var(--metro-blue), transparent);
    top: 20%;
    width: 200px;
}

.metro-line.red {
    background: linear-gradient(90deg, transparent, var(--metro-red), transparent);
    top: 50%;
    width: 150px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.metro-line.green {
    background: linear-gradient(90deg, transparent, var(--metro-green), transparent);
    top: 75%;
    width: 180px;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes moveLine {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    background: rgba(242, 248, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 122, 187, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 122, 187, 0.3);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--metro-blue);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--metro-blue);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4.5rem 2rem 2rem;
    position: relative;
}

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

.hero-text {
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 122, 187, 0.1) 0%, rgba(0, 159, 232, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--metro-blue);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 122, 187, 0.2);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--metro-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--metro-blue) 0%, var(--metro-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

/* Store Buttons - LARGER */
.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-width: 200px;
}

.store-btn.primary {
    background: linear-gradient(135deg, var(--metro-blue) 0%, var(--metro-blue-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 122, 187, 0.35);
}

.store-btn.secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid rgba(0, 122, 187, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-btn.primary:hover {
    box-shadow: 0 12px 32px rgba(0, 122, 187, 0.45);
}

.store-btn.secondary:hover {
    border-color: var(--metro-blue);
    background: rgba(0, 122, 187, 0.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.store-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.store-btn .btn-text small {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
}

.store-btn .btn-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.coming-soon-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
    z-index: 10;
}

/* Phone Mockups Container - TWO PHONES */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.3s both;
    perspective: 1000px;
    padding: 0.5rem 0;
}

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

.phone-mockup {
    position: relative;
    width: 230px;
    height: 460px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 42px;
    padding: 12px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 122, 187, 0.12),
        inset 0 0 0 2px rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.phone-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.35),
        0 20px 40px rgba(0, 122, 187, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.phone-mockup.animated {
    position: relative;
}

.phone-mockup.animated::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    opacity: 0.4;
    pointer-events: none;
}

.phone-mockup.second {
    transform: translateY(25px);
}

.phone-mockup.second:hover {
    transform: translateY(17px) scale(1.02);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-soft) 50%, var(--bg-light) 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup.second .phone-screen {
    background: #FFFFFF;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-top: 10px;
    margin-left: 0px;
}

.screenshot-video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 30px;
    margin-top: 1px;
}

/* Screenshot Animation Layers */
.screenshot-base {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.screenshot-overlay {
    position: relative;
    z-index: 2;
    animation: slideUpReveal 4s ease-in-out infinite;
}

/* Slide-up Animation */
@keyframes slideUpReveal {
    0%, 30% {
        transform: translateY(0);
        opacity: 1;
    }
    45%, 85% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Pause animation on hover */
.phone-mockup.animated:hover .screenshot-overlay {
    animation-play-state: paused;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: transparent;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-content {
    padding: 40px 14px 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    margin-bottom: 12px;
}

.app-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-header p {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.app-search {
    background: white;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 14px;
}

.app-search svg {
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
}

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

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex: 1;
}

/* Quick Actions Grid (3 columns) */
.app-grid-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
}

.app-card {
    background: white;
    border-radius: 14px;
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: scale(1.03);
}

.app-card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--metro-blue) 0%, var(--metro-blue-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.app-card span {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

.phone-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.8;
}

/* Animated phone label with icon */
.phone-mockup.animated + .phone-label::before {
    content: "↑";
    font-size: 0.9rem;
    color: var(--metro-blue);
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 122, 187, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--metro-blue), var(--metro-blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 122, 187, 0.1) 0%, rgba(0, 159, 232, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--metro-blue);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Language Badge */
.language-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(2, 152, 71, 0.1) 0%, rgba(0, 122, 187, 0.1) 100%);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--metro-green);
    margin-top: 0.75rem;
}

/* Metro Lines Section */
.metro-info {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-light) 100%);
}

.metro-info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.metro-lines-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.metro-line-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-left: 5px solid;
}

.metro-line-card.blue { border-left-color: var(--metro-blue); }
.metro-line-card.red { border-left-color: var(--metro-red); }
.metro-line-card.green { border-left-color: var(--metro-green); }

.metro-line-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.line-indicator {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.blue .line-indicator { background: var(--metro-blue); }
.red .line-indicator { background: var(--metro-red); }
.green .line-indicator { background: var(--metro-green); }

.line-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.line-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.line-stats {
    margin-left: auto;
    text-align: right;
}

.line-stats strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--metro-blue);
}

.line-stats span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--metro-blue) 0%, var(--metro-blue-dark) 100%);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: white;
    color: var(--metro-blue);
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn svg {
    width: 24px;
    height: 24px;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: white;
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-brand .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: inline-block;
}

.footer-brand .logo-text span {
    color: var(--metro-blue-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 280px;
    margin-top: 0.5rem;
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--metro-blue-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--metro-blue);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        justify-content: center;
    }
    
    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        flex-direction: row;
        gap: 1.5rem;
        padding: 1rem 0;
        justify-content: center;
    }
    
    .phone-wrapper {
        gap: 0.75rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 380px;
        border-radius: 30px;
        padding: 8px;
    }
    
    .phone-mockup.second {
        transform: translateY(30px);
    }
    
    .phone-mockup.second:hover {
        transform: translateY(24px) scale(1.02);
    }
    
    .phone-notch {
        width: 80px;
        height: 20px;
        background: #1a1a1a;
    }
    
    .phone-screen {
        border-radius: 24px;
    }
    
    .screenshot-img {
        margin-top: 6px;
        margin-left: 1px;
    }
    
    .screenshot-video {
        top: 8px;
        left: 0px;
        width: calc(101%);
        height: calc(100%);
        border-radius: 22px;
    }
    
    .phone-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
    
    .phone-content {
        padding: 32px 10px 10px;
    }
    
    .app-header h3 {
        font-size: 0.8rem;
    }
    
    .app-search {
        padding: 8px 10px;
    }
    
    .app-card {
        padding: 10px 6px;
    }
    
    .app-card-icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
    }
    
    .app-card-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .app-card span {
        font-size: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 5.5rem 1.5rem 2rem;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .metro-line-card {
        flex-wrap: wrap;
    }
    
    .line-stats {
        margin-left: 0;
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
}

@media (max-width: 420px) {
    .hero-visual {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .phone-mockup {
        width: 220px;
        height: 450px;
        border-radius: 36px;
        padding: 10px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    .screenshot-img {
        margin-top: 9px;
        margin-left: 1.5px;
    }
    
    .screenshot-video {
        top: 0px;
        left: 0px;
        width: calc(101%);
        height: calc(100% - 3px);
        border-radius: 26px;
        margin-top: 8px;
    }
    
    .phone-notch {
        background: #1a1a1a;
    }
    
    .phone-mockup.second {
        transform: translateY(0);
    }
    
    .phone-mockup.second:hover {
        transform: translateY(0) scale(1.02);
    }
    
    .phone-wrapper {
        align-items: center;
    }
}

@media (max-width: 360px) {
    .phone-mockup {
        width: 200px;
        height: 410px;
    }
    
    .hero-visual {
        justify-content: center;
        align-items: center;
    }
}