:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --card: #101010;
    --card-hover: #151515;

    --gold: #d4af37;
    --gold-light: #f0d878;

    --text: #ffffff;
    --text-soft: #b8b8b8;

    --border: rgba(212, 175, 55, 0.2);

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

img {
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div {
    overflow-wrap: break-word;
}


/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.88);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo {
    font-size: 25px;
    font-weight: 800;

    letter-spacing: -1px;

    white-space: nowrap;
}

.logo span {
    color: #fff;
}

.logo strong {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 30px;
}

.nav-links a {
    color: var(--text-soft);

    font-size: 14px;

    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-button {
    padding: 10px 20px;

    border: 1px solid var(--gold);

    border-radius: 10px;

    color: var(--gold);

    font-size: 14px;

    transition: 0.25s ease;
}

.nav-button:hover {
    background: var(--gold);

    color: #000;
}


/* ================= HERO ================= */

.hero {
    position: relative;

    padding: 110px 0 90px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(212, 175, 55, 0.08);

    filter: blur(100px);

    border-radius: 50%;

    top: 50px;
    right: -200px;

    pointer-events: none;
}

.hero-content {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}

.hero-text {
    min-width: 0;
}

.badge,
.section-label {
    display: inline-flex;

    align-items: center;

    color: var(--gold);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;
}

.badge {
    padding: 7px 14px;

    border: 1px solid var(--border);

    border-radius: 100px;

    background: rgba(212, 175, 55, 0.06);
}

.hero h1 {
    font-size: clamp(38px, 5vw, 66px);

    line-height: 1.25;

    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text > p {
    color: var(--text-soft);

    font-size: 17px;

    line-height: 2;

    max-width: 650px;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 40px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 26px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;
}

.primary-button {
    background: var(--gold);

    color: #000;
}

.primary-button:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.14);

    color: #fff;
}

.secondary-button:hover {
    border-color: var(--gold);

    color: var(--gold);
}

.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;
}

.hero-info div {
    display: flex;

    flex-direction: column;
}

.hero-info strong {
    color: var(--gold);

    font-size: 17px;
}

.hero-info span {
    color: #888;

    font-size: 12px;
}


/* ================= HERO IMAGE ================= */

.hero-visual {
    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}

.glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.15);

    filter: blur(80px);
}

.hero-image-wrapper {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 560px;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;

    max-width: 100%;

    height: auto;

    object-fit: contain;
}

.ai-orb {
    position: absolute;

    z-index: 3;

    bottom: -20px;

    left: -20px;

    width: 75px;
    height: 75px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0c0c0c;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-weight: 900;

    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.25);
}


/* ================= REASSURANCE ================= */

.reassurance {
    padding: 30px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    background: var(--bg-soft);
}

.reassurance-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.reassurance-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}

.reassurance-item > span {
    color: var(--gold);

    font-size: 25px;
}

.reassurance-item strong {
    display: block;

    font-size: 14px;

    margin-bottom: 3px;
}

.reassurance-item p {
    color: #888;

    font-size: 12px;
}


/* ================= GENERAL SECTIONS ================= */

.course-section,
.tips-section,
.learning-section,
.roadmap-section,
.faq-section {
    padding: 110px 0;
}

.support-section,
.updates-section,
.certificate-section,
.income-section,
.cta-section {
    padding: 40px 0 110px;
}

.section-heading {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);

    line-height: 1.4;

    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text-soft);

    font-size: 15px;

    margin-bottom: 25px;
}


/* ================= COURSE ================= */

.course-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.course-card {
    position: relative;

    padding: 28px;

    min-height: 220px;

    background: var(--card);

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    transition: 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);

    border-color: var(--border);

    background: var(--card-hover);
}

.course-card > span {
    color: var(--gold);

    font-size: 13px;

    font-weight: 800;
}

.course-card h3 {
    margin: 20px 0 10px;

    font-size: 18px;
}

.course-card p {
    color: #929292;

    font-size: 13px;
}


/* ================= TIPS ================= */

.tips-section {
    background: var(--bg-soft);
}

.tips-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.tip-card {
    padding: 35px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 20px;

    background: #0d0d0d;
}

.tip-card > span {
    color: var(--gold);

    font-size: 28px;
}

.tip-card h3 {
    margin: 15px 0 10px;
}

.tip-card p {
    color: #929292;

    font-size: 14px;
}


/* ================= SUPPORT ================= */

.support-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border: 1px solid var(--border);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(212, 175, 55, 0.1),
            transparent 35%
        ),
        #0c0c0c;
}

.support-box h2 {
    font-size: clamp(25px, 4vw, 40px);

    line-height: 1.5;

    margin-bottom: 15px;
}

.support-box p {
    color: var(--text-soft);

    max-width: 700px;
}

.support-icon {
    flex: 0 0 110px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 28px;

    font-weight: 900;

    box-shadow:
        0 0 35px rgba(212, 175, 55, 0.08);
}


/* ================= LEARNING ================= */

.learning-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.learning-card {
    padding: 30px 24px;

    border-radius: 18px;

    background: var(--card);

    border: 1px solid rgba(255, 255, 255, 0.07);

    transition: 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-4px);

    border-color: var(--border);
}

.learning-card > span {
    color: var(--gold);

    font-weight: 800;
}

.learning-card h3 {
    margin: 20px 0 10px;

    font-size: 17px;
}

.learning-card p {
    color: #888;

    font-size: 13px;
}


/* ================= UPDATES ================= */

.update-box {
    display: flex;

    align-items: center;

    gap: 35px;

    padding: 50px;

    border-radius: 25px;

    background: #0c0c0c;

    border: 1px solid rgba(212, 175, 55, 0.18);
}

.update-icon {
    flex: 0 0 80px;

    width: 80px;
    height: 80px;

    border-radius: 20px;

    background: rgba(212, 175, 55, 0.08);

    border: 1px solid var(--border);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 32px;
}

.update-box h2 {
    font-size: clamp(24px, 4vw, 38px);

    line-height: 1.5;

    margin-bottom: 12px;
}

.update-box p {
    color: var(--text-soft);
}


/* ================= ROADMAP ================= */

.roadmap {
    max-width: 850px;

    margin: auto;
}

.roadmap-item {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 10px 0;
}

.roadmap-number {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.roadmap-item h3 {
    margin-bottom: 3px;
}

.roadmap-item p {
    color: #888;

    font-size: 13px;
}

.roadmap-line {
    width: 1px;

    height: 35px;

    background: rgba(212, 175, 55, 0.3);

    margin-right: 27px;
}


/* ================= CERTIFICATE ================= */

.certificate-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 50px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #101010,
            #080808
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.certificate-box h2 {
    font-size: clamp(25px, 4vw, 40px);

    margin-bottom: 12px;
}

.certificate-box p {
    color: var(--text-soft);

    max-width: 700px;
}

.certificate-box small {
    display: block;

    color: #666;

    font-size: 11px;

    margin-top: 15px;

    max-width: 700px;
}

.certificate-icon {
    flex: 0 0 90px;

    width: 90px;
    height: 90px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    border: 1px solid var(--border);

    font-size: 35px;
}


/* ================= INCOME ================= */

.income-section {
    background: var(--bg-soft);
}

.income-box {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.income-box h2 {
    font-size: clamp(28px, 5vw, 48px);

    line-height: 1.4;

    margin-bottom: 18px;
}

.income-box p {
    color: var(--text-soft);

    font-size: 16px;
}

.income-box small {
    display: block;

    color: #666;

    margin-top: 20px;

    font-size: 11px;
}


/* ================= FAQ ================= */

.faq-list {
    max-width: 850px;

    margin: auto;
}

.faq-list details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list summary {
    cursor: pointer;

    list-style: none;

    padding: 25px 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--gold);

    font-size: 22px;

    flex-shrink: 0;
}

.faq-list details p {
    color: #999;

    font-size: 14px;

    padding: 0 5px 25px;
}


/* ================= CTA ================= */

.cta-box {
    text-align: center;

    padding: 85px 30px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.12),
            transparent 55%
        ),
        #0c0c0c;

    border: 1px solid var(--border);
}

.cta-box h2 {
    font-size: clamp(35px, 6vw, 60px);

    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-soft);

    margin-bottom: 30px;
}


/* ================= FOOTER ================= */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);

    background: #030303;

    padding-top: 50px;
}

.footer-inner {
    display: grid;

    grid-template-columns: 1fr auto auto;

    align-items: center;

    gap: 50px;

    padding-bottom: 45px;
}

.footer p {
    color: #777;

    font-size: 12px;

    margin-top: 10px;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;
}

.footer-links a,
.footer-social a {
    color: #888;

    font-size: 13px;

    transition: 0.25s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 20px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ================= TABLET ================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-info {
        justify-content: center;
    }

    .hero-visual {
        max-width: 700px;

        width: 100%;

        margin: auto;
    }

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .navbar-inner {
        min-height: 68px;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        padding: 8px 14px;

        font-size: 12px;
    }


    /* HERO */

    .hero {
        padding: 70px 0 65px;
    }

    .hero h1 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .hero-info {
        gap: 20px;
    }

    .hero-info span {
        font-size: 10px;
    }

    .hero-image-wrapper {
        width: 100%;

        max-width: 100%;

        border-radius: 18px;
    }

    .ai-orb {
        width: 58px;
        height: 58px;

        left: -5px;
        bottom: -12px;

        font-size: 18px;
    }


    /* REASSURANCE */

    .reassurance-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* SECTIONS */

    .course-section,
    .tips-section,
    .learning-section,
    .roadmap-section,
    .faq-section {
        padding: 75px 0;
    }

    .support-section,
    .updates-section,
    .certificate-section,
    .income-section,
    .cta-section {
        padding: 25px 0 75px;
    }

    .section-heading {
        margin-bottom: 35px;
    }


    /* GRIDS */

    .course-grid,
    .tips-grid,
    .learning-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-height: auto;
    }


    /* BOXES */

    .support-box,
    .update-box,
    .certificate-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

    .support-icon,
    .certificate-icon {
        align-self: center;
    }


    /* ROADMAP */

    .roadmap-line {
        margin-right: 27px;
    }


    /* CTA */

    .cta-box {
        padding: 60px 20px;
    }


    /* FOOTER */

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 22px);
    }

    .logo {
        font-size: 21px;
    }

    .nav-button {
        font-size: 11px;

        padding: 7px 11px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-info {
        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .hero-image-wrapper {
        border-radius: 14px;
    }

    .course-card,
    .tip-card,
    .learning-card {
        padding: 24px;
    }

    .support-box,
    .update-box,
    .certificate-box {
        padding: 25px 20px;
    }

    .roadmap-item {
        gap: 15px;
    }

    .roadmap-number {
        flex-basis: 45px;

        width: 45px;
        height: 45px;
    }

    .footer-links {
        flex-direction: column;

        gap: 10px;
    }
}
/* ================= FAQ SYMBOL ================= */

.faq-list details summary span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    margin-right: 15px;

    color: #d8ad52 !important;

    font-size: 24px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
    transform: rotate(180deg);
}