/* PC NINJA ONLINE - COMPLETE STYLING */
/* Design: Neo-futurist editorial technology branding with Italian luxury cues */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(180deg, #050a12 0%, #050a12 100%);
    color: #f3f4f6;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(66, 222, 255, 0.06), transparent 20%),
                radial-gradient(circle at 85% 10%, rgba(166, 255, 77, 0.05), transparent 18%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 10, 18, 0.82);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    animation: fadeIn 0.8s ease-out;
}

@media (min-width: 640px) {
    .logo-img {
        height: 48px;
    }
}

.logo-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    white-space: nowrap;
}

.logo-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-toggle {
    display: inline-flex;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.375rem;
    gap: 0;
}

.lang-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: white;
    color: #0f172a;
    animation: pulse 0.4s ease-out;
}

.lang-btn:hover:not(.active) {
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-btn {
    display: none;
    background: #42deff;
    color: #050a12;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 28px rgba(66, 228, 255, 0.3);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(66, 228, 255, 0.5);
}

@media (min-width: 1024px) {
    .cta-btn {
        display: inline-block;
    }
}

.nav-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-top: 0.75rem;
    scroll-behavior: smooth;
}

@media (min-width: 1280px) {
    .nav-scroll {
        display: none;
    }
}

.nav-item {
    flex-shrink: 0;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item:hover {
    border-color: rgba(66, 222, 255, 0.3);
    background: rgba(66, 222, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.nav-desktop {
    display: none;
    margin-top: 1rem;
    text-align: center;
    gap: 1.5rem;
}

@media (min-width: 1280px) {
    .nav-desktop {
        display: flex;
        justify-content: center;
    }
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-desktop a:hover {
    color: white;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #42deff;
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* MAIN CONTENT */
main {
    position: relative;
    z-index: 10;
}

/* HERO SECTION */
#home {
    padding: 1.5rem 0;
    overflow: hidden;
}

@media (min-width: 640px) {
    #home {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    #home {
        padding: 4rem 0 6rem;
    }
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.04fr 0.96fr;
        gap: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-grid {
        gap: 4rem;
    }
}

.hero-left {
    order: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(66, 222, 255, 0.25);
    background: rgba(66, 222, 255, 0.1);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #a6ff4d;
    margin-bottom: 1.25rem;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.35rem;
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: white;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    h1 {
        font-size: 3.4rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    h1 {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 1.5rem;
    max-width: 32rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 2;
    }
}

.hero-cards {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .hero-cards {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.card {
    padding: 1.25rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(66, 222, 255, 0.28);
    background: rgba(66, 222, 255, 0.1);
    box-shadow: 0 24px 80px rgba(66, 222, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #42deff;
}

.card-label.lime {
    color: #a6ff4d;
}

.card-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.8);
}

.card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.buttons-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .buttons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.btn {
    padding: 1.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #42deff;
    color: #050a12;
    border-color: #42deff;
    box-shadow: 0 0 32px rgba(66, 228, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 48px rgba(66, 228, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lime {
    background: rgba(166, 255, 77, 0.08);
    border-color: rgba(166, 255, 77, 0.3);
}

.btn-lime:hover {
    background: rgba(166, 255, 77, 0.14);
    border-color: rgba(166, 255, 77, 0.5);
}

.btn-cyan {
    background: rgba(66, 222, 255, 0.08);
    border-color: rgba(66, 222, 255, 0.25);
}

.btn-cyan:hover {
    background: rgba(66, 222, 255, 0.14);
    border-color: rgba(66, 222, 255, 0.5);
}

.quick-jump {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 640px) {
    .quick-jump {
        grid-template-columns: repeat(3, 1fr);
    }
}

.jump-card {
    padding: 1.25rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.jump-card:hover {
    transform: translateY(-4px);
    border-color: rgba(66, 222, 255, 0.3);
    background: #0d1926;
}

.jump-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.jump-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.36);
}

.jump-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.76);
}

.hero-right {
    order: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 1024px) {
    .hero-right {
        margin-left: auto;
    }
}

.hero-image {
    position: relative;
    border-radius: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #06111d, rgba(6, 17, 29, 0.76), transparent);
    padding: 1rem;
}

@media (min-width: 640px) {
    .hero-overlay {
        padding: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-overlay {
        padding: 1.5rem;
    }
}

.overlay-cards {
    display: grid;
    gap: 0.75rem;
    color: white;
}

@media (min-width: 640px) {
    .overlay-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay-card {
    padding: 1.25rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.overlay-card:hover {
    border-color: rgba(66, 222, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.overlay-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #42deff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay-label.lime {
    color: #a6ff4d;
}

.overlay-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

/* TRUST SECTION */
.trust-section {
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .trust-section {
        padding: 2.5rem 0;
    }
}

.trust-box {
    padding: 1.25rem;
    border-radius: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 1024px) {
    .trust-box {
        padding: 2rem;
    }
}

.trust-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: 0.88fr 1.12fr;
        align-items: center;
    }
}

.trust-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #42deff;
    margin-bottom: 0.75rem;
}

.trust-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    max-width: 42rem;
}

.trust-items {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-item {
    padding: 1.25rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #09131f;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out;
}

.trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(66, 222, 255, 0.28);
    background: #0b1623;
}

/* SECTIONS */
section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 6rem 0;
    }
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    letter-spacing: -0.04em;
    color: white;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    h2 {
        font-size: 3rem;
    }
}

.section-intro {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.25rem;
    max-width: 42rem;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #a6ff4d;
    margin-bottom: 1rem;
    animation: slideInLeft 0.6s ease-out;
}

.section-title.cyan {
    color: #42deff;
}

.services-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 640px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(66, 222, 255, 0.28);
    background: #0b1623;
    box-shadow: 0 32px 100px rgba(66, 222, 255, 0.15);
}

.service-icon {
    width: 1.75rem;
    height: 1.75rem;
    padding: 0.875rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(66, 222, 255, 0.18);
    background: rgba(66, 222, 255, 0.1);
    color: #42deff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(66, 222, 255, 0.2);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 0.92fr 1.08fr;
        gap: 2rem;
    }
}

.contact-box {
    padding: 1.5rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 640px) {
    .contact-box {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .contact-box {
        padding: 2.5rem;
    }
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23050a12" width="1200" height="600"/></svg>');
    opacity: 0.35;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-link {
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 17, 26, 0.7);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-link:hover {
    border-color: rgba(66, 222, 255, 0.3);
    color: white;
    background: rgba(8, 17, 26, 0.9);
    transform: translateX(4px);
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.form-group {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #08111a;
    color: white;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    min-height: 3.5rem;
    transition: all 0.3s ease;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.26);
}

input:focus,
textarea:focus {
    border-color: rgba(66, 222, 255, 0.45);
    background: #0a1420;
    box-shadow: 0 0 20px rgba(66, 222, 255, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-buttons {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .form-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    footer {
        padding: 3.5rem 0;
    }
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr auto;
        align-items: flex-end;
    }
}

.footer-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-text p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 1rem;
}

.footer-text .copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    border-color: rgba(24, 119, 242, 0.55);
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
}

.social-link.instagram:hover {
    border-color: rgba(255, 79, 216, 0.55);
    background: rgba(255, 79, 216, 0.1);
    color: #ff4fd8;
}

.social-link.linkedin:hover {
    border-color: rgba(10, 102, 194, 0.55);
    background: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(166, 255, 77, 0.4);
    background: rgba(8, 17, 26, 0.94);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
}

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

.whatsapp-btn:hover {
    transform: translateY(-4px);
    background: #0b1623;
    box-shadow: 0 24px 80px rgba(166, 255, 77, 0.2);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: #a6ff4d;
    color: #0f172a;
    flex-shrink: 0;
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-text {
    display: none;
}

@media (min-width: 360px) {
    .whatsapp-text {
        display: block;
    }
}

.whatsapp-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.45);
}

.whatsapp-support {
    display: block;
    font-size: 0.875rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    button,
    [role="button"],
    input,
    textarea,
    select {
        font-size: 16px !important;
        min-height: 3rem !important;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .buttons-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 1.5rem;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* SCROLL ANIMATIONS */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
