:root {
    /* Colors */
    --color-primary: #1D4ED8;
    --color-primary-hover: #1a3eb3;
    --color-secondary: #FAA275;
    --color-text: #222;
    --color-text-muted: #5C6B7A;
    --color-about: #79839A;
    --color-bg: #f5f6f8;
    --color-border: #eee;
    --color-white: #ffffff;
    --bg-section: #E8EDFB61;
    --card-bg: #ffffff;
    --text-dark: #222;
    --text-muted: #687082;
    --primary: #2c5be3;
    --primary-soft: rgba(44, 91, 227, 0.12);
    --border: #d8def3;
    --shadow: 0 18px 35px rgba(28, 41, 99, 0.08);
    --color-curveshape: #E8EDFB;
    /* Radius */
    --radius-lg: 27px;
    --radius-md: 22px;
    --radius-sm: 15px;
    --radius-btn: 8px;

    /* Layout */
    --container-width: 1256px;
}

/* ---------------- Font ---------------- */

@font-face {
    font-family: IRANSansXFaNum;
    font-style: normal;
    font-weight: 400;
    src:
        url('../../assets/fonts/Woff2/IRANSansXFaNum-Regular.woff2') format('woff2'),
        url('../../assets/fonts/Woff/IRANSansXFaNum-Regular.woff') format('woff');
}

@font-face {
    font-family: IRANSansXFaNum;
    font-style: normal;
    font-weight: 500;
    src:
        url('../../assets/fonts/Woff2/IRANSansXFaNum-Medium.woff2') format('woff2'),
        url('../../assets/fonts/Woff/IRANSansXFaNum-Medium.woff') format('woff');
}

@font-face {
    font-family: IRANSansXFaNum;
    font-style: normal;
    font-weight: 700;
    src:
        url('../../assets/fonts/Woff2/IRANSansXFaNum-Bold.woff2') format('woff2'),
        url('../../assets/fonts/Woff/IRANSansXFaNum-Bold.woff') format('woff');
}

/* ---------------- Reset ---------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: IRANSansXFaNum;
    direction: rtl;
    background: var(--color-white);
    color: var(--color-text);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Container ---------------- */

.container {
    max-width: var(--container-width);
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

/* ---------------- Header ---------------- */

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}


.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 400;
    flex-grow: 0.7;
}

.header__nav-link {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 14px;
}

.header__auth {
    margin-right: 0;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    height: 40px;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}


.header__toggle,
.header__auth--mobile {
    display: none;
    padding: 0 20px;
    color: var(--color-text-muted);
}

.header__auth-mobile-link {
    color: var(--color-text-muted);
}


/* ---------------- MenuMobile ---------------- */


.mobile-menu {
    position: fixed;
    /* ارتفاع هدر تقریبی؛ در موبایل تنظیم دقیق می‌کنیم */
    right: 0;
    left: 0;
    background: rgba(248, 250, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.16);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    z-index: 1999 !important;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* حالت فعال (باز) */
.mobile-menu--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 6px;
    border-bottom: 1px solid rgba(226, 232, 255, 0.9);
}

.mobile-menu__close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* لیست لینک‌ها */
.mobile-menu__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 10px 18px 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    transition: 0.2s ease;
}

/* خط آبی باریک سمت چپ هنگام هاور/فوکوس */
.mobile-menu__link::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--color-primary), #60a5fa);
    opacity: 0;
    transition: 0.2s ease;
}

/* حالت هاور و active section */
.mobile-menu__link:hover,
.mobile-menu__link:focus {
    background: rgba(44, 91, 227, 0.06);
    color: var(--color-primary);
}

.mobile-menu__link--active {
    background: rgba(44, 91, 227, 0.08);
    color: var(--color-primary);
}

.mobile-menu__link:hover::before,
.mobile-menu__link--active::before {
    height: 60%;
    opacity: 1;
}

.mobile-menu_icon {
    padding: 10px 18px 4px;
    font-size: 14px;
}

/* دکمه ورود/ثبت نام پایین منو */
.mobile-menu__cta {
    padding: 10px 18px 16px;
    border-top: 1px solid rgba(226, 232, 255, 0.9);
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu__btn {
    width: 100%;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1990 !important;
}

/* حالت فعال */
.mobile-menu-overlay--active {
    z-index: 1990 !important;
    opacity: 1;
    pointer-events: auto;
}

.header--disabled {
    pointer-events: none;
    opacity: 0.8;
}

/* ---------------- Hero ---------------- */

.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    background: var(--color-white);
}

.hero h2 {
    text-align: start;
}

/* دسکتاپ: عکس چپ، متن راست */
.hero__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.hero__right {
    flex: 1;
    text-align: right;
    min-width: 0;
}

.hero__left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* عکس به چپ container بچسبد */
    align-items: center;
    min-width: 0
}

.hero__image {
    width: 100%;
    height: 100%;
}

.hero__tagline {
    display: block;
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero__title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #252B31;
}

.hero__description {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 460px;
    text-align: right;
}


.hero__button {
    display: inline-block;
    text-align: center;
    padding: 14px 0;
    border: 1.5px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary);
    text-decoration: none;
    width: 65%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero__button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.hero__scroll {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #6B7280;
    font-size: 14px;
}

.hero__scroll-icon img {

    width: 24px;
    animation: bounce 2s infinite;
}




/* ---------------- About us ---------------- */
.about {
    background-color: var(--color-white);
}

.about-row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.about__media {
    flex: 1;
    position: relative;
    min-width: 0;
    display: flex;
    justify-content: end;
    margin-left: 20px;
}

.about__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    transform: translateY(+75px);
}


.about__text--label {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.about__text h2 {
    font-size: 32px;
    line-height: 1.5;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
    padding-left: 40px;
}

.about__text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.7;
    padding-left: 40px;
    margin-bottom: 0;
}

.about__media__wrapper {
    position: relative;
}

.about__media_imag {
    width: 100%;
    max-width: 526px;
    height: auto;
    border-radius: 24px;
    display: block;
    transform: translateX(+30px);
}

.about__media__card {
    position: absolute;
    bottom: -110px;
    right: 14px;
    background: var(--color-white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 440px;
    height: 235px;
}

.about__media__card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.about__media__card p {
    font-size: 16px;
    font-weight: 400;
}


.about__media__card--button {
    display: flex;
    gap: 10px;
}

.btn-primary-sm {
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
}

.btn-primary-sm:hover {
    background-color: var(--color-white) !important;
    color: var(--color-text) !important;
    border: 1px solid var(--color-text);
}

.btn-outline-sm {
    border: 1px solid #ddd;
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
}

.btn-outline-sm:hover {
    color: var(--color-text) !important;
    border: 1px solid var(--color-text);
}


/* ---------------- Platform---------------- */
.platform {
    background-color: var(--color-white);
    display: block;
    margin-top: 250px;
}

.platform .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform .container p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    text-align: center;
    color: var(--color-text-muted);
}

.platformCards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.platformCardItem {
    flex: 1;
    background-color: #F8F8F8;
    text-align: center;
    padding: 0 20px;
}

.platformCardItem img {
    padding: 20px 0;
}

.platformcardFlex img {
    background-color: #FCF4F0;
}

.platformCardItem h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.platformCardItem h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.platformCardItem p {
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.platformCardItem a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0 30px 30px;
    display: block;
    line-height: 1.5;
}

.designDesktop {
    visibility: visible;
    width: 100%;
}

.designMobile {
    visibility: hidden;
    width: 100%;
    margin-top: 0;
    transform: translateY(-300px);
    height: 0;
}

/* ---------------- Emkanat---------------- */

.DesiningPlan {
    margin: 0 auto;
    margin-bottom: 160px;
    position: relative;
    overflow: hidden;
    padding: 90px 20px;
    height: 1370px;
    max-width: 1440px;
    z-index: 1;
}

.DesiningPlan::before {
    content: "";
    position: absolute;
    width: 3000px;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background: #0c1F56;
}

.DesiningPlan::after {
    content: "";
    position: absolute;
    background: white;
    width: 3000px;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%) translateY(-86%);
}

.emkanat__inner {
    color: white;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
}

.emkanat__inner__imagebox {
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.emkanat__inner__imagebox--side {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.emkanat__inner__imagebox__center {
    display: flex;
    justify-content: center;
}

.emkanat__inner__imagebox__side img {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 10px;
}

.emkanat__inner__imagebox>* {
    flex: 1;
}

.DesiningPlan img {
    width: 340px;
    height: 730px;
    border: 7px solid #252B31;
    border-radius: 40px;
}

.circle {
    position: absolute;
    width: 1186px;
    height: 1186px;
    border: 190px solid White;
    border-radius: 50%;
    background: transparent;
    /* خالی از داخل */
    opacity: 0.01;
    top: -45%;
    left: -45%;

}

.circle2 {
    position: absolute;
    width: 1186px;
    height: 1186px;
    border: 190px solid White;
    border-radius: 50%;
    background: transparent;
    /* خالی از داخل */
    opacity: 0.01;
    top: +65%;
    right: -55%;

}

/* ---------------- Statistic---------------- */
.statistics {
    margin: 70px 0px;
}

.statistics__cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.statistics__cards__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.statistics__cards__item h3 {
    font-size: 48px;
    line-height: 100%;
}

.statistics__cards__item p {
    margin-top: -20px;
    text-align: center;
}

.statistics__cards__item img {
    width: 48px;
    height: 48px;
}

/* ---------------- Price---------------- */

.pricing-section {
    position: relative;
    overflow: hidden;
    padding: 90px 20px;
    z-index: 1;

}


.pricing-section::before {
    content: "";
    position: absolute;

    width: 3000px;
    height: 100%;

    border-radius: 50%;
    background: var(--bg-section);
    opacity: 38%;

    top: 0;
    left: 50%;
    transform: translateX(-50%);

    z-index: -1;
}

.pricing-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section__header {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    max-width: 760px;
    margin: 0 auto 50px;
}

.pricing-section__header h2 {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 800;
}

.pricing-section__header p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    color: var(--text-muted);
}

.pricing-cards {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 30px 0;
    justify-content: center;
}

.pricing-card {
    position: relative;
    width: 100%;
    max-width: 330px;
    background: var(--card-bg);
    border: 1px solid rgba(216, 222, 243, 0.8);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(2px);
    box-shadow: 0 22px 45px rgba(28, 41, 99, 0.12);
}

.pricing-card--featured {
    border-color: rgba(44, 91, 227, 0.2);
}


.pricing-card__badge {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 12px;
    color: var(--color-secondary);
    font-weight: 700;
}

.pricing-card__content h3 {
    margin: 22px 0 10px;
    font-size: 26px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 800;
}

.pricing-card__desc {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e7ebf7;
    flex-wrap: wrap;
}

.pricing-card__price .period {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-card__price .currency,
.pricing-card__price .amount {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.pricing-card__features li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 14px;
    color: #4d5973;
    font-size: 14px;
    line-height: 1.9;
}


.pricing-card__button {
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s ease;
    margin-top: auto;
}

.pricing-card__button--outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

.pricing-card__button--outline:hover {
    background: var(--primary);
    color: #fff;
}

.pricing-card__button--solid {
    background: var(--primary);
    color: #fff;
    border: 1.5px solid var(--primary);
}

.pricing-card__button--solid:hover {
    background: #fff;
    border-color: #2148bb;
}



/* ---------------- Download Application---------------- */
.downloadApplication {
    width: 100%;
    height: 435px;
    background-image: url('../../assets/images/DownloadApplication.png');
    background-repeat: repeat-x;
    background-position: right top;
    background-size: 435px auto;
    /* عکس را کوچک می‌کند (100px عرض) */
    background-color: #F8E9E1;
    background-blend-mode: multiply;
    overflow: hidden;
    margin-top: 50px;
}

.downloadApplication .container {
    display: flex;
    justify-content: space-between;
}

.downloadApplication .downloadApplication__inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    height: 435px;
}

.downloadApplication__buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.downloadApplication__buttons button {

    background: var(--color-white);
    color: var(--color-text);
    gap: 10px;
    padding: 10px 15px;
}

.downloadApplication .downloadApplication__inner h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
}

.downloadApplication .downloadApplication__inner p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.downloadApplication--img {
    width: 166px;
    height: 344px;
    border: 2px solid black;
    border-radius: 22px;
    rotate: 35deg;
}

.downloadApplication__images {
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(2, 1fr);
}

.downloadApplication--firstimage {
    transform: translateY(-55px);
    z-index: 0;
}

.downloadApplication--thirdimage {
    transform: translateY(-160px);
    z-index: 0;
}

.downloadApplication--twoimage {
    transform: translateX(-247px) translateY(-50px);
    z-index: 0;
}

.downloadApplication--fourthimage {
    transform: translateX(-247px) translateY(-154px);
    z-index: 0;
}


/* ---------------- Accordian---------------- */

.accordian {
    margin: 100px auto;
    width: 100%;
    max-width: 1047px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* استایل هدرها */
.accordian summary {
    background: #F8F8F8;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 5px;
    list-style: none;
    font-size: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* اضافه کردن آیکون با CSS */
summary::before {
    content: "+";
    order: 1;
    font-size: 20px;
}

details[open] summary::before {
    content: "-";
    font-size: 20px;
}

details[open] summary {
    color: var(--primary);
}

/* استایل محتوا */
.accordion-content {
    padding: 15px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    ;
}

.accordian__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ---------------- Footer---------------- */

/* ظرف اصلی که قوس داخلش است */
.footer__curve {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.footer__curve--curve {
    position: absolute;
    left: 50%;
    top: -20px;
    /* کمی بالاتر = قوس ملایم‌تر */
    transform: translateX(-50%);
    width: 1500px;
    /* عرض ثابت */
    height: 180px;
    /* کمتر از 240px = قوس کمتر */
    background: var(--color-curveshape);
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.footer__innner {
    margin: -100px auto 0;
    width: 100%;
    max-width: 1074px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.footer__newsletter {
    border-radius: 14px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    z-index: 100;
    position: relative;
    background-color: #091741;
    color: var(--card-bg);
    height: 176px;
}

.footer__newsletter__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px
}

.footer__newsletter__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1d2b56;
    border-radius: 14px;
    height: 72px;
    padding: 6px 8px;
    width: 400px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 10px rgba(0, 150, 255, 0.3),
        /* هاله آبی کمرنگ اول */
        0 0 20px rgba(0, 150, 255, 0.1);
    /* هاله آبی پخش‌شده‌تر دوم */

}

.footer__newsletter__input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 12px;
    padding: 12px;
    direction: rtl;
}

.footer__newsletter__input input::placeholder {
    color: #bfc8e8;
}

.footer__newsletter__input:focus-within {
    border-color: white;
    border: 1px solid white;
}

.footer__newsletter__input button {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    max-width: 122px;
    width: 100%;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.footer__newsletter__input button:hover {
    background-color: white;
    color: var(--primary)
}

/* فاصله بین خبرنامه و منو */
.footer__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* لیست */
.footer__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 16px;
    font-weight: 500;
}

.footer__menu-item {
    padding-left: 28px;
}

.footer__menu-link {
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s ease;
}

.footer__menu-link:hover {
    color: #2563ff;
}

.footer__menu__socialmedia {
    display: flex;
    gap: 35px;
}

.footer__divider {
    margin: 0;
    border: none;
    border-top: 1px solid #9DA6AF;
}

.footer__privacy {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding-bottom: 10px;
}

.footer__privacy__menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer__privacy__menu a {
    color: var(--text-muted);
}

.footer__menu__socialmedia--items:hover {
    /* بعدا برای باتنهای سوشال مدیا افکت بزارم */
}

.message {
    margin-top: 15px;
    font-size: 14px;
}
 
.hidden {
    display: none;
}

/* ---------------- Tablet ---------------- */

@media (max-width:1024px) {

    .header {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .header__nav {
        gap: 12px;
    }

    .header__nav-link,
    .btn {
        font-size: 12px;
    }


    .header__logo {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__description {
        font-size: 15px;
    }

    .container {
        padding: 10px 10px;
    }

    .hero__button {
        width: 90%;
    }

    .downloadApplication .downloadApplication__inner h2 {
        font-size: 25px;
        font-weight: 700;
        text-align: right;
        z-index: 10000;
    }

    .downloadApplication .downloadApplication__inner p {
        font-size: 15px;
        z-index: 10000;
    }

    .footer__menu-list,
    .footer__menu__socialmedia {
        gap: 5px;
    }

    .footer__newsletter__text h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .footer__newsletter__text small {
        font-size: 10px;
        font-weight: 500;
    }

    .statistics__cards__item h3 {
        font-size: 24px;
    }

    .statistics__cards__item p {
        font-size: 14px;
    }

    .pricing-section__header h2 {
        font-size: 18px;
        font-weight: 800;
    }

    .pricing-section__header p {
        font-size: 14px;
        font-weight: 500;
    }

    .pricing-card__content h3 {
        font-size: 20px;
    }

    .pricing-card__price .currency,
    .pricing-card__price .amount {
        font-size: 24px;
        font-weight: 700;
    }

    .pricing-card__desc {
        font-size: 14px;
    }
}

/* ---------------- Mobile ---------------- */

@media (max-width: 768px) {
    .header {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .header__nav,
    .header .btn {
        display: none;
    }

    .header__toggle,
    .header__auth--mobile {
        display: flex;
        flex: 1;
    }

    .header__toggle {
        justify-content: flex-start;
    }

    .header__logo {
        justify-content: center;
        flex: 1;
        white-space: nowrap;
    }

    .header__auth--mobile {
        justify-content: flex-end;
    }


    /* وقتی منو باز است، اسکرول بدنه قفل شود (با کلاس روی body) */
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero h2 {
        text-align: center;
    }

    .hero__content {
        flex-direction: column;
        /* متن بالا، عکس پایین */
        gap: 40px;
        text-align: center;
    }

    .hero__left {
        justify-content: center;
    }

    .hero__image {
        /* width: 260px;
        margin: 0 auto;
        width: 100%;
        height: 100%; */
    }

    .hero__right {
        text-align: center;
    }

    .hero__title {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero__description {
        max-width: 100%;
        font-size: 14px;
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero__button {
        width: 90%;
        margin: 0 auto;
        display: block;
        padding: 12px 0;
        font-size: 16px;
        font-weight: 500;
    }

    .hero__scroll {
        visibility: collapse;
        margin-top: 0;
    }

    .about-row {
        flex-direction: column;
    }

    .about__media {
        justify-content: center;
        margin-left: 0;
        order: 2;
    }

    .about__media_imag {
        transform: translateX(0);
    }

    .about__media__card {
        max-width: 300px;
    }

    .about__text {
        align-items: center;
        transform: translateY(0);
    }

    .about__text h2 {
        font-size: 18px;
        margin-bottom: 25px;
        font-weight: 700;
        padding-left: 0;
        text-align: center;
        line-height: 1.7;
    }

    .about__text p {
        font-size: 14px;
        line-height: 1.57;
        padding-left: 0;
        margin-bottom: 0;
        text-align: center;
    }

    .about__media__card {
        position: absolute;
        bottom: -50%;
        right: 10%;
        height: 200px;
        padding: 8px;
    }

    .about__media__card h3 {
        text-align: center;
    }

    .about__media__card--button {
        justify-content: center;
    }

    .platform {
        margin-top: 200px;
    }

    .platformCards {
        flex-direction: column;
        gap: 30px;
    }


    .DesiningPlan::after {
        transform: translateX(-50%) translateY(-95%) !important;
    }

    .DesiningPlan h2 {
        font-size: 18px;
        font-weight: 700;
    }

    .DesiningPlan span {
        font-size: 14px;
        font-weight: 400;
        text-align: center;
        ;
    }

    .DesiningPlan {
        height: 100%;
        padding: 0 10px;
    }

    .emkanat__inner {
        padding-top: 170px;
    }

    .emkanat__inner__imagebox {
        flex-direction: column;
    }

    .emkanat__inner__imagebox__side img {
        display: none;
    }

    .emkanat__inner__imagebox__side {
        text-align: center;
        background-color: #091946DB;
        border-radius: 18px;
        padding: 30px 5px;
    }

    .emkanat__inner__imagebox__side h5 {
        font-size: 16px;
        font-weight: 700;
    }

    .emkanat__inner__imagebox__side P {
        font-size: 16px;
        font-weight: 400;
        color: #F8F8F8
    }

    .emkanat__inner__imagebox__center {
        margin: 75px auto;
    }

    .emkanat__inner__imagebox__center img {
        width: 277px;
        height: 607px;
    }

    .statistics {
        margin-top: -290px;
    }

    .statistics__cards {
        flex-direction: column;
        gap: 25px;
    }

    .pricing-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        justify-content: flex-start;

    }

    .pricing-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        scroll-snap-align: start;
    }

    /* مخفی کردن نوار اسکرول در مرورگرهای Webkit (اختیاری - برای زیبایی) */
    .pricing-cards::-webkit-scrollbar {
        height: 5px;
    }

    .pricing-cards::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .pricing-cards::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px;
    }

    .downloadApplication__images {
        display: none;
    }

    .downloadApplication .downloadApplication__inner h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.5;
    }

    .downloadApplication .downloadApplication__inner P {
        font-size: 14px;
    }

    .downloadApplication .downloadApplication__inner {
        width: 100%;
        align-items: center;
    }

    .downloadApplication {
        height: 240px;
    }

    .downloadApplication .downloadApplication__inner {
        height: 240px;
        gap: 5px
    }

    .downloadApplication .downloadApplication__buttons,
    .downloadApplication .downloadApplication__buttons button {
        width: 95%;
    }

    .downloadApplication__inner .btn {
        font-size: 16px;
    }

    .accordian {
        margin-top: 45px;
        margin-bottom: 30px;
    }

    .accordian h2 {
        font-size: 18px;
        font-weight: 700;
    }

    .accordian summary {
        font-size: 14px;
    }

    .accordian__inner {
        gap: 7px;
    }

    .footer__newsletter {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-content: space-around;
        gap: 10px;
        height: 165px;
    }

    .footer__newsletter__input {
        height: 56px;
        width: 90%;
        margin-bottom: 15px;
    }

    .footer__newsletter__text {
        align-items: center;
    }


    .footer__menu {
        flex-direction: column;
        gap: 20px;
    }

    .footer__menu-list {
        display: flex;
        font-size: 14px;
        gap: 4px;
        justify-content: space-around;
        flex-wrap: nowrap;
    }

    .footer__menu nav {
        width: 100%;
    }

    .footer__menu-item {
        padding: 0;
    }

    .footer__menu__socialmedia {
        justify-content: space-around;
        width: 80%;
    }

    .footer__privacy {
        align-items: center;
    }

    .footer__privacy span {
        display: none;
    }

    .footer__privacy p {
        font-size: 10px;
        margin: 0;
        flex: 1;
    }

    .footer__privacy a {
        flex: 1;
    }

    .footer__privacy__menu {
        flex-direction: column;
        text-align: center;
        font-size: 10px;
        flex: 1;
    }
}