:root {
    --primary-color: #FF3E56;
    --primary-hover: #E53E52;
    --bg-color: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text-main: #0B1120;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 26, 74, 0.2);
}

.btn-large {
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    border: none;
}

.logo-img {
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 40px;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 62, 86, 0.05);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle .bar {
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle .bar.short {
    width: 14px;
    margin-right: -6px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
}

.arrow {
    margin-left: 8px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    background-color: #FAFAFA;
    overflow: hidden;
}

.hero .hero-container {
    padding-top: 140px;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    min-height: 800px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 0px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 32px;
    max-width: 650px;
}

.btn-hero {
    align-self: flex-start;
    margin-bottom: 80px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-bottom-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 40px;
}

.hero-bottom-text {
}

.invierte-en {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-bottom-text h2 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #111;
    line-height: 1;
    margin: 0;
    transition: opacity 0.3s ease;
}

.hero-visual {
    position: relative;
    height: 100%;
}

.hero-lightning-bg {
    position: absolute;
    top: -20%;
    right: -20%;
    height: 160%;
    z-index: 1;
    opacity: 0.8;
}

.hero-lightning-fg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    height: 130%;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(255, 62, 86, 0.3));
}

.hero-small-logo {
    width: 100px;
    object-fit: contain;
    z-index: 3;
    position: relative;
}

.hero-partners {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: white;
    padding: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-partners .container {
    padding-top: 32px;
    padding-bottom: 32px;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    height: auto;
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    margin-right: 120px;
}

/* About Section */
.about {
    padding: 0;
}

.about .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-tag {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-tag .icon {
    font-size: 1rem;
    margin-right: 8px;
}

.section-tag .tag-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.about-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #0B1120;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.85) 45%, rgba(11,17,32,0.1) 100%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    color: white;
    max-width: 650px;
}

.about-content h3 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.about-content h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-content p:last-of-type {
    margin-bottom: 32px;
}

.btn-about {
    font-size: 0.85rem;
    padding: 14px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats */
.stats {
    padding: 0;
    margin: 0;
}

.stats .container {
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 40px 32px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 80px;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1;
}

.stat-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.stat-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item:nth-child(1), .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* How It Works */
.how-it-works {
    padding: 0;
}

.how-it-works .container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.hw-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hw-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hw-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.text-red {
    color: var(--primary-color);
    font-weight: 500;
}

.text-red.underline {
    text-decoration: underline;
}

.btn-hw {
    font-size: 0.85rem;
    padding: 14px 28px;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 26, 74, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hw-step strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.hw-step p {
    color: var(--text-muted);
}

.hw-visual {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: none;
}

/* FAQ */
.faq {
    padding: 0;
    background: var(--bg-alt);
}

.faq .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    text-align: left;
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: left;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 32px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

.faq-q-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    padding-right: 20px;
}

.faq-num {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.faq-text {
    line-height: 1.4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding-bottom: 24px;
    padding-left: 60px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

.faq-item .icon {
    color: var(--text-muted);
    transition: var(--transition);
}

/* Differentiation */
.differentiation {
    padding: 0;
}

.differentiation .container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.diff-card-main {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diff-card-main h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.diff-card-main p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.btn-diff {
    align-self: flex-start;
    padding: 14px 28px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.diff-card-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    width: 90%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.diff-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-card-small {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.section-tag-small {
    margin-bottom: 16px;
}

.diff-card-small h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.diff-card-small p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Investments */
.investments {
    padding: 0;
    background: white;
}

.investments .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.investments h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.investments-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.inv-card {
    height: 380px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.inv-card:hover {
    transform: translateY(-5px);
}

.cabal-card { background: radial-gradient(circle at center, #fdf1e7 0%, #f7d6bd 100%); }
.bioesol-card { background: radial-gradient(circle at center, #fdf6e6 0%, #f8e1ab 100%); }
.lumen-card { background: radial-gradient(circle at center, #e9f6ed 0%, #b8dfc4 100%); }
.liv-card { background: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%); }

/* Front state */
.inv-card-front {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.inv-logo-front {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.liv-logo {
    max-width: 80px;
}

/* Hover state elements */
.inv-card-back {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.inv-logo-back {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    align-self: flex-start;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lumen-logo-back {
    background: #1A4D2E;
    padding: 6px 12px;
    border-radius: 20px;
}

.liv-logo-back {
    max-width: 60px;
}

.inv-img-container {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
}

.inv-img-center {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.liv-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Cabal special images */
.inv-images-cabal {
    position: absolute;
    inset: 0;
    top: 70px;
    bottom: 130px;
    left: 20px;
    right: 20px;
}

.cabal-img-1, .cabal-img-2 {
    position: absolute;
    width: 70%;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.cabal-img-1 {
    left: -15%;
    bottom: -15%;
    transform: translateY(40px) rotate(-10deg);
}

.cabal-img-2 {
    right: -15%;
    bottom: -15%;
    transform: translateY(40px) rotate(10deg);
}

/* Buttons */
.inv-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.inv-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
}

.inv-link-btn:hover {
    filter: brightness(1.1);
}

.btn-orange { background-color: #E85D04; }
.btn-dark-green { background-color: #1A4D2E; }
.btn-dark { background-color: #111; }

.link-icon {
    background: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.btn-orange .link-icon { color: #E85D04; }
.btn-dark-green .link-icon { color: #1A4D2E; }
.btn-dark .link-icon { color: #111; }

/* Hover Action */
.inv-card:hover .inv-card-front {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.inv-card:hover .inv-card-back {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
}

.inv-card:hover .inv-logo-back {
    transform: translateY(0);
    opacity: 1;
}

.inv-card:hover .inv-img-center {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.inv-card:hover .cabal-img-1 {
    transform: translateY(0) rotate(-5deg);
    opacity: 1;
}

.inv-card:hover .cabal-img-2 {
    transform: translateY(0) rotate(5deg);
    opacity: 1;
    transition-delay: 0.1s;
}

.inv-card:hover .inv-link-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.inv-card:hover .inv-buttons .inv-link-btn:nth-child(2) {
    transition-delay: 0.25s;
}

/* Podcast */
.cta-podcast {
    padding: 0;
}

.cta-podcast .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.podcast-card {
    background: linear-gradient(135deg, #1f1a1a, #2b1f1e, #1a1616);
    border-radius: var(--radius-lg);
    padding: 80px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: visible; /* To allow the lightning bolt to pop out */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    min-height: 280px;
}

.podcast-content {
    position: relative;
    z-index: 2;
}

.podcast-content h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.podcast-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 2;
    margin-right: 120px; /* Space for the lightning bolt */
}

.btn-spotify { 
    background: #183B25; 
    color: white; 
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-spotify:hover {
    background: #1d462c;
}

.btn-small-text {
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 12px;
    opacity: 0.8;
}

.btn-logo {
    height: 24px;
    object-fit: contain;
}

.btn-apple { 
    background: #341A3D; 
    color: white; 
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apple:hover {
    background: #40204b;
}

.btn-logo-apple {
    height: 36px;
    object-fit: contain;
}

.btn-youtube { 
    background: #3D1A1A; 
    color: white; 
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background: #502020;
}

.btn-facebook { 
    background: #1A283D; 
    color: white; 
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-facebook:hover {
    background: #203550;
}

.btn-logo-svg {
    height: 24px;
    width: auto;
    margin-right: 8px;
}

.btn-main-text {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.podcast-rayo {
    position: absolute;
    right: -20px;
    top: -40px;
    height: 140%;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.3));
}

/* Form Section */
.apply-section {
    padding: 0;
}

.apply-section .container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.apply-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.apply-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-main);
}

.apply-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 90%;
}

.time-pill {
    display: inline-flex;
    align-items: center;
    background: #FFF0F2;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.time-pill svg {
    margin-right: 8px;
}

.apply-form {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-main);
}

.req {
    color: var(--primary-color);
    margin-right: 4px;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: #FAFAFA;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255,26,74,0.1);
}

textarea {
    resize: vertical;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.char-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Stage Cards (Radio Buttons) */
.stage-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stage-card {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.stage-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.stage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    transition: all 0.2s ease;
    text-align: center;
    gap: 12px;
    height: 100%;
    box-sizing: border-box;
}

.stage-content svg {
    color: var(--primary-color);
}

.stage-content span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stage-card input:checked ~ .stage-content {
    border-color: var(--primary-color);
    background: #FFF0F2;
}

.stage-card input:checked ~ .stage-content span {
    color: var(--primary-color);
}

.stage-card:hover .stage-content {
    border-color: #ddd;
}

/* File Upload Wrapper */
.upload-wrapper {
    background: #FAFAFA;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.upload-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.upload-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 8px;
}

.upload-emojis {
    font-size: 1.2rem;
}

.file-upload-box {
    position: relative;
    border: 1px dashed var(--primary-color);
    border-radius: var(--radius-sm);
    background: white;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-box:hover {
    background: #FFF0F2;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cloud-icon {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.drag-text {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.click-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.file-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.badge, .badge-max {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.badge {
    background: #FFF0F2;
    color: var(--primary-color);
}

.badge-max {
    background: #F0F0F0;
    color: var(--text-muted);
}

/* Submit Button & Features */
.btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.btn-submit .arrow {
    margin-left: 8px;
}

.form-features {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.feature {
    display: flex;
    align-items: center;
}

.feature svg {
    width: 14px;
    height: 14px;
    color: #2ECC71; /* Green checkmark */
    margin-right: 6px;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--bg-color); /* Matches page background */
}

.footer-card {
    background-color: #171717; /* Dark card background */
    border-radius: var(--radius-md);
    padding: 60px 80px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-nav a {
    color: #a3a3a3;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-links {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: #a3a3a3;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #a3a3a3;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid var(--border-color);
        margin-left: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 24px;
        margin-bottom: 32px;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .hero-container,
    .hw-container,
    .diff-container,
    .apply-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container,
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    /* About mobile layout */
    .about-card {
        flex-direction: column;
        min-height: auto;
        border-radius: 0;
        overflow: visible;
        align-items: flex-start;
    }

    .about-bg {
        position: static;
        height: 300px;
        border-radius: var(--radius-lg);
        margin-bottom: 24px;
    }

    .about-card::after {
        display: none;
    }

    .about-content {
        padding: 20px 0;
        color: var(--text-main);
        max-width: 100%;
    }

    .about-content h3 {
        color: var(--text-main);
        font-size: 2.5rem;
        white-space: normal;
    }

    .about-content h4 {
        color: var(--text-main);
        font-size: 1.1rem;
    }

    .about-content p {
        color: var(--text-muted);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container,
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .podcast-card {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px 20px;
    }
    
    .podcast-buttons {
        margin-right: 0;
        grid-template-columns: 1fr;
        justify-items: stretch;
    }
    
    .podcast-rayo {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .apply-text h2 {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }
    
    .apply-form {
        padding: 24px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stage-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-bottom-text h2 {
        font-size: 4rem;
    }

    /* Footer Mobile */
    .footer-card {
        padding: 40px 30px 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }
    
    .footer-copyright-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* --- MOBILE HOTFIX --- */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        border-left: none !important;
        border-right: none !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Fix overflowing text */
    #rotating-text, .hero-bottom-text h2 {
        font-size: clamp(1.5rem, 8.5vw, 3rem) !important;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        line-height: 1.1;
    }
    
    .hero-bottom-text {
        flex: 1;
        padding-right: 10px;
    }

    .hero-small-logo {
        width: 65px;
        flex-shrink: 0;
    }
    
    .about-content h3 {
        font-size: clamp(2rem, 10vw, 2.5rem) !important;
        word-break: break-word;
    }
    
    /* Ensure images and absolute items don't break viewport */
    .hero-visual {
        max-width: 100%;
    }
    
    .hero-lightning-fg, .hero-lightning-bg {
        max-width: 100%;
        right: 0;
    }
    
    /* Prevent any card from overflowing */
    .about-card, .investment-card, .podcast-card, .footer-card {
        max-width: 100%;
        box-sizing: border-box;
    }
}
