:root {
    --primary: #FF6600;
    --primary-glow: rgba(255, 102, 0, 0.1);
    --bg-base: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-main: #1E293B;
    --text-dim: #64748B;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Vibrant Premium Mesh Background */
.aesthetic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(100px);
    animation: moveOrb 20s infinite alternate ease-in-out;
}

.orb-2 {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    top: auto;
    right: auto;
    animation-delay: -7s;
}

@keyframes moveOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 150px) scale(1.2); }
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

/* Premium Header with High-Quality Logo */
.header {
    text-align: center;
    padding-top: 50px; /* Refined for mobile and desktop balance */
    margin-bottom: 25px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 88%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.04));
    image-rendering: -webkit-optimize-contrast; /* Ensure maximum sharpness */
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 800;
    opacity: 0.8;
}

/* Profile Cards */
.profiles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    padding: 24px;
    border-radius: 32px;
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: #F1F5F9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.profile-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.profile-info .title {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    transition: all 0.3s ease;
    background: #F8FAFC;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.02);
    gap: 8px;
}

.btn i { font-size: 1.2rem; }

.btn:hover {
    background: #F1F5F9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 102, 0, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    grid-column: span 3;
    flex-direction: row;
    font-size: 0.85rem;
    padding: 16px;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
}

.btn-primary:hover {
    background: #E65C00; /* Darker orange on hover */
    color: #FFFFFF; /* Ensure text stays white */
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.35);
}

/* Services */
.services-section {
    text-align: center;
    margin-top: 10px;
}

.section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 22px;
    font-size: 0.75rem;
    color: var(--text-dim);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.service-item i { color: var(--primary); font-size: 1.4rem; }

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0 40px;
    color: var(--text-dim);
}

.website-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 480px) {
    .header { padding-top: 40px; }
    .main-logo { max-width: 320px; }
}
