/* Modern Landing Page Styles - GOH GYM 2025 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #ff6b00; /* Vibrant Orange */
    --primary-dark: #e65100;
    --primary-light: #ff9e40;
    --secondary: #1a1a1a; /* Dark Grey/Black */
    --accent: #2962ff; /* Blue for trust/tech */
    
    --text-main: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.w-full { width: 100%; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.23);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-main);
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background-color: #f3f4f6;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-right: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #fff1e5;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e40 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.trust-badge {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    color: var(--success);
}

.hero-stats-row {
    display: flex;
    gap: 1.5rem;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.stat-pill:last-child {
    border-right: none;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-lbl {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1500px;
}

.dashboard-mockup-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.dashboard-mockup {
    border-radius: 16px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0,0,0,0.05);
    width: 100%;
}

.float-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(0,0,0,0.05);
}

.float-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-icon.success {
    background: #dcfce7;
    color: #16a34a;
}

.float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.float-text strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.float-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-group {
        align-items: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .dashboard-mockup-wrapper {
        transform: none;
    }
    
    .float-card {
        display: none; /* Hide on smaller screens to avoid clutter */
    }
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    background-color: #fff;
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper.danger {
    background-color: #fee2e2;
    color: var(--danger);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-light);
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse .showcase-content {
    direction: ltr;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-list li i {
    color: var(--success);
}

.app-screenshot {
    border-radius: 12px;
    border: 8px solid #ffffff;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.social-proof-section .section-header h2 {
    color: var(--text-white);
}

.social-proof-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--primary);
}

.author-info h4 {
    font-weight: 700;
}

.author-info span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* Pricing */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price small {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-footer {
    margin-top: auto;
}

.pricing-guarantee {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Final CTA */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8534 100%);
    color: var(--text-white);
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-col {
    padding-top: 2rem;
}

.section-tag {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.contact-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.c-feature {
    display: flex;
    gap: 1.5rem;
}

.cf-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.cf-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cf-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-direct {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-direct p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.direct-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.direct-link:hover {
    color: var(--success);
}

/* Contact Form Column */
.form-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f3f4f6;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #f9fafb;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-custom {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.form-disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info-col {
        text-align: center;
        padding-top: 0;
    }
    
    .contact-features {
        align-items: center;
        text-align: left;
    }
    
    .contact-direct {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-card {
        padding: 2rem;
    }
}

/* Footer */
.main-footer {
    padding: 4rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background-color: #20bd5a;
}

.whatsapp-float i {
    font-size: 1.25rem;
}

/* =====================================================
   HAMBURGER MENU - MOBILE
   ===================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    margin-left: 1rem;
    padding: 0;
    z-index: 1200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 1100;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.mobile-menu ul li a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu ul li a:hover {
    background: #f9fafb;
    color: var(--primary);
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }
}

/* =====================================================
   IMPACT METRICS STRIP
   ===================================================== */
.impact-strip {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8534 100%);
    padding: 3rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.impact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.impact-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.impact-text span {
    font-size: 0.8rem;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* =====================================================
   SOCIAL PROOF - MEJORAS
   ===================================================== */
.clients-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.client-logo-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
}

.client-logo-pill i {
    color: var(--primary);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.author-avatar-initials {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.comparison-table-wrapper {
    margin-bottom: 3.5rem;
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.comparison-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.ct-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--bg-dark);
    color: #fff;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
    background: #fff;
    transition: background 0.2s;
}

.ct-row:last-child {
    border-bottom: none;
}

.ct-row:hover {
    background: #fafafa;
}

.ct-col {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.ct-header .ct-col {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
    gap: 0.5rem;
}

.ct-header .ct-excel {
    color: #ef4444;
    background: rgba(239,68,68,0.08);
}

.ct-header .ct-goh {
    background: rgba(255,107,0,0.1);
}

.ct-label {
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-light);
}

.ct-excel {
    color: var(--text-light);
}

.ct-good {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--success);
    font-weight: 600;
}

.ct-good i {
    color: var(--success);
}

.ct-bad {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--danger);
}

.ct-bad i {
    color: var(--danger);
}

@media (max-width: 576px) {
    .ct-header,
    .ct-row {
        grid-template-columns: 1fr;
    }

    .ct-header .ct-label,
    .ct-row .ct-label {
        display: none;
    }

    .ct-header {
        grid-template-columns: 1fr 1fr;
    }

    .ct-row {
        grid-template-columns: 1fr 1fr;
    }

    .ct-header .ct-label,
    .ct-row .ct-label {
        display: none;
    }
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item-acc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item-acc.open {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    font-family: inherit;
}

.faq-trigger span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
}

.faq-trigger i {
    color: var(--primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-acc.open .faq-trigger i {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item-acc.open .faq-body {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-body p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =====================================================
   FORM TOAST NOTIFICATION
   ===================================================== */
.form-toast {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

.form-toast.active {
    display: flex;
}

.form-toast.toast-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-toast.toast-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Form select same style as input */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   HOW IT WORKS - 3 PASOS
   ===================================================== */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.step-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 300px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.step-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(255,107,0,0.2);
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0 1rem;
    margin-top: 5rem;
    opacity: 0.4;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255,107,0,0.4);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff1e5, #ffe0c2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0.5rem auto 1.5rem;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,107,0,0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

/* =====================================================
   PRICING URGENCY BADGE
   ===================================================== */
.pricing-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-top: 0.75rem;
    border: 1px solid rgba(255,107,0,0.2);
}

.pricing-urgency i {
    color: #f59e0b;
}

/* =====================================================
   TESTIMONIAL STARS (FA icons)
   ===================================================== */
.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.95rem;
}

/* =====================================================
   STICKY MOBILE CTA BAR
   ===================================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 0.875rem 1.25rem;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-cta-text strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.mobile-cta-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.mobile-cta-bar .btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }

    /* Dejar espacio para el bar en mobile */
    .whatsapp-float {
        bottom: 5.5rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }

    .hero-stats {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }
    
    .problem-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-row.reverse {
        direction: ltr;
    }
    
    .showcase-row.reverse .showcase-content {
        direction: ltr;
    }
    
    .problem-grid, .pricing-grid, .benefits-grid, .faq-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
