* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #F0EEEF;
    color: #1f2937; /* professional tünd mətn */
    line-height: 1.6;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

/* Menu */
nav#navMenu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F0EEEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    transition: 0.35s ease;
    z-index: 999;
}

/* Logo inside menu */
.menu-logo img {
    width: 140px;
    margin-bottom: 30px;
}

nav#navMenu a {
    padding: 15px;
    font-size: 20px;
}

/* Active states */
nav#navMenu.active {
    top: 0;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Əsasda gizlədirik */
.menu-toggle {
    display: none;
}

/* Hamburger əsasda gizlidir, mobil üçün göstəririk */
.menu-toggle {
    display: none;
}

/* Mobil üçün */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: fixed; /* fixed edirik ki, həmişə sağda qalsın */
        top: 20px;
        right: 20px;
        flex-direction: column;
        justify-content: space-between;
        height: 25px;
        cursor: pointer;
        z-index: 1001; /* overlay-dən üst */
    }

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: #db1212; /* rəng */
        border-radius: 3px;
        transition: 0.3s;
    }

    /* Menü */
    nav {
        position: fixed;
        top: 0;
        right: -70%; /* əvvəl gizli sağda */
        width: 70%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        transition: 0.3s ease;
        z-index: 1000;
    }

    nav a {
        padding: 15px 25px;
        font-size: 18px;
    }

    nav.active {
        right: 0; /* açıq olduqda sağa sürüşür */
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        display: none;
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}

/* Mobil üçün göstəririk */
@media (max-width: 768px) {  /* 768px-dən kiçik ekranlar üçün */
    .menu-toggle {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        flex-direction: column;
        justify-content: space-between;
        height: 25px;
        cursor: pointer;
    }

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: hsl(0, 0%, 0%); /* xətlərin rəngi */
        border-radius: 3px;
    }
}




/* Mobil */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        transition: 0.3s ease;
    }

    nav a {
        padding: 15px 25px;
        font-size: 18px;
    }

    nav.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #F0EEEF;
}

/* Default ölçü (kompüter üçün) */
.navbar .logo img {
    height: 70px;
    width: auto;
}

/* Tablet üçün */
@media (max-width: 768px) {
    .navbar .logo img {
        height: 40px;
    }
}

/* Telefon üçün */
@media (max-width: 480px) {
    .navbar .logo img {
        height: 30px;
        position: relative; /* yoxsa z-index işləməyə bilər */
    z-index: 1002; /* hamburger və overlay-dən üstdə olsun */
    
    }
    
      .navbar .logo {
        transition: 0.3s;
    }

    .navbar .logo.hidden {
        display: none;
    }
}


.logo {
    font-size: 22px;
    font-weight: bold;
}

.navbar nav a {
    position: relative;
    color: #4b4b4b;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}

/* alt xətt */
.navbar nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #29b6f6; /* istəsən dəyiş */
    transition: width 0.35s ease;
}

/* hover effekti */
.navbar nav a:hover::after {
    width: 100%;
}


.section {
    padding: 80px 10%;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-features p {
    font-size: 15px;
    margin: 6px 0;
    font-weight: 500;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px; /* şəkildəki kimi aralı */
    flex-wrap: wrap;
    margin-top: 45px; /* aşağı endirir */

}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

.feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #29b6f6; /* mavi dairə */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
}


/* Mobil üçün */
@media (max-width: 768px) {
    .hero-features {
        display: flex;
        flex-direction: column; /* elementləri alt-alta düzür */
        gap: 10px; /* alt-alta məsafə */
    }
    .feature-item {
        justify-content: flex-start; /* soldan hizala */
    }
}

/* .hero button {
    padding: 12px 30px;
    background-color: #2c81f9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.hero button:hover {
    opacity: 0.9;
} */


.signals-compare {
    background-color: #F0EEEF;
}

.compare-title {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
}

.compare-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.compare-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.compare-box {
    background-color: #ffffff;
    padding: 30px 35px;
    border-radius: 10px;
    width: 420px;
    text-align: left;
}

.compare-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.compare-box ul {
    list-style: none;
}

.compare-box ul li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}


/* Compare section – Mobil düzəliş */
@media (max-width: 768px) {
    .compare-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .compare-box {
        width: 100%;
        max-width: 420px;
    }
}


/* SOL – MÜSBƏT */
.with-signals ul li::before {
    content: "✓";
    color: #29b6f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* SAĞ – MƏNFİ */
.without-signals ul li::before {
    content: "✕";
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}





.footer {
    background-color: #000000; /* QARA */
    color: #ffffff;
    padding: 60px 10% 20px; /* HÜNDÜR */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-text {
    max-width: 500px;
}

.footer-text h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
}

/* SAĞ YUXARI – SOSIAL İKONLAR */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.footer-socials a:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ALT YAZI */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}


/* HERO ALT MƏTN */




/* SIGNALS BÖLMƏSİ */
.signals {
    background-color: #F0EEEF;
}

.signals-content {
    display: flex;
    align-items: center;
    justify-content: center; /* ORTALAYIR */
    gap: 30px; /* aradakı məsafə azaldıldı */
}


.signals-text {
    max-width: 600px;
    text-align: left;
}

.signals-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.signals-text p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.signals-btn {
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #2c81f9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.signals-btn:hover {
    opacity: 0.9;
}



/* TELEFON ŞƏKLİ YERİ */
/* TELEFON ŞƏKLİ */
.signals-image {
    width: 300px;
    height: 680px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.signals-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Tablet */
@media (max-width: 768px) {
    .signals-image {
        width: 250px;
        height: 420px;
        margin: 20px auto;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .signals-image {
        width: 200px;
        height: 350px;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .signals-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .signals-text {
        text-align: center;
        max-width: 100%;
    }
}




.cta-btn {
    margin-top: 25px;
    padding: 18px 60px;
    background-color: #29b6f6; /* şəkilə yaxın mavi */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #1fa8e0;
}


/* Mobil uyğunlaşdırma */
@media (max-width: 768px) {
    .cta-btn {
        padding: 14px 40px; /* daha kiçik padding */
        font-size: 16px;    /* fontu azaldırıq */
        width: 80%;         /* düyməni ekranın genişliyinə yaxın edirik */
        text-align: center; /* mətni mərkəzləşdiririk */
        margin: 20px auto;  /* üst və alt boşluq, mərkəzləşdirilmiş */
        display: block;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
    }

    .navbar nav {
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-socials {
        margin-top: 20px;
    }


}





/*   RESULTS HTML   */


/* RESULTS */
.results-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    
}

.results-note {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

/* TABLE */
.table-wrapper {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: #fff;
}

.results-table th,
.results-table td {
    border: 1px solid #ccc;
    padding: 12px;
    font-size: 14px;
    text-align: center;
}

.results-table th {
    background-color: #f9fafb;
    font-weight: 700;
}

/* BÜTÜN SƏTİR HOVER */
.results-table tbody tr {
    transition: background-color 0.2s ease;
}

.results-table tbody tr:hover {
    background-color: #f1f5f9; /* açıq boz */
}

/* FƏRDİ XANA (CELL) HOVER */
.results-table td {
    position: relative;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.results-table td:hover {
    background-color: #e0f2fe; /* açıq mavi */
    box-shadow: inset 0 0 0 1px #29b6f6;
}


/* STATUS COLORS */
.tp-hit {
    background-color: #1af5a3;
    font-weight: bold;
}

.profit {
    color: #16a34a;
    font-weight: bold;
}

.loss {
    color: #dc2626;
    font-weight: bold;
}

.win {
    color: #16a34a;
    font-weight: bold;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 8px;
}

.pagination a {
    padding: 8px 14px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border-radius: 4px;
}

.pagination a.active,
.pagination a:hover {
    background-color: #29b6f6;
    color: #fff;
    border-color: #29b6f6;
}

/* MOBILE */
@media (max-width: 768px) {
    .results-title {
        font-size: 28px;
    }

    .pagination {
        justify-content: center;
    }
}



/*  ABOUT HTML   */


.about-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 18px;
    color: #535454;
}

.about-list {
    max-width: 800px;
    margin: 20px auto;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
        color: #535454;

}

/* Mobil */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }
}




/*    PLAN HTML     */


.pricing-section {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.pricing-card {
    flex: 1;
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    color: #444;
}

.pricing-card ul li::before {
    content: "✔";
    margin-right: 8px;
    color: #1eb8ff;
}

/* ACTIVE (orta kart) */
.pricing-card.active {
    transform: scale(1.08);
    border: 2px solid #1eb8ff;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1eb8ff;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* BUTTONS */
/* BUTTONS */
.btn-primary {
    margin-top: 25px;
    padding: 18px 0;
    width: 240px;               /* 👉 hər 3 button eyni ölçüdə */
    background-color: #29b6f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;

    text-decoration: none;      /* 👉 altdakı xətti ləğv edir */
    display: inline-block;      /* 👉 a tag üçün vacibdir */
    text-align: center;
}


.btn-primary:hover {
    background-color: #1fa8e0;
}



/* MOBILE */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
    }

    .pricing-card.active {
        transform: none;
    }
}


.chart-wrapper {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.chart-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}








