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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1d1d1f;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CONTAINER ===== */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ===== CONTENT ===== */
.content {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== TITLE ===== */
h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #1d1d1f;
}

/* ===== SUBTITLE ===== */
.subtitle {
    font-size: 19px;
    line-height: 1.4;
    color: #6e6e73;
    font-weight: 400;
    margin-bottom: 60px;
}

/* ===== SPINNER ANIMATION ===== */
.progress {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9179FC;
    border-right-color: #9179FC;
    animation: spinner-rotate 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spinner-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #f5f5f7;
    border-radius: 16px;
    min-width: 240px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    background: #e8e8ed;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(145, 121, 252, 0.15);
}

.contact-card svg {
    color: #9179FC;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.contact-label {
    font-size: 12px;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: #1d1d1f;
    font-weight: 600;
}

/* ===== INFO BOX ===== */
.info-box {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-text {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.6;
    text-align: center;
}

.info-text strong {
    color: #1d1d1f;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 60px;
    padding-bottom: 40px;
}

.divider {
    width: 60px;
    height: 1px;
    background: #d2d2d7;
    margin: 0 auto 24px;
}

.credit {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 8px;
}

.agency-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.agency-link:hover {
    opacity: 0.7;
}

.agency-name {
    color: #9179FC;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s ease;
}

.agency-link:hover .agency-name {
    color: #7a5fdd;
}

.agency-tagline {
    font-size: 13px;
    color: #86868b;
    font-style: italic;
    margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        margin-bottom: 12px;
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .progress {
        margin-bottom: 40px;
    }

    .contact-cards {
        gap: 12px;
        margin-bottom: 40px;
    }

    .contact-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    .contact-card svg {
        width: 24px;
        height: 24px;
    }

    .contact-value {
        font-size: 15px;
    }

    .info-box {
        padding: 20px 24px;
        margin-bottom: 40px;
    }

    .info-text {
        font-size: 13px;
    }
}

/* ===== SMOOTH ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
