:root {
    --brand-red: #e41b36;
    --brand-yellow: #fcc03b;
    --text-dark: #111111;
    --text-grey: #555555;
    --bg-white: #ffffff;
    --bg-light-grey: #f9f9f9;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Noto Sans Thai', 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Utilities */
.bg-grey { background-color: var(--bg-light-grey); }
.bg-red { background-color: var(--brand-red); }
.text-white { color: var(--bg-white) !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mt-50 { margin-top: 50px; }
.center-action { display: flex; justify-content: center; width: 100%; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-yellow {
    background-color: var(--brand-yellow);
    color: var(--text-dark);
}

.btn-yellow:hover {
    background-color: #eab030;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.logo-eto {
    color: #f8f9fa;
    -webkit-text-stroke: 1.5px #1a2233;
    text-shadow: 
        0px 1px 0px #1a2233,
        0px 2px 0px #1a2233,
        0px 3px 0px #1a2233,
        0px 4px 5px rgba(0,0,0,0.5);
    margin-right: 4px;
}

.logo-markets {
    color: #ffda44;
    -webkit-text-stroke: 1.5px #1a2233;
    text-shadow: 
        0px 1px 0px #1a2233,
        0px 2px 0px #1a2233,
        0px 3px 0px #1a2233,
        0px 4px 5px rgba(0,0,0,0.5);
}

.logo-partner {
    color: var(--brand-yellow);
    font-weight: 900;
    font-size: 20px;
    margin-left: 6px;
    background-color: var(--text-dark);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    background-color: var(--brand-red);
    color: var(--bg-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 54px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.hero-actions {
    margin-bottom: 30px;
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 14px;
}

.text-link:hover {
    text-decoration: none;
    color: var(--brand-yellow);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.isometric-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #d11630; /* Darker red */
    color: var(--bg-white);
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
}

.disclaimer-banner a {
    color: var(--bg-white);
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--brand-yellow);
    transform: skewX(-20deg); /* Parallelogram shape from Axi */
    flex-shrink: 0;
}

.feature-item p {
    font-size: 18px;
    font-weight: 500;
}

/* CopyTrading Section */
.copytrading-section {
    padding: 80px 0;
}

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

.split-image, .split-content {
    flex: 1;
}

.steps-list {
    list-style: none;
    counter-reset: custom-counter;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.steps-list li {
    counter-increment: custom-counter;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps-list li::before {
    content: counter(custom-counter);
    background-color: var(--brand-red);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn-store img {
    height: 45px;
    width: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.benefit-icon-yellow {
    width: 24px;
    height: 24px;
    background-color: var(--brand-yellow);
    transform: skewX(-20deg);
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 20px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 0;
    background: transparent;
    border: none;
    color: var(--brand-red);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--bg-light-grey);
    padding: 60px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links-list a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
}

.footer-links-list a:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .split-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-image img {
        transform: scale(1);
        width: 100%;
        max-width: 500px;
    }
    
    .section-heading {
        font-size: 32px;
        text-align: center !important;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-links-list {
        flex-direction: column;
        align-items: center;
    }
}
