/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #d4af37; /* Gold color */
    transition: all 0.3s ease;
}

a:hover {
    color: #1E3A8A; /* Green color */
}

ul {
    list-style: none;
}

/* COLORS 
   Primary: #000000 (Black)
   Secondary: #d4af37 (Gold)
   Accent: #1E3A8A (Green)
   Background: #f9f9f9 (Off-white)
   Text: #333333 (Dark Gray)
*/

/* HEADER STYLES */
.site-header {
    background-color: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: #d4af37;
    color: #000;
}

/* HERO SECTION - MODERN & PROFESSIONAL */
.hero-section {
    position: relative;
    color: #fff;
    padding: 80px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('../images/trading-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(30, 58, 138, 0.2), transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto 40px;
    position: relative;
}

/* Modern Badge Styling */
.hero-badge {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.badge-content {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.3) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge-icon {
    margin-right: 8px;
    color: #d4af37;
    font-size: 16px;
}

.badge-text {
    font-weight: 600;
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Modern Headline Styling */
.headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.5px;
}

.headline .highlight {
    color: #fff;
}

.headline .accent {
    color: #d4af37;
    position: relative;
    display: inline-block;
}

.headline .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
    transform: scaleX(0.7) translateY(5px);
    opacity: 0.7;
}

.secondary-headline {
    font-size: 38px;
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.emphasis {
    position: relative;
    color: #d4af37;
}

.small-text {
    font-size: 24px;
    opacity: 0.8;
    font-weight: 500;
}

/* Subheadline styling */
.sub-headline {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin: 20px auto 40px;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.85);
}

.highlight-number {
    color: #d4af37;
    font-weight: 700;
    position: relative;
}

/* Modern Attention Card */
.attention-card {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.attention-header {
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.9), rgba(66, 99, 198, 0.9));
    padding: 15px 25px;
    display: flex;
    align-items: center;
    position: relative;
}

.attention-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.attention-icon i {
    color: #d4af37;
    font-size: 18px;
}

.attention-header h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.attention-content {
    padding: 25px 30px;
    background: rgba(20, 20, 20, 0.8);
}

.question {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

/* Modern Pain Points */
.pain-points {
    text-align: left;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pain-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.pain-points li:hover {
    transform: translateX(5px);
}

.point-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
}

.point-icon.negative i {
    color: #ef4444;
    font-size: 20px;
}

.point-text {
    font-size: 17px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

/* Modern Solution */
.solution-wrapper {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solution {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.3), rgba(30, 58, 138, 0.1));
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #1E3A8A;
}

.solution .point-icon.positive i {
    color: #10B981;
    font-size: 22px;
}

.solution-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.solution-text span {
    color: #10B981;
    position: relative;
}

.solution-text span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #10B981;
    opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .headline {
        font-size: 42px;
    }
    
    .secondary-headline {
        font-size: 32px;
    }
    
    .small-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .secondary-headline {
        font-size: 26px;
    }
    
    .small-text {
        font-size: 18px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .attention-header h3 {
        font-size: 20px;
    }
    
    .attention-content {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .headline {
        font-size: 28px;
    }
    
    .secondary-headline {
        font-size: 22px;
    }
    
    .small-text {
        font-size: 16px;
    }
    
    .question {
        font-size: 16px;
    }
    
    .point-text {
        font-size: 15px;
    }
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #f3f3f3;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    border-bottom: 5px solid #d4af37;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1E3A8A 0%, #4263c6 100%);
}

.testimonials-section .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    padding-bottom: 15px;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1E3A8A;
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    padding-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 0 0 350px;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 4px solid #1E3A8A;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    color: #333;
}

.quote:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 70px;
    position: absolute;
    
/* RESULTS SECTION - STYLES MODERNISÉS */
.results-section {
    margin-top: 60px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(30, 58, 138, 0.05);
}

.section-header {
    position: relative;
    margin-bottom: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E3A8A 0%, #4263c6 100%);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
    margin-right: 15px;
}

.pulse-icon {
    color: #fff;
    font-size: 22px;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.section-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin: 0;
    letter-spacing: 1px;
}

/* RÉSULTATS SECTION MODERN STYLING */
.results-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(30, 58, 138, 0.08) 100%);
    z-index: -1;
    border-radius: 20px;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.results-header-icon {
    margin-bottom: 20px;
}

.results-header .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
}

.results-header .icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-gold 3s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.results-header i.pulse-icon {
    font-size: 34px;
    color: #fff;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.results-header h4 {
    font-size: 28px;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.results-header h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1E3A8A, #d4af37);
    border-radius: 3px;
}

.results-tagline {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

/* STATS CONTAINER */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 10px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-inner {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E3A8A' fill-opacity='0.6'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-pattern {
    opacity: 0.08;
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(30, 58, 138, 0.3) 100%);
    transition: all 0.3s ease;
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    border-radius: 50%;
    z-index: -1;
}

.stat-icon-wrapper i {
    font-size: 30px;
    color: #1E3A8A;
    transition: all 0.3s ease;
}

.stat-icon-wrapper.satisfaction {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.3) 100%);
}

.stat-icon-wrapper.satisfaction i {
    color: #10B981;
}

.stat-icon-wrapper.profit {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.stat-icon-wrapper.profit i {
    color: #d4af37;
}

.stat-icon-wrapper.verified {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0.3) 100%);
}

.stat-icon-wrapper.verified i {
    color: #4F46E5;
}

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

.stat-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number-wrapper {
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1.2;
    display: inline-block;
}

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

.percent {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    display: inline-block;
    margin-left: 2px;
    position: relative;
    top: -2px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    margin-bottom: 10px;
}

.additional-info {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(52, 211, 153, 0.15);
    color: #10B981;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    transition: all 0.3s ease;
}

.verified-badge:hover {
    background-color: rgba(52, 211, 153, 0.25);
    transform: translateY(-2px);
}

.verified-badge i {
    margin-right: 5px;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .results-header h4 {
        font-size: 24px;
    }
    
    .results-tagline {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(52, 211, 153, 0.15);
    color: #10B981;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.verified-badge i {
    margin-right: 5px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .header-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h4 {
        font-size: 20px;
    }
}
    left: -15px;
    top: -25px;
    color: #1E3A8A;
    opacity: 0.2;
}

.author {
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
}

.author:before {
    content: '—';
    margin-right: 8px;
    color: #1E3A8A;
}

@media (min-width: 992px) {
    .testimonials-slider {
        justify-content: center;
    }
}

/* BONUS SECTION */
.bonus-section {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImEiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjIiIGhlaWdodD0iMiIgZmlsbD0icmdiYSgzMCwgNTgsIDEzOCwgMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjYSkiLz48L3N2Zz4=');
    opacity: 0.6;
    z-index: 0;
}

.bonus-section .container {
    position: relative;
    z-index: 1;
}

.bonus-section .section-title {
    margin-bottom: 20px;
    font-size: 32px;
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.bonus-section .section-title:before,
.bonus-section .section-title:after {
    content: '🎁';
    position: absolute;
    top: 0;
    animation: bounce 2s infinite alternate;
}

.bonus-section .section-title:before {
    left: -20px;
}

.bonus-section .section-title:after {
    right: -20px;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.bonus-headline {
    margin-top: 15px;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 20px;
    color: #1E3A8A;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.bonus-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1E3A8A, transparent);
}

.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.bonus-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #1E3A8A;
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.bonus-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1E3A8A;
    position: relative;
    z-index: 2;
}

.bonus-item .price {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.bonus-item .description {
    font-size: 15px;
    color: #555;
    position: relative;
    z-index: 2;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(30, 58, 138, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2c4bbd 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSIxMDAiPgo8cmVjdCB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0Pgo8cGF0aCBkPSJNMjggNjZMMCA1MEwwIDE2TDI4IDBMNTYgMTZMNTYgNTBMMjggNjZMMjggMTAwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMiI+PC9wYXRoPgo8L3N2Zz4=');
    opacity: 0.3;
}

.timer-container {
    margin-bottom: 35px;
}

.urgent {
    font-size: 26px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.urgent .fas {
    margin-right: 10px;
    color: #d4af37;
}

#countdown {
    font-weight: 700;
    color: #d4af37;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 100%);
    color: #000;
    padding: 22px 45px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2), 0 0 0 5px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    z-index: 2;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(212, 175, 55, 0.2);
    color: #000;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.cta-button .fas {
    margin-right: 10px;
    animation: pulse-icon 2s infinite;
}

.cta-button .fa-arrow-right {
    margin-left: 10px;
    margin-right: 0;
    animation: slide 1.5s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes slide {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* LEAD MAGNET SECTION */
.lead-magnet-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/blueprint-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.lead-magnet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 58, 138, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
}

.lead-magnet-section .container {
    position: relative;
    z-index: 1;
}

.lead-magnet-section h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4af37;
    letter-spacing: 1px;
}

.lead-magnet-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #fff, #e6e6e6, #fff);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.lead-magnet-section p {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.lead-magnet-section p .fas {
    color: #d4af37;
    margin-right: 6px;
}

.modern-form {
    max-width: 550px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper .fas {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1E3A8A;
    font-size: 18px;
}

/* Form elements styling - Modern & Professional */
.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.15);
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 252, 1) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Modern field focus state */
.modern-form input[type="text"]:focus,
.modern-form input[type="email"]:focus,
.modern-form select:focus {
    outline: none;
    border-color: rgba(30, 58, 138, 0.5);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2), 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    transform: translateY(-2px);
}

/* Hover effect */
.modern-form input[type="text"]:hover,
.modern-form input[type="email"]:hover,
.modern-form select:hover {
    border-color: rgba(30, 58, 138, 0.3);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 252, 1) 100%);
}

/* Custom select styling */
.modern-form select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231E3A8A' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    padding-right: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Enhanced select wrapper styling */
.select-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.3), rgba(30, 58, 138, 0.1));
    border-radius: 2px;
    transform: scaleX(0.97);
    opacity: 0.5;
}

.select-focus-indicator {
    position: absolute;
    bottom: -2px;
    left: 15px;
    width: calc(100% - 30px);
    height: 3px;
    background: linear-gradient(90deg, #d4af37, rgba(212, 175, 55, 0.7));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 5;
}

.select-wrapper:focus-within .select-focus-indicator {
    transform: scaleX(1);
}

/* Select label styling */
.select-label {
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0 8px;
    font-size: 12px;
    color: #1E3A8A;
    font-weight: 600;
    border-radius: 4px;
    transform: translateY(0);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.select-wrapper:focus-within .select-label,
.select-wrapper:hover .select-label {
    opacity: 1;
    transform: translateY(0);
}

/* Select option styling */
.modern-form select option {
    background-color: white;
    color: #333;
    padding: 12px;
    font-weight: 500;
}

/* Modern placeholder styling */
.modern-form input::placeholder {
    color: #999;
    opacity: 0.7;
    font-weight: 400;
}

/* Custom icon wrapper styling */
.input-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-icon-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1E3A8A;
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Icon animation on focus */
.input-icon-wrapper:focus-within i {
    color: #d4af37;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.results ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
