        /* Mobile nav padding */
        @media (max-width: 768px) {
            body { padding-bottom: 70px; }
        }

        .gmi-hero {
            position: relative;
            background: var(--gradient-primary);
            padding: var(--spacing-2xl) 0;
            color: white;
            overflow: hidden;
        }
        .gmi-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .gmi-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .gmi-hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: var(--spacing-md);
        }
        .gmi-hero p {
            font-size: var(--font-size-lg);
            opacity: 0.9;
            margin-bottom: var(--spacing-xl);
        }
        .gmi-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-lg);
            margin: var(--spacing-xl) 0;
        }
        .gmi-feature-card {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
        }
        .gmi-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        .gmi-feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--spacing-md);
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }
        .gmi-month-badge {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary-color);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: var(--font-size-xs);
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
        }
        .gmi-timeline-section {
            background: var(--bg-light);
            padding: var(--spacing-2xl) 0;
        }
        .gmi-section-title {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .gmi-section-title h2 {
            margin-bottom: var(--spacing-sm);
        }
        .gmi-section-title p {
            color: var(--text-secondary);
        }
        .gmi-marketing-timeline {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--spacing-md);
            max-width: 1200px;
            margin: 0 auto;
        }
        .gmi-timeline-card {
            flex: 1;
            min-width: 180px;
            max-width: 200px;
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            padding: var(--spacing-lg);
            text-align: center;
            box-shadow: var(--shadow-md);
            position: relative;
        }
        .gmi-timeline-card::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid var(--primary-color);
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        .gmi-timeline-card:last-child::after {
            display: none;
        }
        .gmi-timeline-month {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            margin: 0 auto var(--spacing-sm);
        }
        .gmi-cta-section {
            background: var(--gradient-dark);
            padding: var(--spacing-2xl);
            text-align: center;
            color: white;
        }
        .gmi-cta-section h2 {
            color: white;
            margin-bottom: var(--spacing-md);
        }
        .gmi-cta-section p {
            opacity: 0.9;
            margin-bottom: var(--spacing-xl);
        }
        .gmi-footer {
            background: #111827;
            color: rgba(255,255,255,0.7);
            padding: var(--spacing-xl);
            text-align: center;
            font-size: var(--font-size-sm);
        }
        @media (max-width: 768px) {
            .gmi-hero h1 {
                font-size: 1.75rem;
            }
            /* 진행 안내 섹션 모바일 최적화 */
            .gmi-main {
                padding: 30px 0 !important;
            }
            .gmi-section-title {
                margin-bottom: 16px;
            }
            .gmi-section-title h2 {
                font-size: 1.3rem;
            }
            .gmi-section-title p {
                font-size: 0.85rem;
            }
            .gmi-feature-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                margin: 16px 0;
            }
            .gmi-feature-card {
                padding: 16px;
                display: flex;
                align-items: center;
                text-align: left;
                gap: 14px;
            }
            .gmi-feature-card h4 {
                margin: 0 0 4px;
                font-size: 0.95rem;
            }
            .gmi-feature-card p {
                margin: 0;
                font-size: 0.8rem;
                line-height: 1.4;
            }
            .gmi-feature-icon {
                width: 50px;
                height: 50px;
                margin: 0;
                font-size: 24px;
                flex-shrink: 0;
            }
            /* 타임라인 섹션 모바일 최적화 */
            .gmi-timeline-section {
                padding: 24px 0;
            }
            .gmi-marketing-timeline {
                gap: 8px;
                padding: 0 8px;
            }
            .gmi-timeline-card {
                min-width: 95px;
                max-width: 110px;
                padding: 12px 8px;
                font-size: 0.75rem;
            }
            .gmi-timeline-card h5 {
                font-size: 0.75rem;
                margin: 0;
            }
            .gmi-timeline-card p {
                font-size: 0.65rem !important;
                margin: 4px 0 0 !important;
            }
            .gmi-timeline-card span {
                font-size: 0.6rem !important;
            }
            .gmi-timeline-month {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
            .gmi-timeline-card::after {
                display: none;
            }
        }

        /* Interview Status Section */
        .gmi-status-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 40px 0;
            border-bottom: 1px solid #bae6fd;
        }
        .gmi-status-header {
            text-align: center;
            margin-bottom: 24px;
        }
        .gmi-status-header h3 {
            font-size: 1.3rem;
            color: #0369a1;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .gmi-status-header .live-dot {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        .gmi-status-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 900px;
            margin: 0 auto 24px;
        }
        .gmi-status-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        .gmi-status-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .gmi-status-number {
            font-size: 2rem;
            font-weight: 700;
            color: #0369a1;
            line-height: 1;
        }
        .gmi-status-number.green { color: #16a34a; }
        .gmi-status-number.orange { color: #ea580c; }
        .gmi-status-number.purple { color: #7c3aed; }
        .gmi-status-label {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 6px;
        }
        .gmi-recent-list {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .gmi-recent-title {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .gmi-recent-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .gmi-recent-item:last-child {
            border-bottom: none;
        }
        .gmi-recent-name {
            font-weight: 500;
            color: #1e293b;
        }
        .gmi-recent-type {
            font-size: 0.8rem;
            color: #94a3b8;
            background: #f1f5f9;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 8px;
        }
        .gmi-recent-time {
            font-size: 0.8rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .gmi-status-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gmi-status-number {
                font-size: 1.5rem;
            }
        }
    /* Premium PWA Install Banner */
    #pwa-install-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        padding: 20px 24px;
        z-index: 99999;
        box-shadow: 0 -8px 40px rgba(0,0,0,0.5), 0 -2px 10px rgba(59,130,246,0.3);
        animation: slideUpBanner 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-top: 1px solid rgba(255,255,255,0.1);
        overflow: hidden;
    }
    @keyframes slideUpBanner {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .pwa-banner-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(ellipse at center, rgba(59,130,246,0.15) 0%, transparent 50%);
        animation: bannerGlow 4s ease-in-out infinite;
        pointer-events: none;
    }
    @keyframes bannerGlow {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.1); }
    }
    .pwa-banner-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        overflow: hidden;
    }
    .pwa-banner-particles span {
        position: absolute;
        width: 4px;
        height: 4px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        border-radius: 50%;
        animation: particleFloat 3s ease-in-out infinite;
        box-shadow: 0 0 10px rgba(251,191,36,0.5);
    }
    .pwa-banner-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
    .pwa-banner-particles span:nth-child(2) { left: 25%; animation-delay: 0.5s; }
    .pwa-banner-particles span:nth-child(3) { left: 50%; animation-delay: 1s; }
    .pwa-banner-particles span:nth-child(4) { left: 75%; animation-delay: 1.5s; }
    .pwa-banner-particles span:nth-child(5) { left: 90%; animation-delay: 2s; }
    @keyframes particleFloat {
        0%, 100% { bottom: -10px; opacity: 0; transform: scale(0); }
        20% { opacity: 1; transform: scale(1); }
        80% { opacity: 1; }
        100% { bottom: 100%; opacity: 0; transform: scale(0.5); }
    }
    .pwa-banner-content {
        position: relative;
        display: flex;
        align-items: center;
        gap: 16px;
        max-width: 600px;
        margin: 0 auto;
    }
    .pwa-icon-wrapper {
        position: relative;
        width: 52px;
        height: 52px;
    }
    .pwa-icon-glow {
        position: absolute;
        inset: -4px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b, #dc2626);
        border-radius: 16px;
        animation: iconPulse 2s ease-in-out infinite;
        filter: blur(8px);
        opacity: 0.6;
    }
    @keyframes iconPulse {
        0%, 100% { transform: scale(1); opacity: 0.6; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }
    .pwa-icon-inner {
        position: relative;
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #dc2626 100%);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 4px 15px rgba(251,191,36,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    }
    .pwa-icon-inner svg {
        width: 28px;
        height: 28px;
        fill: white;
        stroke: white;
    }
    .pwa-banner-text {
        flex: 1;
        color: white;
    }
    .pwa-text-badge {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #1e293b;
        padding: 3px 8px;
        border-radius: 4px;
        margin-bottom: 6px;
    }
    .pwa-banner-text strong {
        display: block;
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 3px;
        background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .pwa-banner-text span {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.7);
    }
    .pwa-banner-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .pwa-btn-install {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #dc2626 100%);
        color: #1e293b;
        border: none;
        padding: 12px 22px;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(251,191,36,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    }
    .pwa-btn-install svg {
        stroke: #1e293b;
    }
    .btn-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        animation: btnShine 3s ease-in-out infinite;
    }
    @keyframes btnShine {
        0% { left: -100%; }
        50%, 100% { left: 100%; }
    }
    .pwa-btn-install:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 25px rgba(251,191,36,0.5);
    }
    .pwa-btn-install:active {
        transform: translateY(0) scale(0.98);
    }
    .pwa-btn-dismiss {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        color: rgba(255,255,255,0.8);
        border: 1px solid rgba(255,255,255,0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    .pwa-btn-dismiss:hover {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.2);
    }

    /* Premium iOS Install Modal */
    #ios-install-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100000;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    .ios-modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(8px);
        animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .ios-modal-content {
        position: relative;
        width: calc(100% - 32px);
        max-width: 400px;
        margin-bottom: 16px;
        background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
        border-radius: 28px;
        padding: 32px 24px 28px;
        text-align: center;
        animation: slideUpModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.1);
        overflow: hidden;
    }
    .ios-modal-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
        animation: modalShine 4s ease-in-out infinite;
        pointer-events: none;
    }
    @keyframes modalShine {
        0% { left: -200%; }
        50%, 100% { left: 200%; }
    }
    @keyframes slideUpModal {
        from { transform: translateY(100%) scale(0.95); opacity: 0; }
        to { transform: translateY(0) scale(1); opacity: 1; }
    }
    .ios-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.1);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        color: rgba(255,255,255,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    .ios-modal-close:hover {
        background: rgba(255,255,255,0.2);
        color: white;
    }
    .ios-modal-header {
        margin-bottom: 24px;
    }
    .ios-modal-icon {
        position: relative;
        width: 72px;
        height: 72px;
        margin: 0 auto 16px;
    }
    .ios-icon-ring {
        position: absolute;
        inset: -6px;
        border-radius: 22px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b, #dc2626);
        animation: ringPulse 2s ease-in-out infinite;
        filter: blur(10px);
        opacity: 0.5;
    }
    @keyframes ringPulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.15); opacity: 0.7; }
    }
    .ios-icon-inner {
        position: relative;
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #dc2626 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(251,191,36,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
    }
    .ios-icon-inner svg {
        width: 36px;
        height: 36px;
        fill: white;
        stroke: white;
    }
    .ios-header-badge {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        background: rgba(59,130,246,0.2);
        color: #60a5fa;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 12px;
        border: 1px solid rgba(59,130,246,0.3);
    }
    .ios-modal-content h3 {
        margin: 0 0 8px;
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .ios-subtitle {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
        margin: 0;
    }
    .ios-steps {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 20px;
    }
    .ios-step {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        opacity: 0;
        animation: stepFadeIn 0.4s ease forwards;
    }
    .ios-step[data-step="1"] { animation-delay: 0.2s; }
    .ios-step[data-step="2"] { animation-delay: 0.4s; }
    .ios-step[data-step="3"] { animation-delay: 0.6s; }
    @keyframes stepFadeIn {
        from { opacity: 0; transform: translateX(-10px); }
        to { opacity: 1; transform: translateX(0); }
    }
    .ios-step-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(59,130,246,0.3);
    }
    .ios-step-text {
        flex: 1;
    }
    .ios-step-text strong {
        display: block;
        color: white;
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    .ios-step-text span {
        color: rgba(255,255,255,0.5);
        font-size: 0.8rem;
    }
    .ios-step-divider {
        display: flex;
        justify-content: center;
        padding: 8px 0;
    }
    .ios-step-divider span {
        width: 2px;
        height: 16px;
        background: linear-gradient(180deg, rgba(59,130,246,0.5), rgba(59,130,246,0.1));
        border-radius: 1px;
        margin-left: 21px;
    }
    .ios-modal-btn {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #dc2626 100%);
        color: #1e293b;
        border: none;
        padding: 16px 32px;
        border-radius: 14px;
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(251,191,36,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
    }
    .ios-modal-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(251,191,36,0.5);
    }
    .ios-modal-btn:active {
        transform: translateY(0);
    }
    .ios-note {
        color: rgba(255,255,255,0.4);
        font-size: 0.8rem;
        margin: 16px 0 0;
    }

    @media (max-width: 480px) {
        #pwa-install-banner {
            padding: 16px 16px;
        }
        .pwa-banner-content {
            gap: 12px;
        }
        .pwa-icon-wrapper {
            width: 46px;
            height: 46px;
        }
        .pwa-icon-inner {
            width: 46px;
            height: 46px;
            border-radius: 12px;
        }
        .pwa-icon-inner svg {
            width: 24px;
            height: 24px;
        }
        .pwa-banner-text strong {
            font-size: 1.05rem;
        }
        .pwa-btn-install {
            padding: 10px 16px;
            font-size: 0.85rem;
        }
        .ios-modal-content {
            padding: 28px 20px 24px;
        }
    }
