/* ============================================================
   MARKETING ACCESS SCORECARD – Main Stylesheet
   Colors: teal #3AAFA9 | coral/orange #E8572A | dark #1A3C4A
============================================================ */

:root {
    --color-teal:     #3AAFA9;
    --color-teal-dk:  #2D8E89;
    --color-coral:    #E8572A;
    --color-dark:     #1A3C4A;
    --color-mid:      #3D5A66;
    --color-muted:    #6B8A95;
    --color-bg:       #EFF6F9;
    --color-bg-grad1: #D8EAF0;
    --color-white:    #FFFFFF;
    --color-border:   #D1E0E8;
    --font-display:   'DM Serif Display', Georgia, serif;
    --font-body:      'Manrope', system-ui, sans-serif;
    --max-w:          1200px;
    --radius:         12px;
    --transition:     0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-dark); background: var(--color-white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT
============================================================ */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.container--narrow { max-width: 760px; text-align: center; }

/* ============================================================
   SHARED IMAGE STYLES + EFFECTS
============================================================ */
.rounded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Zoom suave al hover */
.better-eval-img-wrap,
.decades-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26,60,74,0.15);
    transition: box-shadow 0.4s ease;
}
.better-eval-img-wrap:hover,
.decades-img-wrap:hover {
    box-shadow: 0 20px 56px rgba(26,60,74,0.22);
}
.better-eval-img-wrap:hover .rounded-img,
.decades-img-wrap:hover .rounded-img {
    transform: scale(1.04);
}

/* Imagen top de auditing */

.auditing-grid {
    align-items: stretch;
}

.auditing-right {
    display: flex;
    align-items: center;
}


.auditing-img-top {
    width: 100%;
	height: 100%;
	min-height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(26,60,74,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}






.auditing-img-top:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 56px rgba(26,60,74,0.22);
}

/* Hero banner parallax feel */
.hero-image-banner {
    width: 100%;
    height: clamp(260px, 35vw, 480px);
    overflow: hidden;
    position: relative;
}
.hero-image-banner img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.6s ease;
}
.hero-image-banner:hover img {
    transform: scale(1.03);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(26,60,74,0.08); }
.nav-container {
    max-width: var(--max-w); margin: 0 auto; padding: 0 5%;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.9rem; font-weight: 600; color: var(--color-mid); transition: color var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--color-teal); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.nav-link:hover, .nav-link.active { color: var(--color-teal); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--color-muted); }
.lang-switcher a { color: var(--color-muted); transition: color var(--transition); }
.lang-switcher a:hover, .lang-switcher a.active-lang { color: var(--color-teal); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-dark); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   BUTTONS
============================================================ */
.btn { display: inline-block; padding: 14px 36px; border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; border: none; transition: all var(--transition); text-align: center; }
.btn-teal { background: var(--color-teal); color: var(--color-white); }
.btn-teal:hover { background: var(--color-teal-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,175,169,0.35); }
.btn--full { width: 100%; }

/* ============================================================
   HERO
============================================================ */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 120px 5% 80px;
    background: linear-gradient(160deg, var(--color-bg-grad1) 0%, var(--color-bg) 100%);
    text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.eyebrow { font-size: 1rem; font-weight: 700; color: var(--color-coral); letter-spacing: 0.04em; margin-bottom: 20px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.15; color: var(--color-dark); margin-bottom: 24px; }
.hero-sub { font-size: 1.05rem; color: var(--color-muted); max-width: 680px; margin: 0 auto 40px; line-height: 1.7; }

/* ============================================================
   PILLARS
============================================================ */
.pillars { padding: 80px 5%; background: var(--color-white); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillar-card { display: flex; flex-direction: column; gap: 14px; opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.pillar-card.visible { opacity: 1; transform: translateY(0); }
.pillar-card:nth-child(2) { transition-delay: 0.1s; }
.pillar-card:nth-child(3) { transition-delay: 0.2s; }
.pillar-icon { width: 48px; height: 48px; transition: transform 0.3s ease; }
.pillar-card:hover .pillar-icon { transform: scale(1.15) rotate(-5deg); }
.pillar-card h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 800; color: var(--color-dark); }
.pillar-card p { font-size: 0.93rem; color: var(--color-mid); line-height: 1.65; }

/* ============================================================
   SECTION LABELS & TYPOGRAPHY
============================================================ */
.section-label { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-coral); margin-bottom: 14px; }
.section-intro { font-size: 2.00rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-coral); margin-bottom: 14px; }
.section-body { font-size: 1rem; color: var(--color-mid); line-height: 1.75; max-width: 680px; margin: 0 auto; }

/* ============================================================
   BETTER EVALUATIONS
============================================================ */
.better-eval {
    padding: 90px 5%;
    background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-bg-grad1) 100%);
}
.better-eval-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.better-eval-img-wrap { height: 420px; }
.better-eval-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

/* ============================================================
   AUDITING TOOL
============================================================ */
.auditing-tool { padding: 90px 5%; background: var(--color-white); }
.auditing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.auditing-left h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--color-dark); margin-bottom: 16px; line-height: 1.25; }
.channel-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.channel-list li { display: flex; align-items: center; gap: 12px; font-size: 0.93rem; color: var(--color-mid); font-weight: 500; transition: color 0.2s ease; }
.channel-list li:hover { color: var(--color-teal); }
.channel-list svg { width: 20px; height: 20px; flex-shrink: 0; }
.auditing-right { display: flex; flex-direction: column; gap: 24px; }
.decades-card { background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-grad1) 100%); border-radius: var(--radius); padding: 36px; border: 1px solid var(--color-border); transition: box-shadow 0.3s ease; }
.decades-card:hover { box-shadow: 0 8px 32px rgba(26,60,74,0.1); }
.decades-card h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--color-dark); margin: 12px 0 16px; line-height: 1.3; }
.decades-card p { font-size: 0.93rem; color: var(--color-mid); line-height: 1.7; }

/* ============================================================
   DECADES SECTION
============================================================ */
.decades-section {
    padding: 90px 5%;
    background: linear-gradient(160deg, var(--color-bg-grad1) 0%, var(--color-bg) 100%);
}
.decades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.decades-img-wrap { height: 460px; }
.decades-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

/* ============================================================
   FAQs
============================================================ */
.faqs { padding: 90px 5%; background: var(--color-white); }
.faqs h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--color-dark); margin-bottom: 20px; line-height: 1.25; }
.faq-list { margin-top: 40px; text-align: left; display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; background: var(--color-white); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 28px; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-dark); text-align: left; transition: background var(--transition); }
.faq-question:hover { background: var(--color-bg); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-teal); transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 28px 20px; font-size: 0.93rem; color: var(--color-mid); line-height: 1.7; }

/* ============================================================
   WAITLIST
============================================================ */
.waitlist { padding: 90px 5%; background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-bg-grad1) 100%); }
.waitlist-card { max-width: 600px; margin: 0 auto; background: var(--color-white); border-radius: 20px; padding: 56px 48px; text-align: center; box-shadow: 0 4px 40px rgba(26,60,74,0.08); border: 1px solid var(--color-border); opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.waitlist-card.visible { opacity: 1; transform: translateY(0); }
.waitlist-card h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--color-dark); margin-bottom: 20px; line-height: 1.25; }
.waitlist-icon { width: 56px; height: 56px; margin: 0 auto 20px; }
.waitlist-card .section-body { margin-bottom: 32px; }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { padding: 90px 5%; background: var(--color-white); }
.contact-section h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--color-dark); margin-bottom: 40px; line-height: 1.25; text-align: center; }

/* ============================================================
   FORMS
============================================================ */
.waitlist-form, .contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.87rem; font-weight: 600; color: var(--color-dark); }
.required { color: var(--color-coral); }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--color-border); border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; color: var(--color-dark); background: var(--color-white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-teal); box-shadow: 0 0 0 3px rgba(58,175,169,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--color-mid); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--color-teal); cursor: pointer; }
.error-msg { font-size: 0.8rem; color: var(--color-coral); font-weight: 500; }
.alert { padding: 14px 20px; border-radius: 8px; font-size: 0.92rem; font-weight: 500; margin-bottom: 8px; }
.alert-success { background: rgba(58,175,169,0.1); color: var(--color-teal-dk); border: 1px solid rgba(58,175,169,0.3); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--color-dark); color: rgba(255,255,255,0.75); padding: 56px 5% 40px; }
.footer-container { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; align-items: start; }
.footer-logo-img {
    height: 48px;
    width: auto;
    filter: none;
    margin-bottom: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 8px; }
.footer-nav, .footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-social a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-nav a:hover, .footer-social a:hover { color: var(--color-teal); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; }
.footer-contact strong { color: rgba(255,255,255,0.9); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-contact a { color: var(--color-teal); word-break: break-all; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
    .pillars-grid { grid-template-columns: 1fr; gap: 32px; }
    .better-eval-grid, .auditing-grid, .decades-grid { grid-template-columns: 1fr; gap: 32px; }
    .better-eval-img-wrap, .decades-img-wrap { height: 280px; }
    .auditing-img-top { height: 240px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .better-eval-grid, .auditing-grid, .decades-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .better-eval-img-wrap { height: 260px !important; }
    .decades-img-wrap { height: 240px !important; }
    .auditing-img-top { height: 220px !important; }
    .hero-headline { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; word-break: break-word; }
    .section-body { font-size: 0.95rem !important; line-height: 1.65 !important; overflow-wrap: break-word; }
    .better-eval-text h2, .auditing-left h2, .decades-text h2 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
    .pillars-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .waitlist-card { padding: 32px 20px !important; }
    .footer-container { grid-template-columns: 1fr !important; gap: 24px !important; }
    /* Disable hover zoom on touch devices */
    .better-eval-img-wrap:hover .rounded-img,
    .decades-img-wrap:hover .rounded-img,
    .auditing-img-top:hover,
    .hero-image-banner:hover img { transform: none; }
}

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--color-white); flex-direction: column; padding: 24px 5%; gap: 0; border-top: 1px solid var(--color-border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-110%); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none; }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-links li { border-bottom: 1px solid var(--color-border); width: 100%; }
    .nav-links li:last-child { border-bottom: none; }
    .nav-link { display: block; padding: 14px 0; }
    .lang-switcher { padding: 14px 0; }
    .hero { padding: 100px 5% 60px; }
    .waitlist-card { padding: 36px 24px; }
    .footer-container { grid-template-columns: 1fr; }
}

/* ============================================================
   1. SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.better-eval-img-wrap.reveal,
.decades-img-wrap.reveal {
    transform: translateX(-40px);
    opacity: 0;
}
.better-eval-text.reveal,
.decades-text.reveal {
    transform: translateX(40px);
    opacity: 0;
}
.better-eval-img-wrap.revealed,
.decades-img-wrap.revealed,
.better-eval-text.revealed,
.decades-text.revealed {
    transform: translateX(0);
    opacity: 1;
}
.auditing-left.reveal  { transform: translateX(-40px); }
.auditing-right.reveal { transform: translateX(40px); }
.auditing-left.revealed,
.auditing-right.revealed { transform: translateX(0); opacity: 1; }

/* ============================================================
   2. STATS SECTION
============================================================ */
.stats-section {
    padding: 72px 5%;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(58,175,169,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(232,87,42,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.stat-item:hover {
    background: rgba(58,175,169,0.08);
    border-color: rgba(58,175,169,0.3);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-teal);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ============================================================
   6. CUSTOM CURSOR
============================================================ */
.custom-cursor {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-teal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    margin-left: -18px;
    margin-top: -18px;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    mix-blend-mode: normal;
}
.custom-cursor.cursor-hover {
    width: 56px;
    height: 56px;
    margin-left: -28px;
    margin-top: -28px;
    background: rgba(58,175,169,0.12);
    border-color: var(--color-coral);
}
.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-teal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    margin-left: -3px;
    margin-top: -3px;
    transition: background 0.2s ease;
}

/* ============================================================
   7. SCORECARD PREVIEW SECTION
============================================================ */
.scorecard-section {
    padding: 90px 5%;
    background: var(--color-white);
}
.scorecard-section .section-header {
    text-align: center;
    margin-bottom: 56px;
}
.scorecard-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.scorecard-section .section-header p {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.scorecard-preview {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-grad1) 100%);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 48px rgba(26,60,74,0.08);
}
.scorecard-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}
.scorecard-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-dark);
}
.scorecard-brand-name span {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-top: 2px;
}
.scorecard-total {
    text-align: right;
}
.scorecard-total-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--color-teal);
    line-height: 1;
}
.scorecard-total-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.score-rows { display: flex; flex-direction: column; gap: 18px; }
.score-row { display: flex; flex-direction: column; gap: 8px; }
.score-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.score-row-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
}
.score-row-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-mid);
}
.score-bar-track {
    height: 10px;
    background: rgba(26,60,74,0.08);
    border-radius: 99px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    border-radius: 99px;
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.score-bar-fill.excellent { background: linear-gradient(90deg, var(--color-teal) 0%, #2DD4BF 100%); }
.score-bar-fill.good      { background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%); }
.score-bar-fill.average   { background: linear-gradient(90deg, var(--color-coral) 0%, #F97316 100%); }
.score-bar-fill.poor      { background: linear-gradient(90deg, #EF4444 0%, #F87171 100%); }
.scorecard-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-muted);
}

/* ============================================================
   8. FLOATING LANGUAGE SWITCHER
============================================================ */
.float-lang {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    background: var(--color-dark);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(26,60,74,0.3);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.float-lang--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.float-lang a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.float-lang a:hover,
.float-lang a.active-lang {
    color: var(--color-teal);
}
.float-lang span {
    color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .scorecard-preview { padding: 28px 20px; }
    .scorecard-total-num { font-size: 2rem; }
    .float-lang { bottom: 20px; right: 20px; }
    .custom-cursor, .custom-cursor-dot { display: none; }
}
.footer-logo-img {
    height: 48px !important;
    width: auto !important;
    filter: none !important;
    margin-bottom: 12px !important;
}


/* ============================================================
   HOME PAGE ADDITIONS & OVERRIDES
============================================================ */

/* Decades section — fondo blanco como producción */
.decades-section {
    padding: 90px 5%;
    background: var(--color-white) !important;
}
.decades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
/* Texto a la izquierda, imagen a la derecha */
.decades-text { order: 1; }
.decades-img-wrap { order: 2; height: 460px; }
.decades-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

/* Auditing — gap note */
.auditing-gap-note {
    font-size: 0.97rem !important;
    color: var(--color-mid);
    font-style: italic;
    border-left: 3px solid var(--color-teal);
    padding-left: 16px;
    line-height: 1.65 !important;
}

/* ── HOME CTA SECTION — reemplaza contact ─────────────────── */



.home-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: .5rem;
}



.home-cta-section {
    position: relative;
    background: var(--color-dark);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.home-cta-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.home-cta-content { max-width: 580px; }
.home-cta-eyebrow {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.home-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.home-cta-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}
.home-cta-btn {
    font-size: 1rem !important;
    padding: 16px 40px !important;
}

/* Geometric shapes decoration */
.home-cta-shapes {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    pointer-events: none;
}
.home-cta-shape {
    position: absolute;
    opacity: 0.12;
}
.home-cta-shape--1 {
    right: -40px; top: -40px;
    width: 320px; height: 320px;
    background: var(--color-teal);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.home-cta-shape--2 {
    right: 80px; bottom: -20px;
    width: 180px; height: 180px;
    background: var(--color-teal);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    opacity: 0.08;
}
.home-cta-shape--3 {
    right: 240px; top: 40px;
    width: 100px; height: 280px;
    background: var(--color-teal);
    opacity: 0.06;
}

/* ── FOOTER MEJORADO ──────────────────────────────────────── */
.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.75);
    padding: 72px 5% 48px;
}
.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.footer-logo-img {
    height: 52px !important;
    width: auto !important;
    filter: none !important;
    margin-bottom: 16px !important;
}
.footer-logo p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 240px;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    display: block;
}
.footer-nav, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a, .footer-social a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-nav a:hover, .footer-social a:hover { color: var(--color-teal); }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact strong {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.footer-contact a {
    font-size: 0.92rem;
    color: var(--color-teal);
    word-break: break-all;
    transition: color var(--transition);
}
.footer-contact a:hover { color: #fff; }

/* Responsive home CTA + footer */
@media (max-width: 900px) {
    .home-cta-shapes { display: none; }
    .home-cta-inner { padding: 60px 5%; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .decades-grid { grid-template-columns: 1fr; gap: 32px; }
    .decades-text { order: 1; }
    .decades-img-wrap { order: 2; height: 280px; }
}
@media (max-width: 640px) {
    .home-cta-title { font-size: 1.8rem; }
    .footer-container { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}



/* ── FIXES: CTA height + Footer spacing ──────────────────── */
.home-cta-section {
    min-height: 0 !important;
}
.home-cta-inner {
    padding: 60px 5% !important;
}
.footer {
    padding: 48px 5% 32px !important;
}
.footer-container {
    padding-bottom: 28px !important;
    gap: 36px !important;
}
.footer-bottom {
    padding-top: 20px !important;
}

/* ── FOOTER CLARO ─────────────────────────────────────────── */
.footer {
    background: var(--color-bg, #EFF6F9) !important;
    color: var(--color-mid) !important;
    padding: 48px 5% 32px !important;
}
.footer-container {
    padding-bottom: 28px !important;
    border-bottom: 1px solid var(--color-border) !important;
}
.footer-copy { color: var(--color-muted) !important; }
.footer-col-title { color: var(--color-muted) !important; }
.footer-nav a, .footer-social a { color: var(--color-mid) !important; }
.footer-nav a:hover, .footer-social a:hover { color: var(--color-teal) !important; }
.footer-contact strong { color: var(--color-muted) !important; }
.footer-contact a { color: var(--color-teal) !important; }
.footer-contact a:hover { color: var(--color-teal-dk) !important; }
.footer-logo p { color: var(--color-muted) !important; }

/* ── HERO fondo oscuro ────────────────────────────────────── */
.hero {
    background: #1A3C4A !important;
}
.hero .eyebrow { color: var(--color-teal) !important; }
.hero .hero-headline { color: #fff !important; }
.hero .hero-sub { color: rgba(255,255,255,0.75) !important; }





/* =============================================
   BENCHMARK REPORT PAGE
   ============================================= */
.benchmark-report-section {
    background-color: #dce9ef;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.benchmark-report-card {
    background: #fff;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 60px 52px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.benchmark-form-side {
    flex: 1;
    min-width: 0;
}

.benchmark-eyebrow {
    color: #e05a2b;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: none;
    margin-bottom: 12px;
}

.benchmark-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 16px;
}

.benchmark-description {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.benchmark-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benchmark-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benchmark-field label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.benchmark-field input {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.benchmark-field input:focus {
    border-color: #2aa8b5;
}

.benchmark-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}

.benchmark-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2aa8b5;
    cursor: pointer;
}

.benchmark-btn {
    background-color: #2aa8b5;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.benchmark-btn:hover {
    background-color: #1a8a96;
}

.benchmark-success {
    background: #e6f9f0;
    color: #1a7a4a;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.benchmark-error {
    color: #c0392b;
    font-size: 0.82rem;
}

.benchmark-image-side {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benchmark-cover-img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: block;
}

@media (max-width: 768px) {
    .benchmark-report-card {
        flex-direction: column;
        padding: 36px 24px;
    }

    .benchmark-image-side {
        flex: none;
        width: 100%;
        order: -1;
    }

    .benchmark-cover-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .benchmark-headline {
        font-size: 1.5rem;
    }
}


/* =============================================
   MAS BRAND INLINE TYPOGRAPHY
   ============================================= */
.mas-brand,
.mas-brand-bold {
    font-family: 'Righteous', 'Century Gothic', sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
	display: inline !important;
}
.mas-m { color: #3EA3B7; }
.mas-a { color: #B99436; }
.mas-s { color: #EE5733; }

.mas-brand-bold {
    color: inherit;
}
/* Fix hero — permite crecer con contenido largo (ES) */
.hero {
    min-height: unset !important;
    padding-top: 140px !important;
    padding-bottom: 100px !important;
}
/* MAS brand dentro de botones FAQ y párrafos de texto */
.faq-question .mas-brand-bold,
.faq-answer .mas-brand-bold {
    font-size: 0.95em;
    vertical-align: baseline;
    line-height: inherit;
}


/* ===== Quote Block (testimonios de investigación) ===== */
.quote-block {
    padding: 56px 24px;
}
.quote-block-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.quote-block-mark {
    width: 18px;
    height: 15px;
    margin-bottom: 16px;
}
.quote-block-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.quote-block-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    color: #1F2937;
    margin: 0 0 12px;
}
.quote-block-ref {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #6B7280;
    margin: 0;
}
.quote-block--teal {
    background: #F0FAF9;
    border-top: 3px solid #3AAFA9;
    border-bottom: 3px solid #3AAFA9;
}
.quote-block--teal .quote-block-mark,
.quote-block--teal .quote-block-label {
    color: #3AAFA9;
}
.quote-block--teal .quote-block-ref {
    color: #2C8983;
}
.quote-block--coral {
    background: #FDF3EF;
    border-top: 3px solid #E8572A;
    border-bottom: 3px solid #E8572A;
}
.quote-block--coral .quote-block-mark,
.quote-block--coral .quote-block-label {
    color: #E8572A;
}
.quote-block--coral .quote-block-ref {
    color: #C0451E;
}
@media (max-width: 640px) {
    .quote-block-text { font-size: 1.15rem; }
    .quote-block { padding: 40px 20px; }
}