:root {
    --bg-color: #f0f3f8;
    --card-bg: #ffffff;
    --text-main: #1f2229;
    --text-muted: #737373;
    --blue-primary: #1880ff;
    --blue-primary-hover: #1570e6;
    --blue-light: #e6efff;
    --border-color: #f0f0f0;
    --gray-bg: #f9f9f9;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    overflow-x: hidden;
}

.card-container {
    perspective: 1000px;
    width: 100%;
    max-width: 680px;
}

.card {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.06), 0 10px 30px -10px rgba(0,0,0,0.04);
    transition: transform 0.1s ease-out;
    will-change: transform;
    transform-style: preserve-3d;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8c8c8c;
    margin-bottom: 2rem;
    transform: translateZ(20px);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ff9f0a;
    border-radius: 50%;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #202223;
    letter-spacing: -0.02em;
    transform: translateZ(30px);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 95%;
    font-weight: 400;
    transform: translateZ(20px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--blue-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 16px rgba(24, 128, 255, 0.25);
    transform: translateZ(40px);
}

.btn-primary:hover {
    background-color: var(--blue-primary-hover);
    transform: translateZ(40px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 128, 255, 0.3);
}

.btn-primary i {
    width: 18px;
    height: 18px;
}

.contact-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    transform: translateZ(20px);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background-color: var(--gray-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.info-badge:hover {
    background-color: #f0f0f0;
}

.info-badge i {
    width: 18px;
    height: 18px;
    color: #4a4a4a;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    transform: translateZ(30px);
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    background-color: #ffffff;
    border-color: #e2e8f0;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.blue-bg {
    background-color: var(--blue-light);
}

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

.icon-md {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .card {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
