/* ==========================================
   WB DICHT - STYLES & ADVANCED ANIMATIONS
   ========================================== */

/* ------------------------------------------
   VARIABLES & CUSTOM PROPERTIES
   ------------------------------------------ */
:root {
    --bg-main: #060911;
    --bg-card: rgba(15, 21, 35, 0.75);
    --bg-card-hover: rgba(24, 33, 54, 0.88);
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-purple: #7f00ff;
    --accent-pink: #e100ff;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-glow: rgba(0, 242, 254, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 14, 24, 0.75);
    --glass-border: rgba(255, 255, 255, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --gradient-accent: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    --gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.18), rgba(127, 0, 255, 0.18));
    --gradient-text-animated: linear-gradient(-45deg, #00f2fe, #4facfe, #7f00ff, #e100ff, #00f2fe);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --container-width: 1240px;
}

/* ------------------------------------------
   BASE & RESET
   ------------------------------------------ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ------------------------------------------
   ESTILOS DEL FONDO DINÁMICO & NEÓN
   ------------------------------------------ */
.bg-dynamic-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #0c1222 0%, #060911 100%);
}

#bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.bg-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: orbFloat 16s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.35), transparent 70%);
}

.orb-2 {
    bottom: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.35), transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(225, 0, 255, 0.25), transparent 70%);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.15); }
    100% { transform: translate(-40px, 50px) scale(0.95); }
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* ------------------------------------------
   KEYFRAME ANIMATIONS & EFECTOS DE TÍTULOS
   ------------------------------------------ */

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

@keyframes titleFadeSlide {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tagGlowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.2), inset 0 0 10px rgba(0, 242, 254, 0.1);
        border-color: rgba(0, 242, 254, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 242, 254, 0.5), inset 0 0 15px rgba(0, 242, 254, 0.25);
        border-color: rgba(0, 242, 254, 0.7);
    }
}

@keyframes titleNeonGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 242, 254, 0.6), 0 0 45px rgba(127, 0, 255, 0.4);
    }
}

@keyframes floatMockup {
    0%, 100% { transform: rotateY(-10deg) rotateX(6deg) rotateZ(2deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(3deg) rotateZ(0deg) translateY(-18px); }
}

@keyframes floatBadge {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
    100% { transform: translateY(0) scale(1); }
}

/* ------------------------------------------
   DYNAMICAL HEADINGS & TITLE ANIMATIONS
   ------------------------------------------ */

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    animation: tagGlowPulse 4s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.section-tag:hover {
    transform: translateY(-2px) scale(1.04);
}

.text-gradient {
    background: var(--gradient-text-animated);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 6s ease infinite;
}

.animated-title {
    position: relative;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.section-header:hover .animated-title {
    transform: translateY(-2px);
    animation: titleNeonGlow 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: titleFadeSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: subtitleFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.section-title, .cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--accent-cyan);
}

.section-header:hover .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.animated-card-title {
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
    transition: color var(--transition-fast), transform var(--transition-bounce);
}

.animated-card-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.service-card:hover .animated-card-title,
.automation-card:hover .animated-card-title,
.portfolio-card:hover .animated-card-title,
.process-card:hover .animated-card-title,
.pricing-card:hover .animated-card-title {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.service-card:hover .animated-card-title::before,
.automation-card:hover .animated-card-title::before,
.portfolio-card:hover .animated-card-title::before,
.process-card:hover .animated-card-title::before,
.pricing-card:hover .animated-card-title::before {
    width: 100%;
}

/* ------------------------------------------
   INTERSECTION OBSERVER REVEAL ANIMATIONS
   ------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ------------------------------------------
   BUTTONS & SVG ICONS
   ------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform var(--transition-bounce);
}

.btn:hover svg {
    transform: scale(1.2) rotate(-8deg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #040810;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #00d2ff, #0072ff);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 242, 254, 0.55);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 200% 200%;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.35);
    animation: gradientShift 5s ease infinite;
}

.btn-instagram:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(220, 39, 67, 0.55);
}

/* ------------------------------------------
   HEADER & NAVIGATION
   ------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 18px rgba(0, 242, 254, 0.45);
    transition: transform var(--transition-bounce);
}

.logo:hover .logo-box {
    transform: rotate(15deg) scale(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ------------------------------------------
   HERO SECTION & 3D MOCKUP
   ------------------------------------------ */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hero-mockup-wrapper {
    perspective: 1200px;
    position: relative;
}

.hero-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 242, 254, 0.2);
    transform: rotateY(-10deg) rotateX(6deg) rotateZ(2deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    animation: floatMockup 6s ease-in-out infinite;
}

.hero-mockup-wrapper:hover .hero-mockup {
    transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.03);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8), 0 0 65px rgba(0, 242, 254, 0.4);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1rem;
}

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

.mockup-address {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-nav {
    display: flex;
    gap: 0.5rem;
}

.mockup-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mockup-hero-block {
    height: 120px;
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mockup-card {
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.floating-badge {
    position: absolute;
    padding: 0.85rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-1 {
    top: -20px;
    right: -20px;
}

.badge-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: -2s;
}

/* ------------------------------------------
   SERVICES SECTION
   ------------------------------------------ */
.services {
    padding: 7rem 0;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(12px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.15);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-bounce), background 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(6deg);
    background: var(--gradient-primary);
    color: #000;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ------------------------------------------
   AUTOMATION SECTION
   ------------------------------------------ */
.automation {
    padding: 7rem 0;
    position: relative;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.automation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
}

.automation-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(127, 0, 255, 0.25);
}

.automation-badge {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(127, 0, 255, 0.15);
    border: 1px solid rgba(127, 0, 255, 0.3);
    color: #c084fc;
    margin-bottom: 1.2rem;
}

.automation-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(127, 0, 255, 0.1);
    border: 1px solid rgba(127, 0, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-bounce), background 0.3s ease;
}

.automation-card:hover .automation-icon {
    transform: scale(1.15) rotate(-6deg);
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(225, 0, 255, 0.4);
}

.automation-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.automation-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.automation-desc strong {
    color: var(--text-primary);
}

.apps-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.automation-card:hover .pill {
    border-color: rgba(0, 242, 254, 0.3);
    color: var(--text-primary);
}

.pill-wa { border-left: 3px solid #25d366; }
.pill-ig { border-left: 3px solid #e100ff; }
.pill-fb { border-left: 3px solid #0084ff; }
.pill-make { border-left: 3px solid #6f42c1; }
.pill-zapier { border-left: 3px solid #ff4f00; }
.pill-tg { border-left: 3px solid #24a1de; }
.pill-sheets { border-left: 3px solid #0f9d58; }
.pill-crm { border-left: 3px solid #ff7a59; }
.pill-mail { border-left: 3px solid #ea4335; }
.pill-cal { border-left: 3px solid #006bff; }
.pill-gcal { border-left: 3px solid #4285f4; }
.pill-sms { border-left: 3px solid #ffb703; }

/* ------------------------------------------
   PORTFOLIO SECTION
   ------------------------------------------ */
.portfolio {
    padding: 7rem 0;
}

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

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-demo-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: transform var(--transition-smooth);
}

.portfolio-card:hover .portfolio-demo-graphic {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.8rem;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.portfolio-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ------------------------------------------
   PROCESS SECTION
   ------------------------------------------ */
.process {
    padding: 7rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(12px);
}

.process-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
    transition: transform var(--transition-bounce);
    display: inline-block;
}

.process-card:hover .process-number {
    transform: scale(1.15) translateX(5px);
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.process-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ------------------------------------------
   WHY CHOOSE US SECTION
   ------------------------------------------ */
.why-us {
    padding: 7rem 0;
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(12px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.why-icon-box {
    font-size: 1.8rem;
    transition: transform var(--transition-bounce);
}

.why-card:hover .why-icon-box {
    transform: scale(1.25);
}

.why-text {
    font-weight: 700;
    font-size: 1.05rem;
}

/* ------------------------------------------
   PRICING SECTION
   ------------------------------------------ */
.pricing {
    padding: 7rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    background: rgba(18, 27, 46, 0.95);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.25);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 242, 254, 0.4);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
    white-space: nowrap;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .plan-name {
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.plan-price .currency {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card.featured .plan-price .currency {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: transform var(--transition-fast);
}

.plan-features li:hover {
    transform: translateX(4px);
    color: var(--text-primary);
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: bold;
}

/* ------------------------------------------
   FAQ SECTION
   ------------------------------------------ */
.faq {
    padding: 7rem 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
    backdrop-filter: blur(12px);
}

.faq-header {
    width: 100%;
    padding: 1.5rem 1.8rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    font-family: var(--font-main);
    transition: color var(--transition-fast);
}

.faq-header:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-item.active {
    border-color: rgba(0, 242, 254, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-body {
    max-height: 300px;
    padding: 0 1.8rem 1.5rem 1.8rem;
}

/* ------------------------------------------
   CTA SECTION
   ------------------------------------------ */
.cta-section {
    padding: 5rem 0 8rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(15, 21, 35, 0.9), rgba(24, 33, 54, 0.9));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 242, 254, 0.15);
    backdrop-filter: blur(16px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15), transparent 60%);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* ------------------------------------------
   FOOTER SECTION
   ------------------------------------------ */
.footer {
    background: rgba(4, 6, 12, 0.85);
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 2rem 0;
    backdrop-filter: blur(16px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 360px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-link:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ------------------------------------------
   RESPONSIVE MEDIA QUERIES
   ------------------------------------------ */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 14, 24, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-subtle);
        z-index: 1000;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}