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

html {
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    background-color: #0D0F12;
}

body {
    max-width: 800px;
    position: relative;
    padding-bottom: 140px;
}

.header {
    padding: 0.4rem 0.4rem 0;
    height: 1.2rem;
}

.imgs {
    width: 3rem;
    height: auto;
}

.hero-section {
    position: relative;
    margin-top: 0.5333rem;
}

.hero-image {
    width: 100%;
    border-top: 1px solid #DCB358;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 1.1rem;
    font-weight: 900;
    background-image: linear-gradient(to bottom, #FCFCFC, #BEBEBE);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.features-section {
    margin: 0.8rem 0.8267rem;
    background: linear-gradient(135deg, rgba(36, 211, 102, 0.05) 0%, rgba(36, 211, 102, 0.02) 100%);
    border-radius: 0.5333rem;
    padding: 0.5333rem 0.4rem;
    border: 1px solid rgba(36, 211, 102, 0.2);
}

.feature-card {
    display: flex;
    align-items: flex-start;
    padding: 0.4rem 0;
    gap: 0.32rem;
}

.feature-icon {
    min-width: 0.5333rem;
    height: 0.5333rem;
    width: 0.5333rem;
    background-color: #24D366;
    border-radius: 50%;
    margin-top: 0.16rem;
    box-shadow: 0 0 8px rgba(36, 211, 102, 0.6);
}

.feature-text {
    font-size: 0.4267rem;
    color: #24D366;
    line-height: 0.5867rem;
    flex: 1;
}

.cta-button-container {
    margin: 0.8rem 0;
    display: flex;
    justify-content: center;
}

.cta-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(36, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
    overflow: hidden;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateX(-50%) scale(1.03);
    box-shadow: 0 8px 32px rgba(36, 211, 102, 0.7);
}

.cta-button img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(36, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(36, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .cta-button {
        width: 92%;
        max-width: 380px;
        height: 90px;
        bottom: 15px;
    }
}

.section-container {
    margin: 0.8rem 0.8267rem;
}

.section-title {
    font-weight: 700;
    font-size: 0.64rem;
    color: #FFFFFF;
    margin-bottom: 0.5333rem;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
}

.section-image {
    width: 100%;
    border-radius: 0.4533rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-image img {
    width: 100%;
    display: block;
}

.promo-banner {
    width: 100%;
    position: relative;
    margin: 0.8rem 0;
    height: 5.6rem;
    overflow: hidden;
    border-radius: 0.4533rem;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    left: 0;
}

.promo-text {
    position: absolute;
    top: 1.0667rem;
    left: 0.7733rem;
    z-index: 10;
}

.promo-text div {
    font-weight: 700;
    font-size: 0.64rem;
    color: #E4ECEE;
    line-height: 0.7467rem;
    background-image: linear-gradient(to bottom, #FCFCFC, #BEBEBE);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.performance-section {
    margin: 0.8rem 0.8267rem;
}

.performance-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 0.5333rem;
    padding: 0.5333rem;
    margin-bottom: 0.5333rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.stock-symbol {
    color: #fff;
    font-size: 0.6933rem;
    font-weight: 700;
}

.stock-gain {
    font-size: 0.4533rem;
    color: #24D366;
    font-weight: 700;
    background: rgba(36, 211, 102, 0.1);
    padding: 0.1333rem 0.2667rem;
    border-radius: 0.2133rem;
}

.performance-chart {
    width: 100%;
    overflow: hidden;
    border-radius: 0.3733rem;
}

.performance-chart img {
    width: 100%;
    display: block;
}

.stats-banner {
    width: 100%;
    position: relative;
    margin: 0.8rem 0;
    height: 9.0667rem;
    overflow: hidden;
    border-radius: 0.4533rem;
}

.stats-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.stats-content {
    position: absolute;
    top: 1.0667rem;
    left: 0.7733rem;
    z-index: 10;
}

.stats-title {
    color: #E4ECEE;
    font-size: 0.6933rem;
    font-weight: 700;
}

.stats-subtitle {
    color: #24D366;
    font-size: 0.6933rem;
    font-weight: 700;
}

.stats-highlight {
    color: #E4ECEE;
    font-size: 0.6933rem;
    font-weight: 700;
}

.stats-score {
    color: #E4ECEE;
    font-size: 1.3333rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin: 0.2667rem 0;
}

.score-number {
    color: #24D366;
    font-size: 1.6rem;
}

.score-divider {
    font-size: 1.2rem;
    margin: 0 0.1333rem;
}

.stats-description {
    width: 8.4rem;
    height: 1.4933rem;
    background-color: #24D366;
    border-radius: 0.3733rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(36, 211, 102, 0.4);
}

.stats-description div {
    font-size: 0.3733rem;
    color: #070809;
    font-weight: 400;
    text-align: center;
}

.testimonials-section {
    margin: 0.8rem 0.8267rem;
    background-color: #E4ECEE;
    border-radius: 0.5333rem;
    padding: 0.6667rem;
}

.testimonial-card {
    display: flex;
    gap: 0.4rem;
}

.testimonial-avatar {
    min-width: 1.24rem;
    display: flex;
    align-items: flex-start;
}

.testimonial-avatar img {
    width: 1.04rem;
    height: 1.04rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #24D366;
}

.testimonial-content {
    flex: 1;
    color: #101419;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.4533rem;
    margin-bottom: 0.1333rem;
}

.testimonial-text {
    font-weight: 400;
    font-size: 0.2933rem;
    line-height: 0.4267rem;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background-color: #D4D5D5;
    margin: 0.4rem 0;
}

.final-cta {
    margin: 0.8rem 0.8267rem;
    padding-bottom: 0.5333rem;
}

.final-cta-title {
    font-weight: 700;
    font-size: 0.5333rem;
    color: #E4ECEE;
    text-align: center;
    line-height: 0.64rem;
}

.final-cta-button {
    margin-top: 0.5333rem;
    display: flex;
    justify-content: center;
}

.final-cta-button div {
    font-weight: 600;
    font-size: 0.4rem;
    color: #070809;
    background: linear-gradient(135deg, #24D366 0%, #1ab854 100%);
    border-radius: 0.3733rem;
    height: 0.8533rem;
    width: 8.4rem;
    text-align: center;
    line-height: 0.8533rem;
    box-shadow: 0 4px 12px rgba(36, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-button div:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(36, 211, 102, 0.6);
}

.footer {
    font-weight: 400;
    font-size: 0.2667rem;
    color: #FFFFFF;
    padding: 0.5333rem 0.88rem;
    background-color: #101419;
    border-top: 1px solid #E7C36A;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.4267rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 0.4rem;
    text-align: center;
    opacity: 0.8;
}