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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 480px;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    position: relative;
}

.stripe {
    height: 6px;
    background: #dc2626;
}

.stripe.top {
    border-radius: 16px 16px 0 0;
}

.stripe.bottom {
    border-radius: 0 0 16px 16px;
}

.logo {
    width: 140px;
    height: auto;
    margin: 40px auto 24px;
    display: block;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #dc2626;
    margin: 0 auto 24px;
    border-radius: 2px;
}

.status {
    font-size: 18px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 20px;
}

.progress-bar {
    width: 80%;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.progress-fill {
    width: 40%;
    height: 100%;
    background: #dc2626;
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite alternate;
}

@keyframes progress {
    from { width: 30%; }
    to { width: 70%; }
}

.message {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    padding: 0 24px;
}

.contact {
    padding: 0 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.phone,
.location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.phone {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.45);
}

.phone:active {
    transform: translateY(0);
}

.location {
    background: #fff;
    color: #dc2626;
    border: 2px solid #dc2626;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.location:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.location:active {
    transform: translateY(0);
}
