* {
    flex-shrink: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fafafa;
}

body.no-scroll {
    height: 100vh;
    overflow: hidden;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6B46C1, #9333EA, #F59E0B);
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
    border: none;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.4);
    background: linear-gradient(135deg, #553C9A, #7C2D85, #D97706);
}

/* Header Styles */
.header {
    padding: 10px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.08);
    position: sticky;
    top: -33;
    z-index: 100;
    transition: padding 0.3s ease, background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.header.compact {
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.05);
}

.announcement-bar {
    background: linear-gradient(135deg, #6B46C1, #9333EA);
    color: white;
    text-align: center;
    padding: 12px 0;
    margin: -15px -20px 20px -20px;
    font-weight: 500;
    font-size: 14px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 10;
}

.announcement-text {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    transition: padding 0.3s ease;
}

.header.compact .header__flex {
    padding: 1px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero__flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero__left {
    flex: 1;
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, #6B46C1, #9333EA);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__left h1 {
    color: #1f2937;
    font-weight: 800;
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1f2937, #6B46C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__left p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 32px;
    font-weight: 800;
    color: #6B46C1;
    line-height: 1;
}

.stat__label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.hero__cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero__btn-primary {
    font-size: 18px;
    padding: 18px 36px;
}

.hero__btn-secondary {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 600;
    padding: 18px 24px;
    border: 2px solid #6B46C1;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.hero__btn-secondary:hover {
    background: #6B46C1;
    color: white;
}

.hero__right {
    flex: 1;
    max-width: 500px;
}

.hero__image-wrapper {
    position: relative;
}

.hero__right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
    transition: transform 0.3s ease;
}

.hero__right img:hover {
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.achievement-badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1f2937, #6B46C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6B46C1, #9333EA, #F59E0B);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(107, 70, 193, 0.15);
    border-color: #6B46C1;
}

.service-card__icon {
    margin-bottom: 24px;
}

.service-card__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-card__desc {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card__btn {
    margin-top: auto;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.benefits__flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits__content {
    flex: 1;
    max-width: 600px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.benefits__content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.benefits__intro {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.08);
    transition: all 0.3s ease;
    align-items: flex-start;
    clear: both;
    overflow: visible;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
}

.benefit-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B46C1, #9333EA);
    border-radius: 12px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.benefits__image {
    flex: 1;
    max-width: 500px;
}

.benefits__image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6B46C1, #F59E0B);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(107, 70, 193, 0.15);
}

.testimonial__icon {
    margin-bottom: 24px;
}

.testimonial__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.testimonial__content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.testimonial__content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial__author {
    color: #6B46C1;
    font-weight: 600;
    font-size: 14px;
}

/* Wealth Guarantee Section */
.wealth-guarantee {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.wealth-guarantee__flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.wealth-guarantee__content {
    flex: 1;
    max-width: 600px;
}

.wealth-guarantee__content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.guarantee__intro {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.guarantee-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.08);
    align-items: flex-start;
    clear: both;
    overflow: visible;
}

.feature-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 12px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.wealth-guarantee__image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.wealth-guarantee__image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
}

.guarantee-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6B46C1, #9333EA, #F59E0B);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    color: white;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact__form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    color: #1f2937;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .input,
.form-row .select {
    flex: 1;
}

.input {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input:focus {
    border-color: #6B46C1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.select {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.select:focus {
    border-color: #6B46C1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form__btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.form-security {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 60px 0 30px;
}

.footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer__logo {
    max-width: 250px;
}

.footer__tagline {
    color: #9ca3af;
    margin-top: 16px;
    font-size: 16px;
}

.footer__info {
    text-align: right;
}

.footer__info-top {
    margin-bottom: 20px;
    color: #d1d5db;
    line-height: 1.6;
}

.footer__info-bottom a {
    color: #F59E0B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer__info-bottom a:hover {
    color: #D97706;
}

.disclamer {
    color: #F59E0B;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.disclamer:hover {
    color: #D97706;
}

.copy {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

/* Popup Styles */
.popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.popup__close:hover {
    opacity: 0.7;
}

.popup__close svg {
    width: 100%;
    height: 100%;
}

.pop-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
    z-index: -99999;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.pop-wrapper.active {
    opacity: 1;
    z-index: 99999;
    visibility: visible;
}

.popup {
    display: none;
    position: relative;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.popup.active {
    display: block;
}

.popup h3 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.popup p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__flex,
    .benefits__flex,
    .wealth-guarantee__flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero__left h1 {
        font-size: 36px;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .header__flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header.compact .header__flex {
        gap: 8px;
        padding: 1px 0;
    }
    
    .footer__flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer__info {
        text-align: center;
    }
    
    .benefit-item {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .benefit-content h3 {
        font-size: 18px;
    }
    
    .benefit-content p {
        font-size: 15px;
    }
    
    .guarantee-feature {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 15px;
    }
}

/* Legacy styles for compatibility */
strong {
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 25px 0 15px 0;
    padding: 10px 0;
    border-left: 4px solid #6B46C1;
    padding-left: 15px;
}

p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}