* {
    box-sizing: border-box;
}

:root {
    --page-bg: #05060b;
    --panel-bg: rgba(8, 15, 35, 0.76);
    --line: rgba(118, 179, 255, 0.24);
    --text: #f7fbff;
    --muted: #b8c7dc;
    --blue: #0d6efd;
    --cyan: #38d5ff;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 16%, rgba(56, 213, 255, 0.22), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(13, 110, 253, 0.24), transparent 32%),
        linear-gradient(135deg, #03040a 0%, #071228 52%, #02040b 100%);
}

a {
    color: inherit;
}

.page-shell {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 920px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-bg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    position: relative;
}

.language-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    gap: 0.25rem;
    padding: 0.28rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.page-switch {
    margin: auto;
    display: inline-flex;
    font-weight: bolder;
    margin-bottom: 2%;
    gap: 0.25rem;
    padding: 0.28rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.language-btn, .page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 0.38rem 0.6rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    border: 0;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-btn:hover ,.page-btn:hover,
.language-btn:focus, .page-btn:focus,
.language-btn.active, .page-btn.active{
    color: var(--text);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.78), rgba(56, 213, 255, 0.58));
    box-shadow: 0 0 18px rgba(56, 213, 255, 0.22);
}

.brand-logo-frame {
    width: min(340px, 82%);
    aspect-ratio: 1;
    border: 2px solid rgba(56, 213, 255, 0.46);
    border-radius: 50%;
    padding: 0.6rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(56, 213, 255, 0.75), rgba(13, 110, 253, 0.9)) border-box;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 28px rgba(56, 213, 255, 0.3),
        0 20px 44px rgba(0, 0, 0, 0.48);
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.16);
    transform-origin: center;
}

.status-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
}

.status-label::before,
.status-label::after {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan));
}

.status-label::after {
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-copy {
    max-width: 680px;
    color: var(--muted);
}

.contact-grid {
    max-width: 760px;
}

.works-logo {
    width: min(240px, 72%);
}

.works-grid {
    max-width: 760px;
}

.work-card {
    min-height: 220px;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
}

.work-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(56, 213, 255, 0.34);
    border-radius: 8px;
    color: var(--cyan);
    background: rgba(56, 213, 255, 0.09);
    font-size: 1.6rem;
}

.work-card h2 {
    margin-bottom: 0.6rem;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
}

.work-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.work-links {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.work-link {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    width: 100%;
    padding: 0.75rem 0.9rem;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.work-link-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
}

.click-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    color: #72ffb6;
    font-size: 0.78rem;
    font-weight: 600;
}

.work-link:hover,
.work-link:focus {
    color: var(--text);
    transform: translateY(-2px);
    border-color: rgba(56, 213, 255, 0.72);
    background: rgba(56, 213, 255, 0.12);
}

.contact-card {
    display: flex;
    min-height: 148px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
    padding: 1.2rem 0.95rem;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-card:hover,
.contact-card:focus {
    transform: translateY(-3px);
    border-color: rgba(56, 213, 255, 0.72);
    background: rgba(56, 213, 255, 0.11);
}

.contact-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.45rem;
}

.gmail-icon {
    color: #ff6b6b;
}

.whatsapp-icon {
    color: #25d366;
}

.phone-icon {
    color: var(--cyan);
}

.facebook-icon {
    color: #1877f2;
}

.contact-title {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.contact-value {
    color: var(--text);
    max-width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.btn {
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border: 0;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.36);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 4.2rem 1.25rem 1.25rem;
    }

    .language-switch {
        top: 0.9rem;
        right: 50%;
        transform: translateX(50%);
    }

    .page-switch {
        gap: 0.35rem;
        padding: 0.35rem;
    }

    .page-btn {
        padding: 0.55rem 0.8rem;
        font-size: 0.95rem;
    }

    .brand-logo-frame {
        width: min(270px, 88%);
    }

    .status-label {
        font-size: 1.5rem;
        letter-spacing: 0.08rem;
    }

    .status-label::before,
    .status-label::after {
        width: 18px;
    }

    .contact-card {
        min-height: 136px;
    }
}
