/* ═══════════════════════════════════════════════════════════
   KOMERCIA – Design System "Executive Dark"
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg-base: #080E1C;
    /* Negro azulado profundo */
    --bg-dark: #0C1526;
    --bg-card: #111D35;
    --bg-card-hover: #152040;
    --border: #1E3050;
    --border-light: #263D62;

    --text-primary: #F1F5F9;
    --text-muted: #7A92B4;
    --text-dim: #4A6380;

    --accent-blue: #1D6FE8;
    /* Azul confianza */
    --accent-blue-h: #1558C0;
    --accent-green: #0FB489;
    /* Verde rendimiento */
    --accent-gold: #F59E0B;
    /* Dorado autoridad */

    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;

    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
    --max-w: 1180px;
}

/* ─── Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-b);
    line-height: 1.65;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(29, 111, 232, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(15, 180, 137, 0.04) 0%, transparent 50%);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── Typography ───────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-h);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

/* ─── Containers & Layout ──────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 1.5rem;
}

.bg-dark {
    background: var(--bg-dark);
}

.center {
    text-align: center;
}

/* ─── Section Headers ──────────────────────────────────── */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

/* Header Split - Estilo Ejecutivo */
.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
    text-align: left;
}

.section-header-split .section-title {
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 700;
}

@media (max-width: 992px) {
    .section-header-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
}

.section-sub-small {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #60A5FA 0%, #34D399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--accent-green);
    font-style: normal;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue);
    border: 1px solid rgba(29, 111, 232, 0.3);
    background: rgba(29, 111, 232, 0.08);
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}

.eyebrow-light {
    color: var(--accent-green);
    border-color: rgba(15, 180, 137, 0.3);
    background: rgba(15, 180, 137, 0.08);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-h);
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(29, 111, 232, 0.35);
}

.btn-primary:hover {
    background: var(--accent-blue-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(29, 111, 232, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    padding: 0.875rem 1.75rem;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

/* ─── HEADER ────────────────────────────────────────────── */
.header {
    position: absolute;
    /* Header ya no queda fijo al bajar */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 14, 28, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    /* Unificado para mayor elegancia */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: visible;
}

.logo img {
    height: 140px;
    /* Tamaño poderoso pero balanceado */
    width: auto;
    display: block;
    margin-top: -30px;
    /* Centrado visual milimétrico */
    margin-bottom: -32px;
    margin-left: -20px;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease;
    position: relative;
    top: 2px;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-container-full {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.08;
    max-width: 820px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 640px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

.hero-video-wrap {
    width: 100%;
    max-width: 860px;
    margin-bottom: 2.25rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-cta-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ─── HERO PROOF BAR ────────────────────────────────────── */
.hero-proof-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.proof-val {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-green);
}

.proof-lbl {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── SOLUTION ENHANCEMENTS ─────────────────────────────── */
.solution-step {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}



/* ─── CASE METRICS ──────────────────────────────────────── */
.case-metrics {
    display: flex;
    gap: 1.5rem;
    margin: 1.25rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.case-metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cm-val {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.cm-lbl {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ─── FOUNDER CREDENTIALS ───────────────────────────────── */
.founder-credentials {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cred-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cred-val {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-green);
}

.cred-lbl {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ─── CTA DESC ──────────────────────────────────────────── */
.cta-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ─── GALERÍA DE RESULTADOS ─────────────────────────────── */
.results-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
    max-width: 900px;
    margin-inline: auto;
}

.result-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow);
}

.result-img:hover {
    transform: scale(1.015);
    border-color: var(--border-light);
}

/* ─── PROBLEMA ──────────────────────────────────────────── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: border-color 0.25s, transform 0.25s;
}

.problem-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(209, 57, 57, 0.08);
    border: 1px solid rgba(209, 57, 57, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #e05252;
}

.problem-icon svg {
    width: 22px;
    height: 22px;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-h);
}

.problem-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
}

/* ─── CASOS / RESULTADOS ────────────────────────────────── */
.case-study-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
}

.case-video {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.case-content blockquote {
    font-size: 1.3rem;
    font-family: var(--font-h);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.case-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.client-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: fit-content;
}

.client-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    padding: 3px;
}

.client-badge strong {
    display: block;
    font-size: 0.95rem;
}

.client-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Before/After */
.before-after-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
}

.before-after-images {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.ba-image-wrap {
    flex: 1;
    max-width: 360px;
}

.ba-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-align: center;
}

.ba-image {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    object-fit: cover;
    height: 220px;
}

.ba-arrow {
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.ba-callout {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

.callout-highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.callout-green {
    color: var(--accent-green);
    font-weight: 700;
}

/* Social proof */
.social-proof-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.social-img {
    width: 320px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-shrink: 0;
    object-fit: cover;
}

.social-stat-badge {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.social-number {
    font-family: var(--font-h);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.social-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.social-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ─── SOLUCIÓN ──────────────────────────────────────────── */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: all 0.3s ease;
}

.solution-card p {
    flex-grow: 1;
}

.solution-metric {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.solution-metric::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    margin-top: 0.25rem;
    /* Alinea con la primera línea */
    flex-shrink: 0;
}

.solution-card:hover {
    border-color: rgba(29, 111, 232, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.solution-card.featured {
    border-color: rgba(29, 111, 232, 0.3);
    background: linear-gradient(180deg, rgba(29, 111, 232, 0.05) 0%, var(--bg-card) 100%);
}

.featured-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(29, 111, 232, 0.12);
    border: 1px solid rgba(29, 111, 232, 0.3);
    padding: 0.2rem 0.7rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.solution-icon {
    width: 52px;
    height: 52px;
    background: rgba(29, 111, 232, 0.1);
    border: 1px solid rgba(29, 111, 232, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    font-family: var(--font-h);
    font-weight: 700;
}

.solution-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ─── FUNDADOR ──────────────────────────────────────────── */
.founder-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-image-wrap {
    position: relative;
}

.founder-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.founder-role {
    font-size: 0.95rem;
    color: var(--accent-blue);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.founder-bio {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.founder-bio strong {
    color: var(--text-primary);
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.faq-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0;
}

.faq-container {
    max-width: 760px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--border-light);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    gap: 1rem;
}

.faq-trigger:hover {
    color: #fff;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-body {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ─── CTA FINAL ─────────────────────────────────────────── */
.cta-final {
    background: linear-gradient(135deg, #0C1526 0%, #091325 100%);
    border-top: 1px solid var(--border);
}

.cta-inner {
    max-width: 1100px;
    /* Ancho necesario para forzar las 2 columnas de GHL */
    text-align: center;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 2.5rem;
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.booking-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    min-height: 720px;
    /* Ajustado para evitar saltos de altura */
    width: 100%;
}

.booking-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-legal-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-sep {
    color: var(--text-dim);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .founder-layout {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        max-width: 360px;
        aspect-ratio: 1;
        object-position: top;
    }
}

@media (max-width: 840px) {
    .header-inner {
        padding: 0 1rem;
        justify-content: center;
        /* Centrado base para tablets/mobile */
    }

    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 160px;
        /* Mucho más aire para que el titular respire */
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .case-study-block {
        grid-template-columns: 1fr;
    }

    .before-after-images {
        flex-direction: column;
    }

    .ba-arrow {
        transform: rotate(90deg);
    }

    .social-proof-block {
        flex-direction: column;
    }

    .social-img {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ─── Mobile Specific Refinements (iPhone/Android) ─────── */
@media (max-width: 560px) {
    .header-inner {
        height: 84px;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .logo {
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: auto !important;
    }

    .logo img {
        height: 120px;
        /* Tamaño optimizado para impacto y nitidez */
        margin: 0 !important;
        top: 0px;
        position: relative;
        /* Forzamos renderizado de alta calidad */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
    }

    .section {
        padding: 3.5rem 1rem;
    }

    .hero {
        padding-top: 115px;
        /* Ajuste milimétrico para el nuevo tamaño de logo */
        padding-bottom: 5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.1rem;
        /* Impacto masivo pero prolijo */
        line-height: 1.1;
        margin-bottom: 1.25rem;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem;
        /* Botón más robusto y táctil */
        font-size: 1.1rem;
        box-shadow: 0 10px 25px rgba(29, 111, 232, 0.4);
    }

    .case-study-block,
    .before-after-block {
        padding: 2rem 1.25rem;
    }

    .problem-card,
    .solution-card {
        padding: 2.2rem 1.5rem;
        min-height: auto;
        /* Evita que queden muy largas en mobile */
    }

    .solution-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .solution-card p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .solution-metric {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    #fundador.section {
        padding-top: 2rem;
        /* Menos espacio al inicio de la sección */
        padding-bottom: 2rem;
    }

    .founder-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        /* Controlamos los espacios con márgenes específicos */
    }

    .founder-content {
        display: contents;
    }

    .founder-content .eyebrow {
        order: 1;
        margin-bottom: 0.75rem;
    }

    .founder-content .section-title {
        order: 2;
        margin-bottom: 0.25rem;
        font-size: 2rem;
        /* Un pelín más contenido */
    }

    .founder-content .founder-role {
        order: 3;
        margin-bottom: 1.25rem;
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .founder-image-wrap {
        order: 4;
        margin-bottom: 1.5rem;
        /* Espacio reducido */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .founder-photo {
        max-width: 85%;
        /* Más elegante */
        border-radius: var(--radius-lg);
        aspect-ratio: 1;
        object-fit: cover;
    }

    .founder-credentials {
        order: 5;
        justify-content: center;
        margin-bottom: 1.5rem;
        /* Espacio reducido */
        width: 100%;
        gap: 1.5rem;
    }

    .cred-item {
        text-align: center;
    }

    .founder-bio {
        order: 6;
        padding: 0 0.5rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    /* Utilidades responsivas */
    .d-block-mobile {
        display: inline-flex !important;
        width: 100% !important;
        justify-content: center;
        text-align: center;
    }

    /* Ajuste para que las cards no queden pegadas */
    .problem-grid,
    .solution-grid {
        gap: 1.5rem;
    }

    .booking-wrapper {
        min-height: 1000px;
        /* Evita que el formulario de GHL se corte en mobile */
    }
}