* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0c1e3a 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95em;
}

.trust-icon {
    color: #4ade80;
    font-size: 1.3em;
}

/* Verification Badge */
.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85em;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
    animation: pulse 2s infinite;
}

.verify-icon {
    background: #fff;
    color: #22c55e;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9em;
}

/* Header Styles */
header {
    text-align: center;
    padding: 40px 20px 60px;
    animation: fadeIn 1s ease-in;
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo {
    font-size: 4em;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #60a5fa, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
}

.logo-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.tagline {
    font-size: 1.5em;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Verification Card */
.verification-card {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.2);
}

.verify-header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.verify-icon-large {
    font-size: 3em;
}

.verify-header h3 {
    font-size: 2em;
    font-weight: 800;
}

.verify-content {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.verify-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 1.05em;
}

.check-icon {
    color: #4ade80;
    font-size: 1.5em;
    font-weight: 900;
}

.verify-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(74, 222, 128, 0.2);
    opacity: 0.9;
    font-style: italic;
}

/* Card Styles */
.main-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    margin: 40px 0;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.highlight-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(129, 140, 248, 0.15));
    border: 1px solid rgba(96, 165, 250, 0.3);
}

h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
}

.subtitle {
    text-align: center;
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.value-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.value-number {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.value-label {
    font-size: 1em;
    opacity: 0.9;
    font-weight: 600;
}

/* Modern Feature Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 2.5em;
}

.feature-title {
    font-size: 1.4em;
    font-weight: 700;
}

.feature-desc {
    opacity: 0.9;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.feature-validity {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

/* Testimonials */
.testimonials-section {
    margin: 60px 0;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.1);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05em;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #818cf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
}

.author-name {
    font-weight: 700;
    font-size: 1.05em;
}

.author-title {
    opacity: 0.7;
    font-size: 0.9em;
}

/* Security Section */
.security-section {
    margin: 60px 0;
}

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

.security-card {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}

.security-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.security-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Tags Modern */
.tags-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.tag-modern {
    background: rgba(255,255,255,0.08);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
    text-align: center;
}

.tag-modern:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.4);
}

/* Price Card */
.price-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(129, 140, 248, 0.2));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 50px;
    margin: 60px 0;
    border: 2px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 25px 70px rgba(96, 165, 250, 0.3);
    text-align: center;
}

.price-header h2 {
    margin-bottom: 15px;
}

.price-subtext {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 40px;
}

.price-main {
    margin: 40px 0;
}

.price-label {
    font-size: 1.1em;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 4.5em;
    font-weight: 900;
    margin: 20px 0;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 1.2em;
    opacity: 0.95;
    margin-top: 20px;
}

/* WhatsApp Button Large */
.whatsapp-button-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: #fff;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    font-size: 1.1em;
    margin-top: 30px;
}

.whatsapp-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.button-icon {
    font-size: 2em;
}

.button-text {
    text-align: left;
}

.button-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
}

.button-subtitle {
    font-size: 0.9em;
    opacity: 0.9;
}

.contact-assurance {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-assurance span {
    font-size: 0.95em;
    opacity: 0.9;
}

/* Transfer Steps */
.transfer-steps {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 40px auto 0;
}

.step {
    display: flex;
    gap: 25px;
    align-items: start;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.step:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #818cf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    opacity: 0.85;
    line-height: 1.6;
}

/* Guarantee Card */
.guarantee-card {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.15));
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    margin: 60px 0;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.guarantee-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 2em;
    margin-bottom: 30px;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.guarantee-points span {
    background: rgba(255,255,255,0.08);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.05em;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Contact Section */
.contact-section {
    margin: 60px 0;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
}

.contact-icon {
    font-size: 2.5em;
}

.contact-label {
    font-size: 0.9em;
    opacity: 0.7;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.2em;
    font-weight: 700;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px 40px;
}

.footer-cta h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.footer-cta p {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 30px;
}

.whatsapp-button-footer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: #fff;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button-footer:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}

.footer-badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-note {
    margin-top: 30px;
    opacity: 0.7;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-bar {
        gap: 15px;
    }

    .trust-item {
        font-size: 0.85em;
    }

    .logo {
        font-size: 2.8em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .main-card, .price-card, .guarantee-card, .verification-card, .contact-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 3em;
    }

    .whatsapp-button-large {
        flex-direction: column;
        text-align: center;
        padding: 20px 30px;
    }

    .button-text {
        text-align: center;
    }

    .features-grid-modern, .testimonials-grid, .security-grid {
        grid-template-columns: 1fr;
    }

    .value-grid, .tags-modern, .guarantee-points, .contact-info {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.8em;
    }

    .verify-header h3 {
        font-size: 1.5em;
    }
}