body {
    background:
        radial-gradient(circle at top left, rgba(200, 169, 107, 0.08), transparent 28%),
        linear-gradient(180deg, #eef3f8 0%, #f8fafc 100%);
}

.gradient-header {
    background:
        linear-gradient(135deg, #081C34 0%, #0A2540 52%, #163A5F 100%);
    position: relative;
}

.gradient-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(200,169,107,0.08) 50%, transparent 100%);
    pointer-events: none;
}

.photo-ring {
    width: 9rem;
    height: 9rem;
    border-radius: 9999px;
    padding: 4px;
    background: linear-gradient(135deg, #C8A96B 0%, #E7D3A8 45%, #163A5F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .photo-ring {
        width: 11rem;
        height: 11rem;
    }
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(200,169,107,0.18) 0%, rgba(10,37,64,0.08) 55%, transparent 72%);
    filter: blur(8px);
}

.btn-primary {
    background: linear-gradient(135deg, #081C34 0%, #0A2540 100%);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px -18px rgba(8, 28, 52, 0.45);
}

.btn-secondary {
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #0A2540;
    color: white;
    border-color: #0A2540;
    transform: translateY(-1px);
}

.company-card {
    border: 1px solid #e6edf5;
    position: relative;
}

.company-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C8A96B 0%, #163A5F 100%);
}

.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -18px rgba(8, 28, 52, 0.18);
    border-color: rgba(200, 169, 107, 0.35);
}

.contact-link {
    transition: all 0.2s ease;
}

.contact-link:hover {
    transform: translateX(3px);
}

.fade-in {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}