/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
@font-face {
    font-family: Shablon;
    src: url('./fonts/Shablon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: ShabnamRegular;
    src: url('./fonts/Shabnam-FD.eot');
    src: url('./fonts/Shabnam-FD.eot?#iefix') format('FontName-opentype'),
    url('./fonts/Shabnam-FD.woff') format('woff'),
    url('./fonts/Shabnam-FD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: ShabnamBold;
    src: url('./fonts/Shabnam-Bold-FD.eot');
    src: url('./fonts/Shabnam-Bold-FD.eot?#iefix') format('FontName-opentype'),
    url('./fonts/Shabnam-Bold-FD.woff') format('woff'),
    url('./fonts/Shabnam-Bold-FD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: ShabnamMedium;
    src: url('./fonts/Shabnam-Medium-FD.eot');
    src: url('./fonts/Shabnam-Medium-FD.eot?#iefix') format('FontName-opentype'),
    url('./fonts/Shabnam-Medium-FD.woff') format('woff'),
    url('./fonts/Shabnam-Medium-FD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: ShabnamLight;
    src: url('./fonts/Shabnam-Light-FD.eot');
    src: url('./fonts/Shabnam-Light-FD.eot?#iefix') format('FontName-opentype'),
    url('./fonts/Shabnam-Light-FD.woff') format('woff'),
    url('./fonts/Shabnam-Light-FD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: ShabnamBold , sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /*padding-bottom: 350px;*/
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Palette based on the image */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #2c8867;
    --gold-color: #f39c12;
    --cream-color: #ecf0f1;
    --light-gray: #bdc3c7;
    --dark-gray: #2c3e50;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-accent: linear-gradient(135deg, #2c8867 0%, #1c7659 100%);
    --gradient-gold: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /*height: 70px;*/
    /*background: rgba(255, 255, 255, 0.02);*/
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.51);
    box-shadow: 0px -12px 10px 0px rgba(211, 211, 211, 0.15);

    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.7rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-counter-p1 {
    margin-bottom: 0!important;
    font-family: ShabnamBold,sans-serif !important;
}
.about-counter-p2 {
    margin-bottom: 0!important;
}
.nav-logo h2 {
    background: var(--gradient-primary);
    font-family: Shablon ,ShabnamBold , sans-serif;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    -webkit-text-fill-color: #20af6e;
    font-weight: 700;
    font-size: 2.0rem;
    margin-bottom: 0 !important;
}
.nav-logo--h {
    background: var(--gradient-primary);
    font-family: Shablon ,ShabnamBold , sans-serif;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    -webkit-text-fill-color: #20af6e;
    font-weight: 500;
    font-size: 2.0rem;
    margin-bottom: 0 !important;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* ------------------------ Start navigator ------------------------ */
.header-primary--left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.btn--header-buy-book {
    background: var(--success);
    color: var(--bg-white);
}
.btn--header-buy-book-digital {
    border: 1px solid var(--bg-primary);
    background: var(--bg-white);
}

.btn--header-buy-book, .btn--header-buy-book-digital, .btn--header-login {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 3rem;
    min-width: 5.3rem;
    gap: 0.8rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    z-index: 1;
    padding: 1rem 1rem 1rem 1.6rem;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
    border-radius: var(--br-32);
    cursor: pointer;
    font-size: var(--fs-18);
    display: none;
}

.btn--header-login {
    background: var(--success);
    color: var(--bg-white);
    display: inline-flex;
}
/*!* پایه مودال *!*/
/*.modal {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    background: rgba(0,0,0,0.5);*/
/*    display: none;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    z-index: 9999;*/
/*}*/

/* محتوای مودال */
.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    transform: translateY(40px);
    opacity: 0;
}

/* باز شدن مودال */
.modal.show {
    display: flex;
}

.modal.show .modal-content {
    animation: modalFadeUp 0.4s ease forwards;
}

/* بسته شدن مودال */
.modal.hide .modal-content {
    animation: modalFadeDown 0.35s ease forwards;
}

/* انیمیشن‌ها */
@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(40px);
    }
}


/* ------------------------ End navigator ------------------------ */

.smsir-login-button {
    min-width: 13.3rem !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 3rem !important;
    gap: 0.8rem!important;
    line-height: 1;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit ;
    z-index: 1!important;
    padding: 1rem 1rem 1rem 1.6rem!important;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
    border-radius: var(--br-32) !important;
    cursor: pointer!important;
font-size: var(--fs-18)!important;

}
/*////////////////////////////////////////////*/
/* Hero Section */
.hero {
    min-height: 100vh;
    /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);*/
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    animation: fadeInRight 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInLeft 1s ease;
    height: 100%;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*width: 100%;*/
    /*max-width: 400px;*/
    /*border-radius: 20px;*/
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    /*transform: perspective(1000px) rotateY(-5deg);*/
    /*transition: transform 0.3s ease;*/
}
.hero-image-2 {
    animation: fadeInLeft 1s ease;
    height: 100%;
    width: 100%;
}

.hero-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image img:hover {
    /*transform: perspective(1000px) rotateY(0deg);*/
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-background img{
    width: 100%;
    height: 100%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(231, 76, 60, 0.6) 100%);
}
#responsiveImage {
    content: url('https://hefzemandegar.ir/wp-content/uploads/2026/01/bg-desktop.jpg');
}

/* تبلت */
@media (max-width: 1024px) and (min-width: 768px) {
    #responsiveImage {
        content: url('https://hefzemandegar.ir/wp-content/uploads/2026/01/bg-tablet.jpg');
    }
}

/* موبایل */
@media (max-width: 767px) {
    #responsiveImage {
        content: url('https://hefzemandegar.ir/wp-content/uploads/2026/01/bg-mobile.jpg');
    }
}

/* Buttons */
.btn {
    /*padding: 15px 30px;*/
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Video Section */
.video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    /*height: 100%;*/
    /*object-fit: scale-down;*/
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(231, 76, 60, 0.6) 100%);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
}

.video-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-video {
    width: 100%;
    /*height: 90%;*/
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    /*margin-bottom: 3rem;*/
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about {
    background: var(--cream-color);
    padding-bottom: 90px;
    direction: ltr;
}
.about p ,.about section{
    direction: rtl;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-family: ShabnamMedium,ShabnamRegular, ShabnamBold, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Author Section */
.author {
    background: var(--cream-color);
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.author-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.author-placeholder i {
    font-size: 4rem;
    color: var(--white);
}

.author-text h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.author-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.author-achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

.achievement span {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Purchase Section */
.purchase {
    background: var(--white);
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.purchase-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.purchase-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.card-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1rem;
    opacity: 0.8;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.card-body {
    padding: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.features-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--cream-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--cream-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    /*font-family: inherit;*/
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gradient-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    .video-features {
        grid-template-columns: 1fr;
    }

    .about-content,
    .author-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .author-achievements {
        gap: 0.5rem;
    }

    .purchase-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .video-content h2 {
        font-size: 1.5rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-card,
    .testimonial-card,
    .purchase-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        width: 11rem ;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: var(--white);
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/**************************/
/*ROOT*/
/**************************/
:root,
[data-theme="light"] {
    --c-primary: rgb(255, 190, 0);
    --c-primary-100: #fff2cc;
    --c-secondary: rgb(0, 65, 255);
    --c-secondary-100: #f5f7fa;
    --c-secondary-200: #edeff2;
    --c-secondary-300: #e2e9fa;
    --c-white: #fff;
    --c-black: #000000;
    --c-neutral-100: #f5f5f5;
    --c-neutral-200: #e6e6e6;
    --c-neutral-300: #696969;
    --c-neutral-400: #606060;
    --c-neutral-500: #9c9c9c;
    --c-neutral-600: #a6a6a6;
    --c-neutral-700: #2b2b2b;
    --c-neutral-800: #333;
    --c-neutral-900: #181818;
    --ease1: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --ease2: cubic-bezier(0.5, 1, 0.89, 1);

    --bg-secondary-100: var(--c-secondary-100);
    --bg-primary-100: var(--c-primary-100);
    --bg-white: var(--c-white);
    --bg-black: var(--c-black);
    --bg-primary: var(--c-primary);
    --bg-primary-rgb: 255, 190, 0;
    --bg-secondary: var(--c-secondary);
    --bg-secondary-200: var(--c-secondary-200);
    --bg-secondary-rgb: 0, 65, 255;
    --bg-body: var(--c-secondary-100);
    --bg-neutral-100: var(--c-neutral-100);
    --bg-neutral-200: var(--c-neutral-200);
    --bg-neutral-700: var(--c-neutral-700);
    --bg-neutral-800: var(--c-neutral-800);
    --bg-neutral-900: var(--c-neutral-900);
    --text-white: var(--c-white);
    --text-black: var(--c-black);
    --text-primary: var(--c-primary);
    --text-secondary: var(--c-secondary);
    --border-neutral-100: var(--c-neutral-200);
    --c-text-body: var(--c-neutral-700);
    --c-text-200: var(--c-neutral-200);
    --c-text-300: var(--c-neutral-300);
    --c-text-400: var(--c-neutral-400);
    --c-text-500: var(--c-neutral-500);
    --c-text-600: var(--c-neutral-600);
    --c-text-700: var(--c-neutral-700);

    --width-container: 127rem;

    --danger: #f40259;
    --bg-danger: #faf2f2;

    --success: rgb(28 199 123);
    --bg-success: #ecf9ee;

    --info: #0288d1;
    --bg-info: #e6f1fc;

    --ff-main: YekanBakh;

    --fs-10: 10px;
    --fs-11: 11px;
    --fs-12: 12px;
    --fs-13: 12px;
    --fs-14: 12px;
    --fs-15: 13px;
    --fs-16: 14px;
    --fs-17: 14px;
    --fs-18: 15px;
    --fs-20: 16px;
    --fs-22: 17px;
    --fs-24: 18px;
    --fs-28: 19px;
    --fs-30: 20px;
    --fs-33: 20px;
    --fs-36: 20px;
    --fs-42: 20px;

    --fw-100: "wght" 100, "dots" 1;
    --fw-150: "wght" 150, "dots" 1;
    --fw-200: "wght" 200, "dots" 1;
    --fw-250: "wght" 250, "dots" 1;
    --fw-300: "wght" 300, "dots" 1;
    --fw-350: "wght" 350, "dots" 1;
    --fw-400: "wght" 400, "dots" 1;
    --fw-450: "wght" 450, "dots" 1;
    --fw-500: "wght" 500, "dots" 1;
    --fw-600: "wght" 600, "dots" 1;

    --gutter-x: 2rem;

    --heading_h1_fontsize: 2.8rem;
    /* --swiper-navigation-color: var(--c-primary); */
    --swiper-pagination-bullet-width: 15px;
    --swiper-pagination-bullet-height: 9px;
    --swiper-pagination-color: var(--c-primary);
    --swiper-pagination-bullet-horizontal-gap: 2px;
    --swiper-pagination-bullet-inactive-color: var(--c-neutral-600);
    --swiper-pagination-bullet-inactive-opacity: 0.4;
    --swiper-navigation-size: 3.6rem;

    --br-12: 12px;
    --br-16: 8px;
    --br-20: 13px;
    --br-22: 14px;
    --br-24: 16px;
    --br-32: 20px;
}
[data-theme="light"] {
}
[data-theme="dark"] {
    --c-dark-100: #040b24;
    --c-dark-200: #1d283a;
    --c-dark-300: #101116;
    --c-dark-400: #99b3ff;
    --text-black: var(--c-white);
    --c-text-300: var(--c-white);
    --c-text-400: var(--c-neutral-600);
    --c-text-body: var(--c-white);
    --text-secondary: var(--c-primary);

    --bg-secondary-100: var(--c-dark-300);
    --bg-primary-100: var(--c-dark-100);
    --bg-neutral-200: var(--c-dark-100);
    --bg-secondary-200: var(--c-dark-100);
    --bg-body: var(--c-dark-100);
    --bg-white: var(--c-dark-200);
    --bg-neutral-100: var(--c-dark-100);
    --bg-black: var(--c-dark-100);
}
a {
    transition: 0.3s;
    color: currentColor;
    text-decoration: none;
}
/**************************/
/*Fonts*/
/**************************/
/*@font-face {*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*    font-family: YekanBakh;*/
/*    src: url("../fonts/YekanBakh-VF.woff2") format("woff2"),*/
/*    url("../fonts/YekanBakh-VF.woff") format("woff");*/
/*}*/

/*@font-face {*/
/*    font-family: "icomoon";*/
/*    src: url("../fonts/icomoon.eot?n0ldc8");*/
/*    src: url("../fonts/icomoon.eot?n0ldc8#iefix") format("embedded-opentype"),*/
/*    url("../fonts/icomoon.ttf?n0ldc8") format("truetype"),*/
/*    url("../fonts/icomoon.woff?n0ldc8") format("woff"),*/
/*    url("../fonts/icomoon.svg?n0ldc8#icomoon") format("svg");*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: block;*/
/*}*/


/**************************/
/* Mobile Menu*/
/**************************/

.mm-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    width: min(38px, 12vw);
    height: min(38px, 12vw);
    border-radius: 50%;
    font-size: 16px;
}

.mobile body {
    padding-bottom: 6rem;
}

.fix-menu {
    position: fixed;

    bottom: -1px;
    right: 0;
    left: 0;
    padding: 0.7rem min(2rem, 2vw);
    display: flex;
    z-index: 12;
    background: rgba(255, 255, 255, 0.51);
    box-shadow: 0px -12px 10px 0px rgba(211, 211, 211, 0.15);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    gap: min(2vw, 16rem);
    align-items: center;
    justify-content: space-between;
}

[data-theme="dark"] .fix-menu {
    background: #101116bd;
}

.fix-menu .menu--item.login {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: min(11vw, 5rem);
    min-width: 10rem;
    gap: 0.8rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    z-index: 1;
    padding: 1rem 1rem 1rem 1.6rem;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
    border-radius: var(--br-32);
    cursor: pointer;
    background: rgb(28 199 123);
    color: #ffffff;
}

.fix-menu .menu--item.login b , .fix-menu .menu--item.demo b{
    font-family: ShabnamLight, sans-serif;
    font-size: var(--fs-16);
    font-weight: normal !important;
}
.fix-menu .menu--item.demo {
    user-select: none;
    height: min(11vw, 5rem);
    min-width: 10rem;
    align-content: center;
    gap: 0.8rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    z-index: 1;
    padding: 1rem 1rem 1rem 1.6rem;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
    border-radius: var(--br-32);
    cursor: pointer;

    background: var(--bg-primary);
    color: var(--c-neutral-700);
}

.fix-menu .menu--item {
    display: flex;
    align-items: center;
    gap: min(2rem, 1vw);
    justify-content: center;
    flex: 1;
    font-size: min(12px, 3.2vw);
}

.fix-menu .menu--item.call i {
    transform: rotateY(180deg);
}

.fix-menu .menu--item i {
    font-size: min(15px, 4.5vw);
    margin-left: 0.5rem;
}

#btn-read-book {
    display: none;
}

.chosen-menu-item  {
    /*display: none;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none !important;
    height: min(11vw, 5rem) !important;
    min-width: 4rem !important;
    align-content: center;
    gap: 0.8rem !important;
    line-height: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
    z-index: 1 !important;
    padding: 0 1rem !important;
    position: relative !important;
    transition: 0.3s !important;
    white-space: nowrap !important;
    border-radius: var(--br-32) !important;
    cursor: pointer !important;
    background: rgb(28 199 123) !important;
    color: #ffffff !important;
    text-align: center !important;
}
/*                instagram */
/* تنظیمات پایه و فونت‌ها */
/*body {*/
/*    font-family: ShabnamBold , sans-serif;*/
/*    background-color: #fafafa;*/
/*    color: #262626;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

.instagram-container {
    max-width: 600px; /* عرض استاندارد برای فید موبایلی */
    margin: 0 auto;
    padding: 10px;
}

h2 {
    font-size: 1.2em;
    font-weight: 400;
    /*margin: 15px 0;*/
    text-align: center;
}

hr {
    border: 0;
    border-top: 1px solid #dbdbdb;
    margin: 20px 0;
}

/* استایل بخش هایلایت */
.highlights-section {
    padding: 10px 0;
}

.highlights-wrapper {
    display: flex;
    overflow-x: auto; /* اسکرول افقی */
    padding: 10px 0;
    gap: 15px; /* فاصله بین آیتم‌ها */
    -webkit-overflow-scrolling: touch; /* بهبود اسکرول در iOS */
    white-space: nowrap; /* جلوگیری از رفتن به خط بعد */
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px; /* عرض هر دایره */
    text-align: center;
}

.highlight-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2777 50%, #cc2366 75%, #bc1888 100%); /* گرادیانت شبیه هایلایت */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* برای جلوگیری از کوچک شدن */
}

.highlight-circle img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white; /* حاشیه سفید بین گرادیانت و عکس */
}

.highlight-name {
    font-size: 0.75em;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* استایل بخش ویدیوها */
.video-card {
    background-color: white;
    border: 1px solid #dbdbdb;
    margin-bottom: 20px;
    border-radius: 3px;
}

.video-header {
    display: flex;
    align-items: center;
    padding: 10px;
}

.video-header .profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.video-content video {
    width: 100%;
    display: block;
}

.video-footer {
    padding: 10px;
}

.icon-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.icon-bar i {
    font-size: 1.4em;
    cursor: pointer;
}

/* counter */
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/

/*body {*/
/*    font-family: 'Segoe UI', sans-serif;*/
/*    background: #121212;*/
/*    color: #fff;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    min-height: 100vh;*/
/*    direction: rtl;*/
/*}*/

.countdown-container {
    text-align: center;
    padding: 0;
    /*max-width: 400px;*/
    width: 100%;
}

.countdown-container h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ff4081;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.time-item {
    background: #1e1e1e;
    padding: 10px;
    border-radius: 15px;
    width: 100%;
    max-width: 120px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.time-item span {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
}

.time-item .label {
    font-size: 0.7em;
    color: #aaa;
    margin-top: 5px;
}

/* برای موبایل: اصلاح فضای بین عنصرها */
@media (max-width: 480px) {
    .countdown {
        /*flex-wrap: wrap;*/
        gap: 15px;
    }
    .time-item {
        max-width: 100%;
    }
}

@media (min-width: 36em) {
    .navbar {
        height: 70px;
    }
    .fix-menu {
        display: none;
    }

    .nav-container {
        max-width: 90%;
    }
    .btn--header-buy-book,
    .btn--header-buy-book-digital {
        display: inline-flex;
    }
    .btn--header-login {
        min-width: 13.3rem ;
    }

}
/* مودال - اولیه نهان */
.modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    /*animation: slideUp 0.4s ease forwards;*/
}

/* انیمیشن بالا آمدن از پایین */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* محتوای مودال */
.modal-content {
    background: #fff;
    border-radius: 16px 16px 0 0;
    max-width: 90%;
    width: 90%;
    /*margin: 20px auto;*/
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

/* سر مودال */
.modal-header {
    padding: 16px 20px;
    background: #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

/* بدن مودال */
.modal-body {
    padding: 16px 20px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-body li {
    margin-bottom: 12px;
}

.download-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.download-link-2 {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.download-link span {
    font-size: 14px;
}

.price {
    color: rgb(128, 128, 128);
    font-weight: normal;
}

/* مودال نمایش داده شده */
.modal.show {
    display: flex;
    justify-content: center;
}

/* مودال نمایش داده شده - انیمیشن نمایش */
.modal.show {
    /*animation: slideUp 0.4s ease forwards;*/
}

/* مودال بسته شده */
.modal.hide {
    /*animation: slideDown 0.4s ease forwards;*/
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}


/* ------------------------ start of highlights section ------------------------ */
.section-story {
    padding: 0 !important;
}

.story-container {
    background: #fff;
    padding: 16px 0;
}

.story-header {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-list {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    justify-content: center;
}

.story-list::-webkit-scrollbar {
    display: none;
}

.story-item {
    width: 78px;
    text-align: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.story-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    background: brown;
    margin: 0 auto 6px;
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.story-title {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Story Modal ===== */
.story-modal {
    position: fixed;
    inset: 0;
    background: var(--bg-black);
    display: none;
    width: 100%;
    /*height: 85%;*/
    z-index: 9999;
    align-self: center;
    justify-self: center;
    border-radius: 24px;
}

.story-content {
    background-color:#04d9781f;
    height: 100vh;
    align-content: center;
}

.story-content img,
.story-content video {
    width: 100%;
    object-fit: contain;
}

.story-progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.story-progress span {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, .3);
    overflow: hidden;
}

.story-progress span::after {
    content: "";
    display: block;
    height: 100%;
    width: 0%;
    background: #fff;
    animation: progress linear forwards;
}

/*@keyframes progress {*/
/*    from {*/
/*        width: 0%;*/
/*    }*/

/*    to {*/
/*        width: 100%;*/
/*    }*/
/*}*/

.story-nav {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 5;
}

.story-nav.prev {
    left: 0;
}

.story-nav.next {
    right: 0;
}

.story-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

#storyProgress {
    display: flex;
    gap: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 3px;
}

#storyProgress span {
    flex: 1;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

#storyProgress span .inner-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    animation: progress linear forwards;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}


@media (max-width: 480px) {
    .story-modal {
        width: 100%;
        height: auto;
        align-self: auto;
        border-radius: 0;
    }

    .story-list {
        justify-content: right;
    }
}

/* ------------------------ end of highlights section ------------------------ */

/* ------------------------ start of roadmap section ------------------------ */

.curved-roadmap {
    padding: 60px 0;
}

.cr-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.cr-path.desktop {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    z-index: 0;
}

.cr-path.mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 0;
}

.cr-path path {
    fill: none;
    stroke: #20af6e;
    stroke-width: 3;
    stroke-dasharray: 6 8;
}

.cr-step {
    position: relative;
    display: flex;
    margin-bottom: 60px;
    z-index: 1;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.cr-step.left { justify-content: flex-start; }
.cr-step.right { justify-content: flex-end; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.cr-box {
    width: 340px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.9;
    color: #333;
    box-shadow: 0 36px 28px rgba(0,0,0,.08);
}

.cr-step.highlight .cr-box {
    background: var(--accent-color);
    color: #fff;
}

.cr-box p { margin: 0 0 8px 0; }

.prizes-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.prizes-list li {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.prizes-list li span {
    color: white;
    margin-left: 8px;
    font-weight: bolder;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .cr-path.desktop { display: none; }
    .cr-path.mobile { display: block; }

    .cr-step { justify-content: center !important; margin-bottom: 60px; }

    .cr-box { width: 90%; padding: 18px; font-size: 14px; }

    .prizes-list li {
        font-size: 12px;
    }

    .prizes-list li span {
        font-size: 16px;
    }
}


/* ------------------------ end of roudmap section ------------------------ */