/* ===========================
   NEW HOME PAGE STYLES
   =========================== */

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

/* Hero Section */
.hero-section-new {
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: #ffffff34;
}

/* World Map Background */
.world-map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-size: cover;
    background-image: url('/static/images/world-map.webp');
    background-position: center;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(40, 233, 193, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(60, 199, 113, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section-new .container {
    z-index: 2;
}

/* Live Stats Banner */
.live-stats-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.stat-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.stat-item-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.stat-item-banner i {
    color: #28E9C1;
}

/* FOMO Badges */
.fomo-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fomo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 3s infinite;
}

.fomo-badge.secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation-delay: 1.5s;
}

.fomo-badge i {
    font-size: 16px;
}

/* Hero Content */
.hero-content-new {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Feature Badges */
.hero-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #28E9C1;
    border-radius: 50px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* .hero-feature-badge:hover {
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 233, 193, 0.3);
} */

.hero-feature-badge i {
    font-size: 18px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Tech Stack */
.hero-tech-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-tech-stack > span {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-tag {
    padding: 6px 15px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    color: #1e293b;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(40, 233, 193, 0.3);
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.cta-primary {
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 16px;
}

/* Social Proof */
.social-proof-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.6s both;
}

.client-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-proof-text {
    text-align: left;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.social-proof-text p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.floating-card i {
    font-size: 24px;
    color: #28E9C1;
}

.floating-card.card-1 {
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 60%;
    right: 8%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Service Cards Home */
.service-card-home {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28E9C1, #3CC771);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-home:hover::before {
    transform: scaleX(1);
}

.service-card-home:hover {
    border-color: #28E9C1;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 233, 193, 0.15);
}

.service-card-home.featured {
    border-color: #28E9C1;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.05) 0%, rgba(60, 199, 113, 0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card-icon-home {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-home:hover .service-card-icon-home {
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card-title-home {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card-desc-home {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
    padding: 6px 0;
}

.service-features-list li i {
    color: #28E9C1;
    font-size: 16px;
}

.service-link-home {
    color: #28E9C1;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link-home:hover {
    gap: 12px;
    color: #3CC771;
}

/* Why Cards */
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #28E9C1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 233, 193, 0.15);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-card-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Portfolio Cards */
.portfolio-card-home {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card-home:hover {
    border-color: #28E9C1;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 233, 193, 0.15);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card-home:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 233, 193, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card-home:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    padding: 12px 25px;
    background: #fff;
    color: #1e293b;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    transform: scale(1.1);
    color: #1e293b;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.portfolio-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
}

.cta-box {
    padding: 50px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(40, 233, 193, 0.2);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #ff6b6b;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    animation: pulse 3s infinite;
}

.cta-title-final {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-desc-final {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.benefit-item i {
    color: #10b981;
    font-size: 18px;
}

.cta-buttons-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Contact Modal */
.contact-modal .modal-content {
    border-radius: 25px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-modal .modal-header {
    padding: 30px 30px 20px;
}

.contact-modal .modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-modal .modal-title i {
    color: #28E9C1;
}

.contact-modal .modal-body {
    padding: 20px 30px 40px;
}

.modal-sidebar {
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-right: 20px;
}

.modal-sidebar h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.consultation-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.consultation-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1rem;
}

.consultation-benefits li i {
    color: #10b981;
    font-size: 20px;
    margin-top: 2px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(40, 233, 193, 0.1);
    border-radius: 12px;
    color: #1e293b;
    font-size: 14px;
}

.response-time i {
    color: #28E9C1;
    font-size: 20px;
}

.modal-input {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-input:focus {
    border-color: #28E9C1;
    box-shadow: 0 0 0 4px rgba(40, 233, 193, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section-new {
        padding: 80px 0 60px;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .floating-card {
        display: none;
    }

    .modal-sidebar {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-title-final {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section-new {
        padding: 60px 0 40px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .live-stats-banner {
        flex-direction: column;
        gap: 15px;
    }

    .fomo-badges {
        flex-direction: column;
    }

    .hero-badges-row {
        flex-direction: column;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-buttons .thm-btn {
        width: 100%;
    }

    .social-proof-section {
        flex-direction: column;
    }

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

    .cta-title-final {
        font-size: 1.75rem;
    }

    .cta-desc-final {
        font-size: 1rem;
    }

    .cta-buttons-final {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons-final .thm-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 1.75rem;
    }

    .hero-feature-badge {
        font-size: 13px;
        padding: 8px 15px;
    }

    .fomo-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .stat-item-banner {
        font-size: 13px;
    }

    .service-card-title-home {
        font-size: 1.2rem;
    }

    .portfolio-image-wrapper {
        height: 200px;
    }
}

/* Enhanced Final CTA Section */
.final-cta-section-enhanced {
    background-image: url('/static/images/background-img.webp');
    background-repeat: repeat;
    position: relative;
}

.final-cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( #ffffffbe, #ffffffa6);
    z-index: 1;
}



.cta-box-enhanced {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(40, 233, 193, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    z-index: 2;
    background: var(--tertiary-color);
    /* background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); */
}

/* Decorative Elements */
.cta-decoration-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-decoration-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(60, 199, 113, 0.1) 0%, rgba(40, 233, 193, 0.1) 100%);
    border-radius: 50%;
    filter: blur(50px);
}

/* Content Left */
.cta-content-left {
    position: relative;
    z-index: 2;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 107, 107, 0.15);
    border: 2px solid #ff6b6b;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    animation: pulse 3s infinite;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta-urgency-badge i {
    color: #ff6b6b;
    font-size: 18px;
}

.cta-title-enhanced {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-desc-enhanced {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Benefits Grid */
.cta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(40, 233, 193, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefit-item-enhanced:hover {
    background: rgba(40, 233, 193, 0.1);
    border-color: #28E9C1;
    transform: translateX(5px);
}

.benefit-icon-enhanced {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-enhanced i {
    color: #fff;
    font-size: 16px;
}

/* Action Card */
.cta-action-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-timer-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 25px;
}

.cta-timer-section i {
    font-size: 32px;
    color: #28E9C1;
}

.cta-timer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-timer-section p {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons-enhanced {
    margin-bottom: 20px;
}

.cta-btn-primary {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 233, 193, 0.3);
    text-decoration: none;
    margin-bottom: 15px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 233, 193, 0.4);
    color: #fff;
}

.cta-btn-primary i:last-child {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover i:last-child {
    transform: translateX(5px);
}

.cta-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.cta-divider::before {
    left: 0;
}

.cta-divider::after {
    right: 0;
}

.cta-divider span {
    background: #fff;
    padding: 0 15px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-btn-secondary {
    width: 100%;
    padding: 16px 25px;
    background: #fff;
    border: 2px solid #28E9C1;
    border-radius: 50px;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    color: #1e293b;
    transform: translateY(-2px);
}

.cta-btn-secondary i {
    font-size: 20px;
    color: #25D366;
}

.cta-guarantee-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.cta-guarantee-note i {
    color: #10b981;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-box-enhanced {
        padding: 40px 30px;
    }

    .cta-title-enhanced {
        font-size: 2rem;
    }

    .cta-desc-enhanced {
        font-size: 1rem;
    }

    .cta-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .cta-box-enhanced {
        padding: 30px 20px;
    }

    .cta-title-enhanced {
        font-size: 1.75rem;
    }

    .cta-urgency-badge {
        font-size: 13px;
        padding: 10px 16px;
    }

    .cta-action-card {
        padding: 25px 20px;
    }

    .cta-timer-section {
        padding: 15px;
    }

    .cta-timer-section i {
        font-size: 28px;
    }

    .cta-timer-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cta-title-enhanced {
        font-size: 1.5rem;
    }

    .benefit-item-enhanced {
        font-size: 13px;
    }

    .cta-btn-primary {
        font-size: 1rem;
        padding: 16px 20px;
    }

    .cta-btn-secondary {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
}
