/* 
   WEB-LABZ PREMIUM STYLESHEET
   Vision: Award-winning Agency, Futuristic, Technical, High-Performance
*/

/* --- DESIGN TOKENS --- */
:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-dark-soft: #0a0a0a;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --neon-blue: #00f2ff;
    --neon-purple: #bc13fe;
    --neon-cyan: #00ffe7;
    --accent-glow: rgba(0, 242, 255, 0.3);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Transitions */
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-mid: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.2s ease;
    
    /* Spacing */
    --container-max: 1200px;
    --section-gap: 120px;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* We'll use a custom cursor */
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
}

.container-medium {
    max-width: 1000px;
}

.section-padding {
    padding: var(--section-gap) 0;
}

.text-neon {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    filter: blur(8px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-mid);
}

.glow-effect:hover::after {
    opacity: 0.6;
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    box-shadow: 0 0 15px var(--neon-blue);
}

/* --- SCROLL PROGRESS --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    width: 0%;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* --- BACKGROUND BLOBS --- */
.bg-gradient-wrapper {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    filter: blur(80px);
}

.bg-gradient-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: blob-float 20s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-blue);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 25px 0;
    transition: var(--transition-mid);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon i {
    font-size: 1.8rem;
    color: var(--neon-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0.75;
    transition: var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
    color: var(--neon-blue);
}

.btn-small {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.typing-text-wrapper {
    color: var(--neon-blue);
    position: relative;
}

.typing-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 45px;
    opacity: 0.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.cta-btn {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: var(--transition-mid);
}

.cta-btn.secondary {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
}

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

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-blue);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* --- SERVICES --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-desc {
    font-size: 1.15rem;
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 60px;
}

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

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

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

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px;
    transition: var(--transition-mid);
    position: relative;
    overflow: hidden;
}

.service-card {
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    opacity: 0.7;
    font-size: 1rem;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-glow), transparent);
    opacity: 0;
    transition: var(--transition-mid);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 0.2;
}

.service-card:hover {
    border-color: rgba(0, 242, 255, 0.4);
    transform: translateY(-10px);
}

/* --- WHY US --- */
.layout-split {
    display: flex;
    align-items: center;
    gap: 100px;
}

.split-left, .split-right {
    flex: 1;
}

.usp-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.usp-item {
    display: flex;
    gap: 25px;
}

.glass-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--neon-blue);
    flex-shrink: 0;
}

.usp-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.usp-content p {
    opacity: 0.6;
}

.visual-container {
    padding: 0;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
}

.shape-1 {
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, var(--neon-blue), transparent);
    opacity: 0.1;
}

.shape-2 {
    width: 70%;
    height: 70%;
    background: linear-gradient(-45deg, var(--neon-purple), transparent);
    opacity: 0.1;
    animation-direction: reverse;
}

/* --- CODE EDITOR --- */
.code-editor {
    width: 90%;
    background: #0d0d12;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    border: 1px solid #1a1a24;
}

.editor-header {
    background: #1a1a24;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.editor-title {
    margin-left: 10px;
    font-size: 0.75rem;
    opacity: 0.5;
    font-family: monospace;
}

.editor-body {
    padding: 25px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.line { margin-bottom: 10px; }
.line span { color: var(--neon-blue); }
.cmd { color: #e0e0e0; }
.output { color: #a0a0a0; font-size: 0.8rem; padding-left: 15px; }
.cursor-blink { display: inline-block; width: 8px; height: 18px; background: var(--neon-blue); animation: blink 1s infinite; }

/* --- STATS --- */
.hero-stats-container {
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: -60px;
    z-index: 20;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* --- PROCESS --- */
.process-timeline {
    position: relative;
    padding-top: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.step-number {
    width: 80px;
    height: 80px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.step-content p {
    opacity: 0.7;
    max-width: 500px;
}

.process-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--neon-blue), transparent);
    margin-left: 39px;
    opacity: 0.3;
}

/* --- TESTIMONIALS --- */
.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonial-slider-overview {
    flex: 1;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 60px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    opacity: 0.2;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
    color: #ffbd2e;
    margin-bottom: 25px;
}

.quote {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 35px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.name { font-weight: 700; display: block; }
.role { font-size: 0.85rem; opacity: 0.6; }

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot-indicator.active {
    background: var(--neon-blue);
    width: 24px;
    border-radius: 10px;
}

/* --- CONTACT --- */
.cta-banner {
    padding: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.05) 0%, rgba(0, 242, 255, 0.05) 100%);
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta-actions {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #006699) !important;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3) !important;
    border: none !important;
    color: white !important;
}

.whatsapp-btn:hover, .telegram-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-3px);
}

/* Expanding Contact Hub */
.contact-hub {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hub-trigger {
    width: 60px;
    height: 60px;
    background: var(--neon-blue);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4);
    transition: var(--transition-mid);
    position: relative;
    z-index: 2;
}

.hub-trigger .close-icon {
    display: none;
    font-size: 1.5rem;
}

.contact-hub.active .hub-trigger {
    background: var(--bg-dark-soft);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    transform: rotate(90deg);
}

.contact-hub.active .hub-trigger .ph-chat-circle { display: none; }
.contact-hub.active .hub-trigger .close-icon { display: flex; }

.hub-options {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-mid);
    padding-bottom: 75px;
}

.contact-hub.active .hub-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hub-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.hub-option.whatsapp { background: #25D366; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }
.hub-option.telegram { background: #0088cc; box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4); }

.hub-option:hover {
    transform: scale(1.1);
}

.hub-tooltip {
    position: absolute;
    right: 65px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.hub-option:hover .hub-tooltip {
    opacity: 1;
    visibility: visible;
    right: 60px;
}

@keyframes hub-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 242, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

.hub-trigger {
    animation: hub-pulse 2s infinite;
}

.contact-hub.active .hub-trigger {
    animation: none;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

.w-100 { width: 100%; }

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 100px 0 50px;
    background: var(--bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-desc {
    opacity: 0.6;
    margin: 25px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.social-icon:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.6;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--neon-blue);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    opacity: 0.5;
    font-size: 0.9rem;
}

.made-with i {
    color: var(--neon-blue);
}

/* --- ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-left.active, .slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- MOBILE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 0; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }
    
    .nav-links.active { right: 0; }
    
    .hamburger { display: block; cursor: pointer; z-index: 1000; }
    .hamburger .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 6px auto;
        background-color: white;
        transition: 0.3s;
    }
    
    .layout-split { flex-direction: column; gap: 50px; }
    .cta-banner { padding: 40px; }
    .hero-stats-container { flex-wrap: wrap; gap: 30px; }
    .stat-divider { display: none; }

    /* Hero Fixes */
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-ctas .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Footer Fixes */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand, .footer-links, .footer-contact {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-desc {
        margin: 20px auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- PRICING SECTION --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    max-width: 380px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.plan-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
}

.plan-price {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.plan-price .desde {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.plan-price .price-val {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    line-height: 1;
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    margin: 0.2rem 0;
    transition: var(--transition-mid);
}

.pricing-card:hover .price-val {
    transform: scale(1.05);
}

/* Adjust for non-numeric "A convenir" */
.pricing-card:nth-child(3) .price-val {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: -1px;
}

.plan-price .period {
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 2.5rem 0;
    padding: 0;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.plan-features li i {
    font-size: 1.2rem;
}

.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    min-height: 20px;
}

