:root {
    --primary: #FF7A00;
    --primary-light: #FFF8F3;
    --secondary: #4776E6;
    --secondary-light: #8E54E9;
    --white: #FFFFFF;
    --dark: #222222;
    --gray: #F8F9FA;
    --gray-light: #F0F0F0;
    --gray-dark: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navbar */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--secondary), var(--secondary-light));
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: var(--primary-light);
    z-index: -1;
}

.hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.hero-video {
    width: 50%;
    position: relative;
}

.hero-content {
    width: 50%;
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.highlight {
    padding: 3px 10px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.video-container {
    width: 100%;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.video-player {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background-color: var(--dark);
    border-radius: 12px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 5px;
}

.video-text {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.use-case-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-image {
    height: 160px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.1);
}

.use-case-content {
    padding: 25px;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.icon-business {
    background-color: #E3F2FD;
    color: #2196F3;
}

.icon-birthday {
    background-color: #FFF3E0;
    color: #FF9800;
}

.icon-valentine {
    background-color: #FCE4EC;
    color: #E91E63;
}

.icon-wedding {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.use-case-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.use-case-text {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: var(--gray);
    z-index: -1;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    padding: 30px;
    border-bottom: 1px solid var(--gray-light);
    text-align: center;
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.pricing-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.pricing-period {
    font-size: 14px;
    color: var(--gray-dark);
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-icon {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Testimonial Videos */
.testimonial-videos {
    padding: 80px 0;
    background-color: var(--gray);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.customer-video {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.customer-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.customer-video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.customer-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.customer-video:hover .customer-video-thumbnail img {
    transform: scale(1.1);
}

.customer-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    z-index: 1;
}

.customer-video-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 4px;
}

.customer-video-info {
    padding: 20px;
}

.customer-video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.customer-video-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.customer-video-duration {
    font-size: 14px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-video-category {
    font-size: 13px;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.customer-video-description {
    font-size: 14px;
    color: var(--gray-dark);
    margin-top: 10px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #4776E6;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--gray-dark);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray-dark);
}

.modal-footer {
    padding: 0 30px 30px;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.modal-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--gray-light);
}

.modal-divider span {
    background-color: var(--white);
    padding: 0 15px;
    color: var(--gray-dark);
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--gray-light);
    background-color: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.social-btn:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.modal-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-dark);
}

.modal-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray-dark);
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content, .hero-video {
        width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .pricing-options {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-gallery {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 767px) {
    .navbar-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-radius: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}
/* FAQ Section Styles */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: #f8f9ff;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9ff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 30px 30px;
    margin: 0;
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.active .faq-question {
    border-bottom-color: #e8ecff;
    background-color: #f8f9ff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .faq-answer p {
        padding: 15px 20px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 16px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 12px 16px 20px;
        font-size: 14px;
    }
}
/* CTA Section Styles */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.cta-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-actions {
    flex-shrink: 0;
    text-align: center;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg svg {
    transition: transform 0.3s ease;
}

.btn-lg:hover svg {
    transform: translateX(4px);
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-guarantee svg {
    color: #10b981;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cta-content {
        gap: 40px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-stats {
        gap: 30px;
    }
    
    .cta-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-stats {
        justify-content: center;
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .cta-stat-number {
        font-size: 24px;
    }
    
    .cta-stat-label {
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .cta-stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .cta-stat-number {
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .cta-stat-label {
        font-size: 12px;
    }
    
    .cta-guarantee {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Animation for CTA section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

.cta-stats .cta-stat {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.cta-actions {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}