/* ARI - Premium Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #32a863;
    --accent: #89EA39;
    --bg-cream: #FEF9CF;
    --dark: #1F2933;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray: #64748B;

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Manrope', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 20px 40px rgba(48, 95, 67, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--black);
}

.btn-accent:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    /* Removed bubble effect */
    width: 100%;
    left: 0;
    margin-top: 0;
    border-radius: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero {
    width: 100%;
    margin-top: 80px;
    /* Offset for the fixed header */
    aspect-ratio: 1622 / 756;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('../img/brand/hero-ari.jpeg') no-repeat center center / cover;
    padding-top: 20px;
    padding-bottom: 100px;
    /* Space for the floating bar */
    position: relative;
    /* overflow: hidden; Removed to allow the floating bar to bridge sections */
    background-color: var(--white);
}

/* On very tall screens, we might need a min-height or different behavior, but for desktop aspect-ratio is best */
@media (min-width: 1024px) {
    .hero {
        min-height: auto;
    }
}

/* Overlay removed as per user instruction (image already has white background on the left) */

.hero-container {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    /* Wider to gain space */
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Badge */
.badge-ecuador {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-ecuador img {
    height: 16px;
    border-radius: 2px;
}

.hero-content {
    max-width: 100%;
    /* Occupy full 50% column */
    position: relative;
    z-index: 5;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.0rem;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--primary);
    display: block;
    margin-top: 0.4rem;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 580px;
    line-height: 1.6;
}

/* Checkmarks */
.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.hero-checks i {
    font-size: 1.2rem;
    color: var(--accent);
}

/* Buttons New */
.hero-btns-new {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 0.8rem 2.2rem;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline-white {
    background: var(--white);
    border: 1.5px solid #E2E8F0;
    color: var(--dark);
    padding: 0.8rem 2.2rem;
    gap: 0.8rem;
}

.btn-outline-white:hover {
    background: var(--gray-light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Social Proof */
.hero-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.social-text p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

/* Removed Visual Side & Floating Elements (Now part of the background image) */

/* Features Bar Wrapper & Floating */
.features-bar-wrapper {
    position: absolute;
    bottom: 0;
    /* Align to the very bottom of the padded hero */
    left: 0;
    width: 100%;
    z-index: 20;
    /* Higher z-index to stay above everything */
    transform: translateY(50%);
    /* Half-out of the section for a true floating feel */
}

.features-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(48, 95, 67, 0.1);
    padding: 1.5rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-text strong {
    font-size: 0.95rem;
    line-height: 1.2;
}

.item-text span {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.3;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #F0F9F4;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 1px solid #E2E8F0;
    padding-left: 2rem;
}

.feature-brand span {
    font-size: 0.8rem;
    color: var(--gray);
}

.brand-min-logo {
    height: 40px;
}

/* Cards & Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== Problema Section (Split Layout) ===== */
.problema-section {
    position: relative;
    background-color: var(--gray-light);
    overflow: hidden;
    padding-bottom: 80px;
}

.problema-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 480px;
    align-items: center;
}

.problema-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.problema-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problema-content {
    padding: 4rem 3rem;
}

.problema-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.highlight-green {
    color: var(--primary);
    font-style: normal;
}

.problema-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 500;
}

/* Problema Cards */
.problema-cards-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.problema-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.problema-card {
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.problema-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.problema-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.problema-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.problema-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problema-card-icon.icon-yellow {
    background: #D1FAE5;
    color: #32A863;
}

.problema-card-icon.icon-green {
    background: #D1FAE5;
    color: var(--primary);
}

.problema-card-icon.icon-warning {
    background: #D1FAE5;
    color: #32A863;
}

/* Quote */
.problema-quote {
    text-align: center;
    padding: 3rem 1.5rem 1rem;
}

.problema-quote p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== Solución Section (Dark BG Image) ===== */
.solucion-section {
    position: relative;
    background: url('../img/brand/solucion-bg.png') no-repeat center center / cover;
    padding: 100px 0;
    overflow: hidden;
}



.solucion-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.solucion-content {
    color: var(--white);
}

.solucion-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.solucion-highlight {
    display: inline-block;
    border: 2px solid var(--white);
    padding: 0px 5px;
    border-radius: 16px;
    color: var(--primary);
    background-color: var(--white);
}

.solucion-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.solucion-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.solucion-checks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.solucion-checks li i {
    color: var(--accent);
    font-size: 1rem;
}

.btn-solucion {
    background-color: var(--accent);
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-solucion:hover {
    background-color: #7BD62E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(137, 234, 57, 0.3);
}

.solucion-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solucion-phone img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ===== Beneficios Section (Dark BG + Robot) ===== */
.beneficios-section {
    position: relative;
    background: url('../img/brand/beneficios-bg.png') no-repeat center center / cover;
    overflow: hidden;
}



.beneficios-top {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.beneficios-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.beneficios-text {
    color: var(--white);
}

.beneficios-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.beneficios-highlight {
    display: inline-block;
    border: 2px solid var(--white);
    padding: 0px 5px;
    border-radius: 16px;
    color: var(--primary);
    background-color: var(--white);
}

.beneficios-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 450px;
}

.beneficios-robot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.beneficios-robot img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Beneficio Cards */
.beneficios-cards-area {
    position: relative;
    z-index: 2;
    padding: 0 0 60px;
}

.beneficios-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.beneficio-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.beneficio-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.beneficio-info p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== Cómo Funciona Section (BG Image + Steps) ===== */
.comofunciona-section {
    position: relative;
    background: url('../img/brand/comofunciona-bg.png') no-repeat center center / cover;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: flex-start;
}

.comofunciona-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

.comofunciona-container {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    width: 100%;
}

.comofunciona-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.comofunciona-highlight {
    color: var(--primary);
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

.comofunciona-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.comofunciona-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.comofunciona-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    box-shadow: 0 0 0 8px rgba(137, 234, 57, 0.25), 0 0 0 16px rgba(137, 234, 57, 0.1);
    transition: var(--transition);
}

.comofunciona-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(137, 234, 57, 0.35), 0 0 0 20px rgba(137, 234, 57, 0.15);
}

.comofunciona-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.comofunciona-step p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    max-width: 160px;
}

/* ===== Respaldo Section ===== */
.respaldo-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.respaldo-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.respaldo-desc-area {
    margin-bottom: 3rem;
}

.respaldo-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.respaldo-highlight {
    display: inline-block;
    border: 2px solid var(--white);
    padding: 0px 5px;
    border-radius: 16px;
    color: var(--primary);
    background-color: var(--white);
}

.respaldo-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 100%;
}

.respaldo-desc strong {
    color: var(--white);
}

.respaldo-desc-secondary {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 100%;
}

/* Stats Badges */
.respaldo-stats {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.respaldo-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    text-align: center;
    min-width: 100px;
    transition: var(--transition);
}

.respaldo-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* Logos Area */
.respaldo-logos-area {
    margin-top: 2rem;
}

.respaldo-logos-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.respaldo-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.respaldo-logo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    min-width: 170px;
    max-width: 220px;
    flex: 0 1 auto;
    transition: var(--transition);
}

.respaldo-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.respaldo-logo-card img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0);
}

/* Feature Row */
.feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
}

/* ===== FAQ Section (New Two-Column Layout) ===== */
.faq-section {
    position: relative;
    background: url('../img/brand/faq-bg.png') no-repeat center center / cover;
    overflow: hidden;
}

.faq-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.faq-section-container {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.faq-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.faq-section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: flex-start;
}

/* FAQ Accordion Items */
.faq-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-new {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-new:hover {
    box-shadow: var(--shadow-md);
}

.faq-q {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    background-color: #f8f9fa; /* Light grey for the question */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-q span {
    flex: 1;
}

.faq-q-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary); /* Maintain primary green for icons */
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    background-color: #f0fdf4; /* Light green for the answer */
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item-new.active .faq-a {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-a p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-a p:last-child {
    margin-bottom: 0;
}

/* Right Side - Robot + WhatsApp */
.faq-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.faq-robot-img {
    display: flex;
    justify-content: center;
}

.faq-robot-img img {
    max-height: 280px;
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.faq-whatsapp-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 300px;
}

.faq-whatsapp-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.faq-whatsapp-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.btn-whatsapp-faq {
    background-color: #25D366;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    gap: 0.5rem;
    width: 100%;
}

.btn-whatsapp-faq:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Form */
.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(48, 95, 67, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #CBD5E1;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #94A3B8;
}

/* Responsive Desktop Defaults */
.d-none-mobile {
    display: flex;
}

.d-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .d-none-mobile {
        display: none;
    }

    .d-mobile {
        display: flex !important;
    }

    .nav-menu {
        display: none !important;
        /* Force hide desktop nav on mobile/tablet */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .feature-row {
        flex-direction: column;
        text-align: center;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-content {
        padding: 0;
        margin-bottom: 2rem;
    }

    .feature-image {
        padding: 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Problema section responsive */
    .problema-layout {
        grid-template-columns: 1fr;
    }

    .problema-image {
        max-height: 350px;
    }

    .problema-content {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .problema-subtitle {
        margin: 0 auto;
    }

    .problema-title {
        font-size: 2.2rem;
    }

    /* Solucion section responsive */
    .solucion-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solucion-title {
        font-size: 2.2rem;
    }

    .solucion-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .solucion-checks {
        justify-items: center;
    }

    .solucion-section {
        padding: 60px 0;
    }

    .solucion-phone img {
        max-height: 400px;
    }

    /* Beneficios section responsive */
    .beneficios-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .beneficios-title {
        font-size: 2.2rem;
    }

    .beneficios-subtitle {
        margin: 0 auto;
    }

    .beneficios-robot img {
        max-height: 280px;
    }

    .beneficios-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ComoFunciona section responsive */
    .comofunciona-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }

    .comofunciona-title {
        font-size: 2.2rem;
    }

    .comofunciona-container {
        padding: 60px 0;
    }

    /* Respaldo section responsive */
    .respaldo-top-row {
        flex-direction: column;
    }

    .respaldo-title {
        font-size: 2.2rem;
    }

    /* FAQ section responsive */
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-right {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .faq-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Problema section mobile */
    .problema-section {
        padding-bottom: 40px;
    }

    .problema-image {
        max-height: 280px;
    }

    .problema-title {
        font-size: 1.8rem;
    }

    .problema-cards {
        grid-template-columns: 1fr;
    }

    .problema-cards-wrapper {
        margin-top: 0;
    }

    /* Solucion section mobile */
    .solucion-title {
        font-size: 1.8rem;
    }

    .solucion-checks {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .solucion-phone img {
        max-height: 350px;
    }

    .btn-solucion {
        width: 100%;
    }

    /* Beneficios section mobile */
    .beneficios-top {
        padding: 50px 0 30px;
    }

    .beneficios-title {
        font-size: 1.8rem;
    }

    .beneficios-cards {
        grid-template-columns: 1fr;
    }

    .beneficios-robot {
        display: none;
    }

    /* ComoFunciona section mobile */
    .comofunciona-title {
        font-size: 1.8rem;
    }

    .comofunciona-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }

    .step-circle {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .comofunciona-container {
        padding: 50px 0;
    }

    /* Respaldo section mobile */
    .respaldo-section {
        padding: 50px 0;
    }

    .respaldo-title {
        font-size: 1.8rem;
    }

    .respaldo-stats {
        flex-direction: column;
    }

    .respaldo-stat {
        width: 100%;
    }

    .respaldo-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .respaldo-logo-card {
        min-height: 70px;
        padding: 0.8rem;
    }

    .hero {
        background-image: none !important;
        background-color: var(--white);
    }

    /* FAQ section mobile */
    .faq-section-title {
        font-size: 1.8rem;
    }

    .faq-section-container {
        padding: 50px 0;
    }

    .faq-right {
        flex-direction: column;
    }

    .faq-robot-img img {
        max-height: 200px;
    }

    .faq-whatsapp-card {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.0rem;
    }

    .features-bar {
        padding: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        aspect-ratio: auto;
        min-height: auto;
        padding-top: 30px;
        /* Reduced to avoid large white space */
        padding-bottom: 40px;
        background-position: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-content {
        padding-right: 0;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns-new {
        justify-content: center;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-checks {
        align-items: center;
    }

    .features-bar-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 2rem;
        /* Removed negative margin to avoid overlap */
        transform: translateY(0);
        padding: 0 1rem;
    }

    .features-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .logo img {
        height: 35px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-top: 1rem;
    }

    .hero-title .highlight {
        font-size: 2.7rem;
    }

    .hero {
        padding-top: 20px;
        /* Further reduction for smaller screens */
    }

    .hero-btns-new {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-btns-new .btn {
        width: 100%;
        justify-content: center;
    }

    .features-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    /* Base position is fixed */
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    /* Start off-screen */
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-overlay.active {
    transform: translateX(0);
    /* Slide into view */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.mobile-menu-btn {
    background: var(--gray-light);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--primary);
    color: var(--white);
}

#menu-close {
    background: var(--gray-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Utilities */
.text-success {
    color: var(--primary);
}

.text-danger {
    color: #dc3545;
}

/* Visibility Utilities */
.d-none-mobile {
    display: flex !important;
}

.d-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
    .d-mobile {
        display: flex !important;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}