:root {
    --bg-color: #050508;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    --primary: #6366f1; /* Indigo/Neon blue */
    --secondary: #a855f7; /* Purple */
    --accent: #06b6d4; /* Cyan */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .badge {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, rgba(5, 5, 8, 0) 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, rgba(5, 5, 8, 0) 40%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(5, 5, 8, 0.6);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary-small) {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-primary-small {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border: 1px solid transparent;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.sub-cta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
    border-radius: 20px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section (Qué es) */
.about-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem 2rem;
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
}

.about-container .section-title {
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.3rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.philosophy-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.topic-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.topic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.topic-icon {
    font-size: 1.5rem;
}

.topics-footer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Classes Section */
.classes-section {
    padding: 4rem 5% 6rem;
    text-align: center;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.class-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.class-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.1);
}

.class-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.class-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.4;
    font-weight: 500;
}

/* Method Section (Cómo funciona) */
.method-section {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 5, 8, 0) 0%, rgba(168, 85, 247, 0.03) 50%, rgba(5, 5, 8, 0) 100%);
}

.method-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.method-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-step:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.5);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.method-step p {
    color: var(--text-muted);
    font-size: 1rem;
}

.method-arrow {
    font-size: 2.5rem;
    color: var(--text-muted);
    opacity: 0.4;
    margin-top: 3.5rem;
}

/* Community Section */
.community-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
}

.community-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 30px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.community-text {
    flex: 1;
}

.community-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.community-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.community-list li {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    background: rgba(99, 102, 241, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.community-visual {
    flex: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-container {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(5, 5, 8, 0) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    margin-top: 2rem;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item summary {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* CTA Bottom */
.cta-bottom {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
}

.final-cta-panel {
    padding: 5rem 2rem;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.final-cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.glass-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.glass-panel p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.glow-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.glow-btn:hover::after {
    opacity: 1;
}

/* Footer */
footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 8, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Floating Elements */
.telegram-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
}

.telegram-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.6);
}

.assistant-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s;
}

.assistant-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.assistant-window {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 380px;
    max-height: 600px;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.assistant-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.assistant-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border-radius: 20px 20px 0 0;
}

.assistant-controls button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: 0.5rem;
    transition: color 0.3s;
}

.assistant-controls button:hover {
    color: var(--text-main);
}

.assistant-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 350px;
}

.chat-msg {
    padding: 1rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-msg {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    align-self: flex-start;
    color: var(--text-main);
}

.user-msg {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    align-self: flex-end;
    color: white;
}

.typing-indicator span {
    animation: blink 1.4s infinite both;
    font-size: 1.5rem;
    line-height: 0.5;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

.assistant-quick-replies {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 0 0 20px 20px;
    max-height: 150px;
    overflow-y: auto;
}

.quick-reply-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-reply-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

.quick-reply-btn.special {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    text-decoration: none;
    display: inline-block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    .cta-group {
        align-items: center;
        justify-content: center;
    }
    h1 {
        font-size: 3rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 99;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    .nav-links a:not(.btn-primary-small) {
        display: block;
    }
    .navbar {
        justify-content: space-between;
    }
    
    .telegram-float {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .assistant-float {
        bottom: 1rem;
        right: 1rem;
        font-size: 0;
        padding: 0.8rem;
        border-radius: 50%;
    }
    .assistant-float i {
        margin-right: 0 !important;
    }
    
    .assistant-window {
        width: calc(100% - 2rem);
        bottom: 5rem;
        right: 1rem;
        left: 1rem;
    }
    
    .footer-content, .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .method-flow {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .method-step {
        width: 100%;
        max-width: 400px;
    }
    
    .method-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .community-panel {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    
    .community-panel .section-title {
        text-align: center !important;
    }
    
    .community-list {
        align-items: center;
        text-align: left;
    }
    
    .final-cta-panel {
        padding: 3rem 1.5rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.4rem;
    }
    
    .final-cta-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Animations */
.reveal, .reveal-up, .reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal.active, .reveal-up.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}
