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

:root {
    /* Primary Brand Colors */
    --primary-color: #5B7FFF;
    --primary-dark: #4A6FEF;
    --primary-light: #E8EDFF;
    --gradient-primary: linear-gradient(135deg, #5B7FFF 0%, #4A6FEF 100%);

    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;

    /* Status Colors */
    --error-color: #ef4444;
    --error-light: #fee2e2;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Shadows */
    --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);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Main Container
   ============================================ */
.suspension-container {
    width: 100%;
    max-width: 600px;
    background: transparent;
    padding: var(--spacing-2xl);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ============================================
   Logo
   ============================================ */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.logo svg {
    margin-bottom: var(--spacing-sm);
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* ============================================
   Status Badge
   ============================================ */
.status-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--error-light);
    color: var(--error-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   Message
   ============================================ */
.message {
    margin-bottom: var(--spacing-xl);
}

.message h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.message p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Contact Button
   ============================================ */
.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    margin-bottom: var(--spacing-xl);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Support Info
   ============================================ */
.support-info {
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--bg-gray);
    width: 100%;
}

.support-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.support-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.support-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.support-info a:hover {
    color: var(--primary-dark);
}

.response-time {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    width: 100%;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--bg-gray);
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.footer-links {
    margin-top: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 var(--spacing-xs);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    body {
        padding: var(--spacing-sm);
    }

    .suspension-container {
        padding: var(--spacing-xl);
    }

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

    .logo svg {
        width: 50px;
        height: 50px;
    }

    .message h2 {
        font-size: 1.5rem;
    }

    .message p {
        font-size: 1rem;
    }

    .btn-contact {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: var(--spacing-xs);
    }

    .suspension-container {
        padding: var(--spacing-lg);
    }

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

    .logo svg {
        width: 45px;
        height: 45px;
    }

    .message h2 {
        font-size: 1.25rem;
    }

    .message p {
        font-size: 0.9375rem;
    }

    .btn-contact {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .support-info p,
    .footer p {
        font-size: 0.8125rem;
    }
}
