:root {
    /* Palette Inspired by neo-pop / neobrutalism soft references */
    --bg-color: #FDFCF8; /* Creamy grid bg */
    --grid-line: #EBE8E0;
    
    --text-dark: #121212;
    --text-light: #5f5e5b;
    
    --purple-light: #CBB9FF; /* Accent pill */
    --black-bg: #141414; /* Dark sections */
    
    --card-blue: #59C9FA;
    --card-pink: #FFAFE6;
    --card-orange: #FF9B71;
    --card-green: #97E9B8;
    
    --border-color: #121212;
    
    --font-heading: 'Epilogue', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 2rem;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid var(--border-color);
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0px 0px 0px rgba(0,0,0,1);
}
.btn-dark {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}
.btn-dark:hover { box-shadow: 4px 4px 0px var(--purple-light); }
.btn-outline {
    background-color: #fff;
    color: var(--text-dark);
}
.btn-lavender {
    background-color: var(--purple-light);
    color: var(--text-dark);
}
.btn-lavender:hover {
    box-shadow: 4px 4px 0px var(--card-green);
}
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; box-shadow: 4px 4px 0px var(--card-blue); }
.btn-full:hover { box-shadow: 6px 6px 0px var(--card-blue); }

/* Navigation */
.nav-wrapper {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: top 0.3s ease-in-out;
}
.nav-wrapper.nav-hidden {
    top: -100px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 100px;
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
    width: 100%;
    max-width: 800px;
    gap: 1rem;
}
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }
@media (max-width: 768px) {
    .nav-links { display: none; }
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin: 1.5rem auto;
    position: relative;
    max-width: 800px;
}
h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    padding: 4rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    box-shadow: 3px 3px 0 rgba(0,0,0,1);
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.avatars { letter-spacing: -4px; font-size: 1.2rem; }

.decorate-left, .decorate-right {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.8;
}
.decorate-left { top: -20px; left: -40px; }
.decorate-right { bottom: -20px; right: -40px; }

.hero-subtitle {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

/* Floating Cards hero */
.hero-cards-display {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    height: 290px;
    position: relative;
    width: 100%;
}
.pop-card {
    width: 220px;
    height: 180px;
    border-radius: 32px 32px 0 0;
    border: 3px solid var(--border-color);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pop-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 1rem;
}
.card-emoji {
    font-size: 4rem;
    line-height: 1;
}
.card-blue { background: var(--card-blue); transform: rotate(-6deg) translateY(-5px); border-radius: 32px; border-bottom: 3px solid var(--border-color); box-shadow: 5px 5px 0 rgba(0,0,0,1); }
.card-pink { background: var(--card-pink); height: 240px; z-index: 2; border-bottom: 3px solid var(--border-color); border-radius: 32px; box-shadow: 6px 6px 0 rgba(0,0,0,1); }
.card-orange { background: var(--card-orange); transform: rotate(6deg) translateY(-5px); border-radius: 32px; border-bottom: 3px solid var(--border-color); box-shadow: 5px 5px 0 rgba(0,0,0,1); }

.pop-card:hover { transform: translateY(-15px) rotate(0); z-index: 3; }

.badge {
    position: absolute;
    bottom: -15px;
    background: var(--card-blue);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Features Dark mode layout (Image 2 inspired) */
.features-section {
    margin-top: 0; 
    position: relative;
    z-index: 10;
}
.feature-layout-dark {
    background-color: var(--black-bg);
    color: #fff;
    border-radius: 40px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.feature-layout-dark h2 { color: #fff; }
.feature-layout-dark p { color: #A1A1AA; margin-bottom: 2rem; font-size: 1.15rem; }

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.feature-mini-card {
    background: #27272A;
    border: 2px solid #3F3F46;
    padding: 1.5rem;
    border-radius: 20px;
    transition: transform 0.2s;
}
.feature-mini-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-green);
}
.feature-mini-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 1rem 0 0.5rem;
    color: #fff;
}
.feature-mini-card p {
    font-size: 0.95rem;
    margin: 0;
    color: #ceced6;
}
.feature-mini-card .icon { font-size: 2rem; }

/* Pricing Section */
.pricing-section { margin-top: 8rem; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
}
.price-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 32px;
    border: 3px solid var(--border-color);
    box-shadow: 6px 6px 0px rgba(0,0,0,1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(0,0,0,1);
}
.price-card-popular {
    background: var(--text-dark);
    color: #fff;
    transform: scale(1.05); /* Make it pop more */
    box-shadow: 8px 8px 0px rgba(0,0,0,1);
    z-index: 2;
}
.price-card-popular:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 12px 12px 0px rgba(0,0,0,1);
}
.card-enterprise {
    background: var(--purple-light);
}
.price-header { margin-bottom: 1.5rem; }
.price-title { font-size: 1.8rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 0.5rem; }
.title-sub { font-size: 1rem; opacity: 0.6; font-family: var(--font-body); font-weight: 500; display: block; margin-top: 0.2rem;}
.price-amount { 
    font-family: var(--font-heading); 
    font-size: 4rem; 
    font-weight: 800; 
    display: flex; 
    align-items: flex-end; 
    gap: 0.5rem; 
    line-height: 1;
}
.price-amount span { 
    font-size: 1.1rem; 
    font-family: var(--font-body); 
    font-weight: 600; 
    padding-bottom: 0.6rem; 
    color: var(--text-light); 
}
.price-card-popular .price-amount span { color: rgba(255,255,255,0.7); }

.price-cop {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: -0.2rem;
    margin-bottom: 0.5rem;
}
.price-card-popular .price-cop { color: rgba(255,255,255,0.8); }

.price-overage {
    background: var(--grid-line);
    padding: 1rem 1.2rem;
    border-radius: 16px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}
.price-card-popular .price-overage { 
    background: #27272A; 
    border-color: #3F3F46; 
    color: #fff; 
}
.overage-light { background: #fff !important; }

.price-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.price-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    align-items: flex-start;
}
.price-features li::before {
    content: "✓";
    font-weight: 800;
    color: var(--card-green);
    background: #fff;
    border-radius: 50%;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--text-dark);
    flex-shrink: 0;
}
.price-card-popular .price-features li::before { border-color: var(--text-dark); }

.btn-growth {
    background-color: var(--card-orange);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
}
.btn-growth:hover {
    box-shadow: 6px 6px 0px rgba(0,0,0,1);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials { margin-top: 8rem; }
.section-title { margin-bottom: 4rem; }
.sparkle { color: var(--card-green); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.shadow-pop {
    background: #fff;
    border: 3px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 8px 8px 0px rgba(0,0,0,1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.shadow-pop:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px rgba(0,0,0,1);
}
.test-card {
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-green-tint { background: var(--card-green); }
.card-green-tint p, .card-green-tint strong { color: var(--text-dark); }
.quote-icon {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--purple-light);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    opacity: 0.6;
}
.card-green-tint .quote-icon { color: #fff; opacity: 0.8;}
.test-card p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}
.author { display: flex; align-items: center; gap: 1rem; }
.author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--text-dark);
    object-fit: cover;
}
.author-info strong { display: block; font-size: 1.05rem; font-weight: 800;}
.author-info span { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.card-green-tint .author-info span { color: rgba(0,0,0,0.7); }

/* Bonus Section */
.bonus-section { margin-top: 8rem; margin-bottom: 4rem; }
.bonus-wrapper {
    display: flex;
    background: var(--purple-light);
    border-radius: 40px;
    overflow: hidden;
}
.bonus-content {
    flex: 1;
    padding: 4rem;
}
.bonus-image {
    flex: 1;
    border-left: 3px solid var(--border-color);
}
.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bonus-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: flex-start;
}
.b-icon {
    font-size: 1.8rem;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    box-shadow: 3px 3px 0 var(--border-color);
    flex-shrink: 0;
}
.bonus-item strong { display: block; font-size: 1.3rem; margin-bottom: 0.4rem; font-weight: 800; }
.bonus-item p { color: rgba(0,0,0,0.8); font-size: 1.05rem; font-weight: 500;}
.urgency-banner {
    background: var(--card-orange);
    border: 3px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 16px;
    margin-top: 2.5rem;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 4px 4px 0 var(--border-color);
}

/* Footer */
.footer { margin-top: 4rem; }
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: #fff;
    border-radius: 100px;
}
.footer p { margin: 0; font-size: 0.95rem; font-weight: 600; color: var(--text-light); }
.footer .nav-social { display: flex; gap: 1.5rem; }
.footer .nav-social a { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 1rem; }

/* Botón Flotante WhatsApp */
.btn-wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border: 3px solid var(--border-color);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wa-float:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px rgba(0,0,0,1);
    color: white;
}

.btn-wa-float:active {
    transform: translateY(0);
    box-shadow: 0px 0px 0px rgba(0,0,0,1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .feature-layout-dark { grid-template-columns: 1fr; padding: 2.5rem; border-radius: 32px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
    .price-card-popular { transform: none !important; } 
    .price-card-popular:hover { transform: translateY(-5px) !important; }
    .bonus-wrapper { flex-direction: column; border-radius: 32px; }
    .bonus-content { padding: 2.5rem; }
    .bonus-image { border-left: none; border-top: 3px solid var(--border-color); height: 300px; }
    .hero-cards-display { flex-direction: column; align-items: center; height: auto; gap: 1.5rem; width: 100%; margin-top: 1rem; }
    .pop-card { width: 85%; max-width: 340px; height: auto; transform: none !important; border-radius: 24px; border: 3px solid var(--border-color); box-shadow: 6px 6px 0px rgba(0,0,0,1); }
    .card-pink { height: auto; padding-bottom: 2rem; box-shadow: 6px 6px 0px rgba(0,0,0,1); }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; border-radius: 32px; padding: 2.5rem; }
    .decorate-left, .decorate-right { display: none; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; padding-top: 0.5rem; }
    h2 { font-size: 1.8rem; }
    p { font-size: 1.05rem; }
    .container { padding: 0 1.2rem; }
    
    .nav-wrapper { padding: 1.2rem 1.2rem 0; width: 100%; }
    .navbar { padding: 0.5rem 0.5rem 0.5rem 1rem; border-radius: 30px; border: 2px solid var(--border-color); box-shadow: 4px 4px 0px rgba(0,0,0,1); }
    .logo { font-size: 1.1rem; }
    .btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
    
    .hero { padding: 2rem 0 0; }
    .hero-subtitle { font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 90%; }
    .hero-cta { flex-direction: column; margin-bottom: 2rem; width: 90%; max-width: 300px; gap: 0.8rem; display: flex; margin: 0 auto 3rem auto; }
    .hero-cta .btn { width: 100%; border-width: 2px; }
    
    .feature-layout-dark { padding: 2rem 1.5rem; border-radius: 28px; }
    .feature-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
    .feature-layout-dark p { font-size: 1.05rem; margin-bottom: 1.5rem; }
    
    .pricing-grid { gap: 2rem; padding: 0 0.5rem; width: 100%; }
    .price-card { padding: 2rem 1.2rem; border-radius: 24px; box-shadow: 6px 6px 0px rgba(0,0,0,1); }
    .price-amount { font-size: 3rem; }
    .price-card-popular .badge { top: -12px; right: 10px; font-size: 0.75rem; padding: 0.3rem 0.8rem; }
    .price-features li { font-size: 0.95rem; }
    
    .bonus-wrapper { border-radius: 28px; box-shadow: 6px 6px 0px rgba(0,0,0,1); }
    .bonus-content { padding: 2rem 1.5rem; }
    .bonus-item { flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
    .bonus-content h2, .bonus-content .urgency-banner { text-align: center; }
    .b-icon { margin-bottom: 0.5rem; }
    
    .testimonial-grid { gap: 1.5rem; padding: 0 0.5rem; }
    .test-card { padding: 1.5rem; border-radius: 24px; box-shadow: 6px 6px 0px rgba(0,0,0,1); }
    
    .footer-inner { padding: 1.5rem; border-radius: 28px; box-shadow: 4px 4px 0px rgba(0,0,0,1); }
    
    .btn-wa-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .btn-wa-float svg {
        width: 28px;
        height: 28px;
    }
}
