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

:root {
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --secondary-color: #10B981;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Admin Banner */
.admin-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.875rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: var(--shadow-sm);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #f8fafc;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 52px;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo img {
    border-radius: 8px;
    object-fit: contain;
    max-height: 75px;
    height: auto;
    display: block;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

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

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

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

.nav-admin-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-admin-link:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-admin-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Device Showcase */
.devices-showcase {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    perspective: 1000px;
    padding: 2rem 0;
}

.device-mockup {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.device-mockup:nth-child(1) {
    animation-delay: 0s;
}

.device-mockup:nth-child(2) {
    animation-delay: 0.5s;
}

.device-mockup:nth-child(3) {
    animation-delay: 1s;
}

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

.device-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

/* Web Browser Mockup */
.web-mockup {
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.browser-chrome {
    height: 36px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

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

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    flex: 1;
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.web-mockup .device-screen {
    height: 360px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.screen-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 10px;
}

.screen-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 16px 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* iOS Phone Mockup */
.ios-mockup {
    width: 170px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 0, 0, 0.2);
    position: relative;
    flex-shrink: 0;
}

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

.ios-mockup .device-screen {
    width: 100%;
    height: 360px;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.status-bar-ios {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
}

.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

/* Android Phone Mockup */
.android-mockup {
    width: 170px;
    background: #1f2937;
    border-radius: 32px;
    padding: 10px;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 0, 0, 0.2);
    position: relative;
    flex-shrink: 0;
}

.android-mockup .device-screen {
    width: 100%;
    height: 360px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.status-bar-android {
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-size: 0.65rem;
    font-weight: 600;
    background: #f9fafb;
    color: var(--text-primary);
}

.android-nav-bar {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Mobile Screen Content */
.screen-logo-mobile {
    width: 80px;
    height: auto;
    display: block;
    margin: 20px auto 10px;
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
    padding: 20px 16px;
    margin-top: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    margin: 30px 12px 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

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

.nav-icon {
    font-size: 1.5rem;
}

.nav-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Old phone mockup styles - keep for backward compatibility */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.screen-header {
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.screen-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-demo {
    height: 100px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
    border-radius: 12px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-section .section-title,
.download-section .section-subtitle {
    color: white;
}

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

.download-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.download-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.download-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--text-primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-button:hover {
    background: var(--primary-color);
    transform: translateX(4px);
}

.app-text {
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-store {
    font-size: 1.25rem;
    font-weight: 600;
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.platform-button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.platform-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Support Section */
.support-section {
    background: var(--bg-light);
}

.support-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.support-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

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

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

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

    .hero-image {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .admin-banner {
        top: 0;
    }

    .navbar {
        top: 0;
        position: relative;
    }

    .banner-content {
        justify-content: center;
        text-align: center;
    }

    .banner-text {
        font-size: 0.8rem;
    }

    .banner-button {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .logo img {
        max-height: 65px;
        width: auto;
    }

    .logo {
        gap: 6px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

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

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
        background: var(--bg-white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu.active {
        max-height: 400px;
    }

    .mobile-menu a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

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

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

    section {
        padding: 3rem 0;
    }

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

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

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

    .support-buttons {
        flex-direction: column;
    }

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

    .footer-section .logo img {
        max-height: 42px;
    }

    .app-buttons {
        gap: 0.75rem;
    }

    .app-button {
        padding: 0.875rem 1.25rem;
    }

    /* Device Showcase Responsive - Keep side by side on tablets */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .devices-showcase {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .web-mockup {
        width: 260px;
    }

    .web-mockup .device-screen {
        height: 340px;
    }

    .ios-mockup,
    .android-mockup {
        width: 155px;
    }

    .ios-mockup .device-screen,
    .android-mockup .device-screen {
        height: 330px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .admin-banner {
        padding: 0.75rem 0;
    }

    .banner-text {
        font-size: 0.75rem;
    }

    .banner-text svg {
        width: 16px;
        height: 16px;
    }

    .banner-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    .banner-button svg {
        width: 14px;
        height: 14px;
    }

    .logo img {
        max-height: 55px;
        width: auto;
    }

    .logo {
        gap: 5px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .download-card {
        padding: 2rem;
    }

    .feature-card,
    .feature-item {
        padding: 1.5rem;
    }

    /* Device Showcase Small Screen - Stack vertically on mobile */
    .devices-showcase {
        flex-direction: column;
        gap: 2.5rem;
    }

    .web-mockup {
        width: 280px;
    }

    .web-mockup .device-screen {
        height: 330px;
    }

    .screen-dashboard {
        gap: 8px;
    }

    .dashboard-card {
        padding: 12px 6px;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-label {
        font-size: 0.65rem;
    }

    .ios-mockup,
    .android-mockup {
        width: 160px;
    }

    .ios-mockup .device-screen,
    .android-mockup .device-screen {
        height: 340px;
    }

    .screen-logo-mobile {
        width: 60px;
    }

    .nav-icon {
        font-size: 1.2rem;
    }

    .nav-text {
        font-size: 0.6rem;
    }
}
