/**
 * Page Nuestra Experiencia - Styles
 * Tema elegante: dorado/oscuro para hero + timeline, blanco para achievements
 *
 * @package Agrosoil
 * @subpackage Pages
 * @since 2.0.0
 */

/* === VARIABLES === */
:root {
    --exp-gold: #d4a017;
    --exp-gold-light: #e8c547;
    --exp-green: var(--color-primary-light, #9cd033);
    --exp-green-dark: var(--color-primary, #80bc00);
    --exp-dark: #111318;
    --exp-dark-mid: #1a1d24;
    --exp-white: var(--color-bg-white, #ffffff);
    --exp-gray: var(--color-bg-gray, #f6f7f0);
    --exp-text: var(--color-text-primary, #1a1a2e);
    --exp-text-light: var(--color-text-secondary, #555555);
}

/* === FONT === */
#exp-page,
#exp-page * {
    font-family: var(--font-primary, 'Poppins', sans-serif);
}

#exp-page {
    overflow-x: hidden;
}

/* === RESET WRAPPERS DEL TEMA PADRE === */
#featured-title {
    display: none !important;
}
#main-content, .site-main, #content-wrap, #site-content, .site-content, .inner-content-wrap, .page-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
#exp-page {
    display: block !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    max-width: none !important;
    margin-top: 0 !important;
}

/* =====================================================
   HERO SECTION — tema oscuro + dorado
   ===================================================== */
.exp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--exp-dark) 0%, #0f1117 40%, #141820 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.exp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(212, 160, 23, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 80%, rgba(232, 197, 71, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

/* Particles — dorados sutiles */
.exp-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.exp-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 160, 23, 0.4);
    border-radius: 50%;
    animation: expParticleFloat 18s infinite ease-in-out;
}

.exp-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.exp-particle:nth-child(2) { left: 25%; animation-delay: 3s; background: rgba(232, 197, 71, 0.3); }
.exp-particle:nth-child(3) { left: 40%; animation-delay: 6s; }
.exp-particle:nth-child(4) { left: 55%; animation-delay: 2s; background: rgba(255, 255, 255, 0.15); }
.exp-particle:nth-child(5) { left: 70%; animation-delay: 5s; background: rgba(212, 160, 23, 0.3); }
.exp-particle:nth-child(6) { left: 85%; animation-delay: 1s; }
.exp-particle:nth-child(7) { left: 95%; animation-delay: 4s; background: rgba(255, 255, 255, 0.1); }

@keyframes expParticleFloat {
    0%, 100% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-100vh); }
}

/* Hero Content */
.exp-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.exp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.exp-hero-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--exp-gold);
}

.exp-hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--exp-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-hero-title {
    font-size: clamp(36px, 8vw, 48px);
    font-weight: 800;
    color: var(--exp-white) !important;
    margin: 0 0 16px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.exp-hero-title .highlight {
    color: var(--exp-gold) !important;
    -webkit-text-fill-color: var(--exp-gold);
    background: none;
    display: inline;
}

.exp-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Stats */
.exp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.exp-stat {
    text-align: center;
    position: relative;
}

.exp-stat::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--exp-gold), transparent);
    border-radius: 1px;
}

.exp-stat-number {
    font-size: clamp(40px, 8vw, 56px);
    font-weight: 900;
    color: var(--exp-white);
    line-height: 1;
    display: block;
}

.exp-stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

/* Scroll Indicator */
.exp-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.exp-scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: rgba(255, 255, 255, 0.4);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =====================================================
   TIMELINE SECTION — Bento Grid
   ===================================================== */
.exp-journey {
    padding: 100px 20px;
    background: linear-gradient(180deg, #141820 0%, var(--exp-dark-mid) 50%, var(--exp-dark) 100%);
    position: relative;
    overflow-x: hidden;
}

.exp-journey::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 160, 23, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.exp-journey-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.exp-journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    color: var(--exp-gold);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.exp-journey-badge svg {
    fill: var(--exp-gold);
}

.exp-journey-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--exp-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.exp-journey-header p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Bento Grid Container */
.exp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Wide cards span 2 of 3 columns */
.exp-milestone-wide {
    grid-column: span 2;
}

/* Row 2 zigzag: narrow card left (col 1), wide card right (cols 2-3) */
.exp-bento .exp-milestone:nth-child(3) { grid-column: 1; }
.exp-bento .exp-milestone:nth-child(4) { grid-column: 2 / span 2; }

/* Milestone Card */
.exp-milestone {
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px 36px;
    overflow: hidden;
}

/* Color-coded backgrounds per card */
.exp-milestone[data-color="green"] {
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(76, 175, 80, 0.15);
}
.exp-milestone[data-color="blue"] {
    background: linear-gradient(145deg, rgba(66, 165, 245, 0.1) 0%, rgba(66, 165, 245, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(66, 165, 245, 0.15);
}
.exp-milestone[data-color="orange"] {
    background: linear-gradient(145deg, rgba(255, 167, 38, 0.1) 0%, rgba(255, 167, 38, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 167, 38, 0.15);
}
.exp-milestone[data-color="purple"] {
    background: linear-gradient(145deg, rgba(171, 71, 188, 0.1) 0%, rgba(171, 71, 188, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(171, 71, 188, 0.15);
}
.exp-milestone[data-color="teal"] {
    background: linear-gradient(145deg, rgba(38, 198, 218, 0.1) 0%, rgba(38, 198, 218, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(38, 198, 218, 0.15);
}
.exp-milestone[data-color="gold"] {
    background: linear-gradient(145deg, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 160, 23, 0.15);
}

/* Top accent line — always visible */
.exp-milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    transition: height 0.4s ease;
}

.exp-milestone:hover::before {
    height: 4px;
}

/* Color accent lines per card */
.exp-milestone[data-color="green"]::before  { background: linear-gradient(90deg, #4CAF50, #81C784); }
.exp-milestone[data-color="blue"]::before   { background: linear-gradient(90deg, #42A5F5, #90CAF9); }
.exp-milestone[data-color="orange"]::before { background: linear-gradient(90deg, #FFA726, #FFCC80); }
.exp-milestone[data-color="purple"]::before { background: linear-gradient(90deg, #AB47BC, #CE93D8); }
.exp-milestone[data-color="teal"]::before   { background: linear-gradient(90deg, #26C6DA, #80DEEA); }
.exp-milestone[data-color="gold"]::before   { background: linear-gradient(90deg, var(--exp-gold), var(--exp-gold-light)); }

/* Corner glow — subtle colored light in top-left */
.exp-milestone::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(40px);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.exp-milestone[data-color="green"]::after  { background: rgba(76, 175, 80, 0.3); }
.exp-milestone[data-color="blue"]::after   { background: rgba(66, 165, 245, 0.3); }
.exp-milestone[data-color="orange"]::after { background: rgba(255, 167, 38, 0.3); }
.exp-milestone[data-color="purple"]::after { background: rgba(171, 71, 188, 0.3); }
.exp-milestone[data-color="teal"]::after   { background: rgba(38, 198, 218, 0.3); }
.exp-milestone[data-color="gold"]::after   { background: rgba(212, 160, 23, 0.3); }

.exp-milestone:hover::after {
    opacity: 0.7;
}

/* Hover — colored glow per card */
.exp-milestone[data-color="green"]:hover {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(76, 175, 80, 0.08);
}
.exp-milestone[data-color="blue"]:hover {
    border-color: rgba(66, 165, 245, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(66, 165, 245, 0.08);
}
.exp-milestone[data-color="orange"]:hover {
    border-color: rgba(255, 167, 38, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 167, 38, 0.08);
}
.exp-milestone[data-color="purple"]:hover {
    border-color: rgba(171, 71, 188, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(171, 71, 188, 0.08);
}
.exp-milestone[data-color="teal"]:hover {
    border-color: rgba(38, 198, 218, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(38, 198, 218, 0.08);
}
.exp-milestone[data-color="gold"]:hover {
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 160, 23, 0.08);
}

.exp-milestone:hover {
    transform: translateY(-6px);
}

/* Watermark year — giant faded number */
.exp-milestone-watermark {
    position: absolute;
    right: -8px;
    bottom: -20px;
    font-size: clamp(100px, 12vw, 160px);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    transition: color 0.5s ease;
    letter-spacing: -4px;
}

/* Watermark hover — matches card color */
.exp-milestone[data-color="green"]:hover .exp-milestone-watermark  { color: rgba(76, 175, 80, 0.07); }
.exp-milestone[data-color="blue"]:hover .exp-milestone-watermark   { color: rgba(66, 165, 245, 0.07); }
.exp-milestone[data-color="orange"]:hover .exp-milestone-watermark { color: rgba(255, 167, 38, 0.07); }
.exp-milestone[data-color="purple"]:hover .exp-milestone-watermark { color: rgba(171, 71, 188, 0.07); }
.exp-milestone[data-color="teal"]:hover .exp-milestone-watermark   { color: rgba(38, 198, 218, 0.07); }
.exp-milestone[data-color="gold"]:hover .exp-milestone-watermark   { color: rgba(212, 160, 23, 0.07); }

/* Wide cards: watermark even bigger */
.exp-milestone-wide .exp-milestone-watermark {
    font-size: clamp(120px, 15vw, 200px);
    bottom: -25px;
}

/* Head — icon + year label */
.exp-milestone-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* Icon — glass verde */
.exp-milestone-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(156, 208, 51, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 208, 51, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SVG icons */
.exp-milestone-icon svg {
    width: 30px;
    height: 30px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Animaciones únicas por ícono ---- */

/* 1) Rocket (2004) — despegue + estela */
.exp-bento .exp-milestone:nth-child(1) .exp-milestone-icon svg {
    animation: expRocketLaunch 3s ease-in-out infinite;
}
@keyframes expRocketLaunch {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-2px) rotate(-8deg); }
    50% { transform: translateY(-10px) rotate(-15deg); }
    80% { transform: translateY(-2px) rotate(-8deg); }
}
.exp-bento .exp-milestone:nth-child(1) .exp-milestone-icon {
    animation: expRocketGlow 3s ease-in-out infinite;
}
@keyframes expRocketGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.06); }
    50% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 8px 25px rgba(76,175,80,.2), inset 0 1px 0 rgba(255,255,255,.06); }
}

/* 2) Microscope (2008) — zoom enfoque */
.exp-bento .exp-milestone:nth-child(2) .exp-milestone-icon svg {
    animation: expMicroscopeZoom 3.5s ease-in-out infinite;
}
@keyframes expMicroscopeZoom {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.12) rotate(-2deg); }
    50% { transform: scale(1.18) rotate(0deg); }
    75% { transform: scale(1.12) rotate(2deg); }
}
.exp-bento .exp-milestone:nth-child(2) .exp-milestone-icon {
    animation: expMicroscopeGlow 3.5s ease-in-out infinite;
}
@keyframes expMicroscopeGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.06); }
    50% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 20px rgba(66,165,245,.2), inset 0 1px 0 rgba(255,255,255,.06); }
}

/* 3) ShieldCheck (2012) — pulso protección */
.exp-bento .exp-milestone:nth-child(3) .exp-milestone-icon svg {
    animation: expShieldPulse 2.5s ease-in-out infinite;
}
@keyframes expShieldPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.14); filter: brightness(1.3); }
}
.exp-bento .exp-milestone:nth-child(3) .exp-milestone-icon {
    animation: expShieldGlow 2.5s ease-in-out infinite;
}
@keyframes expShieldGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.06); }
    50% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 22px rgba(255,167,38,.25), inset 0 1px 0 rgba(255,255,255,.08); }
}

/* 4) Trophy (2016) — celebración wobble + brillo */
.exp-bento .exp-milestone:nth-child(4) .exp-milestone-icon svg {
    animation: expTrophyWobble 3s ease-in-out infinite;
}
@keyframes expTrophyWobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-12deg) scale(1.05); }
    30% { transform: rotate(10deg) scale(1.1); }
    45% { transform: rotate(-8deg) scale(1.12); }
    60% { transform: rotate(6deg) scale(1.08); }
    75% { transform: rotate(-3deg) scale(1.03); }
}
.exp-bento .exp-milestone:nth-child(4) .exp-milestone-icon {
    animation: expTrophyShine 3s ease-in-out infinite;
}
@keyframes expTrophyShine {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.06); }
    40% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 25px rgba(171,71,188,.3), inset 0 1px 0 rgba(255,255,255,.12); }
    60% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 15px rgba(171,71,188,.15), inset 0 1px 0 rgba(255,255,255,.08); }
}

/* 5) Handshake (2020) — apretón sacudida */
.exp-bento .exp-milestone:nth-child(5) .exp-milestone-icon svg {
    animation: expHandshakeShake 2.8s ease-in-out infinite;
}
@keyframes expHandshakeShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-4px) rotate(-6deg); }
    20% { transform: translateX(4px) rotate(6deg); }
    30% { transform: translateX(-3px) rotate(-4deg); }
    40% { transform: translateX(3px) rotate(4deg); }
    50% { transform: translateX(-1px) rotate(-1deg); }
    60% { transform: translateX(0) rotate(0deg); }
}
.exp-bento .exp-milestone:nth-child(5) .exp-milestone-icon {
    animation: expHandshakeGlow 2.8s ease-in-out infinite;
}
@keyframes expHandshakeGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.06); }
    30% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 20px rgba(38,198,218,.2), inset 0 1px 0 rgba(255,255,255,.06); }
}

/* 6) Monitor (2024) — parpadeo digital */
.exp-bento .exp-milestone:nth-child(6) .exp-milestone-icon svg {
    animation: expDigitalPulse 3s ease-in-out infinite;
}
@keyframes expDigitalPulse {
    0%, 100% { transform: scale(1); opacity: 1; filter: brightness(1); }
    25% { transform: scale(1.05); opacity: .8; filter: brightness(1.4); }
    30% { opacity: 1; filter: brightness(1); }
    55% { transform: scale(1.1); opacity: .7; filter: brightness(1.5); }
    60% { opacity: 1; transform: scale(1.08); filter: brightness(1); }
}
.exp-bento .exp-milestone:nth-child(6) .exp-milestone-icon {
    animation: expScreenGlow 3s ease-in-out infinite;
}
@keyframes expScreenGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.06); }
    50% { box-shadow: 0 4px 16px rgba(0,0,0,.2), 0 0 22px rgba(212,160,23,.25), inset 0 1px 0 rgba(255,255,255,.1); }
}

/* ---- Hover: detiene animación, escala ---- */
.exp-milestone:hover .exp-milestone-icon {
    background: rgba(156, 208, 51, 0.22);
    border-color: rgba(156, 208, 51, 0.4);
    box-shadow: 0 8px 32px rgba(156, 208, 51, 0.2), 0 0 20px rgba(156, 208, 51, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: none !important;
}

.exp-milestone:hover .exp-milestone-icon svg {
    transform: scale(1.15) !important;
    animation: none !important;
    filter: brightness(1.2) !important;
}

/* Year label */
.exp-milestone-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--exp-gold);
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* Content */
.exp-milestone h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #9cd033 !important;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.exp-milestone p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Wide cards get bigger title */
.exp-milestone-wide h3 {
    font-size: 1.8rem;
}

/* Tags */
.exp-milestone-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.exp-milestone-tags span {
    padding: 10px 20px;
    background: rgba(156, 208, 51, 0.1);
    border: 1px solid rgba(156, 208, 51, 0.2);
    color: #9cd033;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.exp-milestone-tags span:hover {
    background: var(--exp-gold);
    color: var(--exp-dark);
    border-color: var(--exp-gold);
}

/* =====================================================
   CTA SECTION — oscuro con acento verde
   ===================================================== */
.exp-cta {
    padding: 100px 20px;
    background: var(--exp-dark);
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

.exp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.exp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.exp-cta h2 {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.exp-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    line-height: 1.6;
}

.exp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--exp-green) 0%, var(--exp-green-dark) 100%);
    color: #fff !important;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(139, 195, 74, 0.3);
}

.exp-cta-btn:hover {
    opacity: 0.85;
    color: #fff !important;
}

.exp-cta-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.exp-cta-btn:hover svg {
    transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .exp-hero {
        padding: 140px 15px 80px;
        min-height: 90vh;
    }

    .exp-hero-title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .exp-hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }

    .exp-hero-stats {
        gap: 30px;
    }

    .exp-stat-number {
        font-size: clamp(32px, 7vw, 42px);
    }

    .exp-stat-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .exp-stat::after {
        display: none;
    }

    .exp-scroll-indicator {
        display: none;
    }

    /* Bento Grid — single column on mobile */
    .exp-journey {
        padding: 80px 15px;
    }

    .exp-bento {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 10px 0;
    }
    .exp-bento::-webkit-scrollbar { display: none; }

    /* Reset grid placement overrides */
    .exp-milestone-wide,
    .exp-bento .exp-milestone:nth-child(3),
    .exp-bento .exp-milestone:nth-child(4) {
        grid-column: auto;
    }

    .exp-milestone {
        padding: 32px 24px;
        flex: 0 0 80vw;
        min-width: 80vw;
        scroll-snap-align: start;
    }

    .exp-milestone-watermark {
        font-size: 90px !important;
        bottom: -15px;
        right: -5px;
    }

    .exp-milestone h3,
    .exp-milestone-wide h3 {
        font-size: 18px;
    }

    /* CTA */
    .exp-cta {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .exp-hero-stats {
        gap: 20px;
    }

    .exp-milestone {
        padding: 28px 20px;
    }

    .exp-milestone-watermark {
        font-size: 72px !important;
    }
}

/* Hidden on desktop */
.exp-bento-dots {
    display: none;
}

@media (max-width: 768px) {
    .exp-bento-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .exp-bento-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(255,255,255,0.25);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .exp-bento-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
    }

    .exp-bento-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #4CAF50;
    }
}
