@charset "utf-8";

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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
    font-weight: 400;
}

/* =====================
   FLOATING SOCIAL BUTTONS
   ===================== */
.social-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 998;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(8px);
    border: 1px solid;
}

.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.float-btn::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.float-btn:hover::before,
.float-btn:hover::after {
    opacity: 1;
}

.float-btn:hover {
    transform: scale(1.12) translateX(-4px);
}

.float-whatsapp {
    background: rgba(10, 10, 10, 0.75);
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.35), inset 0 0 8px rgba(37, 211, 102, 0.05);
    animation: pulse-wa 2.5s ease-in-out infinite;
}

.float-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7), inset 0 0 15px rgba(37, 211, 102, 0.1);
    background: rgba(37, 211, 102, 0.15);
}

.float-facebook {
    background: rgba(10, 10, 10, 0.75);
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 0 12px rgba(24, 119, 242, 0.35), inset 0 0 8px rgba(24, 119, 242, 0.05);
}

.float-facebook:hover {
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.7), inset 0 0 15px rgba(24, 119, 242, 0.1);
    background: rgba(24, 119, 242, 0.15);
}

.float-instagram {
    background: rgba(10, 10, 10, 0.75);
    border-color: #E1306C;
    color: #E1306C;
    box-shadow: 0 0 12px rgba(225, 48, 108, 0.35), inset 0 0 8px rgba(225, 48, 108, 0.05);
}

.float-instagram:hover {
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.7), inset 0 0 15px rgba(225, 48, 108, 0.1);
    background: rgba(225, 48, 108, 0.15);
}

.float-tiktok {
    background: rgba(10, 10, 10, 0.75);
    border-color: #69C9D0;
    color: #69C9D0;
    box-shadow: 0 0 12px rgba(105, 201, 208, 0.35), inset 0 0 8px rgba(105, 201, 208, 0.05);
}

.float-tiktok:hover {
    box-shadow: 0 0 25px rgba(105, 201, 208, 0.7), inset 0 0 15px rgba(105, 201, 208, 0.1);
    background: rgba(105, 201, 208, 0.15);
}

.float-email {
    background: rgba(10, 10, 10, 0.75);
    border-color: #29B6F6;
    color: #29B6F6;
    box-shadow: 0 0 12px rgba(41, 182, 246, 0.35), inset 0 0 8px rgba(41, 182, 246, 0.05);
}

.float-email:hover {
    box-shadow: 0 0 25px rgba(41, 182, 246, 0.7), inset 0 0 15px rgba(41, 182, 246, 0.1);
    background: rgba(41, 182, 246, 0.15);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 12px rgba(37, 211, 102, 0.35), inset 0 0 8px rgba(37, 211, 102, 0.05); }
    50% { box-shadow: 0 0 24px rgba(37, 211, 102, 0.65), inset 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* =====================
   NAVIGATION
   ===================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(41, 182, 246, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

nav.scrolled {
    padding: 10px 50px;
    box-shadow: 0 4px 30px rgba(25, 118, 210, 0.12), 0 0 1px rgba(41, 182, 246, 0.4);
    border-bottom-color: rgba(41, 182, 246, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 46px;
    width: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 8px rgba(41, 182, 246, 0.5));
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.06);
    text-shadow: 0 0 12px rgba(41, 182, 246, 0.3);
}

.nav-links a.active {
    color: #1976D2;
    background: rgba(25, 118, 210, 0.08);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, #1976D2, #29B6F6);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 6px rgba(41, 182, 246, 0.6);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1976D2;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2137 0%, #1565C0 40%, #1976D2 70%, #0d4f8a 100%);
}

/* Cyberpunk grid background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(41, 182, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 182, 246, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
    animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Scanlines overlay */
.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.04) 3px,
        rgba(0, 0, 0, 0.04) 4px
    );
    z-index: 2;
    pointer-events: none;
}

/* Floating geometric shapes */
.shape {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    opacity: 0.18;
}

.shape-circle-hero {
    width: 380px;
    height: 380px;
    border: 1px solid #29B6F6;
    border-radius: 50%;
    top: 5%;
    right: -80px;
    box-shadow: 0 0 30px rgba(41, 182, 246, 0.25), inset 0 0 30px rgba(41, 182, 246, 0.05);
    animation: shape-float 12s ease-in-out infinite;
}

.shape-square-hero {
    width: 160px;
    height: 160px;
    border: 1px solid #1976D2;
    bottom: 12%;
    left: 5%;
    box-shadow: 0 0 20px rgba(25, 118, 210, 0.3);
    animation: shape-float 16s ease-in-out infinite reverse;
    transform: rotate(15deg);
}

.shape-ring-hero {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(41, 182, 246, 0.6);
    border-radius: 50%;
    bottom: 20%;
    right: 8%;
    box-shadow: 0 0 20px rgba(41, 182, 246, 0.2);
    animation: shape-float 18s ease-in-out infinite;
    opacity: 0.12;
}

@keyframes shape-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Swiper hero */
.hero-swiper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-slide-content {
    text-align: center;
    max-width: 820px;
    padding: 120px 30px 100px;
}

.hero-tag {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: rgba(41, 182, 246, 0.9);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(41, 182, 246, 0.5);
    animation: blink-tag 3s ease-in-out infinite;
}

@keyframes blink-tag {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(41, 182, 246, 0.2);
    animation: glitch-hero 6s ease-in-out infinite;
}

@keyframes glitch-hero {
    0%, 85%, 100% {
        text-shadow: 0 0 30px rgba(41, 182, 246, 0.2);
        transform: none;
    }
    87% {
        text-shadow: -2px 0 rgba(41, 182, 246, 0.8), 2px 0 rgba(21, 101, 192, 0.8);
        transform: translate(-1px);
    }
    89% {
        text-shadow: 2px 0 rgba(41, 182, 246, 0.8), -2px 0 rgba(21, 101, 192, 0.8);
        transform: translate(1px);
    }
    91% {
        text-shadow: 0 0 30px rgba(41, 182, 246, 0.4);
        transform: none;
    }
}

.hero-title .highlight {
    color: #29B6F6;
    text-shadow: 0 0 20px rgba(41, 182, 246, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 36px;
}

.cta-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 13px 36px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-primary {
    background: #ffffff;
    color: #1565C0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-primary:hover {
    background: #f0f8ff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(41, 182, 246, 0.7);
    box-shadow: 0 0 12px rgba(41, 182, 246, 0.15), inset 0 0 12px rgba(41, 182, 246, 0.05);
}

.cta-secondary:hover {
    border-color: #29B6F6;
    background: rgba(41, 182, 246, 0.1);
    box-shadow: 0 0 25px rgba(41, 182, 246, 0.4), inset 0 0 20px rgba(41, 182, 246, 0.08);
    transform: translateY(-3px);
}

/* Swiper pagination */
.hero-pagination {
    bottom: 36px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #29B6F6;
    box-shadow: 0 0 10px rgba(41, 182, 246, 0.8);
    width: 28px;
    border-radius: 5px;
}

/* =====================
   SECTION COMMONS
   ===================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #000000;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(25, 118, 210, 0.08);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #29B6F6);
    margin: 14px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(41, 182, 246, 0.5);
}

.section-subtitle {
    text-align: center;
    color: #555555;
    font-size: 1rem;
    margin-bottom: 60px;
    margin-top: 20px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
    background: #f2f2f2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #29B6F6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 45px rgba(25, 118, 210, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    border-color: rgba(41, 182, 246, 0.3);
    box-shadow: 0 0 20px rgba(41, 182, 246, 0.08), inset 0 0 20px rgba(41, 182, 246, 0.03);
}

.service-card.featured {
    border-color: rgba(25, 118, 210, 0.2);
    background: linear-gradient(155deg, #ffffff 0%, #f0f7ff 100%);
}

.service-card.featured::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1565C0, #29B6F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(25, 118, 210, 0.3);
    transition: box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    box-shadow: 0 4px 20px rgba(41, 182, 246, 0.5);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.3px;
}

.service-card p {
    color: #555555;
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 0.93rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 5px 0 5px 22px;
    position: relative;
    color: #444444;
    font-size: 0.88rem;
    font-weight: 500;
}

.service-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #1976D2;
    text-shadow: 0 0 6px rgba(41, 182, 246, 0.4);
}

/* =====================
   TECHNOLOGIES SECTION
   ===================== */
.technologies {
    background: #ffffff;
}

.tech-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-item {
    padding: 12px 26px;
    cursor: pointer;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #555555;
    font-family: 'Poppins', sans-serif;
}

.tab-item:hover {
    border-color: #29B6F6;
    color: #1976D2;
    box-shadow: 0 0 12px rgba(41, 182, 246, 0.2);
}

.tab-item.active {
    background: #1976D2;
    border-color: #1976D2;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.35), 0 0 20px rgba(41, 182, 246, 0.2);
}

.tab-icon {
    font-size: 1.2rem;
}

.tech-content {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 48px;
    min-height: 260px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1976D2, #29B6F6, transparent);
    opacity: 0.6;
}

.content-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.content-panel.active {
    display: block;
}

.content-panel h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.content-panel p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1rem;
    max-width: 660px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: #ffffff;
    color: #1976D2;
    border: 1px solid rgba(25, 118, 210, 0.5);
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 7px;
}

.badge:hover {
    background: #1976D2;
    color: #ffffff;
    border-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(25, 118, 210, 0.3), 0 0 12px rgba(41, 182, 246, 0.2);
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
    background: #f2f2f2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.7rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.about-text p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #1976D2;
    line-height: 1;
    text-shadow: 0 0 16px rgba(41, 182, 246, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: #666666;
    text-align: center;
    margin-top: 7px;
    font-weight: 500;
    max-width: 100px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated gradient border card */
.about-card {
    position: relative;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(45deg, #1565C0, #29B6F6, #1976D2, #29B6F6);
    background-size: 300% 300%;
    animation: border-flow 4s linear infinite;
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.25), 0 0 40px rgba(41, 182, 246, 0.1);
    width: 100%;
    max-width: 380px;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-card-inner {
    background: linear-gradient(135deg, #0d2137 0%, #1565C0 60%, #1976D2 100%);
    border-radius: 10px;
    padding: 56px 36px;
    text-align: center;
}

.about-card-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 22px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(41, 182, 246, 0.3);
}

.about-logo {
    width: 200px;
    max-width: 100%;
    filter: brightness(0) invert(1);
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact {
    background: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1976D2, #29B6F6);
    box-shadow: 0 0 10px rgba(41, 182, 246, 0.4);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    color: #000000;
    font-size: 0.98rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #29B6F6;
    box-shadow: 0 0 0 3px rgba(41, 182, 246, 0.12), 0 0 12px rgba(41, 182, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231976D2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1976D2, #29B6F6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.35), 0 0 20px rgba(41, 182, 246, 0.2);
}

.contact-info {
    padding: 10px 0;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 34px;
    letter-spacing: 0.3px;
}

.info-item {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1565C0, #1976D2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(25, 118, 210, 0.3), 0 0 12px rgba(41, 182, 246, 0.15);
    transition: box-shadow 0.3s ease;
}

.info-icon:hover {
    box-shadow: 0 4px 20px rgba(41, 182, 246, 0.5);
}

.info-details h4 {
    color: #1976D2;
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-details p,
.info-details a {
    color: #333333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #1976D2;
    text-shadow: 0 0 8px rgba(41, 182, 246, 0.3);
}

.contact-tagline {
    margin-top: 36px;
    padding: 22px;
    background: linear-gradient(135deg, #f0f7ff, #e3f2fd);
    border-radius: 6px;
    border-left: 3px solid #1976D2;
    box-shadow: 0 0 12px rgba(41, 182, 246, 0.08);
}

.contact-tagline p {
    color: #1565C0;
    font-weight: 500;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* =====================
   FOOTER
   ===================== */
footer {
    background: #000000;
    padding: 52px 20px 32px;
    border-top: 1px solid rgba(41, 182, 246, 0.2);
    box-shadow: 0 -4px 30px rgba(41, 182, 246, 0.06);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(41, 182, 246, 0.6));
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #29B6F6;
    text-shadow: 0 0 10px rgba(41, 182, 246, 0.5);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.83rem;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .about-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    nav.scrolled {
        padding: 10px 20px;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(255, 255, 255, 0.99);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        gap: 8px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .section-container {
        padding: 70px 20px;
    }

    .hero-slide-content {
        padding: 100px 24px 80px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        gap: 24px;
        justify-content: center;
    }

    .tech-content {
        padding: 28px 22px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .footer-links {
        gap: 16px;
    }

    .social-float {
        right: 12px;
        gap: 10px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .float-btn::before,
    .float-btn::after {
        display: none;
    }

    .shape-circle-hero {
        width: 220px;
        height: 220px;
        right: -60px;
    }

    .shape-square-hero {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d2137 0%, #1565C0 40%, #1976D2 70%, #0d4f8a 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 20px 60px;
    text-align: center;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(41, 182, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 182, 246, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: grid-drift 20s linear infinite;
}

.page-hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 3px,
        rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px
    );
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.page-hero-tag {
    font-family: 'Orbitron', monospace;
    font-size: 0.82rem;
    color: rgba(41, 182, 246, 0.9);
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 0 12px rgba(41, 182, 246, 0.5);
    animation: blink-tag 3s ease-in-out infinite;
}

.page-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(41, 182, 246, 0.2);
    letter-spacing: 0.5px;
}

.page-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* =====================
   STATS SECTION
   ===================== */
.stats-section {
    background: linear-gradient(135deg, #0d2137, #1565C0, #1976D2, #29B6F6);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    color: #ffffff;
}

.counter-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.counter-prefix,
.counter-number,
.counter-suffix {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-item-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
    background: #000000;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(41, 182, 246, 0.2);
    border-bottom: 1px solid rgba(41, 182, 246, 0.2);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(41, 182, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 182, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-banner-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(41, 182, 246, 0.25);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section {
    background: #f2f2f2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(25, 118, 210, 0.06);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.1), 0 0 15px rgba(41, 182, 246, 0.05);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #FFB300;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #444;
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976D2, #29B6F6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(41, 182, 246, 0.3);
}

.testimonial-name {
    font-weight: 700;
    color: #000;
    font-size: 0.95rem;
}

.testimonial-company {
    color: #1976D2;
    font-size: 0.82rem;
    font-weight: 500;
}

/* =====================
   PORTFOLIO
   ===================== */
.portfolio-section {
    background: #ffffff;
}

.portfolio-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 9px 22px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #1976D2;
    color: #1976D2;
}

.filter-btn.active {
    background: #1976D2;
    border-color: #1976D2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(25, 118, 210, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.portfolio-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #ffffff;
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(25, 118, 210, 0.15);
}

.portfolio-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 24px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #ffffff;
    color: #1976D2;
}

.portfolio-tech {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #29B6F6;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    border: 1px solid rgba(41, 182, 246, 0.4);
}

.portfolio-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.45);
}

.portfolio-info {
    padding: 20px 22px;
}

.portfolio-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.portfolio-cat {
    color: #1976D2;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================
   PROCESS STEPS
   ===================== */
.proceso-section {
    background: #f2f2f2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.step-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.step-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.1);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(25, 118, 210, 0.08);
    position: absolute;
    top: 12px;
    right: 18px;
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1565C0, #29B6F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
    transition: box-shadow 0.3s ease;
}

.step-card:hover .step-icon {
    box-shadow: 0 4px 24px rgba(41, 182, 246, 0.5);
}

.step-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.step-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.93rem;
}

/* =====================
   PRICING TABLES
   ===================== */
.pricing-section {
    background: #f2f2f2;
}

.pricing-note {
    text-align: center;
    color: #777;
    font-size: 0.88rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #29B6F6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(41, 182, 246, 0.25);
    box-shadow: 0 12px 40px rgba(25, 118, 210, 0.12);
    transform: translateY(-5px);
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card.featured-plan {
    border-color: #1976D2;
    background: linear-gradient(155deg, #ffffff 0%, #f0f7ff 100%);
}

.pricing-card.featured-plan::before { opacity: 1; }

.plan-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: linear-gradient(135deg, #1976D2, #29B6F6);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
}

.plan-name {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 900;
    color: #1976D2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 28px;
}

.plan-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    vertical-align: top;
    line-height: 1.8;
}

.plan-amount {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.plan-period {
    font-size: 0.83rem;
    color: #888;
    display: block;
    margin-top: 6px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.92rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i.ok { color: #1976D2; font-size: 0.85rem; flex-shrink: 0; }
.plan-features li i.no { color: #ccc; font-size: 0.85rem; flex-shrink: 0; }
.plan-features li.muted { color: #aaa; }

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}

.plan-btn-outline {
    border: 2px solid #1976D2;
    color: #1976D2;
    background: transparent;
}

.plan-btn-outline:hover {
    background: #1976D2;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
}

.plan-btn-solid {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
}

.plan-btn-solid:hover {
    background: linear-gradient(135deg, #1976D2, #29B6F6);
    box-shadow: 0 6px 22px rgba(41, 182, 246, 0.4);
    transform: translateY(-2px);
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-section {
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: rgba(41, 182, 246, 0.4);
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08), 0 0 12px rgba(41, 182, 246, 0.05);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: #000;
    transition: background 0.3s ease;
    gap: 16px;
    user-select: none;
}

.faq-question:hover { background: rgba(25, 118, 210, 0.03); }
.faq-item.active .faq-question { color: #1976D2; background: rgba(25, 118, 210, 0.04); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #1976D2;
    font-size: 0.85rem;
}

.faq-item.active .faq-icon {
    background: #1976D2;
    color: #ffffff;
    transform: rotate(180deg);
    box-shadow: 0 0 10px rgba(41, 182, 246, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 22px;
}

.faq-answer p {
    color: #555;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* =====================
   VALUES GRID (Nosotros)
   ===================== */
.values-section { background: #ffffff; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-card {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.08);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.value-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =====================
   RESPONSIVE (additions)
   ===================== */
@media (max-width: 768px) {
    .page-hero { padding: 90px 20px 50px; min-height: 240px; }
    .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { gap: 28px; }
    .counter-prefix, .counter-number, .counter-suffix { font-size: 2.2rem; }
    .tech-tabs { gap: 8px; }
    .tab-item { padding: 10px 16px; font-size: 0.88rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 60px 20px; }
    .addons-grid { grid-template-columns: 1fr; }
    .hosting-grid { grid-template-columns: 1fr; }
}

/* =====================
   CLIENTS BELT
   ===================== */
.clients-section {
    background: #f2f2f2;
    padding: 70px 0;
    overflow: hidden;
}

.clients-section .section-title { margin-bottom: 10px; }
.clients-section .section-subtitle { margin-bottom: 44px; }

.clients-belt-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.clients-belt {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: scroll-belt 28s linear infinite;
    padding: 16px 28px;
}

.clients-belt:hover { animation-play-state: paused; }

@keyframes scroll-belt {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Text placeholder — swap for <img> when you have real logos */
.client-logo-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #c0c0c0;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: default;
    user-select: none;
    transition: color 0.3s;
}

.client-logo-item:hover { color: #1976D2; }

/* Real logo image (use when logos are available) */
.client-logo-item img {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: filter 0.3s, opacity 0.3s;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =====================
   PACK QUOTER
   ===================== */
.quoter-section {
    background: #fff;
    padding: 80px 20px;
}

.quoter-body {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 44px auto 0;
}

.quoter-step { margin-bottom: 44px; }

.quoter-step-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 0.76rem;
    font-weight: 700;
    color: #1565C0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.quoter-step-title::before {
    content: attr(data-step);
    min-width: 26px;
    height: 26px;
    background: #1976D2;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    flex-shrink: 0;
}

.q-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 10px;
}

.q-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #fafafa;
    text-align: center;
}

.q-option:hover { border-color: #1976D2; background: rgba(25,118,210,0.04); }

.q-option.selected {
    border-color: #1976D2;
    background: rgba(25,118,210,0.08);
    box-shadow: 0 0 0 3px rgba(25,118,210,0.12);
}

.q-option.q-none.selected {
    border-color: #b0bec5;
    background: rgba(176,190,197,0.1);
    box-shadow: 0 0 0 3px rgba(176,190,197,0.15);
}

.q-option-name { font-weight: 700; font-size: 0.82rem; color: #333; margin-bottom: 5px; }

.q-option-price {
    font-family: 'Orbitron', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 5px;
    line-height: 1.2;
}

.q-option-desc { font-size: 0.7rem; color: #888; line-height: 1.3; }

.q-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 9px;
}

.q-extra {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e8e8e8;
    border-radius: 7px;
    padding: 10px 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fafafa;
}

.q-extra:hover { border-color: #1976D2; }
.q-extra.selected { border-color: #1976D2; background: rgba(25,118,210,0.07); }
.q-extra.q-extra-included { border-color: #2e7d32; background: rgba(46,125,50,0.06); cursor: default; }
.q-extra.q-extra-included:hover { border-color: #2e7d32; }
.q-extra.q-extra-included .q-extra-check { background: #2e7d32; border-color: #2e7d32; }

.q-extra-check {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    font-size: 0.62rem;
    color: #fff;
}

.q-extra.selected .q-extra-check { background: #1976D2; border-color: #1976D2; }
.q-extra-check i { opacity: 0; transition: opacity 0.15s; }
.q-extra.selected .q-extra-check i { opacity: 1; }
.q-extra-info { flex: 1; min-width: 0; }
.q-extra-name { font-size: 0.79rem; font-weight: 600; color: #333; line-height: 1.2; }
.q-extra-price { font-size: 0.71rem; color: #1976D2; font-weight: 600; margin-top: 2px; }

/* Summary panel */
.quoter-summary {
    background: #f0f5ff;
    border: 2px solid rgba(25,118,210,0.2);
    border-radius: 12px;
    padding: 24px 20px;
    position: sticky;
    top: 88px;
}

.quoter-summary h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.76rem;
    color: #1565C0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(25,118,210,0.15);
    font-size: 0.79rem;
}

.summary-line:last-child { border-bottom: none; }
.summary-label { color: #555; flex: 1; }
.summary-value { text-align: right; font-size: 0.79rem; }
.quoter-empty-msg { color: #aaa; font-size: 0.8rem; font-style: italic; padding: 6px 0; margin: 0; }

.summary-divider { border: none; border-top: 2px solid rgba(25,118,210,0.2); margin: 16px 0 12px; }

.summary-total-label { font-size: 0.68rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }

.summary-total-amount {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 900;
    color: #1976D2;
    line-height: 1.2;
}

.summary-total-monthly,
.summary-total-annual { font-size: 0.74rem; color: #666; margin-top: 3px; }

.quoter-cta-group { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.btn-send-pack-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; background: #25D366; color: #fff; border: none;
    border-radius: 8px; font-weight: 700; font-size: 0.87rem; cursor: pointer;
    transition: background 0.25s, transform 0.2s; font-family: 'Poppins', sans-serif;
}

.btn-send-pack-wa:hover { background: #1da851; transform: translateY(-2px); }

.btn-send-pack-form {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; background: transparent; color: #1976D2;
    border: 2px solid #1976D2; border-radius: 8px; font-weight: 700;
    font-size: 0.87rem; cursor: pointer; transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
}

.btn-send-pack-form:hover { background: #1976D2; color: #fff; }

@media (max-width: 960px) {
    .quoter-body { grid-template-columns: 1fr; }
    .quoter-summary { position: static; }
}

/* Maintenance plan cards in quoter Step 3 */
.q-maint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.q-maint-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
    min-height: 120px;
}

.q-maint-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.72rem;
    color: #555;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.q-maint-features span {
    font-size: 0.72rem;
    color: #aaa;
}

.q-maint-features li {
    display: flex;
    gap: 5px;
    align-items: flex-start;
}

.q-maint-features i {
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .q-options-grid { grid-template-columns: repeat(2, 1fr); }
    .q-extras-grid  { grid-template-columns: 1fr 1fr; }
    .q-maint-grid   { grid-template-columns: 1fr 1fr; }
}

/* =====================
   PRICING EXTRAS
   ===================== */
.pricing-section-alt { background: #ffffff; }

.pricing-table-section {
    background: #f2f2f2;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.addon-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: rgba(41, 182, 246, 0.35);
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.08);
    transform: translateY(-2px);
}

.addon-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1565C0, #1976D2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.25);
}

.addon-info h4 {
    font-weight: 700;
    font-size: 0.92rem;
    color: #000;
    margin-bottom: 3px;
}

.addon-price {
    font-family: 'Orbitron', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1976D2;
    text-shadow: 0 0 8px rgba(41, 182, 246, 0.2);
}

/* Hosting grid */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.hosting-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 28px 24px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hosting-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #29B6F6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hosting-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.1);
    transform: translateY(-4px);
}

.hosting-card:hover::before { opacity: 1; }

.hosting-card.cf-featured {
    border-color: #1976D2;
    background: linear-gradient(155deg, #ffffff, #f0f7ff);
}

.hosting-card.cf-featured::before { opacity: 1; }

.hosting-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    color: #1976D2;
}

.hosting-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.hosting-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1976D2;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(41, 182, 246, 0.2);
}

.hosting-period {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 14px;
}

.hosting-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.cf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 130, 49, 0.1);
    border: 1px solid rgba(249, 130, 49, 0.3);
    color: #f98231;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 10px;
    font-family: 'Orbitron', monospace;
}

/* Maintenance cards */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .clients-section { padding: 50px 0; }
    .maintenance-grid { grid-template-columns: 1fr; }
    .hosting-grid { grid-template-columns: 1fr; }
}

/* =====================
   DISCOUNT POPUP
   ===================== */
.discount-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(5px);
}

.discount-overlay.active {
    opacity: 1;
    visibility: visible;
}

.discount-popup {
    background: linear-gradient(160deg, #0d1b2a 0%, #0a1628 100%);
    border: 1px solid rgba(41, 182, 246, 0.25);
    border-radius: 16px;
    padding: 44px 36px 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(25, 118, 210, 0.25), 0 24px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(32px);
    transition: transform 0.4s ease;
}

.discount-overlay.active .discount-popup {
    transform: translateY(0);
}

.discount-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #444;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
}

.discount-close:hover { color: #fff; }

.discount-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, #1565C0, #29B6F6);
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    padding: 10px 28px;
    border-radius: 8px;
    margin-bottom: 22px;
    box-shadow: 0 0 40px rgba(41, 182, 246, 0.35);
    letter-spacing: 3px;
}

.discount-title {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.discount-body {
    color: #b0bec5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.discount-body strong { color: #29B6F6; font-weight: 700; }

.discount-note {
    font-size: 0.76rem;
    color: #546e7a;
    margin-bottom: 0;
}

.discount-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin: 24px 0 12px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.4);
}

.discount-cta:hover {
    background: linear-gradient(135deg, #1976D2, #29B6F6);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(25, 118, 210, 0.5);
}

.discount-skip {
    display: block;
    color: #546e7a;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}

.discount-skip:hover { color: #90a4ae; }

/* Discount badge in quoter summary */
.discount-active-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(25,118,210,0.12), rgba(41,182,246,0.08));
    border: 1.5px solid rgba(41, 182, 246, 0.35);
    border-radius: 8px;
    padding: 9px 13px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #29B6F6;
}

/* Crossed-out original price in quoter total */
.discount-original {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #90a4ae;
    text-decoration: line-through;
    margin-top: 2px;
}

/* Discount note in contact form */
.form-discount-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 118, 210, 0.07);
    border: 1.5px solid rgba(25, 118, 210, 0.25);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1976D2;
}

@media (max-width: 480px) {
    .discount-popup { padding: 36px 24px 28px; }
    .discount-badge-hero { font-size: 1.7rem; padding: 8px 20px; }
    .discount-title { font-size: 1rem; }
}

/* =====================
   DISCOUNT BUBBLE (floating persistent)
   ===================== */
.discount-bubble {
    position: fixed;
    bottom: 28px;
    left: 24px;
    z-index: 997;
    background: linear-gradient(150deg, #0d1b2a 0%, #0f2035 100%);
    border: 1px solid rgba(41, 182, 246, 0.3);
    border-radius: 14px;
    padding: 18px 18px 16px;
    width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 28px rgba(25, 118, 210, 0.15);
    transform: translateY(130%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.discount-bubble.active {
    transform: translateY(0);
    opacity: 1;
}

.discount-bubble-close {
    position: absolute;
    top: 9px;
    right: 11px;
    background: none;
    border: none;
    color: #455a64;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px 5px;
    transition: color 0.2s;
    line-height: 1;
}

.discount-bubble-close:hover { color: #eceff1; }

.discount-bubble-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #1565C0, #29B6F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 10px;
    box-shadow: 0 4px 14px rgba(25, 118, 210, 0.35);
}

.discount-bubble-title {
    font-size: 0.7rem;
    color: #78909c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.discount-bubble-percent {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    color: #29B6F6;
    line-height: 1.1;
    margin-bottom: 3px;
    text-shadow: 0 0 18px rgba(41, 182, 246, 0.4);
}

.discount-bubble-sub {
    font-size: 0.7rem;
    color: #546e7a;
    margin-bottom: 13px;
    line-height: 1.3;
}

.discount-bubble-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 3px 12px rgba(25, 118, 210, 0.35);
}

.discount-bubble-cta:hover {
    background: linear-gradient(135deg, #1976D2, #29B6F6);
    transform: translateX(3px);
    box-shadow: 0 4px 18px rgba(25, 118, 210, 0.5);
}

@media (max-width: 480px) {
    .discount-bubble { bottom: 16px; left: 12px; width: 176px; }
}
