/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Brand */
    --fc-orange: #f8a033;
    --fc-blue: #005be5;
    --fc-purple: #761fb3;
    /* fallback, casi no usar */

    /* Backgrounds (Light) */
    --bg-color: #ffffff;
    /* fondo principal */
    --surface-color: #ffffff;
    /* superficies */
    --surface-glass: rgba(255, 255, 255, 0.85);
    /* vidrio */
    --bg-soft: #f5f7fb;
    /* gris muy clarito secundario */
    --bg-soft-2: #eef2f7;
    /* un paso más fuerte si lo necesitas */

    /* Text */
    --text-primary: #f8a033;
    /* negro elegante (no 100% negro) */
    --text-secondary: #000000;
    /* slate */
    --text-muted: #000000;

    /* Subtitulos */
    --text-subtitle: #005be5;

    /* Accents */
    --accent-orange: var(--fc-orange);
    --accent-blue: var(--fc-blue);

    /* Mantén nombres antiguos pero apuntando a la nueva lógica */
    --accent-glow: var(--accent-orange);
    /* antes lo usabas para “highlight” */
    --accent-purple: var(--accent-blue);
    /* reasignado para evitar morado */
    --border-color: rgba(0, 91, 229, 0.22);
    /* borde azul suave */

    /* Effects */
    --glow-shadow: 0 14px 40px rgba(0, 91, 229, 0.18);
    /* glow azul */
    --glass-blur: blur(12px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Spacing */
    --section-py-desktop: 120px;
    --section-py-mobile: 90px;
    --section-py: var(--section-py-desktop);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, var(--bg-color), transparent 25%),
        radial-gradient(circle at 85% 30%, var(--bg-color), transparent 25%);
}

/* =========================================
   2. UTILITIES & COMPONENTS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-darker {
    background-color: var(--bg-color) !important;
    /* Slightly darker than #050505 */
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--4-cols {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn--primary {
    background: var(--accent-glow);
    color: #ffffff;
}

.btn--primary:hover {
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--accent-glow);
    backdrop-filter: blur(4px);
}

.btn--secondary:hover {
    border-color: var(--accent-glow);
    background: var(--fc-orange);
    color: #fff;
}

.btn--text {
    background: transparent;
    color: var(--accent-glow);
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
}

.btn--text:hover {
    border-bottom-color: var(--accent-glow);
}

.btn--full {
    width: 100%;
}

.section__title {
    font-size: 42px;
    /* User requested 42px */
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(to right, var(--text-primary), var(--text-primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* =========================================
   3. HEADER
   ========================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 0px solid var(--bg-color);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO HEADER ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo__img {
    height: 100px;
    /* AJUSTA: 32px / 36px / 40px / 44px */
    width: auto;
    display: block;
    object-fit: contain;
}

/* si tu header es sticky y se comprime, puedes bajar un poco en mobile */
@media (max-width: 768px) {
    .logo__img {
        height: 102px;
    }
}

.nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav__links a:hover {
    color: var(--text-primary);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    /* Important for infinite gallery feeling */
}

.hero__content {
    margin-bottom: 4rem;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--fc-orange);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(0, 91, 229, 0.12);
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge {
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    border-radius: 50px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* =========================================
   5. CARRUSEL 3D — Prism Flux (NUEVO)
   ========================================= */
.carousel-container {
    width: 100%;
    max-width: 1600px;
    height: 650px;
    perspective: 1200px;
    position: relative;
    margin: 0 auto;
    padding-top: 60px;
}

.carousel-stage {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: 400px;
    height: 540px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-origin: center center;

    /* Default: oculto */
    transform: translate(-50%, -50%) translateZ(-500px) scale(0.5);
    opacity: 0;
    z-index: 1;
    pointer-events: none;

    /* Visual de card */
    background: linear-gradient(135deg, var(--surface-glass), var(--bg-color));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    text-align: left;
    color: var(--text-primary);
    cursor: default;
}

.carousel-item h3 {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: var(--text-subtitle);
    text-align: center;
    width: 100%;
    margin-bottom: 1.1rem;
}

.carousel-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

/* Tags dentro de items */
.carousel-item .card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    justify-content: center;
}

.carousel-item .card-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 91, 229, 0.1);
    color: var(--accent-glow);
    border-radius: 4px;
}

/* Controles */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 50;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(0, 91, 229, 0.25);
}

/* Indicadores (dots) */
.carousel-indicators {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 60;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 91, 229, 0.12);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: rgba(0, 91, 229, 0.3);
}

.carousel-dot.active {
    background: var(--accent-purple);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--accent-purple);
}

/* =========================================
   6. SECTIONS (About, Metrics, Arsenal)
   ========================================= */
section {
    padding: var(--section-py-desktop) 0;
    border-top: 0px solid rgb(255, 255, 255);
    scroll-margin-top: 100px;
    position: relative;
}

.card {
    background: var(--surface-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(0, 91, 229, 0.18);
    background: var(--bg-color);
}

/* ABOUT */
.about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 91, 229, 0.08);
}

.about__card h3 {
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

/* METRICS */
.metric__card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.metric__card:hover {
    border-color: var(--accent-purple);
    box-shadow: inset 0 0 20px rgba(0, 91, 229, 0.06);
}

.metric__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    stroke: var(--fc-orange);
    filter: drop-shadow(0 0 8px rgba(248, 160, 51, 0.3));
}

.metric__value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-subtitle);
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
    /* Monospaced numbers prevents jitter */
}

.metric__label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

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

/* ARSENAL */
.arsenal {
    text-align: center;
    /* Center content */
}

.arsenal__tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.tab:hover {
    background: var(--bg-soft);
    color: var(--text-primary);
}

.tab.tab--active {
    background: rgba(0, 91, 229, 0.08);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(0, 91, 229, 0.12);
}

.grid--skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.skill__card {
    flex: 1 1 240px;
    max-width: 300px;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Animation Hooks */
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-align: left;
    /* Reset text align inside card */
}

.skill__card:hover {
    background: #fff;
    transform: translateY(-3px);
    border-color: rgba(0, 91, 229, 0.18);
}

.skill__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    stroke: var(--fc-orange);
}

.skill__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.skill__info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.skill__percentage {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.skill__bar {
    height: 4px;
    background: rgba(0, 91, 229, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: auto;
    /* Push to bottom */
}

.skill__progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    border-radius: 2px;
}

/* =========================================
   7. CONTACT SECTION (Redesigned Premium)
   ========================================= */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__card {
    background: var(--bg-color);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.contact__card--premium {
    background: var(--bg-color);
    border-color: rgba(0, 91, 229, 0.18);
    margin-bottom: 2rem;
}

.contact__card--premium:hover {
    background: rgba(0, 91, 229, 0.06);
    box-shadow: 0 0 30px rgba(0, 91, 229, 0.1);
}

.contact__card--premium .contact__icon {
    background: rgba(0, 91, 229, 0.08);
    color: var(--accent-blue);
}

.contact__card:hover {
    background: var(--bg-soft);
    border-color: var(--accent-purple);
    transform: translateX(5px);
}

.contact__icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 91, 229, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    flex-shrink: 0;
}

.contact__details h4 {
    font-size: 0.7rem;
    color: var(--text-subtitle);
    margin-bottom: 0.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact__details p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.contact__action {
    margin-top: 1rem;
}

/* --- Layout & Wrapper --- */
.contact .container {
    max-width: 1250px;
    /* Premium width as requested */
}

/* Ensure grid alignment */
/* --- Responsive Modal --- */
@media (max-width: 768px) {
    .modal__grid {
        grid-template-columns: 1fr;
    }

    .modal__info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
    }

    .modal__form {
        padding: 1.5rem;
    }

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

    .contact .grid--2-cols {
        gap: 2rem;
        /* Ensure specific gap on mobile */
    }
}

.contact .grid--2-cols {
    align-items: start;
    /* Top alignment as requested */
    gap: 3rem;
    /* Larger gap for premium feel */
}

.contact__form-wrapper {
    background: var(--surface-glass);
    padding: 2rem;
    /* Significantly reduced padding */
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px -10px rgba(0, 91, 229, 0.06);
    position: relative;
    overflow: visible;
}

.contact__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2-column grid */
    gap: 1rem;
    /* Tighter gap */
}

/* Make textarea and button full width */
.contact__form .form__group:nth-last-child(2),
/* Textarea parent */
.contact__form button {
    grid-column: span 2;
}

.form__group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    /* Tighter spacing */
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* --- Unified Input/Select Styles --- */
.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    height: 48px;
    /* Compact height */
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    border-radius: 10px;
    /* Slightly squarer, modern look */
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 91, 229, 0.04);
}

.form__group textarea {
    height: auto;
    padding: 16px;
    min-height: 100px;
    /* Reduced min-height */
    resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(0, 91, 229, 0.04) !important;
    box-shadow: 0 0 0 4px rgba(0, 91, 229, 0.1);
    transform: translateY(-1px);
}

/* --- Custom Select styling --- */
.form__group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

.form__group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Dropdown Options */
.form__group select option {
    background: #ffffff;
    color: var(--text-muted);
    padding: 12px;
}

/* --- Matches Button Style --- */
.btn--submit {
    display: none;
}

/* Ensure standard buttons match input radius in form context if needed, 
   but globally .btn has border-radius. Let's ensure consistency here. */
.contact__form .btn {
    height: 48px;
    /* Match input height */
    border-radius: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 91, 229, 0.15);
}

.contact__form .btn:hover {
    box-shadow: 0 8px 30px rgba(0, 91, 229, 0.2);
    transform: translateY(-1px);
}

/* =========================================
   8. FOOTER
   ========================================= */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 0px solid var(--bg-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 2rem;
}

/* =========================================
   9. MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    /* Ensures full viewport coverage */
    background: rgba(0, 91, 229, 0.15);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 24px;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal {
    background: rgba(255, 255, 255, 0.97);
    /* Slightly darker/more opaque for contrast */
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);

    /* Perfect Centering Reset */
    position: relative;
    width: min(920px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    margin: 0;
    inset: auto;
    /* Resets top/left/right/bottom */
    transform: none;
    /* Removes any potential shifts */

    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 91, 229, 0.1);
    display: flex;
    flex-direction: column;
}

.modal.hidden {
    opacity: 0;
    transform: scale(0.95);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 0px solid var(--bg-color);
}

.modal__header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal__close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--accent-purple);
}

.modal__body {
    padding: 0;
}

/* --- Modal Form Grid Layout --- */
.modal__form {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

/* Full width elements in grid */
.modal__form>.form__group:nth-child(5),
/* Review logic: Name, Contact, Social, Role, Product(5) */
.modal__form .modal__actions {
    grid-column: 1 / -1;
}

/* Premium Select Style */
.modal__form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 44px;
    cursor: pointer;
}

/* Modal specific form overrides */
.modal__form .modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.modal__form .btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
}

.modal__cancel {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.modal__cancel:hover {
    background: var(--bg-soft);
    color: var(--text-primary);
}

/* Success View */
.modal__success {
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.modal__success svg {
    margin-bottom: 1.5rem;
}

.modal__success h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal__success p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hidden {
    display: none !important;
}

/* --- Responsive Modal --- */
@media (max-width: 768px) {
    .contact .grid--2-cols {
        gap: 2rem;
    }

    .modal__form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

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

/* =========================================
   NEW: PROBLEM SECTION
   ========================================= */
.problem {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.problem__card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.problem__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    opacity: 0;
    transition: var(--transition);
}

.problem__card:hover::before {
    opacity: 1;
}

.problem__card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px -10px rgba(0, 91, 229, 0.1);
}

.problem__icon {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-orange);
}

.problem__icon svg {
    transition: var(--transition);
}

.problem__card:hover .problem__icon svg {
    color: var(--accent-purple);
    filter: drop-shadow(0 0 6px rgba(248, 160, 51, 0.35));
}

.problem__card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-subtitle);
}

.problem__card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   NEW: PROCESS / MÉTODO SECTION
   ========================================= */
.process {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* Horizontal connecting line — glow */
.process__timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-purple));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 91, 229, 0.2), 0 0 24px rgba(0, 91, 229, 0.1);
    animation: lineGlow 3s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes lineGlow {
    0% {
        box-shadow: 0 0 8px rgba(0, 91, 229, 0.15), 0 0 16px rgba(0, 91, 229, 0.08);
    }

    100% {
        box-shadow: 0 0 16px rgba(0, 91, 229, 0.25), 0 0 32px rgba(0, 91, 229, 0.12);
    }
}

.process__step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
    z-index: 2;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgb(255, 255, 255), rgb(255, 255, 255) 70%, var(--bg-color));
    background-color: var(--bg-color);
    border: 2px solid var(--accent-purple);
    color: var(--accent-orange);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 91, 229, 0.12), 0 0 40px rgba(0, 91, 229, 0.04);
}

.process__step:hover .step__number {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue));
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.15);
}

/* Step icon */
.step__icon {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

.step__icon svg {
    opacity: 0.7;
    transition: var(--transition);
}

.process__step:hover .step__icon svg {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(0, 91, 229, 0.25));
}

.process__step h4 {
    font-size: 1rem;
    color: var(--text-subtitle);
    margin-bottom: 0.5rem;
}

.process__step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =========================================
   NEW: RESULTS SECTION
   ========================================= */
.results {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.results__card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}

.results__card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px -10px rgba(0, 91, 229, 0.1);
}

.results__icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.results__icon svg {
    transition: var(--transition);
}

.results__card:hover .results__icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 91, 229, 0.25));
    transform: scale(1.1);
}

.results__card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-subtitle);
}

.results__card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   NEW: FAQ SECTION
   ========================================= */
.faq {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.faq__list {
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.faq__item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item:hover {
    border-color: rgba(0, 91, 229, 0.2);
    box-shadow: 0 2px 12px rgba(0, 91, 229, 0.06);
}

.faq__item.is-open {
    border-color: var(--accent-purple);
    box-shadow: 0 4px 24px rgba(0, 91, 229, 0.1), 0 0 0 1px rgba(0, 91, 229, 0.08);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq__question:hover {
    background: rgba(0, 91, 229, 0.03);
}

.faq__question h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.faq__toggle {
    color: var(--accent-purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.faq__toggle svg {
    transition: transform 0.3s ease;
}

.faq__item.is-open .faq__toggle svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    padding: 0 1.5rem;
    opacity: 0;
}

.faq__item.is-open .faq__answer {
    max-height: 200px;
    padding: 0 1.5rem 1.35rem;
    opacity: 1;
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   NEW: PRICING SECTION
   ========================================= */
.pricing {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.pricing__grid {
    margin-top: 2rem;
    align-items: stretch;
}

.pricing__card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing__card a {
    color: var(--text-primary);
}

.pricing__card--featured .btn {
    color: #ffffff;
}

.pricing__card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 91, 229, 0.25);
    box-shadow: 0 15px 40px -10px rgba(0, 91, 229, 0.08);
}

/* Featured card */
.pricing__card--featured {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(0, 91, 229, 0.08), 0 0 0 1px rgba(0, 91, 229, 0.1);
    transform: scale(1.03);
}

.pricing__card--featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 0 40px rgba(0, 91, 229, 0.12), 0 0 0 1px rgba(0, 91, 229, 0.15);
}

.pricing__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing__name {
    font-size: 1.25rem;
    color: var(--text-subtitle);
    margin-bottom: 0.75rem;
    text-align: center;
}

.pricing__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.pricing__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0, 91, 229, 0.06);
}

.pricing__list li svg {
    color: var(--accent-purple);
    flex-shrink: 0;
}

.pricing__cta {
    align-self: center;
    margin-top: auto;
}

/* =========================================
   NEW: COMPARE SECTION
   ========================================= */
.compare {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.compare__grid {
    margin-top: 2rem;
    align-items: stretch;
}

.compare__card {
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.compare__card:hover {
    transform: translateY(-4px);
}

/* Compare header — clean block */
.compare__header {
    margin-bottom: 1rem;
}

/* Body: list on left, decorative icon on right */
.compare__body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compare__body .compare__list {
    flex: 1;
    min-width: 0;
}

/* Decorative side icon — right of list, vertically centered */
.compare__side-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 1;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.compare__card:hover .compare__side-icon {
    opacity: 1;
}

.compare__side-icon--negative svg {
    color: rgba(239, 68, 68, 0.9);
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.15));
    width: 85px;
    height: 85px;
    position: absolute;
    right: 85px;
}

.compare__side-icon--positive svg {
    color: var(--accent-purple);
    filter: drop-shadow(0 0 10px rgba(0, 91, 229, 0.12));
    width: 85px;
    height: 85px;
    position: absolute;
    right: 85px;
}

/* Tagline under heading */
.compare__tagline {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0.35rem 0 0;
    font-weight: 400;
}

.compare__tagline--negative {
    font-weight: bold;
    color: rgba(239, 68, 68, 0.45);
}

.compare__tagline--positive {
    font-weight: bold;
    color: var(--accent-blue);
}

/* Negative side */
.compare__card--negative {
    border-color: rgba(239, 68, 68, 0.15);
}

.compare__card--negative:hover {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.08);
}

/* Positive side */
.compare__card--positive {
    border-color: rgba(0, 91, 229, 0.25);
    box-shadow: 0 0 20px rgba(0, 91, 229, 0.06);
}

.compare__card--positive:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px -10px rgba(0, 91, 229, 0.1);
}

.compare__heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.compare__heading--negative {
    color: rgba(239, 68, 68, 0.8);
}

.compare__heading--negative svg {
    color: rgba(239, 68, 68, 0.7);
}

.compare__heading--positive {
    color: var(--accent-glow);
}

.compare__heading--positive svg {
    color: var(--accent-purple);
}

.compare__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.compare__card--negative .compare__list li svg {
    color: rgba(239, 68, 68, 0.6);
    flex-shrink: 0;
}

.compare__card--positive .compare__list li svg {
    color: var(--accent-purple);
    flex-shrink: 0;
}

/* =========================================
   CAROUSEL CARD ENHANCEMENTS
   ========================================= */
/* Centered icon block between description and extra */
.carousel-card__icon-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0;
    pointer-events: none;
}

/* Card icon */
.carousel-card__icon {
    color: var(--accent-glow);
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(0, 91, 229, 0.15));
}

/* Extra result paragraph */
.carousel-card__extra {
    font-size: 0.8rem;
    color: var(--accent-orange, #f8a033);
    line-height: 1.5;
    margin: 0 0 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Icon row replacing bullets */
.carousel__icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem 0 1rem;
    margin-top: 1.4rem;
    margin-bottom: 1.25rem;
    gap: 2.2rem;
    align-items: center;
}

.carousel__iconItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    justify-content: center;
}

.carousel__iconItem svg {
    color: var(--accent-orange);
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 91, 229, 0.12));
    width: 34px;
    height: 34px;
    transform: translateY(2px);
}

.carousel-item.active .carousel__iconItem svg {
    opacity: 0.9;
}

.carousel__iconItem span {
    font-size: 0.68rem;
    font-weight: bold;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
    margin-top: 0.15rem;
}

/* =========================================
   NEW: URGENCY SECTION
   ========================================= */
.urgency {
    padding: var(--section-py) 0;
    background: var(--bg-soft);
}

.urgency__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.urgency__counter {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 2.5rem;
    border: 2px solid var(--accent-purple);
    border-radius: 60px;
    background: radial-gradient(circle at center, rgba(0, 91, 229, 0.06), transparent 70%);
    color: var(--text-subtitle);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-display);
    margin: 2rem 0 1.5rem;
    box-shadow: 0 0 30px rgba(0, 91, 229, 0.12), 0 0 60px rgba(0, 91, 229, 0.04);
    animation: lineGlow 3s ease-in-out infinite alternate;
}

.urgency__counter svg {
    color: var(--accent-purple);
}

.urgency__cta {
    font-size: 1rem;
}

/* =========================================
   NEW: AUTHORITY SECTION
   ========================================= */
.authority {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.authority__grid {
    margin-top: 2rem;
    align-items: center;
    gap: 3rem;
}

.authority__image {
    display: flex;
    justify-content: center;
}

.authority__img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.authority__img svg {
    color: rgba(0, 91, 229, 0.3);
}

.authority__placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.authority__content {
    display: flex;
    flex-direction: column;
}

.authority__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.authority__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.7rem 0;
    line-height: 1.5;
}

.authority__list li svg {
    color: var(--accent-purple);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.authority__content a {
    color: var(--text-primary);
}

/* Premium Spacing Overrides */
.pricing,
.urgency,
.authority {
    padding-top: 140px;
    padding-bottom: 140px;
}

/* =========================================
   10. RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    :root {
        --section-py: var(--section-py-mobile);
    }

    /* Reset premium spacing for mobile */
    .pricing,
    .urgency,
    .authority {
        padding-top: var(--section-py-mobile);
        padding-bottom: var(--section-py-mobile);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .grid--3-cols,
    .grid--4-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: var(--section-py-mobile) 0;
    }

    .carousel-controls {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .header__container {
        justify-content: center;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 20px;
    }

    .header__cta {
        display: none;
    }

    .grid--2-cols,
    .grid--3-cols {
        grid-template-columns: 1fr;
    }

    /* ─── METRICS — 2 cards por fila en móvil ─── */
    .grid--4-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .metric__card {
        padding: 1rem;
        border-radius: 16px;
    }

    .metric__icon {
        margin-bottom: 0.5rem;
    }

    .metric__icon svg {
        width: 36px;
        height: 36px;
    }

    .metric__value {
        font-size: 2rem;
        line-height: 1;
    }

    .metric__label {
        font-size: 0.85rem;
    }

    .metric__desc {
        font-size: 0.8rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 32px;
    }

    /* ─── CAROUSEL — card sizing, dots, arrows ─── */
    #carousel {
        height: 560px;
        padding-bottom: 3rem;
    }

    .carousel-item {
        width: min(82vw, 340px);
        max-width: 340px;
        height: auto;
        min-height: 480px;
        padding: 1.25rem;
    }

    .carousel-item h3 {
        font-size: 1.15rem;
    }

    .carousel-item p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .carousel__icons {
        gap: 1.1rem;
        margin-top: 1rem;
    }

    .carousel__iconItem svg {
        width: 24px;
        height: 24px;
    }

    .carousel__iconItem span {
        font-size: 0.55rem;
    }

    .carousel-card__extra {
        font-size: 0.75rem;
    }

    /* Dots: más arriba con margen */
    .carousel-indicators {
        bottom: 0.5rem;
        gap: 0.7rem;
    }

    /* Arrows: centrados verticalmente, visibles */
    .carousel-controls {
        top: 45%;
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* ─── COMPARE — spacing + icono ─── */
    .compare__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .compare__card {
        padding: 1.25rem;
        position: relative;
        overflow: hidden;
    }

    .compare__header {
        margin-bottom: 0.75rem;
    }

    .compare__heading {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }

    .compare__tagline {
        font-size: 0.78rem;
        margin-bottom: 0.5rem;
    }

    .compare__body {
        flex-direction: row;
        align-items: flex-start;
    }

    .compare__list li {
        font-size: 0.82rem;
        padding: 0.35rem 0;
    }

    /* Side icon: scale down, tuck bottom-right */
    .compare__side-icon {
        display: flex;
        position: absolute;
        right: 0.75rem;
        bottom: 0.75rem;
        opacity: 0.12;
    }

    .compare__side-icon--negative svg,
    .compare__side-icon--positive svg {
        width: 52px;
        height: 52px;
        position: static;
        right: auto;
    }

    .contact__card {
        padding: 1rem;
    }

    .modal {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .modal__body {
        padding: 1.5rem;
    }

    .process__timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-left: 2.5rem;
    }

    .process__timeline::before {
        top: 0;
        bottom: 0;
        left: 32px;
        right: auto;
        width: 3px;
        height: auto;
        display: block;
    }

    .process__step {
        text-align: left;
    }

    .step__icon {
        justify-content: flex-start;
    }

    .faq__question {
        padding: 1rem 1.25rem;
    }

    .faq__question h4 {
        font-size: 0.9rem;
    }

    /* Pricing responsive */
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing__card--featured {
        transform: none;
        order: -1;
    }

    .pricing__card--featured:hover {
        transform: translateY(-6px);
    }

    /* Urgency responsive */
    .urgency__counter {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    /* Authority responsive */
    .authority__grid {
        grid-template-columns: 1fr;
    }

    .authority__placeholder {
        max-width: 280px;
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .process__timeline {
        padding-left: 2rem;
    }

    .process__timeline::before {
        left: 24px;
    }
}

/* =========================================
   SECTION CTAs
   ========================================= */
.section__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.section__actions .btn {
    min-width: 220px;
    text-align: center;
}

@media (max-width: 768px) {
    .section__actions {
        flex-direction: column;
        gap: 14px;
    }

    .section__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}