:root {
    --bg-color: #ffffff;
    --text-primary: #121212;
    --text-secondary: #7e7e7e;
    --logo-color: #555555;
    --badge-bg: #b0b0b0;
    --accent-primary: rgb(76, 65, 123);
    --accent-soft: rgba(76, 65, 123, 0.08);
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Design System Tokens */
    --container-max-width: 1200px;
    --content-max-width: 800px;
    --display-1: 64px;
    --display-2: 48px; /* Homogenized value for section titles */
    --display-3: 24px;
    --display-1-mobile: 36px;
    --display-2-mobile: 32px;
    --weight-bold: 700;
    --weight-medium: 600;
    --heading-line-height: 1.15;
    --heading-letter-spacing: -0.02em;
}

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

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

::selection {
    background-color: var(--accent-soft);
    color: var(--accent-primary);
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: relative;
    padding-bottom: 8px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a.active {
    color: #000;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.get-started-btn {
    background-color: var(--accent-primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid var(--accent-primary);
}

.get-started-btn:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 80px;
    background-color: #fff;
    text-align: center;
}

.hero-centered {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    color: #000;
}

.accent-text {
    color: var(--accent-primary);
}

.hero-subtitle {
    font-size: 26px; /* Increased from 20px */
    line-height: 1.5;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
}

.hero-awards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.award-icon {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    animation: icon-illuminate 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes icon-illuminate {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(0,0,0,0));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
        transform: scale(1.05);
    }
}

.award-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.award-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shimmer 10s linear infinite;
}

/* Delay for the second award to create a sequential flow */
.hero-awards .award-item:last-child::after {
    animation-delay: 2.5s;
}

@keyframes shimmer {
    0% { left: -150%; }
    25% { left: 150%; } /* Sweep duration is 1/4 of the total time (2.5s) */
    100% { left: 150%; }
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.award-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-divider {
    width: 1px;
    height: 40px;
    background-color: #eee;
}

.hero-actions-centered {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-entrepreneur-link {
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-link {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
    margin-left: 8px;
    border-bottom: 1px solid #ccc;
    transition: all 0.2s ease;
}

.hero-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Elegant Tooltip */
.tooltip-trigger {
    position: relative;
    display: inline-block;
}

.tooltip-trigger::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--text-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 100;
}

.tooltip-trigger::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: var(--text-primary) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.tooltip-trigger:hover::after,
.tooltip-trigger:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.btn-black {
    background-color: var(--accent-primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--accent-primary);
    display: inline-block;
}

.btn-black:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-primary);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid var(--accent-primary);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

@media (max-width: 900px) {
    .header-cta {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-awards {
        flex-direction: column;
        gap: 30px;
    }
    .award-divider {
        display: none;
    }
    .hero-actions-centered {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
}

.partners-section {
    padding: 120px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.main-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 54px;
    color: var(--accent-primary);
}

.support-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: none; /* In image it's not all caps, just very soft */
    letter-spacing: 0.01em;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Carousel and Fading */
.logo-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* For the animation, we'll use carousel-container instead if we follow the new structure */
.carousel-container {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.logo-strip {
    display: flex;
    align-items: center;
    gap: 80px; /* Adjusted gap for real logos */
    padding: 0;
    width: max-content;
    animation: scroll 60s linear infinite; /* Slower for more logos */
}

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

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Consistent height for logos */
    opacity: 0.7; /* Subdued look by default */
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-height: 100%;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.fade-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 10;
    pointer-events: none;
}

.fade-overlay.left {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 15%, rgba(255, 255, 255, 0) 100%);
}

.fade-overlay.right {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 15%, rgba(255, 255, 255, 0) 100%);
}


.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--logo-color);
    transition: opacity 0.3s ease;
}

.logo-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.logo-name-bold {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Logo Icons Styling */
.logo-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-logo {
    position: relative;
}

.circle-logo .outer {
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.circle-logo .inner {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
}

.plus-badge {
    background-color: var(--badge-bg);
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1;
    margin-left: -5px;
}

.zk-logo svg, .rhinestone-logo svg {
    width: 26px;
    height: 26px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .main-title {
        font-size: 32px;
    }
    .logo-strip {
        gap: 40px;
    }
    .fade-overlay {
        width: 100px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 26px;
    }
    .logo-strip {
        flex-wrap: wrap;
        gap: 20px;
    }
    .fade-overlay {
        display: none;
    }
}

/* Situations Section Styles */
.situations-section {
    padding: 120px 24px;
    background-color: #fff;
}

.situations-main-title {
    font-size: 36px; /* Matched with partnership title */
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #333;
    margin-bottom: 80px;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.situation-card {
    display: flex;
    flex-direction: column;
}

.situation-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #f5f5f5;
}

.situation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Maintain the monochrome aesthetic */
    transition: filter 0.4s ease;
}

.situation-card:hover .situation-image img {
    filter: grayscale(0%); /* Subtle premium interaction */
}

.situation-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.situation-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.situation-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.situation-btn.black {
    background-color: #1a1a1a;
    color: #fff;
}

.situation-link {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.situation-link:hover {
    border-color: #000;
}

@media (max-width: 1100px) {
    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .situations-grid {
        grid-template-columns: 1fr;
    }
    .situations-main-title {
        font-size: 28px;
    }
}

/* Partnership Section Styles */
.partnership-section {
    padding: 120px 24px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.partnership-main-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #333;
    margin-bottom: 80px;
    max-width: var(--container-max-width);
    text-align: center; /* Centered as requested */
    margin-left: auto;
    margin-right: auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.collab-card {
    display: flex;
    gap: 32px; /* Slightly more gap for elegance */
    align-items: center; /* Vertically centered like the reference image */
}

.collab-visual {
    flex: 0 0 240px;
    aspect-ratio: 4 / 2.5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.collab-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.collab-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(0,0,0,0.4);
    padding: 8px 16px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.collab-overlay .divider {
    opacity: 0.5;
    font-weight: 300;
}

.collab-content {
    flex: 1;
    text-align: left; /* Enforce left alignment for all content inside */
}

.collab-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-align: left;
}

.collab-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: left;
}

.collab-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    background-color: transparent; /* Initially blends with background */
    transition: background-color 0.2s ease;
}

.collab-link:hover {
    background-color: #f2f2f2; /* Tenuous lead gray / plomo tenue */
}

@media (max-width: 1100px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .collab-visual {
        flex: 0 0 200px;
    }
}

@media (max-width: 600px) {
    .collab-card {
        flex-direction: column;
    }
    .collab-visual {
        width: 100%;
        flex: none;
    }
    .partnership-main-title {
        font-size: 26px;
    }
}
/* Decision Section Styles */
.decision-section {
    padding: 100px 24px;
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.testimonial-box {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: left;
}

.section-badge {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 40px;
}

.testimonial-card {
    border-left: 4px solid var(--accent-primary);
    padding-left: 40px;
}

.testimonial-main {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-primary);
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 16px;
    color: #888;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 120px 24px;
    background-color: #fff;
    text-align: center;
}

.pricing-main-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--accent-primary);
}

.pricing-main-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-max-width);
    margin: 0 auto 100px;
}

.pricing-card {
    background-color: #f6f6f6;
    border: none;
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.plan-info {
    flex: 1;
}

.plan-badge {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.card-icon {
    opacity: 0.9;
}

.pricing-card.featured {
    border-color: #000;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.featured-label {
    position: absolute;
    top: -18px;
    left: 32px;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.plan-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.plan-price .period {
    font-size: 15px;
    color: #888;
}

.plan-context {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-promo {
    font-size: 14px;
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 32px;
    color: #000;
}

.plan-guarantee {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.4;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #000;
}

.plan-cta-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 16px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-primary);
    text-align: center;
}

.plan-cta-btn:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

.pricing-footer {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.currency-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    font-size: 24px;
}

.trust-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 1000px) {
    .pricing-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 24px 140px;
    background-color: var(--accent-primary);
    color: #fff;
}

.faq-container {
    display: flex;
    max-width: var(--container-max-width);
    gap: 80px;
    text-align: left;
    margin: 0 auto;
}

.faq-sidebar {
    flex: 1;
}

.faq-main-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    line-height: var(--heading-line-height);
    letter-spacing: -0.05em;
    position: sticky;
    top: 100px;
    text-align: left;
    color: #fff;
}

.faq-list {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 14px 0; /* Tightened padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #ccc;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-inner {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-inner p {
    margin-bottom: 32px; /* Full blank line effect */
}

.faq-inner p:last-child {
    margin-bottom: 0;
}

.faq-quote {
    margin: 24px 0 8px;
    padding: 16px 24px;
    border-left: 3px solid #666;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: #ccc;
    border-radius: 0 8px 8px 0;
}

.faq-item.active .faq-inner {
    opacity: 1;
}

.faq-inner {
    padding: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.85); /* Light grayish white */
    line-height: 1.6;
    font-size: 16px;
    max-width: var(--content-max-width);
}

/* Detail Section Styles (Why Choose Me) */
.detail-section {
    padding: 160px 40px;
    background-color: #fff;
}

.detail-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
}

.detail-heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    color: #000;
}

.detail-heading .muted-text {
    color: #999;
}

.detail-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: var(--content-max-width);
    margin-top: 20px;
}

@media (max-width: 900px) {
    .detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .detail-heading {
        font-size: 32px;
    }
}

/* How Section Styles */
.how-section {
    padding: 120px 24px;
    background-color: #fff;
}

.how-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px; /* Reduced from 80px */
    align-items: flex-start; /* Anchor to top to prevent vertical recalculation jumps */
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.how-heading {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    line-height: var(--heading-line-height);
    letter-spacing: -0.05em; /* Homogenized */
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.how-subheading {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.how-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-item {
    border-top: 1px solid #eeeeee;
    padding: 0;
}

.how-item:last-of-type {
    border-bottom: 1px solid #eeeeee;
}

.how-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 14px 0; /* Tightened compressed state */
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.step-num {
    color: var(--accent-primary);
    margin-right: 8px;
}

.how-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.how-arrow::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    transform: rotate(45deg);
    margin-top: -4px;
}

.how-item.active .how-arrow {
    transform: rotate(-180deg);
}

.how-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-item.active .how-answer {
    grid-template-rows: 1fr;
}

.how-inner {
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-bottom: 40px; /* Pre-set padding to animate as part of the grid content */
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-item.active .how-inner {
    opacity: 1;
}

.how-inner p {
    padding-top: 0; /* Removed extra top padding since h3 handles spacing */
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px; /* Full blank line effect */
}

.how-inner p:last-child {
    margin-bottom: 0;
}

.how-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.how-sub-list {
    list-style-type: none;
    padding: 0 0 24px 24px;
    margin: 0;
}

.how-sub-list li {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.how-sub-list li::before {
    content: "â€¢";
    position: absolute;
    left: -20px;
    color: var(--text-primary);
    font-weight: bold;
}

.how-sub-list li:last-child {
    margin-bottom: 0;
}

.how-footer-text {
    margin-top: 60px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    padding-left: 24px;
    border-left: 3px solid #000;
    max-width: 600px;
}

.how-image-column {
    position: sticky;
    top: 50px; /* Fixed anchor point */
    display: flex;
    justify-content: center;
}

.how-image-wrapper {
    width: 100%;
    margin-top: 24px; /* Reduced from 100px to tighten space with header lines */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.how-image-wrapper img {
    width: 100%;
    display: block;
}

/* For Whom Section Styles */
.for-whom-section {
    padding: 120px 24px;
    background-color: #fff;
    text-align: center;
}

.for-whom-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.for-whom-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    margin-bottom: 24px;
    line-height: var(--heading-line-height);
    letter-spacing: -0.05em;
}

.for-whom-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.for-whom-item {
    text-align: center;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: transparent;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icon-wrapper svg {
    width: 48px;
    height: 48px;
}

.icon-wrapper i {
    font-size: 48px;
    line-height: 1;
}

.for-whom-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.for-whom-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.item-context {
    color: var(--text-secondary);
}

.item-stat {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 16px 0;
    margin-top: 24px; /* More space before the line */
    border-top: 1px solid #dcdcdc; /* Darker, more visible line */
    border-bottom: 1px solid #eee;
}

.item-outcome {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0 !important;
}

.for-whom-footer {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .for-whom-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 1000px) {
    .how-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .how-heading {
        font-size: 32px;
    }
}

/* Urgency Section */
.urgency-section {
    padding: 120px 24px;
    background-color: #fafafa;
    text-align: center;
    border-top: 1px solid #eee;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-title {
    font-size: var(--display-2);
    font-weight: var(--weight-bold);
    line-height: var(--heading-line-height);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    color: var(--accent-primary);
}

.urgency-content {
    margin-bottom: 48px;
}

.urgency-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.urgency-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.urgency-cta-box .primary-btn {
    background-color: #fff;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px; /* Integrated with the method button radius */
    text-decoration: none;
    transition: all 0.3s ease;
}

.urgency-cta-box .primary-btn:hover {
    background-color: #f2f2f2;
}

.cta-note {
    font-size: 14px;
    color: #888;
    max-width: 500px;
    line-height: 1.4;
}

/* Main Footer */
.main-footer {
    padding: 60px 24px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.org-link-box {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.2s ease;
}

.footer-link:hover {
    border-color: #000;
}

.footer-legal {
    margin: 20px 0;
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.8;
}

.legal-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.legal-divider {
    margin: 0 10px;
    color: var(--text-secondary);
}

.footer-copy {
    font-size: 14px;
    color: #888;
}

@media (max-width: 1000px) {
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
    .faq-sidebar {
        text-align: center;
    }
    .faq-main-title {
        position: static;
        text-align: center;
        font-size: 32px;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: var(--display-2); /* 48px, as in urgency-title */
        font-weight: var(--weight-bold);
        line-height: var(--heading-line-height);
        letter-spacing: -0.03em;
    }
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .pricing-main-title, .for-whom-title, .how-heading {
        font-size: 28px;
    }
    .how-inner p {
        font-size: 16px;
    }
    .plan-price .amount {
        font-size: 40px;
    }
    .testimonial-card {
        padding-left: 20px;
    }
    .testimonial-main {
        font-size: 22px;
    }
}

/* Premium Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
}

/* Staggered entry for lists */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Delay generation for children */
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }

/* Immediate Hero Reveal */
.reveal-hero {
    opacity: 0;
    animation: revealHero 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes revealHero {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
/* ============================================================
   VARIABLES.CSS â€” Hero Template
   Todas las propiedades de diseÃ±o y contenido en un solo lugar.
   Para reutilizar en otra LP: editar solo este archivo.
   ============================================================ */

:root {

  /* ----------------------------------------------------------
     TIPOGRAFÃAS
  ---------------------------------------------------------- */
  --font-primary:     'Plus Jakarta Sans', sans-serif;  /* fuente principal para textos y UI */
  --font-decorative:  'Barlow Condensed', sans-serif;   /* fuente decorativa para el ghost text */


  /* ----------------------------------------------------------
     COLORES BASE
  ---------------------------------------------------------- */
  --color-white:      #FFFFFF;                  /* blanco base reutilizable */
  --color-cta-bg:     #FFFFFF;                  /* fondo del botÃ³n CTA */
  --color-cta-text:   #7C3AED;                  /* color del texto del botÃ³n CTA */
  --color-overlay:    rgba(0, 0, 0, 0.25);      /* fondo semitransparente para la card mobile */


  /* ----------------------------------------------------------
     OPACIDADES
  ---------------------------------------------------------- */
  --ghost-opacity:        0.15;     /* opacidad del ghost text en desktop (DR / CV) */


  /* ----------------------------------------------------------
     NAVBAR â€” Estado 1 (transparente, top)
  ---------------------------------------------------------- */
  --nav-logo-height:    2.5rem;           /* altura del contenedor genÃ©rico del logo (40px) */
  --navbar-logo-height: 32px;             /* altura real del logo completo en face-top */
  --nav-link-size:      0.875rem;         /* tamaÃ±o de fuente de los links del navbar (14px) */
  --nav-link-weight:    600;              /* peso tipogrÃ¡fico de los links del navbar */
  --nav-link-color:     var(--color-white); /* color de los links del navbar */
  --nav-gap:            2.5rem;           /* espacio horizontal entre links del navbar */
  --nav-height:         5rem;             /* altura total del navbar â€” usar como offset en el hero */


  /* ----------------------------------------------------------
     NAVBAR â€” Mobile menu (hamburger dropdown)
  ---------------------------------------------------------- */
  --mobile-menu-bg:             rgba(76, 45, 143, 0.97);   /* fondo del menÃº desplegable mobile */
  --mobile-menu-link-size:      1.125rem;                   /* tamaÃ±o de fuente de los links mobile */
  --mobile-menu-link-color:     var(--color-white);         /* color de los links del menÃº mobile */
  --mobile-menu-link-padding:   1rem 0;                     /* padding vertical de cada link mobile */
  --mobile-menu-separator:      rgba(255, 255, 255, 0.1);  /* color del separador entre links mobile */
  --mobile-menu-padding:        0.5rem 2rem 1.5rem;         /* padding interno del contenedor mobile menu */
  --mobile-menu-radius:         0 0 1.25rem 1.25rem;        /* bordes redondeados inferiores del menÃº mobile */
  --mobile-menu-max-height:     300px;                      /* altura mÃ¡xima del menÃº mobile (para animaciÃ³n) */
  --mobile-menu-transition:     max-height 400ms ease, opacity 300ms ease; /* transiciÃ³n de apertura/cierre del menÃº */
  --mobile-top-scroll-bg:       #7C3AED;                   /* fondo del navbar mobile al hacer scroll (= pill-bg) */


  /* ----------------------------------------------------------
     NAVBAR â€” Estado 2 (pill flotante, bottom)
  ---------------------------------------------------------- */
  --navbar-pill-bg:         #7C3AED;                        /* fondo de la pill flotante */
  --navbar-pill-max-width:  686px;                          /* ancho mÃ¡ximo de la pill */
  --navbar-pill-radius:     100px;                          /* border-radius de la pill (forma ovalada) */
  --navbar-pill-padding:    0.5rem 1rem 0.5rem 0.75rem;     /* padding interno de la pill */
  --navbar-pill-shadow:     0 4px 24px rgba(0, 0, 0, 0.18); /* sombra de la pill flotante */
  --navbar-pill-blur:       12px;                           /* blur del backdrop-filter de la pill */
  --navbar-bottom-offset:   1.5rem;                         /* distancia desde el bottom de la pantalla */
  --navbar-isotipo-size:    35px;                            /* tamaÃ±o del isotipo dentro de la pill */
  --navbar-pill-link-size:  0.9375rem;                      /* tamaÃ±o de fuente de los links en la pill (15px) */
  --navbar-pill-link-weight: 500;                           /* peso tipogrÃ¡fico de los links en la pill */
  --navbar-transition-duration: 500ms;                      /* duraciÃ³n de la transiciÃ³n topâ†’pill */
  --navbar-transition-delay:    150ms;                      /* pausa entre fade-out y fade-in de la transiciÃ³n */


  /* ----------------------------------------------------------
     HERO â€” IMAGEN
  ---------------------------------------------------------- */
  --hero-image-x: 55%;               /* posiciÃ³n horizontal de la imagen (left) */
  --hero-image-bottom: 0;            /* posiciÃ³n bottom de la imagen */
  --hero-image-width: 45%;           /* ancho de la imagen relativo al contenedor */
  --hero-image-height: auto;         /* alto de la imagen â€” auto mantiene proporciÃ³n */


  /* ----------------------------------------------------------
     HERO â€” TEXTO FANTASMA (ghost) â€” valores base (desktop â‰¥1280px)
  ---------------------------------------------------------- */
  --hero-ghost-font-size:        20rem;        /* tamaÃ±o de fuente de "job" y "box" */
  --hero-ghost-font-weight:      600;          /* peso tipogrÃ¡fico del ghost */
  --hero-ghost-letter-spacing:  -13px;         /* espaciado interno de letras */
  --hero-ghost-gap:              13rem;         /* separaciÃ³n entre "job" y "box" */
  --hero-ghost-justify:          right;        /* alineaciÃ³n horizontal del ghost en el contenedor */
  --hero-ghost-left-offset:      200px;          /* desplazamiento X de "job" (positivo = derecha) */
  --hero-ghost-right-offset:     200px;          /* desplazamiento X de "box" (positivo = derecha) */
  --hero-ghost-y-offset-left:    0px;           /* desplazamiento Y de "job" (positivo = abajo) */
  --hero-ghost-y-offset-right:   0px;           /* desplazamiento Y de "box" (positivo = abajo) */
  --ghost-color:                 var(--color-white);  /* color del texto fantasma */
  --ghost-margin-top:            10rem;          /* margen superior del contenedor ghost (negativo = sube) */
  --ghost-opacity-mobile:        0.17;          /* opacidad del ghost en mobile */

  /* ----------------------------------------------------------
     HERO â€” CONTENT (tagline, tÃ­tulo, subtÃ­tulo)
  ---------------------------------------------------------- */
  --hero-tagline-font-size:      1.125rem;     /* tamaÃ±o de fuente del tagline (18px) */
  --hero-tagline-font-weight:    400;          /* peso tipogrÃ¡fico del tagline */
  --hero-title-font-size:        2.5rem;       /* tamaÃ±o de fuente del tÃ­tulo principal */
  --hero-title-font-weight:      400;          /* peso base del tÃ­tulo */
  --hero-title-bold-font-weight: 700;          /* peso del texto en negrita dentro del tÃ­tulo */
  --hero-content-gap:            1.25rem;      /* espacio vertical entre elementos del hero content */
  --hero-content-top:            7rem;          /* posiciÃ³n desde arriba (auto = usa bottom) */
  --hero-content-bottom:         auto;          /* posiciÃ³n desde abajo (auto = usa top) */
  --hero-content-transform:      none;          /* transform adicional: usar translateY(-50%) para centrado vertical */
  --hero-content-left:           3rem;          /* distancia desde el borde izquierdo al contenido */
  --hero-content-max-width:      50%;          /* ancho mÃ¡ximo del bloque de contenido */
  --hero-subtitle-font-size:     1rem;         /* tamaÃ±o de fuente del subtÃ­tulo (16px) */
  --hero-subtitle-font-weight:   400;          /* peso tipogrÃ¡fico del subtÃ­tulo */
  --hero-subtitle-line-height:   1.6;          /* interlineado del subtÃ­tulo */


  /* ----------------------------------------------------------
     HERO â€” BOTÃ“N CTA
  ---------------------------------------------------------- */
  --cta-font-size:      1.0625rem;  /* tamaÃ±o de fuente del CTA (17px) */
  --cta-font-weight:    700;        /* peso tipogrÃ¡fico del CTA */
  --cta-padding-v:      1rem;       /* padding vertical del CTA (16px) */
  --cta-padding-h:      2.5rem;     /* padding horizontal del CTA (40px) */
  --cta-radius:         10px;       /* border-radius del botÃ³n CTA */
  --cta-line-height:    1.3;        /* interlineado del texto del CTA */
  --cta-margin-top:     0.5rem;     /* margen superior entre el CTA y el subtÃ­tulo */
  --cta-text-align:     center;     /* alineaciÃ³n del texto dentro del CTA */


  /* ----------------------------------------------------------
     HERO â€” LAYOUT Y ESPACIADO
  ---------------------------------------------------------- */
  --container-max:     1280px;                  /* ancho mÃ¡ximo del contenedor interior */
  --container-px:      clamp(1.5rem, 5vw, 5rem); /* padding horizontal responsive del contenedor */
  --hero-min-height:   100vh;                   /* altura mÃ­nima del hero (viewport completo) */


  /* ----------------------------------------------------------
     HERO â€” FONDO ANIMADO
  ---------------------------------------------------------- */
  --hero-pattern-color-bg:   #4C2D8F;  /* color base del patrÃ³n (morado oscuro) */
  --hero-pattern-dot-size:   6px;       /* tamaÃ±o de los puntos */
  --hero-pattern-speed-move: 40s;       /* velocidad de movimiento de puntos */
  --hero-pattern-speed-hue:  6s;        /* velocidad del ciclo de color */


  /* ----------------------------------------------------------
     HERO â€” MOBILE OVERLAY
  ---------------------------------------------------------- */
  --hero-content-margin-top-mobile:    1rem;              /* margen superior de la card en mobile */
  --hero-content-margin-bottom-mobile: 1.5rem;            /* separaciÃ³n de la card desde el bottom del hero */
  --hero-overlay-height:             55%;               /* altura del degradado oscuro sobre la imagen en mobile */
  --hero-overlay-color:              rgba(0, 0, 0, 0.35); /* color del degradado overlay en mobile */

}


/* ============================================================
   BREAKPOINT OVERRIDES
   Cada @media sobreescribe las variables base para su viewport.
   hero.css consume las variables base sin sufijo, que se
   sobreescriben aquÃ­ en cada breakpoint.
   ============================================================ */


/* â”€â”€ Laptop (â‰¤1279px) â€” imagen, ghost offsets, content â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1279px) {
  :root {
    --hero-ghost-left-offset:   20px;    /* X de "job" reducido para laptop */
    --hero-ghost-right-offset:  100px;   /* X de "box" ampliado para laptop */
    --hero-ghost-y-offset-left: 0px;     /* Y de "job" sin cambio */
    --hero-ghost-y-offset-right: 0px;    /* Y de "box" sin cambio */
    --hero-ghost-font-size:     15rem;   /* ghost mÃ¡s pequeÃ±o en laptop */
    --hero-ghost-letter-spacing: -6px;   /* letter-spacing reducido */
    --hero-ghost-gap:           4rem;    /* separaciÃ³n entre "job" y "box" */
    --hero-content-top:         5rem;    /* posiciÃ³n desde arriba (auto = usa bottom) */
    --hero-content-bottom:      auto;    /* posiciÃ³n desde abajo */
    --hero-content-transform:   none;    /* sin transform adicional */
    --hero-content-max-width:   50%;     /* card mÃ¡s ancha en laptop */
    --hero-title-font-size:     2.25rem; /* tÃ­tulo ligeramente mÃ¡s pequeÃ±o */
    --hero-image-x: 50%;                /* imagen centrada al 50% */
    --hero-image-width: 48%;            /* imagen mÃ¡s ancha en laptop */
  }
}


/* â”€â”€ Tablet (626pxâ€“768px) â€” layout intermedio, hamburger activo â”€â”€ */
@media (max-width: 768px) and (min-width: 626px) {
  :root {
    --hero-ghost-left-offset:   0px;     /* X de "job" centrado */
    --hero-ghost-right-offset:  100px;     /* X de "box" centrado */
    --hero-ghost-y-offset-left: 0px;     /* Y de "job" sin cambio */
    --hero-ghost-y-offset-right: 0px;    /* Y de "box" sin cambio */
    --hero-ghost-font-size:     12rem;   /* ghost reducido para tablet */
    --hero-ghost-letter-spacing: 0px;    /* sin letter-spacing en tablet */
    --hero-ghost-gap:           1rem;    /* gap mÃ­nimo entre "job" y "box" */
    --hero-content-top:         1rem;    /* posiciÃ³n desde arriba (auto = usa bottom) */
    --hero-content-bottom:      auto;    /* posiciÃ³n desde abajo */
    --hero-content-transform:   none;    /* sin transform adicional */
    --hero-content-max-width:   50%;     /* card ocupa mÃ¡s ancho en tablet */
    --hero-title-font-size:     2rem;    /* tÃ­tulo mÃ¡s pequeÃ±o */
    --hero-image-x: 47%;                /* imagen desplazada a la izquierda */
    --hero-image-width: 55%;            /* imagen mÃ¡s grande en tablet */
  }
}


/* â”€â”€ Mobile (â‰¤625px) â€” card glass, imagen centrada â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 625px) {
  :root {
    --hero-ghost-left-offset:   0px;     /* X de "job" centrado */
    --hero-ghost-right-offset:  0px;     /* X de "box" centrado */
    --hero-ghost-y-offset-left: 0px;     /* Y de "job" sin cambio */
    --hero-ghost-y-offset-right: 0px;    /* Y de "box" sin cambio */
    --hero-ghost-font-size:     12rem;   /* ghost reducido para mobile */
    --hero-ghost-letter-spacing: -4px;   /* letter-spacing mÃ­nimo */
    --hero-ghost-gap:           1rem;    /* gap mÃ­nimo */
    --hero-ghost-justify:          center;  /* ghost centrado horizontalmente */
    --hero-content-max-width:   90%;     /* card casi full-width */
    --hero-title-font-size:     1.75rem;      /* tÃ­tulo mobile */
    --hero-tagline-font-size:  1rem;          /* tagline mobile (16px) */
    --hero-subtitle-font-size: 0.9375rem;    /* subtÃ­tulo mobile (15px) */
    --hero-content-gap:        0.875rem;      /* gap entre elementos de la card */
    --cta-font-size:           0.9375rem;    /* CTA mobile (15px) */
    --cta-padding-v:           0.875rem;      /* padding vertical CTA */
    --cta-padding-h:           2rem;          /* padding horizontal CTA */
    --hero-content-left:       1.5rem;        /* margen izquierdo de la card */
    --hero-content-bottom:     2rem;          /* distancia bottom de la card */
    --hero-image-x:            50%;           /* imagen centrada */
    --hero-image-width:        90%;           /* imagen ocupa 90% del ancho */
    --hero-image-bottom:       0;             /* imagen pegada al fondo */
    --hero-content-margin-bottom-mobile: 1.5rem;  /* separaciÃ³n de la card desde el bottom */
  }
}


/* â”€â”€ Mobile pequeÃ±o (â‰¤420px) â€” textos y mÃ¡rgenes reducidos â”€â”€â”€â”€â”€ */
@media (max-width: 420px) {
  :root {
    --hero-ghost-left-offset:   0px;     /* X de "job" centrado */
    --hero-ghost-right-offset:  0px;     /* X de "box" centrado */
    --hero-ghost-y-offset-left: 120px;     /* Y de "job" sin cambio */
    --hero-ghost-y-offset-right: 120px;    /* Y de "box" sin cambio */
    --hero-ghost-font-size:     10rem;    /* ghost muy reducido */
    --hero-ghost-letter-spacing: -8px;   /* letter-spacing mÃ­nimo */
    --hero-ghost-gap:           0.75rem; /* gap reducido */
    --hero-title-font-size:     1.5rem;       /* tÃ­tulo â‰¤420px */
    --hero-tagline-font-size:   0.9375rem;   /* tagline â‰¤420px (15px) */
    --hero-subtitle-font-size:  0.875rem;    /* subtÃ­tulo â‰¤420px (14px) */
    --hero-content-gap:         0.75rem;     /* gap reducido â‰¤420px */
    --cta-font-size:            0.875rem;    /* CTA â‰¤420px (14px) */
    --hero-content-left:        1rem;        /* margen izquierdo reducido */
    --hero-image-x:             50%;         /* imagen centrada */
    --hero-image-width:         82%;         /* imagen â‰¤420px */
    --hero-content-margin-top-mobile:    5rem;   /* separaciÃ³n de la card desde el top */
    --hero-content-margin-bottom-mobile: auto;   /* bottom auto â€” la card va arriba */
  }
}


/* â”€â”€ Mobile xs (â‰¤360px) â€” mÃ­nimos ajustes de tipografÃ­a â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 360px) {
  :root {
    --hero-ghost-left-offset:   0px;     /* X de "job" centrado */
    --hero-ghost-right-offset:  0px;     /* X de "box" centrado */
    --hero-ghost-y-offset-left: 120px;     /* Y de "job" sin cambio */
    --hero-ghost-y-offset-right: 120px;    /* Y de "box" sin cambio */
    --hero-ghost-font-size:     9rem;    /* ghost mÃ­nimo */
    --hero-ghost-letter-spacing: -8px;   /* letter-spacing mÃ­nimo */
    --hero-ghost-gap:           0.5rem;  /* gap mÃ­nimo */
    --hero-title-font-size:     1.375rem;    /* tÃ­tulo â‰¤360px */
    --hero-tagline-font-size:   0.875rem;   /* tagline â‰¤360px (14px) */
    --hero-subtitle-font-size:  0.8125rem;  /* subtÃ­tulo â‰¤360px (13px) */
    --hero-content-gap:         0.625rem;   /* gap mÃ­nimo â‰¤360px */
    --cta-font-size:            0.875rem;   /* CTA â‰¤360px (14px) */
    --hero-image-width:         90%;        /* imagen â‰¤360px */
    --hero-content-margin-top-mobile: 5rem; /* separaciÃ³n desde el top â‰¤360px */
  }
}


/* â”€â”€ Mobile xxs (â‰¤320px) â€” viewport mÃ¡s pequeÃ±o â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 320px) {
  :root {
    --hero-ghost-left-offset:   -30px;   /* X de "job" desplazado a la izquierda */
    --hero-ghost-right-offset:  20px;    /* X de "box" ligeramente a la derecha */
    --hero-ghost-y-offset-left: 0px;     /* Y de "job" sin cambio */
    --hero-ghost-y-offset-right: 0px;    /* Y de "box" sin cambio */
    --hero-ghost-font-size:     4rem;    /* ghost muy pequeÃ±o para xxs */
    --hero-ghost-letter-spacing: -1px;   /* letter-spacing casi nulo */
    --hero-ghost-gap:           0.5rem;  /* gap mÃ­nimo */
    --hero-title-font-size:     1.25rem;     /* tÃ­tulo â‰¤320px */
    --hero-tagline-font-size:   0.8125rem;  /* tagline â‰¤320px (13px) */
    --hero-subtitle-font-size:  0.75rem;    /* subtÃ­tulo â‰¤320px (12px) */
    --hero-content-gap:         0.5rem;     /* gap mÃ­nimo â‰¤320px */
    --cta-font-size:            0.8125rem;  /* CTA â‰¤320px (13px) */
    --hero-image-width:         95%;        /* imagen â‰¤320px */
    --hero-content-margin-top-mobile: 4rem; /* separaciÃ³n desde el top â‰¤320px */
  }
}
/* ============================================================
   NAVBAR.CSS â€” NavegaciÃ³n principal con dos estados
   Estado 1: Transparente, fijado al top (sobre el hero)
   Estado 2: Pill flotante, fijado al bottom (tras salir del hero)
   ============================================================ */


/* â”€â”€ Contenedor del navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed;
  z-index: 100;
  pointer-events: none; /* El contenedor no captura clicks; las faces sÃ­ */
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FACES â€” Sistema de dos caras
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Base compartida para ambas caras */
.navbar__face {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  transition:
    opacity var(--navbar-transition-duration) ease,
    transform var(--navbar-transition-duration) ease;
}


/* â”€â”€ Face 1: Top (transparente, sobre el hero) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar__face--top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;             /* por encima del mobile menu (z:99) */
  padding: 1.75rem var(--container-px);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  background: transparent;
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Face 2: Pill (bottom flotante) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar__face--pill {
  position: fixed;
  bottom: var(--navbar-bottom-offset);
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  max-width: var(--navbar-pill-max-width);
  width: calc(100% - 3rem);
  padding: var(--navbar-pill-padding);
  background: var(--navbar-pill-bg);
  border-radius: var(--navbar-pill-radius);
  box-shadow: var(--navbar-pill-shadow);
  backdrop-filter: blur(var(--navbar-pill-blur));
  -webkit-backdrop-filter: blur(var(--navbar-pill-blur));
  opacity: 0;
  pointer-events: none;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRANSICIONES ENTRE ESTADOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Paso intermedio: al iniciar la transiciÃ³n, face-top se desvanece hacia arriba */
.navbar--transitioning .navbar__face--top {
  opacity: 0;
  transform: translateY(-16px);
}

/* Cuando ya estÃ¡ scrolled: face-top oculta, face-pill visible */
.navbar--scrolled .navbar__face--top {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

.navbar--scrolled .navbar__face--pill {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* TransiciÃ³n de vuelta: face-pill se oculta hacia abajo */
.navbar--transitioning-back .navbar__face--pill {
  opacity: 0;
  transform: translateX(-50%) translateY(24px);
}

.navbar--transitioning-back .navbar__face--top {
  opacity: 0;
  transform: translateY(-16px);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOGO (Face Top)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar__logo {
  display: flex;
  align-items: center;
}

/* Reemplazar outline por defecto del browser (amarillo/naranja)
   con un outline sutil que no rompa el diseÃ±o del hero */
.navbar__logo:focus {
  outline: none;
}
.navbar__logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 4px;
}

.navbar__logo img,
.navbar__logo svg {
  height: var(--nav-logo-height);
  width: auto;
  display: block;
}

/* Logo completo en face-top: mÃ¡s pequeÃ±o que el genÃ©rico */
.navbar__face--top .navbar__logo img,
.navbar__face--top .navbar__logo svg {
  height: var(--navbar-logo-height);
  width: auto;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ISOTIPO (Face Pill)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar__isotipo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__isotipo {
  width: var(--navbar-isotipo-size);
  height: var(--navbar-isotipo-size);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LINKS DE NAVEGACIÃ“N (compartido)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
}

.navbar__links a {
  font-family: var(--font-primary);
  font-size: var(--nav-link-size);
  font-weight: var(--nav-link-weight);
  color: var(--nav-link-color);
  letter-spacing: 0.01em;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.navbar__links a:hover {
  opacity: 1;
}

/* Links dentro de la pill: tamaÃ±o ligeramente mÃ¡s compacto */
.navbar__links--pill {
  gap: 1.5rem;
}

.navbar__links--pill a {
  font-size: var(--navbar-pill-link-size);
  font-weight: var(--navbar-pill-link-weight);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILIDAD â€” Saltar transiciones (fix scroll rÃ¡pido)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar--no-transition,
.navbar--no-transition .navbar__face--top,
.navbar--no-transition .navbar__face--pill {
  transition: none !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HAMBURGER (mobile â€” solo en face-top)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  z-index: 200;           /* por encima del menÃº (z:99) y del overlay (z:98) */
  color: #ffffff !important;
}

/* â”€â”€ Icon states: open (â‰¡) and close (âœ•) â”€â”€ */

/* Default: show â‰¡, hide âœ• */
.navbar__hamburger-icon--open {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.navbar__hamburger-icon--open span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff !important;
  border-radius: 2px;
}

.navbar__hamburger-icon--close {
  display: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff !important;
  line-height: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* When hamburger is active: swap icons */
.navbar__hamburger[aria-expanded="false"] .navbar__hamburger-icon--open,
.navbar__hamburger:not([aria-expanded]) .navbar__hamburger-icon--open {
  display: flex;
}
.navbar__hamburger[aria-expanded="false"] .navbar__hamburger-icon--close,
.navbar__hamburger:not([aria-expanded]) .navbar__hamburger-icon--close {
  display: none;
}

/* Estado abierto: mostrar âœ• */
.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-icon--open {
  display: none !important;
}
.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-icon--close {
  display: flex !important;
  color: #ffffff !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE MENU â€” Dropdown desplegable (solo visible en â‰¤768px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar__mobile-menu {
  display: none;                           /* oculto en desktop */
}

.navbar__mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar__mobile-menu-links a {
  font-family: var(--font-primary);
  font-size: var(--mobile-menu-link-size);
  font-weight: 500;
  color: var(--mobile-menu-link-color);
  text-decoration: none;
  display: block;
  padding: var(--mobile-menu-link-padding);
  opacity: 0.9;
  transition: opacity 0.2s ease;
  text-align: center;
}

.navbar__mobile-menu-links a:hover {
  opacity: 1;
}

/* Separadores entre links */
.navbar__mobile-menu-links li {
  border-bottom: 1px solid var(--mobile-menu-separator);
}
.navbar__mobile-menu-links li:last-child {
  border-bottom: none;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE OVERLAY â€” Fondo oscuro al abrir el menÃº mobile
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;   /* debajo del menÃº (99) y del navbar (100) */
  opacity: 0;
  transition: opacity 300ms ease;
}
.mobile-overlay.is-active {
  display: block;
  opacity: 1;
}
/* Solo en mobile */
@media (min-width: 769px) {
  .mobile-overlay { display: none !important; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” Mobile (â‰¤ 768px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {

  /* Face Top: ajustar padding en mobile + fondo transparente inicial */
  .navbar__face--top {
    padding: 1.25rem var(--container-px);
    background: transparent;
  }

  /* Fondo semitransparente al hacer scroll en mobile */
  .navbar__face--top.navbar__face--scrolled-mobile {
    background: var(--mobile-top-scroll-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease;
  }

  /* Mostrar hamburger en mobile */
  .navbar__hamburger {
    display: flex;
  }

  /* Ocultar links inline del face-top en mobile */
  .navbar__face--top .navbar__links {
    display: none !important;
  }

  /* â”€â”€ Deshabilitar pill en mobile (CSS fallback) â”€â”€ */
  .navbar__face--pill {
    display: none !important;
  }

  .navbar--scrolled .navbar__face--top {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* â”€â”€ Mobile menu dropdown â”€â”€ */
  .navbar__mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: calc(var(--nav-height) - 1rem);
    background: var(--mobile-menu-bg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--mobile-menu-transition);
    z-index: 99;
    border-radius: var(--mobile-menu-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .navbar__mobile-menu.is-open {
    max-height: calc(var(--mobile-menu-max-height) + var(--nav-height));
    opacity: 1;
  }

  .navbar__mobile-menu-links {
    padding: var(--mobile-menu-padding);
  }

}
/* ============================================================
   HERO â€” Estilos base (desktop-first)
   Valores de diseÃ±o extraÃ­dos de variables.css â€” no hardcoding.
   Las variables sin sufijo se sobreescriben en cada @media de
   variables.css, asÃ­ que hero.css solo consume la versiÃ³n base.
   ============================================================ */


@property --hero-anim-color-bg {
  syntax: '<color>';
  inherits: false;
  initial-value: #8d2aef;
}


/* â”€â”€ Contenedor principal del Hero â”€â”€ */
.hero {
  position: relative;
  min-height: var(--hero-min-height);
  min-height: 100svh;              /* iOS Safari: excluye barra del browser */
  padding-top: var(--nav-height);   /* compensa el navbar fixed */
  overflow: hidden;
  background: var(--hero-pattern-color-bg); /* fallback si el patrÃ³n no carga */
  display: flex;
  flex-direction: column;
}


/* â”€â”€ Contenedor interior (todo menos el navbar) â”€â”€ */
.hero__inner {
  position: relative;
  flex: 1;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-px) 4rem;
}


/* â”€â”€ Texto fantasma (ghost) â”€â”€ */
.hero__ghost {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--container-max);
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: var(--hero-ghost-justify);
  gap: var(--hero-ghost-gap);
  align-items: center;
  padding: 0 var(--container-px);
  margin-top: var(--ghost-margin-top);
  pointer-events: none;
  user-select: none;
  z-index: 5;
}

.hero__ghost-left,
.hero__ghost-right {
  font-family: var(--font-decorative);
  font-size: var(--hero-ghost-font-size);
  font-weight: var(--hero-ghost-font-weight);
  letter-spacing: var(--hero-ghost-letter-spacing);
  color: var(--ghost-color);
  opacity: var(--ghost-opacity);
  line-height: 1;
  display: flex;
  align-items: center;
}

.hero__ghost-left {
  transform: translateX(var(--hero-ghost-left-offset)) translateY(var(--hero-ghost-y-offset-left));
}

.hero__ghost-right {
  transform: translateX(var(--hero-ghost-right-offset)) translateY(var(--hero-ghost-y-offset-right));
}


/* â”€â”€ Fondo animado de puntos â”€â”€ */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--hero-anim-color-bg);
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: var(--hero-pattern-dot-size) var(--hero-pattern-dot-size);
  background-position: 0 0;
  animation:
    hero-pattern-move var(--hero-pattern-speed-move) linear infinite,
    hero-pattern-color var(--hero-pattern-speed-hue) ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes hero-pattern-color {
  0%   { --hero-anim-color-bg: #8d2aef; }
  33%  { --hero-anim-color-bg: #7739E4; }
  66%  { --hero-anim-color-bg: #532F9C; }
  100% { --hero-anim-color-bg: #8d2aef; }
}

@keyframes hero-pattern-move {
  from { background-position: 0 0; }
  to   { background-position: var(--hero-pattern-dot-size) var(--hero-pattern-dot-size); }
}


/* â”€â”€ Imagen principal â”€â”€ */
.hero__image {
  position: absolute;
  right: 0;
  bottom: var(--hero-image-bottom);
  left: var(--hero-image-x);
  width: var(--hero-image-width);
  height: var(--hero-image-height);
  object-fit: contain;
  object-position: bottom;
  z-index: 10;
  transform: translateX(0);
  pointer-events: none;
  user-select: none;
}


/* â”€â”€ Contenido (tagline, tÃ­tulo, subtÃ­tulo, CTA) â”€â”€ */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--hero-content-gap);
  max-width: var(--hero-content-max-width);
  position: absolute;
  top: var(--hero-content-top);
  bottom: var(--hero-content-bottom);
  left: var(--hero-content-left);
  transform: var(--hero-content-transform);
  z-index: 40;
  color: #ffffff;
}

.hero__tagline {
  font-size: var(--hero-tagline-font-size);
  font-weight: var(--hero-tagline-font-weight);
  font-family: var(--font-primary);
  margin: 0;
}

.hero__title {
  font-size: var(--hero-title-font-size);
  font-weight: var(--hero-title-font-weight);
  font-family: var(--font-primary);
  line-height: 1.25;
  margin: 0;
}

.hero__title--bold {
  font-weight: var(--hero-title-bold-font-weight);
}

.hero__subtitle {
  font-size: var(--hero-subtitle-font-size);
  font-weight: var(--hero-subtitle-font-weight);
  font-family: var(--font-primary);
  line-height: var(--hero-subtitle-line-height);
  color: #ffffff;
  margin: 0;
}


/* â”€â”€ BotÃ³n CTA â”€â”€ */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  white-space: nowrap;
  margin-top: var(--cta-margin-top);

  background-color: var(--cta-bg, var(--color-cta-bg));
  color: var(--cta-text, var(--color-cta-text));
  font-family: var(--font-primary);
  font-size: var(--cta-font-size);
  font-weight: var(--cta-font-weight);
  text-align: var(--cta-text-align);
  line-height: var(--cta-line-height);

  padding: var(--cta-padding-v) var(--cta-padding-h);
  border-radius: var(--cta-radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.hero__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero__cta:active {
  transform: scale(0.98);
}


/* ============================================================
   LAPTOP (â‰¤1279px)
   ============================================================ */
@media (max-width: 1279px) {

  /* â”€â”€ Texto fantasma â”€â”€ */
  .hero__ghost {
    justify-content: var(--hero-ghost-justify);
    gap: var(--hero-ghost-gap);
  }

  .hero__ghost-left,
  .hero__ghost-right {
    font-size: var(--hero-ghost-font-size);
    letter-spacing: var(--hero-ghost-letter-spacing);
  }

  /* â”€â”€ Imagen â”€â”€ */
  .hero__image {
    left: var(--hero-image-x);
    width: var(--hero-image-width);
  }
}


/* ============================================================
   TABLET (626px â€“ 768px)
   ============================================================ */
@media (max-width: 768px) and (min-width: 626px) {

  /* â”€â”€ Texto fantasma â”€â”€ */
  .hero__ghost {
    justify-content: var(--hero-ghost-justify);
    gap: var(--hero-ghost-gap);
  }

  .hero__ghost-left,
  .hero__ghost-right {
    font-size: var(--hero-ghost-font-size);
    letter-spacing: var(--hero-ghost-letter-spacing);
  }

  /* â”€â”€ Imagen reposicionada para tablet â”€â”€ */
  .hero__image {
    left: var(--hero-image-x);
    width: var(--hero-image-width);
  }
}


/* ============================================================
   MOBILE (â‰¤625px)
   ============================================================ */
@media (max-width: 625px) {

  /* â”€â”€ Hero: flex column para que la card fluya al top â”€â”€ */
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* â”€â”€ Texto fantasma: absolute para no empujar la card â”€â”€ */
  .hero__ghost {
    position: absolute;
    display: flex;
    justify-content: var(--hero-ghost-justify);
    align-items: center;
    gap: var(--hero-ghost-gap);
    width: 100%;
    padding: 0 var(--container-px);
    margin-top: 0;
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    max-width: none;
    transform: translateY(-50%);
    z-index: 5;
  }

  .hero__ghost-left,
  .hero__ghost-right {
    font-size: var(--hero-ghost-font-size);
    letter-spacing: var(--hero-ghost-letter-spacing);
    opacity: var(--ghost-opacity-mobile);
  }

  /* â”€â”€ Imagen: absolute en el fondo, detrÃ¡s de la card â”€â”€ */
  .hero__image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--hero-image-width);
    z-index: 10;
    order: 2;
  }
}


/* â”€â”€ Gradient overlay, contenido y textos â€” solo en mobile â‰¤625px â”€â”€ */
@media (max-width: 625px) {

  /* â”€â”€ Gradient overlay para legibilidad de la imagen â”€â”€ */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--hero-overlay-height);
    background: linear-gradient(to top, var(--hero-overlay-color) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
  }

  /* â”€â”€ Inner: reset para mobile â”€â”€ */
  .hero__inner {
    position: static;
    padding-bottom: 0;
  }

  /* â”€â”€ Contenido: card glass anclada al bottom del hero â”€â”€ */
  .hero__content {
    position: absolute;
    bottom: var(--hero-content-margin-bottom-mobile);
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 100%;
    z-index: 40;
    background: var(--color-overlay);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  /* â”€â”€ BotÃ³n CTA centrado â”€â”€ */
  .hero__cta {
    align-self: center;
  }
}


/* â”€â”€ Mobile â‰¤420px â€” card sube al top â”€â”€ */
@media (max-width: 420px) {
  .hero__content {
    top: var(--hero-content-margin-top-mobile);
    bottom: auto;
  }
}


/* ============================================================
   MOBILE XS (â‰¤360px)
   ============================================================ */
@media (max-width: 360px) {

  /* â”€â”€ Texto fantasma â”€â”€ */
  .hero__ghost-left,
  .hero__ghost-right {
    font-size: var(--hero-ghost-font-size);
    letter-spacing: var(--hero-ghost-letter-spacing);
  }

  /* â”€â”€ Card content ajustado â”€â”€ */
  .hero__content {
    width: calc(100% - 1.5rem);
    padding: 1rem 0.875rem;
  }
}


/* ============================================================
   MOBILE XXS (â‰¤320px)
   ============================================================ */
@media (max-width: 320px) {

  /* â”€â”€ Texto fantasma â”€â”€ */
  .hero__ghost {
    gap: var(--hero-ghost-gap);
    justify-content: var(--hero-ghost-justify);
  }

  .hero__ghost-left,
  .hero__ghost-right {
    font-size: var(--hero-ghost-font-size);
    letter-spacing: var(--hero-ghost-letter-spacing);
  }
}


/* ============================================================
   SECCIONES PLACEHOLDER
   ============================================================ */
#para-quien,
#el-proceso,
#resultados {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: #ccc;
  border-top: 1px solid #eee;
}

#para-quien  { background: #f9f9f9; }
#para-quien::after  { content: "Para quiÃ©n"; }

#el-proceso  { background: #f2f2f2; }
#el-proceso::after  { content: "El proceso"; }

#resultados  { background: #ececec; }
#resultados::after  { content: "Resultados"; }

/* ============================================================
   HERO NUEVO — AWARDS, CTAS, ENTREPRENEUR
   ============================================================ */

/* Awards container */
.hero__awards {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

/* Award item — glass badge para fondo morado */
.hero__award-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 10px;
  padding: 0.5rem 0.875rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}
.hero__award-item:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Award icon */
.hero__award-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  filter: brightness(0) invert(1);
}

/* Award text */
.hero__award-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero__award-title {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.hero__award-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Divider vertical entre los dos badges */
.hero__award-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  align-self: center;
}

/* CTAs group */
.hero__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* CTA secundario — glassmorphism */
.hero__cta--secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.70);
  border-radius: var(--cta-radius);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.hero__cta--secondary:hover,
.hero__cta--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.95);
  color: #ffffff;
}
.hero__cta--secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

/* Entrepreneur paragraph */
.hero__entrepreneur {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero__entrepreneur-link {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.40);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  cursor: pointer;
}
.hero__entrepreneur-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

/* -- Mobile =625px -- */
@media (max-width: 625px) {
  .hero__awards {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .hero__award-divider {
    display: none;
  }
  .hero__award-item {
    width: 100%;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero__cta--secondary {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .hero__entrepreneur {
    font-size: 0.8125rem;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
     BOTÓN FLOTANTE WHATSAPP (ESTILO BRANDED)
   ══════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-family: var(--font-main), Arial, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(76, 65, 123, 0.12);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 65, 123, 0.2);
    background-color: var(--accent-primary);
    color: white;
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    .whatsapp-float i {
        font-size: 1.25rem;
    }
}



