/*
Theme Name: GeneratePress Child - Crypto Manual
Theme URI: https://thecryptomanual.com
Description: Custom child theme for The Crypto Manual - a beginner-friendly cryptocurrency education platform built on GeneratePress.
Author: The Crypto Manual Team
Author URI: https://thecryptomanual.com
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, education, cryptocurrency, blog, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready
Text Domain: generatepress-child-crypto
*/

/* ========================================
   CUSTOM STYLES FOR THE CRYPTO MANUAL
   ======================================== */

/* Parent theme styles are automatically loaded by functions.php */

/* Your custom CSS goes below this line */

/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00d4ff;
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.hero-image-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats .stat strong {
    font-size: 36px;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 8px;
}

.hero-stats .stat span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0b0b0;
}

/* Learning Paths Section */
.learning-paths-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.learning-paths-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #00d4ff;
}

.learning-paths-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #e0e0e0;
}

/* Platform Comparison Section */
.platform-comparison-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a1f0f 0%, #1a3320 100%);
}

.platform-comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #39ff14;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-comparison-section .platform-card {
    background: #0d2818 !important;
    border: 2px solid #1a4d2e !important;
    border-radius: 12px !important;
    padding: 30px !important;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: #39ff14 !important;
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.2) !important;
}

.platform-card.recommended {
    border-color: #fbbf24;
    position: relative;
}

.platform-card.recommended:hover {
    border-color: #39ff14 !important;
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.2) !important;
}

.platform-card.recommended::before {
    content: "RECOMMENDED FOR BEGINNERS";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1a2332;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.platform-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.platform-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.platform-card > p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 16px;
}

.platform-card .bonus {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #856404;
    font-size: 14px;
}

.platform-card .platform-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.platform-card .platform-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555555;
    font-size: 14px;
}

.platform-card .platform-features li:last-child {
    border-bottom: none;
}

.platform-card .platform-features li::before {
    content: "✓ ";
    color: #00d4ff;
    font-weight: bold;
    margin-right: 8px;
}

.platform-card .btn,
.platform-card .platform-cta {
    display: inline-block;
    padding: 14px 28px;
    background: #00d4ff !important;
    color: #1a2332 !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.platform-card .btn:hover,
.platform-card .platform-cta:hover {
    background: #00b8e6 !important;
    color: #1a2332 !important;
}

/* Glossary Preview Section */
.glossary-preview-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0f1f 0%, #2d1b3d 100%);
}

.glossary-preview-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #9333ea;
}

.glossary-preview-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #e0e0e0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    color: #ffffff;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #00d4ff;
}

.newsletter-section > .container > p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #e0e0e0;
}

.newsletter-section form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section input[type="email"] {
    width: 100%;
    padding: 14px;
    border: 2px solid #00d4ff;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 16px;
}

.newsletter-section button,
.newsletter-section input[type="submit"] {
    background: #00d4ff;
    color: #1a2332;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-section button:hover,
.newsletter-section input[type="submit"]:hover {
    background: #00b8e6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-image-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 40px;
    }

    .hero-stats .stat strong {
        font-size: 28px;
    }

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

    .learning-paths-section h2,
    .platform-comparison-section h2,
    .glossary-preview-section h2,
    .newsletter-section h2 {
        font-size: 28px;
    }
}

/* ========================================
   LESSON CARDS
   ======================================== */

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lesson-card {
    background: #1e2a3a;
    border: 2px solid #2a3f5f;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lesson-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
}

.lesson-card .btn-secondary:hover {
    background: #00d4ff;
    color: #1a2332;
}

.lesson-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.lesson-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lesson-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lesson-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.lesson-content h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lesson-content h3 a:hover {
    color: #00d4ff;
}

.lesson-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.lesson-meta span {
    padding: 4px 12px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #555;
    font-weight: 500;
}

.lesson-meta .duration {
    background: #e0f7ff;
    color: #0088aa;
}

.lesson-meta .difficulty {
    background: #fff3cd;
    color: #856404;
}

.lesson-meta .category {
    background: #d4edda;
    color: #155724;
}

.lesson-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
    flex: 1;
}

.lesson-card .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.lesson-card .btn-secondary:hover {
    background: #00d4ff !important;
    color: #1a2332 !important;
    border-color: #00d4ff !important;
}

/* ========================================
   GLOSSARY CARDS
   ======================================== */

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.glossary-card {
    background: #251a2e;
    border: 2px solid #3d2a4a;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.glossary-card:hover {
    border-color: #9333ea !important;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.2) !important;
    transform: translateY(-3px);
}

.glossary-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.glossary-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.glossary-card h3 a:hover {
    color: #9333ea;
}

.glossary-definition {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 15px;
    flex: 1;
}

.glossary-category {
    display: inline-block;
    padding: 4px 10px;
    background: #f5f5f5;
    color: #555;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glossary-card .read-more {
    color: #9333ea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.glossary-card .read-more:hover {
    color: #7c3aed !important;
}

.glossary-cta {
    margin-top: 40px;
    text-align: center;
}

.glossary-cta .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #00d4ff;
    color: #1a2332;
    border: 2px solid #00d4ff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.glossary-cta .btn-primary:hover {
    background: #00b8e6;
    border-color: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* ========================================
   RESPONSIVE: LESSONS & GLOSSARY
   ======================================== */

@media (max-width: 768px) {
    .lessons-grid,
    .glossary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lesson-content h3 {
        font-size: 20px;
    }

    .glossary-card h3 {
        font-size: 18px;
    }
}

/* ========================================
   PREMIUM NEWSLETTER SECTION
   ======================================== */

.newsletter-section-premium {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 50%, #0f1922 100%);
    overflow: hidden;
}

/* Animated Background */
.newsletter-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #9333ea 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #7eff9b 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.newsletter-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Left Side - Value Prop */
.newsletter-value-prop {
    color: #ffffff;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

.newsletter-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffb3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    font-size: 20px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 500px;
}

.newsletter-description strong {
    color: #ffffff;
}

.newsletter-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.trust-text {
    font-size: 16px;
    color: #e0e0e0;
}

.trust-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* Right Side - Form Card */
.newsletter-form-container {
    position: relative;
}

.newsletter-form-card {
    background: linear-gradient(135deg, #1e2a3a 0%, #1a2332 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-preview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.preview-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid #00d4ff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.preview-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.preview-icon {
    font-size: 28px;
    line-height: 1;
}

.preview-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-text strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.preview-text span {
    color: #b0b0b0;
    font-size: 14px;
}

.newsletter-form-wrapper {
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.form-field-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-email-input {
    flex: 1;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-email-input::placeholder {
    color: #7a8899;
}

.newsletter-email-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.newsletter-submit-btn {
    padding: 18px 32px;
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 100%);
    color: #1a2332;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.6);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #7a8899;
    margin: 0;
    text-align: center;
    justify-content: center;
}

/* Testimonials */
.newsletter-testimonials {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-carousel {
    position: relative;
    min-height: 80px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 13px;
    color: #7a8899;
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #00d4ff;
    width: 24px;
    border-radius: 4px;
}

/* Newsletter Section Responsive */
@media (max-width: 1024px) {
    .newsletter-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .newsletter-headline {
        font-size: 48px;
    }
    .newsletter-form-card {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .newsletter-section-premium {
        padding: 80px 20px;
    }
    .newsletter-headline {
        font-size: 36px;
    }
    .newsletter-description {
        font-size: 18px;
    }
    .form-field-group {
        flex-direction: column;
    }
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
    .trust-item {
        padding: 12px;
    }
    .trust-icon {
        width: 40px;
        height: 40px;
    }
    .newsletter-form-card {
        padding: 24px;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.final-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-section .cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Final CTA Button - Maximum Specificity */
.homepage-wrapper .final-cta-section .container .btn-cta,
.homepage-wrapper .final-cta-section .container a.btn-cta,
.homepage-wrapper .final-cta-section .container a.btn.btn-cta,
.homepage-wrapper .final-cta-section .container a.btn.btn-large.btn-cta,
section.final-cta-section a.btn-large.btn-cta {
    display: inline-block !important;
    padding: 18px 40px !important;
    background: #00d4ff !important;
    background-color: #00d4ff !important;
    background-image: none !important;
    color: #1a2332 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    border: 3px solid #00d4ff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3) !important;
    text-shadow: none !important;
    line-height: 1.4 !important;
}

.homepage-wrapper .final-cta-section .container .btn-cta:hover,
.homepage-wrapper .final-cta-section .container a.btn-cta:hover,
.homepage-wrapper .final-cta-section .container a.btn.btn-cta:hover,
.homepage-wrapper .final-cta-section .container a.btn.btn-large.btn-cta:hover,
section.final-cta-section a.btn-large.btn-cta:hover {
    background: #00b8e6 !important;
    background-color: #00b8e6 !important;
    background-image: none !important;
    border-color: #00b8e6 !important;
    color: #1a2332 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5) !important;
    text-shadow: none !important;
}

.final-cta-section .cta-disclaimer {
    margin-top: 30px;
    color: #b0b0b0;
    font-size: 14px;
}

.final-cta-section .cta-disclaimer small {
    color: #b0b0b0;
}

/* Responsive */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 20px;
    }

    .final-cta-section h2 {
        font-size: 32px;
    }

    .final-cta-section .cta-description {
        font-size: 16px;
    }

    .final-cta-section .btn-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
}
