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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

/* === CONTAINERS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero .container {
    max-width: 1400px;
}

/* === HEADER & NAVIGATION === */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #667eea;
}

/* === NOTIFICATIONS BADGE (Header) === */
.notification-badge {
    position: relative;
    margin-right: 1rem;
}

.notification-icon {
    position: relative;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.notification-icon:hover {
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #f59e0b;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.btn-founding {
    background: #f59e0b;
    color: white;
    border: none;
}

.btn-block {
    width: 100%;
}

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

.login-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn i {
    color: #667eea;
    transition: color 0.3s ease;
}

.login-btn:hover {
    background: #667eea;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.login-btn:hover i {
    color: white !important;
}

/* === HERO SECTION === */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* === DYNAMIC STATS (Hero) === */
.dynamic-stats {
    display: flex;
    gap: 2rem;
    margin: 0 0 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    color: white;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* === VALUE PROPOSITION === */
.value-prop {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-prop h3 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.value-prop p {
    color: #6b7280;
}

/* Final CTA específico */
.final-cta {
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
}

/* === WAITLIST FORM === */
.waitlist-form {
    max-width: 450px;
    margin: 2rem 0;
}

.waitlist-form h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.form-microcopy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* === REAL-TIME NOTIFICATIONS (Toast) === */
/* REAL-TIME NOTIFICATIONS (Toast) - Modificado para posición superior */
.live-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: auto;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    max-width: 380px;
}

@media (max-width: 768px) {
    .live-notifications {
        top: 16px;
        right: 16px;
        left: auto;
        max-width: calc(100% - 32px);
    }
    
    .notification-toast {
        width: 100%;
        min-width: auto;
    }
}
.notification-toast {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10b981;
    min-width: 300px;
    transform: translateX(400px);
    animation: slideIn 0.5s forwards;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0;
    animation-delay: 3s;
}

.notification-icon-small {
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.9rem;
}

.notification-message {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Nuevo contenedor para notificaciones en vivo en la parte superior */
/* Nuevo contenedor para notificaciones en vivo en la parte superior */
.live-toast-container {
    position: fixed;
    top: 20px !important;
    bottom: auto !important;
    right: 20px;
    left: auto !important;
}
/* Eliminar la regla para móvil que lo centraba */
@media (max-width: 768px) {
    .live-toast-container {
        top: 16px;
        right: 20px;  /* Cambiado de 'left: 50%' a 'right: 20px' */
        left: auto;   /* Eliminar el centrado */
        transform: none; /* Eliminar transformación */
        width: auto;
        max-width: calc(100% - 32px);
        align-items: flex-end; /* Alinear a la derecha */
    }
}

/* === TOAST CONTAINER (System) === */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-message {
    flex: 1;
    font-size: 0.875rem;
}

.toast-close {
    background: none;
    border: none;
    color: #64748B;
    cursor: pointer;
    padding: 0;
}

/* === FEATURES SECTION === */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
}

/* === SEO CONTENT (gris) === */
.seo-content {
    padding: 4rem 0;
    background: #f9fafb;
}

.seo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.seo-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.seo-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: #1f2937;
}

/* === FAQ SECTION (gris) === */
.faq-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-simple {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-simple h3 {
    font-size: 1.25rem;
    color: #111827;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.faq-simple h3:first-of-type {
    margin-top: 0;
}

.faq-simple p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-simple p:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* === FOUNDING PARTNER SECTION === */
.founding-highlight {
    background: #fef9e7;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin: 3rem auto 2rem;
    max-width: 1000px;
    border: 2px solid #fbbf24;
    position: relative;
}

.founding-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.founding-title i {
    color: #f59e0b;
}

.spots-counter {
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    margin: 1rem 0 1.5rem;
}

.founding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
    margin: 2rem 0;
}

.founding-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.founding-item i {
    color: #667eea;
    font-size: 1.5rem;
    width: 32px;
}

.founding-item strong {
    color: #111827;
    font-size: 1.1rem;
}

.founding-note {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.legal-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1.5rem;
    border-top: 1px dashed #d1d5db;
    padding-top: 1rem;
}

.legal-note i {
    color: #f59e0b;
}

/* === PRICING SECTION === */
.pricing {
    padding: 6rem 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #6b7280;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.price-savings {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features i.fa-check {
    color: #10b981;
}

.price-features i.fa-plus-circle {
    color: #667eea;
}

.price-features i.fa-chart-line {
    color: #10b981;
}

.price-disabled {
    opacity: 0.5;
    filter: grayscale(0.5);
    pointer-events: none;
}

.coming-soon-badge {
    background: #9ca3af;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
}

/* === CUSTOM PLAN === */
.custom-plan {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.custom-plan h3 {
    margin-bottom: 1rem;
}

.custom-plan p {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.custom-plan a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s;
}

.custom-plan a:hover {
    background: #667eea;
    color: white;
}

/* === MODALS === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalAppear 0.3s ease-out;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.payment-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    position: relative;
}

.payment-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-element {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    background: #f9fafb;
}

/* === AUTHENTICATION MODAL ELEMENTS === */
.auth-options {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.auth-btn {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.auth-btn.google {
    background: #4285F4;
    color: white;
    border-color: #4285F4;
}

.auth-btn.email {
    background: white;
    color: #111827;
    border-color: #d1d5db;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === FOOTER === */
footer {
    padding: 4rem 0 2rem;
    background: #111827;
    color: #9ca3af;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.8rem;
}

/* === ANIMATIONS === */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .dynamic-stats {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

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

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

    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .form-group button {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
    }
}

/* Mobile */
@media (max-width: 520px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.hero-target{
    margin-top:8px;
    font-size:0.85rem;
    opacity:0.75;
    color:#4b5563;
}

.google-btn:hover {
    background-color: #f8f9fa !important;
    border-color: #d2e3fc !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
}

.google-btn:active {
    background-color: #e8eef9 !important;
}
 
/* VIDEO */
/* === VIDEO HERO LAYOUT === */

.hero-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}
.hero-text-col {
    position: relative;
    z-index: 2;
}

.hero-video-col {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.3);
    width: min(660px, 100%);}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-bottom-row {
    position: relative;
    z-index: 2;
}

.hero-bottom-row .dynamic-stats {
    margin: 0 0 1.5rem 0;
}

.hero-bottom-row .buttons-trial {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .video-card {
        min-width: 380px;
    }
}

@media (max-width: 900px) {
    .hero-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-col {
        order: 1;
    }
    
    .hero-video-col {
        order: 2;
        justify-content: center;
    }
    
    .hero-bottom-row {
        order: 3;
    }
    
    .video-card {
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero-top-row {
        gap: 1.5rem;
    }
    
    .video-card {
        padding: 0.75rem;
    }
}