/* Jvspin — стили в духе jvspin.com */
:root {
    --bg-dark: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --gold: #d4af37;
    --gold-light: #e8c547;
    --gold-dark: #b8962e;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #888888;
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --link: var(--gold-light);
    --link-visited: #d4b84a;
    --link-hover: #fff3c4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    padding: 12px 20px;
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    z-index: 10000;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 20px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Inline links in copy — high contrast on dark bg (override browser default blue/purple) */
a:any-link {
    color: var(--link);
    text-decoration: underline;
    text-underline-offset: 0.12em;
    text-decoration-color: rgba(232, 197, 71, 0.5);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:visited {
    color: var(--link-visited);
}

a:hover,
a:focus-visible {
    color: var(--link-hover);
    text-decoration-color: rgba(232, 197, 71, 0.9);
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

a.btn,
a.btn:focus-visible,
a.btn--primary,
a.btn--primary:visited,
a.btn--outline,
a.btn--outline:visited {
    text-decoration: none;
}

a.btn--primary,
a.btn--primary:visited {
    color: var(--bg-dark);
}

a.btn--outline,
a.btn--outline:visited {
    color: var(--gold);
}

a.live__card,
a.live__card:visited {
    color: inherit;
    text-decoration: none;
}

a.skip-link,
a.skip-link:visited {
    color: var(--bg-dark);
    text-decoration: none;
}

a.header__logo,
a.header__logo:visited {
    color: var(--gold);
    text-decoration: none;
}

a.header__link,
a.header__link:visited {
    color: var(--text-gray);
    text-decoration: none;
}

a.header__link--active,
a.header__link--active:visited,
a.header__sublink--active,
a.header__sublink--active:visited {
    color: var(--gold);
}

a.header__sublink,
a.header__sublink:visited {
    color: var(--text-gray);
    text-decoration: none;
}

a.footer__link,
a.footer__link:visited,
a.footer__crosslink,
a.footer__crosslink:visited {
    color: var(--text-gray);
    text-decoration: none;
}

a.footer__social-link,
a.footer__social-link:visited {
    color: var(--text-gray);
    text-decoration: none;
}

a.footer__logo,
a.footer__logo:visited {
    color: var(--gold);
    text-decoration: none;
}

a.lang-switcher__item,
a.lang-switcher__item:visited {
    color: var(--text-gray);
    text-decoration: none;
}

a.lang-switcher__item--active,
a.lang-switcher__item--active:visited {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    transition: background 0.3s;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    text-decoration: none;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.header__logo:hover {
    color: var(--gold-light);
}

.header__nav {
    display: none;
}

@media (min-width: 768px) {
    .header__nav {
        display: block;
    }
}

.header__menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header__link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.header__link:hover,
.header__link--active {
    color: var(--gold);
}

.header__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.header__link--btn {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

.header__link--has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header__submenu-arrow {
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.header__submenu-wrap {
    position: relative;
}

.header__submenu-wrap:hover .header__submenu,
.header__submenu-wrap.header__submenu--open .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__submenu-wrap:hover .header__submenu-arrow,
.header__submenu-wrap.header__submenu--open .header__submenu-arrow {
    transform: rotate(180deg);
}

.header__submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1000;
}

.header__submenu li {
    border: none;
}

.header__sublink {
    display: block;
    padding: 10px 16px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, background 0.2s;
}

.header__sublink:hover,
.header__sublink--active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.header__actions {
    display: none;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .header__actions {
        display: flex;
    }
}

/* Lang switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: var(--text-white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-switcher__btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

.lang-switcher__flag {
    width: 24px;
    height: 18px;
    object-fit: contain;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-switcher__dropdown .lang-switcher__flag {
    width: 20px;
    height: 15px;
}

.lang-switcher__arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.lang-switcher--open .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 140px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1001;
}

.lang-switcher--open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher:focus-within .lang-switcher__dropdown,
.lang-switcher:hover .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher:focus-within .lang-switcher__arrow,
.lang-switcher:hover .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lang-switcher__item:last-child {
    border-bottom: none;
}

.lang-switcher__item:hover {
    background: var(--bg-card-hover);
    color: var(--gold);
}

.lang-switcher__item--active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 768px) {
    .header__burger {
        display: none;
    }
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

.header__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header__burger--active span:nth-child(2) {
    opacity: 0;
}
.header__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
    .header__nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        padding: 80px 30px 30px;
        transition: right 0.3s;
        border-left: 1px solid var(--border-gold);
        display: block;
    }
    .header__nav--open {
        right: 0;
    }
    .header__menu {
        flex-direction: column;
        gap: 0;
    }
    .header__menu li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .header__link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    .header__submenu-wrap {
        position: static;
    }
    .header__submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 8px 0;
        margin-top: 4px;
    }
    .header__submenu li {
        border-bottom: none;
        padding-left: 0;
    }
    .header__sublink {
        padding: 10px 0 10px 20px;
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--outline {
    color: var(--gold);
    border-color: var(--gold);
    background: transparent;
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn--lg {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.page--home .hero {
    min-height: 80vh;
    padding: 110px 20px 70px;
}

.page--inner .hero {
    min-height: auto;
    padding: 90px 20px 50px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 50%, #0a0a1a 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
}

.hero__container--wide {
    max-width: 920px;
}

.hero__badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-white);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.32) 0%, rgba(212, 175, 55, 0.12) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

@media (min-width: 520px) {
    .hero__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 720px;
    }
}

.hero__stat {
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.hero__stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--gold);
    line-height: 1.2;
}

.hero__stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--text-gray);
    line-height: 1.3;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hero__micro {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(180, 180, 190, 0.95);
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 4.8vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero__cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

/* Franja confianza bajo hero */
.trust-strip {
    padding: 2.5rem 0;
    background: rgba(12, 12, 14, 0.97);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-strip__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 10px;
    background: rgba(20, 20, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-strip__icon {
    font-size: 1.75rem;
    color: var(--gold);
    opacity: 0.95;
}

.trust-strip__text {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.35;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Logos / chips de pago */
.payment-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin: 1rem auto 1.75rem;
    max-width: 720px;
}

.payment-chips__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.4rem 0.85rem;
    font-size: 1.65rem;
    color: rgba(230, 230, 235, 0.88);
    background: rgba(20, 20, 22, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
}

.payment-chips__item--text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.payment-chips__item .fab {
    vertical-align: middle;
}

/* Ver también */
.see-also {
    background: var(--bg-card);
}

.see-also__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (min-width: 600px) {
    .see-also__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1000px) {
    .see-also__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.see-also__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.35rem 1.4rem 1.5rem;
    border-radius: 10px;
    background: rgba(20, 20, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.see-also__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.see-also__card-title a {
    color: var(--gold);
    text-decoration: none;
}

.see-also__card-title a:hover {
    text-decoration: underline;
}

.see-also__card-text {
    flex: 1;
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.55;
    text-align: left;
}

.see-also__card .btn {
    align-self: flex-start;
}

.see-also .section-text {
    margin-bottom: 0;
}

/* CTA final */
.cta-final {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0c 100%);
}

.cta-final__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.75rem;
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(145deg, rgba(26, 18, 12, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.cta-final__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 1rem;
}

.cta-final__lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.cta-final__micro {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(160, 160, 170, 0.95);
    line-height: 1.5;
}

/* Opiniones (bloque testimonios, texto orientativo) */
.reviews-home {
    padding: 80px 0;
    background: linear-gradient(180deg, #161616 0%, var(--bg-card) 40%);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.reviews-home .section-title {
    margin-bottom: 1rem;
}

.reviews-home__intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.reviews-home__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reviews-home__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.reviews-home__card {
    margin: 0;
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 10px;
    background: rgba(20, 20, 22, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reviews-home__stars {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.reviews-home__quote {
    margin: 0;
    flex: 1;
}

.reviews-home__quote p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
    font-style: italic;
    text-align: left;
}

.reviews-home__meta {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.82rem;
    font-weight: 600;
    font-style: normal;
    color: var(--text-white);
    text-align: right;
}

.reviews-home__footer {
    max-width: 640px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 20px;
    color: var(--gold);
    text-align: center;
}

.section-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-text:last-of-type {
    margin-bottom: 40px;
}

/* About */
.about {
    background: var(--bg-card);
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
}

.about__content--wide {
    max-width: 1140px;
}

/* Grid de bloques de texto: 3 cols → 2 → 1 */
.grid2-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.grid2-3--mt-1 {
    margin-top: 1rem;
}

.grid2-3__block {
    background: rgba(20, 20, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1.25rem 1.35rem 1.35rem;
    text-align: left;
}

.grid2-3__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    line-height: 1.35;
}

.grid2-3__block .about__text,
.grid2-3__block .section-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.grid2-3__block .about__text:last-child,
.grid2-3__block .section-text:last-child {
    margin-bottom: 0;
}

.grid2-3__block .about__text + .about__text,
.grid2-3__block .section-text + .section-text {
    margin-top: 0.85rem;
}

@media (max-width: 1024px) {
    .grid2-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .grid2-3 {
        grid-template-columns: 1fr;
    }
}

/* Dos columnas en desktop (p. ej. Megaways + mesas RNG) */
@media (min-width: 641px) {
    .grid2-3.grid2-3--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about__text {
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
}

.about__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-weight: 600;
}

.about__icon {
    font-size: 1.5rem;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq--page {
    margin-top: 2rem;
}

.faq__item {
    margin-bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 10px;
    background: rgba(20, 20, 22, 0.65);
    overflow: hidden;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq__question {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
    text-align: left;
    user-select: none;
    font-family: inherit;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
}

.faq__question::after {
    content: '';
    flex-shrink: 0;
    width: 0.55em;
    height: 0.55em;
    margin-top: -0.2em;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

details[open] > .faq__question::after {
    transform: rotate(-135deg);
    margin-top: 0.12em;
}

.faq__question:focus {
    outline: none;
}

.faq__question:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.45);
}

.faq__answer {
    padding: 0 1.15rem 1.1rem;
    margin: 0;
    color: var(--text-gray);
    text-align: left;
    line-height: 1.65;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

details[open] .faq__answer {
    padding-top: 0.85rem;
}

details:not([open]) .faq__answer {
    padding: 0;
    border-top: none;
}

/* Slots */
.slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.slots__card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: all 0.3s;
}

.slots__card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.slots__card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
}

.slots__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    padding: 20px;
    text-align: center;
    color: var(--text-white);
}

/* Live */
.live {
    background: var(--bg-card);
}

.live__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.live__card {
    display: block;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.live__card:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
}

.live__icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.live__card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

/* Sports */
.sports__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.sports__badge {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    font-weight: 600;
    border-radius: 8px;
}

/* Bonuses */
.bonuses {
    background: var(--bg-card);
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonuses__card {
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.bonuses__card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.bonuses__icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.bonuses__card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.bonuses__card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-gold);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__crosslinks {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

.footer__crosslinks-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 0.35em;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer__crosslink {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__crosslink:hover {
    color: var(--gold);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gold);
    text-decoration: none;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--gold);
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    color: var(--text-gray);
    font-size: 1.3rem;
    transition: color 0.2s;
}

.footer__social-link:hover {
    color: var(--gold);
}

.footer__licenses {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer__age {
    padding: 4px 10px;
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 4px;
}

.footer__bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* Utilities */
.u-mt-1 {
    margin-top: 1rem;
}

.u-mt-1-5 {
    margin-top: 1.5rem;
}

.u-mt-2 {
    margin-top: 2rem;
}

.u-mt-2-5 {
    margin-top: 2.5rem;
}

.u-ml-0-5 {
    margin-left: 0.5rem;
}

.u-my-1-5 {
    margin: 1.5rem 0;
}

.u-list-text {
    list-style: none;
    margin: 0 auto 1.5rem;
    padding: 0;
    max-width: 720px;
    display: grid;
    gap: 0.45rem;
    justify-items: center;
    line-height: 1.9;
}

.u-list-text li {
    text-align: center;
}

.table-wrap {
    margin: 1.5rem auto;
    max-width: 880px;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.info-table th,
.info-table td {
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    text-align: left;
    vertical-align: top;
}

.info-table th {
    background: rgba(212, 175, 55, 0.08);
    font-weight: 600;
}

.u-fs-1-2 {
    font-size: 1.2rem;
}

.u-fs-1-1 {
    font-size: 1.1rem;
}

.u-m-0 {
    margin: 0;
}

.about__steps {
    list-style: decimal;
    margin: 1.5rem 0 1.5rem 1.5rem;
    line-height: 2;
}

/* FAQ página dedicada: lista antigua sustituida por .faq (acordeón) */

/* Proveedores: grid 3 columnas, listas en 2 columnas dentro de cada bloque */
.providers-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0 0;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .providers-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.providers-block {
    background: rgba(20, 20, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1.25rem 1.35rem 1.35rem;
}

.providers-block__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    text-align: left;
    line-height: 1.35;
}

.provider-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 1rem;
    font-size: 0.92rem;
    line-height: 1.45;
}

.provider-list li {
    margin: 0;
    padding: 0.25rem 0;
    text-align: left;
    color: var(--text-gray);
}

@media (max-width: 480px) {
    .provider-list {
        grid-template-columns: 1fr;
    }
}
