/* ===================================================
   STRENDUS MEXICO — styles.css
   Brand: #4BFF00 (neon green), #080000 (black), #FFFFFF
   =================================================== */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #4BFF00;
    --green-dark: #33CC00;
    --green-glow: rgba(75, 255, 0, 0.25);
    --black: #080000;
    --navy: #0A0A0A;
    --navy-2: #111111;
    --navy-3: #181818;
    --border: rgba(75, 255, 0, 0.15);
    --text: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-dim: rgba(255, 255, 255, 0.4);
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    --glow: 0 0 20px rgba(75, 255, 0, 0.4);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- SKIP LINK --- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green);
    color: var(--black);
    padding: 8px 16px;
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 6px 0;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 0, 0, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-link img {
    height: 44px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
    transition: all .2s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    background: rgba(75, 255, 0, 0.08);
}

.main-nav .live-tag {
    color: var(--green);
    border: 1px solid var(--green);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(75, 255, 0, .4)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(75, 255, 0, 0)
    }
}

.header-cta {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all .22s;
}

.btn-primary {
    background: var(--green);
    color: var(--black);
}

.btn-primary:hover {
    background: #5eff12;
    box-shadow: var(--glow);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: rgba(75, 255, 0, 0.1);
}

.btn-apk {
    background: #1a1a1a;
    color: var(--green);
    border: 1px solid var(--border);
}

.btn-apk:hover {
    background: #222;
    border-color: var(--green);
}

.btn-sm {
    padding: 8px 18px;
    font-size: .85rem;
}

.btn-md {
    padding: 12px 28px;
    font-size: .95rem;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- MOBILE NAV --- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 0, 0, 0.98);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all .2s;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    color: var(--green);
    background: rgba(75, 255, 0, 0.06);
    border-left-color: var(--green);
}

.mobile-nav-cta {
    background: var(--green) !important;
    color: var(--black) !important;
    font-weight: 800 !important;
    text-align: center;
    margin-top: 12px;
    border-radius: 10px !important;
    border-left: none !important;
}

/* --- HERO SECTION --- */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
}

.page-hero[style*="background-image"]::before {
    background: linear-gradient(135deg, rgba(8, 0, 0, .92) 0%, rgba(8, 0, 0, .7) 50%, rgba(0, 30, 0, .6) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(75, 255, 0, 0.12);
    border: 1px solid rgba(75, 255, 0, 0.3);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--green);
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1;
}

.hero-stat span {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- SECTIONS --- */
.section {
    padding: 72px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    background: rgba(75, 255, 0, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* --- CARDS GRID --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.card {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
}

.card:hover {
    border-color: rgba(75, 255, 0, 0.35);
    box-shadow: 0 6px 30px rgba(75, 255, 0, 0.08);
    transform: translateY(-3px);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(75, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* --- BONUS CARDS --- */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--navy-2) 0%, rgba(17, 17, 17, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.bonus-card:hover {
    border-color: rgba(75, 255, 0, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(75, 255, 0, 0.1);
}

.bonus-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-desc {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 18px;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--green);
    background: rgba(75, 255, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* --- TABLES --- */
.data-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table caption {
    caption-side: bottom;
    padding: 12px;
    font-size: .8rem;
    color: var(--text-dim);
    text-align: left;
}

.data-table th {
    background: rgba(75, 255, 0, 0.08);
    color: var(--green);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: .9rem;
    color: var(--text-muted);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(75, 255, 0, 0.03);
    color: var(--text);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

.badge-green {
    background: rgba(75, 255, 0, 0.12);
    color: var(--green);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
}

.badge-blue {
    background: rgba(64, 158, 255, 0.12);
    color: #409EFF;
}

/* --- CHART / BARS --- */
.chart-wrap {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.chart-title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bar-label {
    font-size: .85rem;
    font-weight: 600;
    min-width: 130px;
    color: var(--text-muted);
}

.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.2s ease;
    display: flex;
    align-items: center;
    padding-right: 8px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--black);
    justify-content: flex-end;
}

.bar-green {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.bar-gold {
    background: linear-gradient(90deg, #c9a100, #FFD700);
}

.bar-blue {
    background: linear-gradient(90deg, #2270cc, #409EFF);
}

/* --- BREADCRUMB --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--green);
}

.breadcrumb-sep {
    color: var(--text-dim);
}

/* --- SEO CONTENT --- */
.seo-content {
    padding: 64px 0 56px;
    border-top: 1px solid var(--border);
    background: var(--navy);
}

.seo-article h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin: 36px 0 14px;
    border-left: 3px solid var(--green);
    padding-left: 14px;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin: 24px 0 10px;
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
    max-width: 840px;
}

.seo-article a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-article strong {
    color: var(--text);
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.seo-links a {
    padding: 8px 18px;
    background: rgba(75, 255, 0, 0.08);
    border: 1px solid rgba(75, 255, 0, 0.2);
    border-radius: 30px;
    font-size: .84rem;
    color: var(--green);
    text-decoration: none;
    transition: all .2s;
    font-weight: 500;
}

.seo-links a:hover {
    background: rgba(75, 255, 0, 0.18);
    border-color: var(--green);
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(75, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-text h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- STEPS --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: steps;
}

.step-item {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--green);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.step-item h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.step-item p {
    font-size: .87rem;
    color: var(--text-muted);
}

/* --- CTA BANNER --- */
.cta-banner {
    background: linear-gradient(135deg, rgba(75, 255, 0, 0.12) 0%, rgba(8, 0, 0, 0) 100%);
    border: 1px solid rgba(75, 255, 0, 0.25);
    border-radius: 16px;
    padding: 52px 40px;
    text-align: center;
    margin: 0 0 60px;
}

.cta-banner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-banner p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 28px;
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s;
}

.faq-question:hover {
    color: var(--green);
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--green);
    transition: transform .3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .86rem;
    margin-top: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(75, 255, 0, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: .8rem;
    transition: all .2s;
}

.social-btn:hover {
    background: rgba(75, 255, 0, 0.18);
    border-color: var(--green);
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.footer-bottom p {
    font-size: .83rem;
    color: var(--text-dim);
}

.footer-bottom a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom a:hover {
    color: var(--green);
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(75, 255, 0, 0.08);
    border: 1px solid rgba(75, 255, 0, 0.2);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}

/* --- AGE BANNER --- */
.age-banner {
    background: rgba(75, 255, 0, 0.06);
    border-top: 1px solid rgba(75, 255, 0, 0.15);
    padding: 12px 20px;
    text-align: center;
    font-size: .78rem;
    color: var(--text-dim);
}

/* --- ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .page-hero {
        padding: 56px 0;
        min-height: auto;
    }

    .section {
        padding: 52px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-stat-row {
        gap: 20px;
    }

    .cta-banner {
        padding: 36px 20px;
    }
}

@media (max-width: 520px) {

    .cards-grid,
    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}