* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #0e1117, #000);
    color: #fff;
}

/* ACCESSIBLE SEO H1 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* APPLY LINK */
.apply-link {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
    color: #00d4ff;
    text-decoration: none;
    z-index: 10;
}

.apply-link:hover {
    text-decoration: underline;
}

/* CENTER */
.center-area {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGO */
.logo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

/* CIRCLE TEXT */
.text-circle svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.text-circle text {
    fill: #00d4ff;
    font-size: 17px;
    letter-spacing: 3px;
}

/* PHONE */
.phone-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0e1117;
    box-shadow:
        8px 8px 18px rgba(0,0,0,0.7),
        -8px -8px 18px rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-icon i {
    font-size: 58px;
    color: #00d4ff;
}

/* INFO ICON */
.info {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.info i {
    font-size: 20px;
    color: #aaa;
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px;
    width: 210px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.tooltip strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 6px;
}

.tooltip ul {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ACTIVE (MOBILE TAP) */
.tooltip.active {
    opacity: 1;
    pointer-events: auto;
}

/* ANIMATION */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MOBILE TWEAKS */
@media (max-width: 480px) {
    .logo-wrapper {
        width: 230px;
        height: 230px;
    }

    .phone-icon {
        width: 110px;
        height: 110px;
    }

    .phone-icon i {
        font-size: 48px;
    }

    .apply-link {
        font-size: 0.8rem;
    }
}
