/* ========================================
   TRASLADO DE EPS - Landing Page Styles
   Prefijo: teps- (evitar colisiones con styles.css global)
   Usa tokens de :root definidos en styles.css
   ======================================== */

/* ========================================
   1. HERO
   ======================================== */
.teps-hero {
    background: linear-gradient(135deg, rgba(45, 139, 95, 0.06) 0%, rgba(139, 195, 74, 0.08) 50%, rgba(43, 124, 181, 0.05) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.teps-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.teps-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(45, 139, 95, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.teps-hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}
.teps-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(45, 139, 95, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.teps-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 20px;
}
.teps-hero__title mark {
    background: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.teps-hero__sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.65;
}
.teps-hero__price-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 2px solid var(--accent-lime);
    border-radius: var(--radius-xl);
    padding: 18px 28px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
}
.teps-hero__price-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.teps-hero__price-amount {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.teps-hero__price-sub {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
}
.teps-hero__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.teps-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.teps-hero__illustration {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(45, 139, 95, 0.18));
    animation: teps-float 6s ease-in-out infinite;
}
@keyframes teps-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.teps-hero__badge {
    position: absolute;
    bottom: 20px; left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
}
.teps-hero__badge-icon { font-size: 1.4rem; }

/* ========================================
   2. BOTONES LANDING
   ======================================== */
.teps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    white-space: nowrap;
    font-family: var(--font-secondary);
}
.teps-btn:hover { transform: translateY(-2px); }
.teps-btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 139, 95, 0.35);
}
.teps-btn--primary:hover {
    box-shadow: 0 8px 28px rgba(45, 139, 95, 0.45);
}
.teps-btn--wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.teps-btn--wa:hover {
    background: #1fbd5b;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.teps-btn--outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}
.teps-btn--outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}
.teps-btn--white {
    background: var(--white);
    color: var(--primary-green);
    font-weight: 800;
}
.teps-btn--white:hover {
    background: var(--gray-50);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.teps-btn--lime {
    background: var(--accent-lime);
    color: var(--gray-900);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.4);
}
.teps-btn--lime:hover {
    box-shadow: 0 8px 28px rgba(139, 195, 74, 0.5);
}

/* ========================================
   3. SECCIONES GENERALES
   ======================================== */
.teps-section {
    padding: 96px 0;
}
.teps-section--alt {
    background: var(--gray-50);
}
.teps-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(45, 139, 95, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.teps-section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}
.teps-section-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
}

/* ========================================
   4. BENEFICIOS
   ======================================== */
.teps-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.teps-benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 139, 95, 0.08);
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}
.teps-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}
.teps-benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(45, 139, 95, 0.2);
}
.teps-benefit-card:hover::before { transform: scaleX(1); }
.teps-benefit-icon {
    width: 52px; height: 52px;
    background: rgba(45, 139, 95, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.teps-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}
.teps-benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   5. REQUISITOS
   ======================================== */
.teps-req-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}
.teps-req-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
}
.teps-req-check {
    width: 30px; height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}
.teps-req-item p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-900);
}

/* ========================================
   6. PROCESO (PASOS)
   ======================================== */
.teps-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}
.teps-process__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%; right: 10%;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 0;
}
.teps-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.teps-step__num {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(45, 139, 95, 0.35);
    flex-shrink: 0;
}
.teps-step:nth-child(even) .teps-step__num {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
}
.teps-step h3 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-green);
    margin-bottom: 6px;
}
.teps-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========================================
   7. TIEMPOS
   ======================================== */
.teps-tiempos__content {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.teps-tiempo-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent-lime);
}
.teps-tiempo-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}
.teps-tiempo-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
}
.teps-tiempo-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.teps-tiempo-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.teps-tiempo-info-icon {
    width: 44px; height: 44px;
    background: rgba(45, 139, 95, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.teps-tiempo-info-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.teps-tiempo-info-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   8. PRECIO
   ======================================== */
.teps-precio__block {
    max-width: 540px;
    margin: 56px auto 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(45, 139, 95, 0.3);
}
.teps-precio__block::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.teps-precio__block::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.teps-precio__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
}
.teps-precio__amount {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.teps-precio__currency {
    font-size: 1.5rem;
    vertical-align: super;
}
.teps-precio__sub {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* ========================================
   9. FORMULARIO HUBSPOT
   ======================================== */
.teps-form-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.teps-form__wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 56px 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(45, 139, 95, 0.08);
    margin-top: 48px;
    overflow: hidden;
}
.teps-form__wrapper iframe {
    border: none;
    width: 100%;
    min-height: 700px;
}

/* ========================================
   10. FAQ ACCORDION
   ======================================== */
.teps-faq__list {
    margin-top: 56px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.teps-faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 139, 95, 0.07);
    overflow: hidden;
}
.teps-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: background var(--transition-base);
}
.teps-faq__question:hover { background: var(--gray-50); }
.teps-faq__question[aria-expanded="true"] {
    color: var(--primary-green);
    background: rgba(45, 139, 95, 0.04);
}
.teps-faq__icon {
    width: 28px; height: 28px;
    background: rgba(45, 139, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform var(--transition-base), background var(--transition-base);
}
.teps-faq__question[aria-expanded="true"] .teps-faq__icon {
    transform: rotate(45deg);
    background: var(--primary-green);
    color: var(--white);
}
.teps-faq__answer {
    display: none;
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    border-top: 1px solid rgba(45, 139, 95, 0.08);
    padding-top: 20px;
}
.teps-faq__answer.open { display: block; }

/* ========================================
   11. CTA FINAL
   ======================================== */
.teps-cta-final {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0a3d21 60%, #0f4a2b 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.teps-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 195, 74, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(45, 139, 95, 0.12) 0%, transparent 60%);
}
.teps-cta-final__content { position: relative; z-index: 1; }
.teps-cta-final h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.teps-cta-final p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}
.teps-cta-final__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   12. RESPONSIVE
   ======================================== */

/* ---- Tablet (1024px y menores) ---- */
@media (max-width: 1024px) {
    .teps-hero__grid { 
        grid-template-columns: 1fr 340px; 
        gap: 40px; 
    }
    .teps-benefits__grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .teps-process__steps { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 32px; 
    }
    .teps-process__steps::before { 
        display: none; 
    }
}

/* ---- Mobile Landscape / Small Tablet (768px y menores) ---- */
@media (max-width: 768px) {
    /* General */
    .teps-section { 
        padding: 64px 0; 
    }
    .teps-eyebrow {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 14px;
    }
    .teps-section-title {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        margin-bottom: 12px;
    }
    .teps-section-sub {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Hero */
    .teps-hero { 
        padding: 60px 0 32px;
        background: linear-gradient(135deg, rgba(45, 139, 95, 0.04) 0%, rgba(139, 195, 74, 0.06) 50%, rgba(43, 124, 181, 0.03) 100%);
    }
    .teps-hero::before,
    .teps-hero::after {
        opacity: 0.5;
    }
    .teps-hero__grid { 
        grid-template-columns: 1fr; 
        gap: 32px; 
    }
    .teps-hero__visual { 
        display: none; 
    }
    .teps-hero__eyebrow {
        font-size: 0.68rem;
    }
    .teps-hero__title { 
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .teps-hero__sub {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .teps-hero__price-card {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
        gap: 8px;
        margin-bottom: 16px;
    }
    .teps-hero__price-card > div:nth-child(2) {
        display: none;
    }
    .teps-hero__price-amount {
        font-size: 1.6rem;
    }
    .teps-hero__price-label {
        font-size: 0.73rem;
    }
    .teps-hero__price-sub {
        font-size: 0.72rem;
        margin-top: 0;
    }
    .teps-hero__btns { 
        flex-direction: column;
        gap: 10px;
    }
    .teps-hero__btns .teps-btn { 
        width: 100%; 
        justify-content: center;
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    /* Beneficios */
    .teps-benefits__grid { 
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    .teps-benefit-card {
        padding: 24px 20px;
    }
    .teps-benefit-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    .teps-benefit-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .teps-benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    /* Requisitos */
    .teps-req-list { 
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px;
    }
    .teps-req-item {
        padding: 16px 18px;
        gap: 12px;
    }
    .teps-req-check {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .teps-req-item p {
        font-size: 0.9rem;
    }

    /* Proceso */
    .teps-process__steps { 
        grid-template-columns: 1fr; 
        gap: 24px;
        margin-top: 48px;
    }
    .teps-process__steps::before { 
        display: none; 
    }
    .teps-step {
        padding: 0;
    }
    .teps-step__num {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
        margin-bottom: 16px;
        box-shadow: 0 6px 16px rgba(45, 139, 95, 0.25);
    }
    .teps-step h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    .teps-step p {
        font-size: 0.85rem;
    }

    /* Tiempos */
    .teps-tiempos__content { 
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 36px;
    }
    .teps-tiempo-card {
        padding: 24px 20px;
    }
    .teps-tiempo-card h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .teps-tiempo-card p {
        font-size: 0.85rem;
    }
    .teps-tiempo-info {
        gap: 16px;
    }
    .teps-tiempo-info-item {
        gap: 12px;
    }
    .teps-tiempo-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .teps-tiempo-info-item h4 {
        font-size: 0.85rem;
    }
    .teps-tiempo-info-item p {
        font-size: 0.8rem;
    }

    /* Precio */
    .teps-precio__block { 
        max-width: 100%;
        margin: 40px auto 0;
        padding: 36px 24px;
    }
    .teps-precio__amount { 
        font-size: 2.8rem;
    }
    .teps-precio__currency {
        font-size: 1.2rem;
    }
    .teps-precio__label {
        font-size: 0.8rem;
    }
    .teps-precio__sub {
        font-size: 0.9rem;
    }

    /* Formulario */
    .teps-form-section {
        padding: 56px 0;
    }
    .teps-form__wrapper { 
        max-width: 100%;
        padding: 32px 20px;
        margin-top: 36px;
        border-radius: var(--radius-xl);
    }
    .teps-form__wrapper iframe { 
        min-height: 600px;
    }

    /* FAQ */
    .teps-faq__list {
        margin-top: 40px;
        gap: 10px;
    }
    .teps-faq__question { 
        padding: 16px 18px;
        font-size: 0.9rem;
        gap: 12px;
    }
    .teps-faq__answer { 
        padding: 0 18px 18px;
        font-size: 0.85rem;
    }
    .teps-faq__icon{
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    /* CTA Final */
    .teps-cta-final { 
        padding: 64px 0;
    }
    .teps-cta-final h2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 12px;
    }
    .teps-cta-final p {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
    .teps-cta-final__btns {
        gap: 12px;
    }
}

/* ---- Mobile Phone (480px y menores) ---- */
@media (max-width: 480px) {
    /* General */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .teps-section {
        padding: 48px 0;
    }
    .teps-eyebrow {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    .teps-section-title {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        margin-bottom: 10px;
        font-weight: 700;
    }
    .teps-section-sub {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Hero */
    .teps-hero { 
        padding: 48px 0 24px; 
    }
    .teps-hero__grid {
        gap: 24px;
    }
    .teps-hero__title { 
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .teps-hero__sub {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    .teps-hero__price-card {
        gap: 6px;
        padding: 10px 14px;
        margin-bottom: 12px;
    }
    .teps-hero__price-label {
        font-size: 0.68rem;
        margin-bottom: 2px;
    }
    .teps-hero__price-amount {
        font-size: 1.5rem;
    }
    .teps-hero__price-sub {
        font-size: 0.68rem;
    }
    .teps-hero__btns {
        gap: 8px;
    }
    .teps-hero__btns .teps-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        min-height: 40px;
    }

    /* Beneficios */
    .teps-benefits__grid {
        gap: 12px;
        margin-top: 32px;
    }
    .teps-benefit-card {
        padding: 20px 16px;
    }
    .teps-benefit-card h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    .teps-benefit-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .teps-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    /* Requisitos */
    .teps-req-list {
        gap: 10px;
        margin-top: 28px;
    }
    .teps-req-item {
        padding: 14px 14px;
        gap: 10px;
    }
    .teps-req-check {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        min-width: 26px;
    }
    .teps-req-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Proceso */
    .teps-process__steps {
        gap: 16px;
        margin-top: 36px;
    }
    .teps-step__num {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    .teps-step h3 {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    .teps-step p {
        font-size: 0.8rem;
    }

    /* Tiempos */
    .teps-tiempos__content {
        gap: 16px;
        margin-top: 28px;
    }
    .teps-tiempo-card {
        padding: 20px 16px;
    }
    .teps-tiempo-card h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .teps-tiempo-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .teps-tiempo-info {
        gap: 12px;
    }
    .teps-tiempo-info-item {
        gap: 10px;
    }
    .teps-tiempo-info-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .teps-tiempo-info-item h4 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    .teps-tiempo-info-item p {
        font-size: 0.75rem;
    }

    /* Precio */
    .teps-precio__block {
        padding: 28px 18px;
    }
    .teps-precio__label {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    .teps-precio__amount {
        font-size: 2.2rem;
        margin-bottom: 4px;
    }
    .teps-precio__currency {
        font-size: 1rem;
    }
    .teps-precio__sub {
        font-size: 0.8rem;
        margin-bottom: 24px;
    }

    /* Formulario */
    .teps-form-section {
        padding: 40px 0;
    }
    .teps-form__wrapper {
        max-width: 100%;
        padding: 24px 14px;
        margin-top: 28px;
        border-radius: var(--radius-lg);
    }
    .teps-form__wrapper iframe {
        min-height: 500px;
    }

    /* FAQ */
    .teps-faq__list {
        margin-top: 32px;
        gap: 8px;
    }
    .teps-faq__item {
        border-radius: var(--radius-md);
    }
    .teps-faq__question {
        padding: 14px 14px;
        font-size: 0.85rem;
        gap: 10px;
    }
    .teps-faq__answer {
        padding: 0 14px 14px;
        font-size: 0.8rem;
        line-height: 1.6;
    }
    .teps-faq__icon {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }

    /* CTA Final */
    .teps-cta-final {
        padding: 48px 0;
    }
    .teps-cta-final h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        font-weight: 700;
    }
    .teps-cta-final p {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    .teps-cta-final__btns {
        flex-direction: column;
        gap: 10px;
    }
    .teps-cta-final__btns .teps-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
        min-height: 44px;
    }
}

/* ---- Extra Small Devices (320px) ---- */
@media (max-width: 360px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .teps-section {
        padding: 40px 0;
    }
    .teps-section-title {
        font-size: 1.2rem;
    }
    .teps-hero {
        padding: 50px 0 30px;
    }
    .teps-hero__title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .teps-hero__sub {
        font-size: 0.85rem;
    }
    .teps-price-card {
        padding: 12px 12px;
        margin-bottom: 16px;
    }
    .teps-precio__amount {
        font-size: 2rem;
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    .teps-hero__illustration { 
        animation: none; 
    }
    .teps-benefit-card,
    .teps-step,
    .teps-req-item,
    .teps-tiempo-info-item,
    .teps-faq__item {
        transition: none !important;
    }
}

/* ---- High Density Displays ---- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .teps-btn {
        min-height: 44px;
        min-width: 44px;
    }
    .teps-faq__question {
        min-height: 48px;
    }
}
