:root {
    --bg-color: #09090b;
    --card-bg: #111114;
    --primary-lime: #bef264;
    --primary-orange: #f97316;
    --text-main: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-gradient: linear-gradient(135deg, var(--primary-lime), #84cc16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-lime);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
}

.color-selection-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-color-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.custom-color-group span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
}

input[type="color"] {
    -webkit-appearance: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    background: none;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-lime);
}

.btn-primary {
    background: var(--primary-lime);
    color: #000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(190, 242, 100, 0.2);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-lime);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0;
    background: #000;
    overflow: hidden;
}

.hero-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(190, 242, 100, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    pointer-events: none;
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content.centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    letter-spacing: -4px;
    font-weight: 700;
    color: #fff;
}

.hero-sub {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators Centered */
.hero-indicators.centered {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4.5rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.indicator i {
    color: var(--primary-lime);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(190, 242, 100, 0.3));
}

.hero-btns.centered {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(190, 242, 100, 0.4);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    h1 { font-size: 4rem; }
    .hero-indicators.centered { 
        flex-direction: column; 
        gap: 1.5rem; 
        align-items: center;
    }
}


.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(190, 242, 100, 0.1);
    color: var(--primary-lime);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(190, 242, 100, 0.2);
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.italic-lime {
    font-style: italic;
    color: var(--primary-lime);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Tech Stack Section */
.tech-stack {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.tech-wrapper {
    text-align: center;
}

.tech-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.tech-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.tech-item img {
    height: 32px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(1);
    transition: var(--transition);
}

.tech-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}

.tech-item:hover img,
.tech-item:hover svg {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
    fill: var(--primary-lime) !important;
}

.tech-item:hover span {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary-lime);
}

@media (max-width: 768px) {
    .tech-icons {
        gap: 2rem;
    }
    .tech-item img {
        height: 28px;
    }
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-badge {
    color: var(--primary-lime);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    letter-spacing: -1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(190, 242, 100, 0.3);
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(190, 242, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-lime);
}

/* Lab Section */
.lab {
    background: linear-gradient(rgba(190, 242, 100, 0.02), transparent);
}

.lab-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.lab-controls {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.control-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}

.control-row .control-group {
    flex: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.control-row .control-group select,
.control-row .control-group input {
    margin-top: auto;
}

.control-group {
    margin-bottom: 2rem;
}

.control-group label {
    display: flex;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.control-group label i {
    color: var(--primary-lime);
}

.color-selection-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.color-options {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.color-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.color-btn.active {
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.style-options {
    display: flex;
    gap: 10px;
    width: 100%;
}

.style-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.style-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.style-btn.active {
    background: rgba(190, 242, 100, 0.1);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
    box-shadow: 0 0 20px rgba(190, 242, 100, 0.15);
}

.style-btn i {
    font-size: 1.1rem;
}

.browser-mockup {
    background: #000;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8);
}

.browser-header {
    background: #111;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.url-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-grow: 1;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.real-mockup-container {
    height: 600px;
    background: #09090b;
    position: relative;
    overflow: hidden;
}

.real-mockup {
    width: 100%;
    height: 100%;
}

/* Tech Mockup */
.lm-tech { height: 100%; display: flex; flex-direction: column; background: #000; color: #fff; font-family: 'Inter', sans-serif; overflow-y: auto; padding-bottom: 2rem; }
.lmt-nav { display: flex; justify-content: space-between; padding: 1.5rem 3rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.lmt-logo { font-size: 1.4rem; font-weight: 800; }
.lmt-logo span { color: var(--preview-accent); }
.lmt-links { display: flex; gap: 2rem; font-size: 0.9rem; color: #a1a1aa; }
.lmt-btn { background: transparent; border: 1px solid var(--preview-accent); color: var(--preview-accent); padding: 0.5rem 1rem; border-radius: 6px; font-weight: 600; cursor: pointer; }
.lmt-header { text-align: center; padding: 4rem 2rem 2rem 2rem; }
.lmt-badge { color: var(--preview-accent); border: 1px solid var(--preview-accent); padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1.5rem; display: inline-block; }
.lmt-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; }
.lmt-header p { font-size: 1.1rem; color: #a1a1aa; max-width: 600px; margin: 0 auto 2rem auto; }
.lmt-btn-main { background: var(--preview-accent); color: #000; font-weight: 700; padding: 1rem 2rem; border: none; border-radius: 8px; font-size: 1rem; cursor: pointer; }
.lmt-dashboard { margin: 0 3rem; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.lmt-dash-header { background: #1a1a1a; padding: 1rem; display: flex; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.lmt-dash-header .dots span { width: 10px; height: 10px; border-radius: 50%; background: #333; display: inline-block; }
.lmt-dash-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 2rem; }

/* Dynamic Brand Logo Color */
.p-logo {
    color: var(--preview-accent, #bef264) !important;
}

.real-mockup h1, .real-mockup h2, .real-mockup h3, .real-mockup h4 {
    font-family: 'Outfit', sans-serif;
}
.lmt-card { background: #18181b; padding: 1.5rem; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.lmt-card i { font-size: 1.5rem; color: var(--preview-accent); margin-bottom: 1rem; }
.lmt-card h4 { font-size: 1rem; color: #fff; }

/* Food Mockup */
.lm-food { height: 100%; display: flex; flex-direction: column; background: #09090b; color: #fff; font-family: 'Outfit', sans-serif; overflow-y: auto; }
.lmf-nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 3rem; font-weight: 500; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.lmf-logo { font-size: 2rem; font-weight: 900; letter-spacing: -1px; text-transform: uppercase; color: var(--preview-accent); }
.lmf-btn { background: var(--preview-accent); color: #000; padding: 0.6rem 1.5rem; border: none; font-weight: 700; cursor: pointer; }
.lmf-header { text-align: center; padding: 5rem 2rem 4rem 2rem; }
.lmf-header h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1.5rem; color: #fff; }
.lmf-header p { font-size: 1.1rem; color: #a1a1aa; max-width: 600px; margin: 0 auto 2.5rem auto; font-family: 'Inter', sans-serif; }

.lmf-btn-main { background: var(--preview-accent); color: #000; padding: 1rem 2.5rem; border: none; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
.lmf-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0 3rem; }
.lmf-img { height: 300px; background-size: cover; background-position: center; border-radius: 16px; }
.lmf-features { display: flex; justify-content: center; gap: 4rem; padding: 4rem 0; font-family: 'Inter', sans-serif; }
.lmf-features div { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.lmf-features i { font-size: 2rem; color: var(--preview-accent); }

/* Fitness Mockup */
.lm-fit { height: 100%; display: flex; flex-direction: column; background: #09090b; color: #fff; font-family: 'Inter', sans-serif; overflow-y: auto; text-transform: uppercase; }
.lmf-nav-fit { position: absolute; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; padding: 2rem 3rem; z-index: 10; }
.lmf-logo-fit { font-size: 2rem; font-weight: 900; color: #fff; font-style: italic; }
.lmf-btn-fit { background: transparent; border: 2px solid #fff; color: #fff; padding: 0.5rem 1.5rem; font-weight: 800; font-style: italic; cursor: pointer; }
.lmf-header-fit { padding: 8rem 3rem 5rem 3rem; background-size: cover; background-position: center; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.lmf-header-fit h1 { font-size: 4.5rem; font-weight: 900; font-style: italic; line-height: 1; margin-bottom: 1.5rem; color: var(--preview-accent); }
.lmf-header-fit p { font-size: 1.2rem; color: #ddd; max-width: 500px; margin-bottom: 2.5rem; text-transform: none; }
.lmf-btn-fit-main { background: var(--preview-accent); color: #000; padding: 1.2rem 3rem; border: none; font-weight: 900; font-size: 1.1rem; font-style: italic; cursor: pointer; }
.lmf-stats-fit { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--preview-accent); color: #000; }
.lmf-stats-fit .stat { padding: 2rem; text-align: center; border-right: 1px solid rgba(0,0,0,0.1); font-weight: 900; font-size: 1.2rem; }

/* Real Estate Mockup */
.lm-real { height: 100%; display: flex; flex-direction: column; background: #09090b; color: #fff; font-family: 'Outfit', sans-serif; overflow-y: auto; }
.lmr-nav { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 3rem; background: #111; border-bottom: 1px solid rgba(255,255,255,0.05); }
.lmr-logo { font-size: 1.5rem; font-weight: 700; color: var(--preview-accent); }
.lmr-links { display: flex; gap: 2rem; font-size: 0.9rem; color: #a1a1aa; font-family: 'Inter', sans-serif; }

.lmr-btn { background: #111; color: #fff; padding: 0.6rem 1.5rem; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; }
.lmr-header { display: flex; padding: 4rem 3rem; gap: 4rem; align-items: center; }
.lmr-text { flex: 1; }
.lmr-badge { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--preview-accent); font-weight: 800; margin-bottom: 1rem; display: inline-block; }
.lmr-header h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.lmr-header p { font-size: 1.1rem; color: #666; margin-bottom: 2rem; font-family: 'Inter', sans-serif; }
.lmr-image { flex: 1; height: 350px; background-size: cover; background-position: center; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.lmr-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 0 3rem 4rem 3rem; }
.lmr-features div { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: #f5f5f5; border-radius: 8px; border-left: 4px solid var(--preview-accent); font-family: 'Inter', sans-serif; }
.lmr-features i { font-size: 1.5rem; color: #111; }
.lmr-features strong { font-size: 1rem; color: #111; }

/* Light Theme Adjustments for Mockups */
.preview-content.style-light .lm-tech { background: #f4f4f5; color: #000; }
.preview-content.style-light .lmt-dashboard { background: #fff; border-color: rgba(0,0,0,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.preview-content.style-light .lmt-card { background: #fafafa; border-color: rgba(0,0,0,0.05); }
.preview-content.style-light .lmt-card h4 { color: #000; }
.preview-content.style-light .lmt-header h1 { color: #000; }
.preview-content.style-light .lmt-header p { color: #555; }
.preview-content.style-light .lm-fit { background: #ffffff !important; color: #000000 !important; }
.preview-content.style-light .lmf-logo-fit { color: var(--preview-accent) !important; }
.preview-content.style-light .lmf-btn-fit { border-color: #000; color: #000; }
.preview-content.style-light .lmf-header-fit { background-image: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.7)) !important; }
.preview-content.style-light .lmf-header-fit h1 { color: #000 !important; }
.preview-content.style-light .lmf-header-fit p { color: #333 !important; }
.preview-content.style-light .lmf-stats-fit { background: #f8f8f8; border-color: #eee; }
.preview-content.style-light .lmf-stats-fit .stat { color: #000; border-color: #eee; }

/* Food Light */
.preview-content.style-light .lm-food { background: #fff; color: #000; }
.preview-content.style-light .lmf-nav { border-color: #eee; }
.preview-content.style-light .lmf-header h1 { color: #111; }
.preview-content.style-light .lmf-header p { color: #555; }
.preview-content.style-light .lmf-btn { background: #000; color: #fff; }

/* Real Estate Light */
.preview-content.style-light .lm-real { background: #fdfdfd; color: #111; }
.preview-content.style-light .lmr-nav { background: #fff; border-color: #eee; }
.preview-content.style-light .lmr-links { color: #555; }
.preview-content.style-light .lmr-btn { background: #111; color: #fff; }



/* Light Theme Container & Placeholder Fix */
.real-mockup-container.style-light {
    background: #f4f4f5 !important;
}

.real-mockup-container.style-light .mockup-placeholder {
    color: #3f3f46 !important;
}

.real-mockup-container.style-light .mockup-placeholder h3 {
    color: #18181b !important;
}

.real-mockup-container.style-light .mockup-placeholder p {
    color: #71717a !important;
}

#preview-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.preview-content.style-light .mockup-overlay {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.preview-content.style-light #preview-title {
    color: #000;
}

@media (max-width: 992px) {
    .lab-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lab-controls {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .control-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .control-group {
        margin-bottom: 1.5rem;
    }

    .color-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .mockup-style {
        height: 400px;
    }

    .mockup-overlay {
        width: 92%;
        padding: 1.5rem;
    }
    
    #preview-title {
        font-size: 1.3rem;
    }

    .mockup-brand {
        font-size: 1rem;
    }
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), transparent);
    z-index: 1;
}

.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.preview-hero h4 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.preview-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.loader-info {
    text-align: center;
}

.loader-info i {
    font-size: 2.5rem;
    color: var(--primary-lime);
    margin-bottom: 1rem;
}

.loader-info p {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

/* Plantillas */
.templates-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.templates-scroll::-webkit-scrollbar {
    height: 6px;
}

.templates-scroll::-webkit-scrollbar-thumb {
    background: rgba(190, 242, 100, 0.3);
    border-radius: 10px;
}

.template-card {
    min-width: 350px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    flex-shrink: 0;
}

.template-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-lime);
}

.template-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.template-card h4 {
    padding: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-lime);
    background: linear-gradient(180deg, rgba(190, 242, 100, 0.05) 0%, var(--card-bg) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-lime);
    color: #000;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.pricing-card ul li i {
    color: var(--primary-lime);
    margin-right: 10px;
}

.pricing-card h3 {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-lime);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pricing-ideal {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-ideal strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-card h4 {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.pricing-card ul.benefits li i {
    color: var(--primary-orange);
}

.paypal-container {
    margin-top: 2rem;
    min-height: 150px;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-color);
}

.section-header.align-left {
    text-align: left;
    max-width: 100%;
}

.italic-orange {
    font-style: italic;
    color: var(--primary-orange);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-lime);
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Inputs */
input, select, textarea {
    width: 100%;
    height: 54px;
    padding: 0 0.8rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    appearance: none;
    text-overflow: ellipsis;
}

textarea {
    height: auto;
    padding: 1rem;
}

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.1rem;
    padding-right: 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

select:hover {
    border-color: rgba(190, 242, 100, 0.4);
    background-color: #1a1a1e;
}

option { 
    background-color: #111; 
    color: #fff; 
    font-family: 'Outfit', sans-serif; 
    font-size: 0.95rem; 
    padding: 0.8rem; 
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-lime);
    box-shadow: 0 0 15px rgba(190, 242, 100, 0.1);
    background: #1f1f23;
}

input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    width: 100%;
    height: 54px;
    display: block;
}
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 10px;
}

/* Scanner */
.scanner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to bottom, transparent, rgba(190, 242, 100, 0.4), transparent);
    z-index: 20;
}

.lab-loader.active .scanner {
    animation: scan 1.5s linear infinite;
}

@keyframes scan { from { top: -10%; } to { top: 110%; } }

.lab-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
}

.lab-loader.active { opacity: 1; pointer-events: all; }

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        text-align: center;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-btns {
        justify-content: center;
    }
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero-indicators {
        gap: 1rem;
    }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}


/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(190, 242, 100, 0.02) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-lime);
    background: rgba(190, 242, 100, 0.03);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-lime);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: rgba(190, 242, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-lime);
    font-size: 1.2rem;
    border: 1px solid rgba(190, 242, 100, 0.2);
}

.user-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Improved Contact Redesign */

.contact {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(190, 242, 100, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 6rem;
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    max-width: 1300px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info .badge {
    background: rgba(190, 242, 100, 0.1);
    color: var(--primary-lime);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.contact-features {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c-feature {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.c-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
}

.c-icon {
    width: 54px;
    height: 54px;
    background: rgba(190, 242, 100, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-lime);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    z-index: 10;
    pointer-events: none;
}

.textarea-group i {
    top: 1.5rem;
    transform: none;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    padding-left: 3.5rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    height: 56px !important;
    font-family: 'Inter', sans-serif !important;
}

.input-group textarea {
    height: 140px !important;
    padding-top: 1rem !important;
}

.btn-primary.w-full {
    width: 100%;
    height: 60px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-info h2 { font-size: 3.5rem; }
}
.contact .container { max-width: 1400px; }

/* Custom Form Validation Tooltips */
.input-group {
    position: relative;
}

.custom-validation-tooltip {
    position: absolute;
    background: #18181b;
    border: 1px solid var(--primary-lime);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: tooltipFadeIn 0.3s ease;
    white-space: nowrap;
}

.custom-validation-tooltip i {
    color: var(--primary-lime);
}

.custom-validation-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: #18181b;
    border-top: 1px solid var(--primary-lime);
    border-left: 1px solid var(--primary-lime);
    transform: rotate(45deg);
}

.input-group.has-error input,
.input-group.has-error select {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

@keyframes tooltipFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Payment Notifications */
.payment-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
    backdrop-filter: blur(20px);
}

.payment-notification.success {
    border-color: #22c55e;
}

.payment-notification.error {
    border-color: #ef4444;
}

.notif-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notif-content i {
    font-size: 1.5rem;
}

.success i { color: #22c55e; }
.error i { color: #ef4444; }

.notif-content h4 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2px;
}

.notif-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.payment-notification button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: var(--primary-lime);
}

.step-number {
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: rgba(190, 242, 100, 0.1);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Guarantee Seal Section */
.guarantee-seal-container {
    margin-top: 6rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(190,242,100,0.02) 100%);
    border: 1px solid rgba(190,242,100,0.1);
    border-radius: 40px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.guarantee-seal-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(190,242,100,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero {
    position: relative;
    padding: 180px 0 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #09090b;
    overflow: hidden;
}

.hero-ambient-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(190,242,100,0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(190,242,100,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190,242,100,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.trust-seal {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.seal-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    border: 4px double var(--primary-lime);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 30px rgba(190,242,100,0.2), inset 0 0 20px rgba(190,242,100,0.1);
    animation: rotateSlow 20s linear infinite;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.seal-inner i {
    font-size: 3.5rem;
    color: var(--primary-lime);
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(190,242,100,0.5));
}

.seal-text {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-lime);
    text-transform: uppercase;
}

.seal-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(190,242,100,0.3);
    border-radius: 50%;
    animation: rotateReverse 15s linear infinite;
}

.guarantee-content {
    flex-grow: 1;
}

.guarantee-content h3 {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -1px;
}

.guarantee-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.guarantee-content strong {
    color: var(--primary-lime);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* ---------------------------------------------------------
   SISTEMA DE OPTIMIZACIÓN MOBILE-FIRST PREMIUM (WM STUDIO)
   Enfoque: Apertura Total, Cero Compresión, Experiencia Safari Pro.
------------------------------------------------------------ */

@media (max-width: 768px) {
    /* 1. Reset de Espaciado y Layout Global */
    :root {
        --mobile-container-padding: 1rem; /* Padding mínimo para máximo ancho */
        --mobile-section-padding: 120px;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 var(--mobile-container-padding) !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    section {
        padding: var(--mobile-section-padding) 0 !important;
    }

    /* 2. Jerarquía Tipográfica Mobile */
    h1 {
        font-size: 2.4rem !important;
        line-height: 1.1 !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 2.5rem !important;
    }

    h2 {
        font-size: 2.1rem !important;
        line-height: 1.1 !important;
        margin-bottom: 3.5rem !important;
        letter-spacing: -1px !important;
    }

    h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-sub {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 4.5rem !important;
    }

    /* 3. Hero Section */
    .hero {
        padding: 160px 0 100px 0 !important;
        min-height: auto !important;
    }

    .hero-indicators {
        flex-direction: column !important;
        gap: 2.5rem !important;
        margin-bottom: 5.5rem !important;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: none !important;
    }

    .btn-primary, .btn-secondary {
        height: 70px !important;
        border-radius: 22px !important;
        font-size: 1.25rem !important;
        width: 100% !important;
    }

    /* 4. Componentes y Cards */
    .services-grid, .portfolio-grid, .testimonials-grid, .process-steps {
        grid-template-columns: 1fr !important;
        gap: 5rem !important;
    }

    .service-card, .testimonial-card, .step-card {
        padding: 4.5rem 2rem !important;
        border-radius: 40px !important;
        width: 100% !important;
    }

    /* 5. Laboratorio (ADIÓS A LO APLASTADO - ANCHO TOTAL) */
    .lab-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 6rem !important;
        width: 100% !important;
    }

    .lab-controls {
        padding: 4rem 1.5rem !important;
        border-radius: 44px !important;
        width: 100% !important;
        max-width: none !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .control-row {
        display: flex !important;
        flex-direction: column !important; /* COLUMNA ÚNICA FORZADA */
        gap: 3.5rem !important;
        width: 100% !important;
    }

    .control-group {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .style-options {
        flex-direction: column !important; /* STACKING VERTICAL DE BOTONES DE TEMA */
        gap: 15px !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
    }

    .style-btn {
        width: 100% !important;
        height: 64px !important;
        font-size: 1.1rem !important;
        border-radius: 16px !important;
    }

    .browser-mockup {
        width: 100% !important;
        border-radius: 36px !important;
    }

    .real-mockup-container {
        height: 600px !important;
    }

    /* 6. Precios (MÁXIMA APERTURA) */
    .pricing-grid {
        gap: 5rem !important;
    }

    .pricing-card {
        padding: 5rem 2rem !important;
        border-radius: 48px !important;
        width: 100% !important;
    }

    .price {
        font-size: 3.5rem !important;
    }

    /* 7. Contacto (ZONA REGISTRO - ESPACIO NUCLEAR) */
    .contact {
        padding: 120px 0 !important;
    }

    .contact-card {
        padding: 0 !important; /* Eliminamos el card externo para que el formulario respire al 100% */
        border-radius: 0 !important;
        background: transparent !important;
        width: 100% !important;
        max-width: none !important;
    }

    .contact-info h2 {
        font-size: 3.2rem !important;
        margin-bottom: 2.5rem !important;
    }

    .contact-info p {
        margin-bottom: 5rem !important;
        font-size: 1.2rem !important;
    }

    .contact-features {
        margin-bottom: 6rem !important;
        gap: 2rem !important;
    }

    .c-feature {
        padding: 2rem !important;
        border-radius: 28px !important;
    }

    .contact-form-container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important; /* COLUMNA ÚNICA FORZADA */
        gap: 3rem !important;
        margin-bottom: 3rem !important;
        width: 100% !important;
    }

    .input-group {
        width: 100% !important;
    }

    .input-group input, 
    .input-group select, 
    .input-group textarea {
        height: 72px !important; /* Altura máxima para pulgar Safari */
        border-radius: 20px !important;
        font-size: 17px !important; /* Previene zoom Safari iOS */
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .btn-primary.w-full {
        height: 76px !important;
        font-size: 1.3rem !important;
        margin-top: 4rem !important;
        border-radius: 24px !important;
    }

    /* 8. Garantía y Footer */
    .guarantee-seal-container {
        padding: 4rem 1.5rem !important;
        margin-top: 8rem !important;
        border-radius: 40px !important;
        flex-direction: column !important; /* CENTRADO VERTICAL */
        text-align: center !important;
        gap: 2.5rem !important;
    }

    .trust-seal {
        width: 130px !important;
        height: 130px !important;
    }

    .guarantee-content h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }

    .guarantee-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin: 0 auto !important;
    }

    .footer {
        padding: 6rem 0 4rem 0 !important;
        border-top: 1px solid rgba(255,255,255,0.05) !important;
    }
}

/* Fix para iPhone SE / Pantallas Pequeñas (Safari) */
@media (max-width: 380px) {
    h1 { font-size: 2.1rem !important; }
    h2 { font-size: 1.9rem !important; }
    .contact-info h2 { font-size: 2.6rem !important; }
}

/* Final CTA Section */
.final-cta {
    padding: 10rem 0;
    background: #09090b;
}

.cta-card {
    background: linear-gradient(135deg, rgba(190,242,100,0.05) 0%, rgba(190,242,100,0.02) 100%);
    border: 1px solid rgba(190,242,100,0.1);
    border-radius: 48px;
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-card h2 span {
    color: var(--primary-lime);
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 6rem 0;
    }
    .cta-card {
        padding: 4rem 1.5rem;
        border-radius: 36px;
    }
    .cta-card h2 {
        font-size: 2.2rem;
    }
    .cta-card p {
        font-size: 1.1rem;
    }
    .btn-primary {
        width: 100%;
        height: 72px;
    }
}
/* WhatsApp Flotante Premium */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #18181b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .wa-tooltip {
        display: none; /* Ocultar tooltip en móvil para evitar clutter */
    }
}

/* SPA Navigation & Dynamic Tabs */
.spa-tab {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spa-tab.active {
    display: block;
}

.spa-tab.show {
    opacity: 1;
    transform: translateY(0);
}

/* Active Nav Links styling */
.nav-links a.active {
    color: var(--primary-lime) !important;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-lime);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-lime);
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(190, 242, 100, 0.1);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
    box-shadow: 0 0 15px rgba(190, 242, 100, 0.15);
}

/* ============================================
   LANGUAGE AND CURRENCY CONTROLS (WM STUDIO)
   ============================================ */

.lang-switch-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-switch-btn:hover {
    background: rgba(190, 242, 100, 0.1);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
}

.currency-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.currency-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.currency-label.active {
    color: var(--primary-lime);
    text-shadow: 0 0 10px rgba(190, 242, 100, 0.2);
}

/* Switch Slider styling */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-main);
    transition: .4s;
}

input:checked + .slider {
    background-color: rgba(190, 242, 100, 0.2);
    border-color: var(--primary-lime);
}

input:checked + .slider:before {
    background-color: var(--primary-lime);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-lime);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Desktop typography & section adjustments for large screens */
@media (min-width: 1400px) {
    body {
        font-size: 18px;
    }
    h1 {
        font-size: 5.5rem;
    }
    h2 {
        font-size: 3.5rem;
    }
    .hero-sub {
        font-size: 1.5rem;
        max-width: 900px;
    }
    section {
        padding: 120px 0;
    }
    .container {
        max-width: 1500px;
    }
}

/* New "Sobre Nosotros" Section */
.about-us {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(17, 17, 20, 0.5) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-lime);
    transform: translateY(-5px);
    background: rgba(190, 242, 100, 0.02);
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--primary-lime);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-cards {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
}

.trust-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: rgba(190, 242, 100, 0.2);
    transform: translateX(10px);
}

.trust-card .card-icon {
    font-size: 1.8rem;
    color: var(--primary-lime);
    background: rgba(190, 242, 100, 0.08);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Expanded Pricing Grid for 4 Plans */
.pricing-grid.four-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid.four-plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid.four-plans {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Collapsible Features list styling */
.pricing-details-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

.pricing-details-collapsible.expanded {
    max-height: 1200px;
    opacity: 1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-more-info {
    background: transparent;
    border: 1px dashed rgba(190, 242, 100, 0.4);
    color: var(--primary-lime);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin: 1.5rem auto 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-more-info:hover {
    background: rgba(190, 242, 100, 0.08);
    border-color: var(--primary-lime);
    box-shadow: 0 0 15px rgba(190, 242, 100, 0.1);
}

.btn-more-info i {
    transition: transform 0.3s ease;
}

.btn-more-info.active i {
    transform: rotate(180deg);
}

/* Enriched Services styling */
.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-lime);
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-lime);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 1rem;
    transition: var(--transition);
    align-self: flex-start;
}

.service-link:hover {
    color: #fff;
    transform: translateX(6px);
}

/* Technical Performance Graphic */
.tech-performance-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.2rem;
    margin-top: 2.5rem;
    backdrop-filter: blur(15px);
}

.tech-performance-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: left;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
}

.metric-label {
    color: var(--text-secondary);
}

.metric-value {
    color: var(--primary-lime);
}

.metric-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.metric-bar {
    height: 100%;
    border-radius: 6px;
    width: 0%; /* Dynamic animation in JS */
    transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.metric-bar.speed {
    background: var(--accent-gradient);
    box-shadow: 0 0 10px rgba(190, 242, 100, 0.3);
}

.metric-bar.server {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.metric-bar.security {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* ============================================
   NEW COMPONENTS v18 - WM STUDIO
   ============================================ */

/* Section Sub-headline */
.section-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: -1.5rem auto 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* Hero Trust Strip - Animated Stats */
.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2rem 3rem;
    backdrop-filter: blur(20px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-strip-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
}

.trust-strip-item .trust-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-lime);
    display: inline-block;
    line-height: 1;
}

.trust-strip-item .trust-sign {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-lime);
    opacity: 0.7;
}

.trust-strip-item p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-strip-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-trust-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 2.5rem;
    }
    .trust-strip-divider { display: none; }
    .trust-strip-item { flex: calc(50% - 1.5rem); }
}

/* Service Card Glow Effect */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(190,242,100,0.04) 0%, transparent 60%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(180deg, transparent 0%, rgba(190,242,100,0.02) 50%, transparent 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: center;
}

.why-us-text h2 {
    font-size: 3.2rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.why-us-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: rgba(190,242,100,0.04);
    border-color: rgba(190,242,100,0.1);
    transform: translateX(8px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(190,242,100,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-lime);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-feature h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Enhanced Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: start;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    color: rgba(190,242,100,0.3);
    font-size: 1.5rem;
}

.step-icon {
    width: 54px;
    height: 54px;
    background: rgba(190,242,100,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-lime);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190,242,100,0.08);
    color: var(--primary-lime);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        height: 40px;
    }
}

/* Portfolio Enhancements */
.portfolio-info {
    padding: 2.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ptag {
    background: rgba(190,242,100,0.12);
    color: var(--primary-lime);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    border: 1px solid rgba(190,242,100,0.2);
}

.portfolio-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    background: rgba(16,185,129,0.1);
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.portfolio-cta-strip {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(190,242,100,0.06) 0%, rgba(190,242,100,0.02) 100%);
    border: 1px solid rgba(190,242,100,0.12);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.portfolio-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.portfolio-cta-content > i {
    font-size: 2.5rem;
    color: var(--primary-lime);
    opacity: 0.6;
    flex-shrink: 0;
}

.portfolio-cta-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.portfolio-cta-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .portfolio-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .portfolio-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .portfolio-cta-strip .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Testimonial Stars */
.testimonial-user {
    align-items: center;
}
.testimonial-stars {
    margin-left: auto;
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(180deg, rgba(190,242,100,0.03) 0%, transparent 100%);
    padding: 120px 0 80px 0;
}

.mission-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(190,242,100,0.1);
    border: 1px solid rgba(190,242,100,0.2);
    color: var(--primary-lime);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.mission-hero h2 {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.mission-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(190,242,100,0.04);
    border-color: rgba(190,242,100,0.15);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(190,242,100,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-lime);
    margin: 0 auto 1.5rem auto;
}

.value-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .mission-values { grid-template-columns: repeat(2, 1fr); }
    .mission-hero h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .mission-values { grid-template-columns: 1fr; }
}

/* About Stats 3-col */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(190,242,100,0.2);
    background: rgba(190,242,100,0.04);
}

.stat-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--primary-lime);
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.stat-box p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Tech Expertise Grid */
.tech-expertise {
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.tech-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-expert-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.tech-expert-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.tech-expert-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tech-expert-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.tech-expert-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .tech-expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tech-expertise-grid { grid-template-columns: 1fr; }
}

/* Pricing Toggle Info */
.pricing-toggle-info {
    background: rgba(190,242,100,0.06);
    border: 1px solid rgba(190,242,100,0.15);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-lime);
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

/* Footer Redesign */
.footer {
    background: #07070a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 5rem 0 3rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-lime);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(190,242,100,0.1);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/* Nav Active Link Highlighting */
.nav-links a.active {
    color: var(--primary-lime) !important;
    font-weight: 700;
}

/* Improved portfolio-info always visible on desktop */
@media (min-width: 769px) {
    .portfolio-info {
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.35s ease;
    }
    .portfolio-item:hover .portfolio-info {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .portfolio-info {
        opacity: 1;
        transform: none;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }
}

/* ============================================
   PORTFOLIO CASE CARDS
   ============================================ */

.portfolio-cases {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 1rem;
}

.case-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: rgba(190,242,100,0.2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.case-image {
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.case-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.case-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
}

.case-sector {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-sector i {
    color: var(--primary-lime);
}

.case-result-badge {
    background: rgba(16,185,129,0.12);
    color: #10b981;
    border: 1px solid rgba(16,185,129,0.25);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.case-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-deliverables {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
}

.deliverable {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.deliverable i {
    color: var(--primary-lime);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.case-metric {
    text-align: center;
}

.case-metric span {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-lime);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.case-metric p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .case-card {
        grid-template-columns: 1fr;
    }
    .case-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .case-content {
        padding: 2rem 1.5rem;
    }
    .case-header {
        flex-direction: column;
        gap: 1rem;
    }
    .case-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   CONTACT DIRECT INFO
   ============================================ */

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-direct-item:hover {
    background: rgba(190,242,100,0.05);
    border-color: rgba(190,242,100,0.2);
    transform: translateX(6px);
}

.contact-direct-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-direct-item p {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* FAQ Two-Column Layout */
.faq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

.faq-two-col .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
    .faq-two-col {
        grid-template-columns: 1fr;
    }
}




