:root {
    --color-primary: #0F52BA;
    /* Sapphire Blue */
    --color-secondary: #00B4D8;
    /* Vibrant Cyan */
    --color-dark: #0f172a;
    /* Slate 900 */
    --color-dark-gray: #334155;
    /* Slate 700 */
    --color-light: #ffffff;
    --color-light-gray: #f8fafc;
    /* Slate 50 */
    --color-border: #e2e8f0;
    /* Slate 200 */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-text: 'Inter', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-norm: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 25px rgba(15, 82, 186, 0.35);
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Variable for elements that should always be white/dark regardless of theme */
    --color-absolute-white: #ffffff;
    --color-absolute-dark: #0f172a;
}



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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-light);
    color: var(--color-dark-gray);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

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

.bg-light {
    background-color: var(--color-light-gray);
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary,
.btn-primary-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all var(--transition-norm);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

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

.btn-primary-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-soft {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all var(--transition-norm);
    cursor: pointer;
    border: none;
    text-align: center;
    background-color: rgba(15, 82, 186, 0.08);
    color: var(--color-primary);
}

.btn-soft:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar CTA button */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-norm);
    box-shadow: var(--shadow-sm);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-nav-cta::after {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 45px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    transition: transform var(--transition-fast);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a.active {
    color: var(--color-primary);
    font-weight: 700;
}


.nav-links li a {
    color: var(--color-dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 0.3rem;
    transition: color var(--transition-fast);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-links li a:hover {
    color: var(--color-primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.btn-nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 216, 0.15);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-title em {
    font-style: italic;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-actions .btn-primary-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-actions .btn-primary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: none;
}

/* Section Common */


/* Para quién es */
.section-paraquien {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
    background: #f0f6ff;
}

.paraquien-inner {
    text-align: center;
}

.paraquien-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.paraquien-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.paraquien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.paraquien-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-dark-gray);
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

.paraquien-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 82, 186, 0.2);
}

.paraquien-item i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Pain Grid */
.section-pain {
    padding: 6rem 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pain-card {
    background: var(--color-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(15, 82, 186, 0.3);
}

.pain-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pain-card p {
    font-size: 1.05rem;
}

/* Proceso */
.section-proceso {
    padding: 6rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.proceso-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.proceso-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.paso-num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.25;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.paso-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.paso-desc {
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

.proceso-arrow {
    color: var(--color-primary);
    font-size: 1.5rem;
    opacity: 0.4;
    padding-top: 3.5rem;
    flex-shrink: 0;
}

/* Programs Grid */
.section-programs {
    padding: 6rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-card.popular {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
    transform: translateY(-12px);
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.program-card.popular:hover {
    transform: translateY(-16px);
    box-shadow: 0 25px 50px rgba(0, 180, 216, 0.2);
}

.badge-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.05em;
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.program-duration {
    font-size: 0.85rem;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.program-desc {
    margin-bottom: 1.5rem;
    color: var(--color-dark-gray);
    flex-grow: 1;
}

.program-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.program-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.program-footer {
    text-align: center;
    margin-top: auto;
}

.program-footer .btn-primary,
.program-footer .btn-primary-outline {
    width: 100%;
}

/* Dichotomy */
.section-dichotomy {
    padding: 6rem 0;
    background-color: #020617;
    /* Slate 950 */
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.section-dichotomy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(15, 82, 186, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.dichotomy-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.vs-circle {
    background: var(--gradient-primary);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    border: 6px solid #020617;
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.4);
}

.vs-circle.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.dichotomy-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex: 1;
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.option-b {
    border-color: rgba(0, 180, 216, 0.3);
    background: linear-gradient(145deg, rgba(15, 82, 186, 0.1), rgba(0, 180, 216, 0.05));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.dichotomy-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.dichotomy-list {
    list-style: none;
}

.dichotomy-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ccc;
}

.option-a .dichotomy-list i {
    color: #ff4d4f;
}

.option-b .dichotomy-list i {
    color: #52c41a;
}

/* Testimonials */
.section-testimonials {
    padding: 6rem 0;
    background: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
    overflow: hidden;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-dark-gray);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-link {
    color: var(--color-primary);
    font-size: 0.85rem;
    transition: transform var(--transition-fast), color var(--transition-fast);
    line-height: 1;
}

.testimonial-link:hover {
    color: #e4405f;
    transform: scale(1.1);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-dark-gray);
    margin: 0;
}

.testimonial-result {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

/* FAQ */
.section-faq {
    padding: 6rem 0;
    border-top: 1px solid var(--color-border);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--color-primary);
    transition: transform var(--transition-norm);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.97rem;
    color: var(--color-dark-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    mix-blend-mode: multiply;
}

.footer-desc {
    max-width: 300px;
    color: var(--color-dark-gray);
    font-size: 0.95rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.contact-list a {
    color: var(--color-dark-gray);
}

.contact-list a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-dark-gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--color-dark-gray);
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .dichotomy-container {
        flex-direction: column;
        gap: 2rem;
    }

    .dichotomy-box {
        padding: 2.5rem 2rem;
    }

    .vs-circle {
        position: static;
        transform: none;
        margin: -1rem auto;
        z-index: 10;
    }

    .proceso-grid {
        flex-direction: column;
        align-items: center;
    }

    .proceso-arrow {
        padding: 1rem 0;
        transform: none;
        display: flex;
        justify-content: center;
    }

    .proceso-arrow i {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1.5rem 0;
    }

    .nav-links li {
        margin: 0.6rem 0;
        text-align: center;
        width: 100%;
    }

    .btn-nav-cta {
        margin: 0.5rem auto;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 130px 0 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-slider {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 0.25;
    }

    .hero-slider::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .pain-grid,
    .programs-grid,
    .testimonials-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-top: 2.5rem;
        padding-bottom: 2rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pain-grid::-webkit-scrollbar,
    .programs-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .pain-card,
    .program-card,
    .program-card-link,
    .testimonial-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .paraquien-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        width: 90%;
        max-width: 340px;
        white-space: normal;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 2rem;
    }

    .paraquien-title {
        font-size: 1.6rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 250px;
    height: auto;
    animation: logo-pulse 2s infinite ease-in-out;
    mix-blend-mode: multiply;
}

@keyframes logo-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* ===================================
   Program Card Links (index.html)
   =================================== */
.programs-grid--duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.program-card-link {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
    border: 1px solid var(--color-border);
}

.program-card-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: inherit;
}

.program-card-hero {
    background: linear-gradient(135deg, #050b14, #0056b3);
    /* Dark blue to Fluir Blue */
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #D4AF37;
    /* Gold accent */
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program-card-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.program-card-hero--pac {
    background: linear-gradient(135deg, #0056b3 0%, #2ecc71 100%);
    /* Azul Logo Fluir a Verde Esmeralda */
    border-bottom: 3px solid #fff;
}

.program-card-hero--team {
    background: linear-gradient(135deg, #20c997 0%, #48c6ef 100%);
    /* Verde Agua Gradient */
    border-bottom: 3px solid transparent;
}

.program-card-hero--team * {
    color: #fff !important;
}

.program-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    /* Gold background */
    backdrop-filter: blur(8px);
    color: #D4AF37;
    /* Gold text */
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold border */
}

.program-badge--hot {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.program-card-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
}

.program-card-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.program-card-hero--pac .program-card-hero-sub {
    color: #fff;
}

.program-card-body {
    padding: 2rem 2.5rem 2.5rem;
    background: var(--color-light);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card-body p {
    color: var(--color-dark-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-card-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

.program-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
    transition: gap var(--transition-fast);
}

.program-card-link:hover .program-card-cta {
    gap: 1rem;
}

/* ===================================
   Program Detail Pages
   =================================== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #050b14, #0f1c3f);
    /* Dark blue premium */
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D4AF37;
    /* Gold top line */
    z-index: 2;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.page-hero--pac {
    background: linear-gradient(135deg, #1e3a8a, #00B4D8, #20c997);
    /* Azul a Celeste a Verde agua */
}

.page-hero--pac::before {
    background: var(--color-absolute-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: #fff;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(8px);
    color: #D4AF37;
    /* Gold text */
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.page-hero-badge--hot {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.page-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.page-hero-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-hero--pac .page-hero-sub {
    color: #fff;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.6;
}

.page-hero--pac .page-hero-desc {
    color: rgba(255, 255, 255, 0.9);
}

.section-programs-detail {
    padding: 6rem 0;
}

.section-cta-final {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

/* ===================================
   PAC Specific Styles
   =================================== */
.pac-pillars {
    padding: 5rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-light);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

/* Promise */
.pac-promise {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

.promise-box {
    text-align: center;
    margin-bottom: 3rem;
}

.promise-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.promise-text {
    font-size: 1.6rem;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

/* Audience */
.pac-audience {
    padding: 5rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.audience-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.audience-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

/* Roadmap */
.pac-roadmap {
    padding: 5rem 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.roadmap-step {
    padding: 2rem 1.5rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
}

.roadmap-week {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.roadmap-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.roadmap-step p {
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

/* Goals */
.pac-goals {
    padding: 5rem 0;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.goal-card {
    padding: 2.5rem 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.goal-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.goal-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.goal-card p {
    font-size: 0.95rem;
    color: var(--color-dark-gray);
    line-height: 1.6;
}

/* Pricing */
.pac-pricing {
    padding: 5rem 0;
    background: #020617;
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.pricing-details {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-dates {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.pricing-date-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.pricing-date-value {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
}

.pricing-before {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pricing-now {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.pricing-alt {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

.pricing-includes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-include-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-include-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.pricing-include-item h4 {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.pricing-include-item p {
    color: #64748b;
    font-size: 0.85rem;
}

/* Team */
.section-team {
    padding: 5rem 0;
    background-color: var(--color-light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-light-gray);
    color: var(--color-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 3px solid #fff;
    overflow: hidden;
    position: relative;
}

.team-avatar-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
}

.avatar-vanesa {
    background-image: url('../assets/vanesa.png');
}

.avatar-martin {
    background-image: url('../assets/martin.png');
}

.avatar-antonela {
    background-image: url('../assets/antonela.png');
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* ===================================
   MAR Specific Styles
   =================================== */
.mar-quote {
    padding: 6rem 0;
    text-align: center;
    background: var(--color-light-gray);
}

.mar-quote blockquote {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-heading);
    line-height: 1.4;
    position: relative;
}

.mar-pillars {
    padding: 5rem 0;
}

.mar-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mar-pillar-card {
    padding: 2.5rem 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
    text-align: center;
}

.mar-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mar-pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #050b14, #0f1c3f);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.mar-pillar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.mar-pillar-card p {
    font-size: 0.9rem;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #D4AF37;
}

.mar-synergy {
    padding: 6rem 0;
    background: var(--color-light-gray);
    text-align: center;
}

.mar-synergy-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

.mar-case {
    padding: 6rem 0;
}

/* Success Case Detail (MAR Page) */
.mar-case-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.mar-case-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.mar-case-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mar-case-location {
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.mar-case-industry {
    color: var(--color-dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mar-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mar-case-card {
    padding: 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    border-left: 4px solid #D4AF37;
    box-shadow: var(--shadow-sm);
}

.mar-case-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.mar-case-card p {
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

/* Carousel Navigation & Dots - Hidden on desktop by default */
.carousel-nav-btn,
.carousel-dots {
    display: none;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .programs-grid--duo {
        display: flex;
    }

    .pillars-grid,
    .stats-grid,
    .goals-grid,
    .team-grid,
    .pricing-includes,
    .mar-pillars-grid,
    .mar-case-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid,
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .program-card-hero-title {
        font-size: 2.2rem;
    }

    .pricing-details {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-dates {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Carousel Navigation & Dots */
    .carousel-wrapper {
        position: relative;
        margin: 2rem 0;
    }

    .carousel-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--color-border);
        color: var(--color-primary);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-norm);
        z-index: 10;
    }

    .carousel-nav-btn.prev {
        left: -22px;
    }

    .carousel-nav-btn.next {
        right: -22px;
    }

    .carousel-nav-btn:hover {
        background: var(--color-primary);
        color: #fff;
        transform: translateY(-50%) scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--color-border);
        cursor: pointer;
        transition: all var(--transition-norm);
    }

    .carousel-dots .dot.active {
        background: var(--color-primary);
        transform: scale(1.2);
    }

    /* Mobile adjustments for carousel nav */
    .carousel-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .carousel-nav-btn.prev {
        left: -10px;
    }

    .carousel-nav-btn.next {
        right: -10px;
    }

    .carousel-wrapper {
        margin: 0;
    }

    .promise-text {
        font-size: 1.3rem;
    }
}