body {
    background-color: #09090B;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FF007A;
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
}
.skip-link:focus { top: 0; }
.gd-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF007A;
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #FF007A;
    cursor: pointer;
}
.gd-btn-primary:hover {
    background: #D60066;
    border-color: #D60066;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(255,0,122,.4);
}
.gd-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid rgba(255,255,255,.2);
    cursor: pointer;
}
.gd-btn-outline:hover {
    border-color: #FF007A;
    color: #FF007A;
    transform: translateY(-1px);
}
.feature-check { color: #FF007A; }
.card-glow:hover {
    box-shadow: 0 0 30px rgba(255,0,122,.12), 0 0 60px rgba(255,0,122,.06);
}
.stat-card {
    background: linear-gradient(135deg, rgba(255,0,122,.08) 0%, rgba(255,0,122,.02) 100%);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.5); opacity: 0; }
}
.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #FF007A;
    animation: pulse-ring 2.5s ease-out infinite;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,.5);
}
.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #A1A1AA;
    transition: color .2s;
    padding: 0 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
    border-bottom-color: #FF007A;
}
.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #18181B;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 50px rgba(0,0,0,.6);
    border-radius: 0 0 12px 12px;
    z-index: 60;
}
.mega-menu a { transition: background .15s, color .15s; }
.mega-menu a:hover {
    background: rgba(255,0,122,.1);
    color: #FF3394;
}
.process-line {
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FF007A, #FF3394);
}
::selection {
    background: rgba(255,0,122,.3);
    color: #fff;
}