*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0
}

:root {
    --red: #DA3732;
    --red-dark: #b82e2a;
    --red-light: #fdf0f0;
    --black: #111111;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --border: #e8e8e8;
    --white: #ffffff;
    --font: 'Plus Jakarta Sans', sans-serif;
    --font-fa: 'Vazirmatn', sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden
}

body.fa {
    font-family: var(--font-fa);
    direction: rtl;
    text-align: right
}

body:not(.fa) [data-fa] {
    display: none !important
}

body.fa [data-en] {
    display: none !important
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    transition: box-shadow .3s
}

.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--red)
}

.nav-links a.active-link {
    color: var(--red) !important
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0
}

.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3px;
    gap: 2px
}

.lang-btn {
    padding: .3rem .8rem;
    border-radius: 16px;
    border: none;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    color: var(--gray);
    font-family: var(--font)
}

.lang-btn.active {
    background: var(--red);
    color: var(--white)
}

.nav-phone {
    color: var(--black) !important;
    font-weight: 700 !important;
    font-size: .88rem;
    text-decoration: none
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: .6rem 1.4rem;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap
}

.nav-cta:hover {
    background: var(--red-dark)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    display: block
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 2rem 5%;
    flex-direction: column;
    overflow-y: auto
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border)
}

.hero {
    min-height: 100vh;
    padding: 70px 5% 0;
    display: flex;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden
}

.hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: var(--light-gray);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%)
}

.hero-circle {
    position: absolute;
    top: 18%;
    right: 7%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(218, 55, 50, .1);
    z-index: 0;
    pointer-events: none
}

.hero-circle::after {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 2px solid rgba(218, 55, 50, .05)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 4rem 0
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--red-light);
    color: var(--red);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp .6s ease .1s forwards
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--black);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp .6s ease .25s forwards
}

.hero h1 span {
    color: var(--red)
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 460px;
    opacity: 0;
    animation: fadeUp .6s ease .4s forwards
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .6s ease .55s forwards
}

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: .95rem 2rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-block;
    font-family: var(--font)
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px)
}

body.fa .btn-red {
    font-family: var(--font-fa)
}

.btn-ghost {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--border);
    padding: .95rem 2rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .2s, transform .15s;
    display: inline-block
}

.btn-ghost:hover {
    border-color: var(--black);
    transform: translateY(-2px)
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .6s ease .7s forwards
}

.hero-stat .n {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1
}

.hero-stat .n em {
    color: var(--red);
    font-style: normal
}

.hero-stat .l {
    font-size: .75rem;
    color: var(--gray);
    margin-top: .2rem;
    font-weight: 500
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.trust-bar {
    background: var(--black);
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    font-weight: 500
}

.trust-item b {
    color: var(--red)
}

.section {
    padding: 6rem 5%
}

.section-alt {
    background: var(--light-gray)
}

.sec-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .7rem
}

.sec-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--black);
    margin-bottom: 1rem
}

.sec-title.light {
    color: var(--white)
}

.sec-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 500px
}

.sec-sub.light {
    color: rgba(255, 255, 255, .75)
}

.text-center {
    text-align: center
}

.text-center .sec-sub {
    margin: 0 auto
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    margin-top: 1rem
}

.instructor-photo-wrap {
    position: relative
}

.instructor-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--red);
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(218, 55, 50, .3);
    text-align: center
}

.instructor-badge .bn {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1
}

.instructor-badge .bl {
    font-size: .7rem;
    font-weight: 600;
    opacity: .85;
    margin-top: .2rem
}


.instructor-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.03em;
    line-height: 1.1
}

.instructor-name span {
    color: var(--red)
}

.instructor-role {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: -.6rem
}

.instructor-bio {
    font-size: .98rem;
    line-height: 1.8;
    color: var(--gray)
}

.instructor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem
}

.tag {
    background: var(--light-gray);
    color: var(--dark);
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border)
}

.tag.red {
    background: var(--red-light);
    color: var(--red);
    border-color: rgba(218, 55, 50, .2)
}

.instructor-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border)
}

.istat .n {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1
}

.istat .n em {
    color: var(--red);
    font-style: normal
}

.istat .l {
    font-size: .75rem;
    color: var(--gray);
    margin-top: .2rem
}

.instructors-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem
}

.instructor-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s
}

.instructor-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .1);
    transform: translateY(-3px)
}

.instructor-card-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light-gray)
}

.instructor-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block
}

.instructor-card-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--red);
    color: var(--white);
    padding: .7rem 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(218, 55, 50, .35);
    text-align: center
}

body.fa .instructor-card-badge {
    right: auto;
    left: 1rem
}

.instructor-card-body {
    padding: 1.8rem
}

.instructor-card-role {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .4rem
}

.instructor-card-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: .8rem
}

.instructor-card-name span {
    color: var(--red)
}

@media(max-width:768px) {
    .instructors-cards {
        grid-template-columns: 1fr
    }
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem
}

.lesson-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all .25s
}

.lesson-card:hover {
    border-color: var(--red);
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 55, 50, .1)
}

.lesson-icon {
    font-size: 1.8rem;
    margin-bottom: .8rem
}

.lesson-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .3rem
}

.lesson-desc {
    font-size: .76rem;
    color: var(--gray);
    line-height: 1.5
}

.lessons-cta {
    text-align: center;
    margin-top: 2.5rem
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem
}

.price-card.package {
    border-color: var(--red);
    background: linear-gradient(135deg, #fff 70%, var(--red-light))
}

.price-card.package:hover {
    box-shadow: 0 14px 40px rgba(218, 55, 50, .18)
}

.price-sessions {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--red-light);
    color: var(--red);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 20px;
    margin-bottom: .9rem
}

.lesson-card.class4-trigger {
    cursor: pointer;
    border-color: rgba(218, 55, 50, .25);
    background: var(--red-light)
}

.lesson-card.class4-trigger:hover {
    border-color: var(--red);
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 55, 50, .15)
}

.class4-hint {
    font-size: .7rem;
    color: var(--red);
    font-weight: 600;
    margin-top: .4rem;
    opacity: .85
}

.c4-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem
}

.c4-modal-backdrop.open {
    display: flex
}

.c4-modal {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    animation: c4ModalIn .22s ease
}

@keyframes c4ModalIn {
    from {
        transform: scale(.96);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.c4-modal-head {
    background: var(--black);
    padding: 1.8rem 2rem 1.5rem;
    border-radius: 16px 16px 0 0;
    position: relative
}

.c4-modal-head h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.c4-modal-head h3 span {
    color: var(--red)
}

.c4-modal-head p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .70);
    margin-top: .4rem
}

.c4-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s
}

body.fa .c4-modal-close {
    right: auto;
    left: 1.2rem
}

.c4-modal-close:hover {
    background: var(--red);
    color: var(--white)
}

.c4-modal-body {
    padding: 1.8rem 2rem
}

.c4-section-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem
}

.c4-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.c4-card {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
    transition: border-color .2s, box-shadow .2s
}

.c4-card:hover {
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(218, 55, 50, .1)
}

.c4-card-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-bottom: .4rem
}

.c4-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.35;
    margin-bottom: .5rem
}

.c4-card-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.03em
}

.c4-card-price sup {
    font-size: .85rem;
    vertical-align: super
}

.c4-card-desc {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.55;
    margin-top: .45rem
}

.c4-modal-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

@media(max-width:600px) {
    .c4-cards {
        grid-template-columns: 1fr
    }

    .c4-modal-head {
        padding: 1.4rem 1.2rem 1.2rem
    }

    .c4-modal-body {
        padding: 1.2rem
    }
}

.price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform .3s, box-shadow .3s
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .1)
}

.price-card.featured {
    border-color: var(--red);
    background: var(--black)
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 20px;
    white-space: nowrap
}

.price-name {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray);
    margin-bottom: 1rem
}

.price-card.featured .price-name {
    color: rgba(255, 255, 255, .65)
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -.04em
}

.price-card.featured .price-amount {
    color: var(--red)
}

.price-amount sup {
    font-size: 1.2rem;
    vertical-align: super
}

.price-amount small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray)
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin: 1.4rem 0
}

.price-card.featured .price-divider {
    background: rgba(255, 255, 255, .1)
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.6rem
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.5
}

.price-card.featured .price-features li {
    color: rgba(255, 255, 255, .55)
}

.price-features li::before {
    content: '✓';
    color: var(--red);
    font-weight: 800;
    flex-shrink: 0
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: .9rem
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    padding: .9rem 2rem;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font)
}

.btn-outline-red:hover {
    background: var(--red);
    color: var(--white)
}

.price-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .82rem;
    color: var(--gray)
}

.price-desc {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-top: .4rem;
    margin-bottom: .8rem
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, .5)
}

.areas-section {
    background: var(--black);
    padding: 5rem 5%;
    text-align: center
}

.areas-section .sec-sub {
    margin: 0 auto
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: center;
    margin-top: 2.5rem
}

.area-tag {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
    font-weight: 600;
    padding: .6rem 1.4rem;
    border-radius: 30px;
    transition: all .2s
}

.area-tag:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: box-shadow .3s, transform .3s
}

.review-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, .08);
    transform: translateY(-3px)
}

.review-stars {
    color: #f5a623;
    font-size: .95rem;
    letter-spacing: .05em;
    margin-bottom: 1rem
}

.review-author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .95rem;
    flex-shrink: 0
}

.review-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black)
}

.review-meta {
    font-size: .75rem;
    color: var(--gray);
    margin-top: .15rem
}

.review-badge {
    font-size: .72rem;
    color: var(--gray);
    margin-top: .15rem
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem
}

.footer-ig-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0 1.8rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-wrap: wrap;
    gap: 1rem
}

.footer-ig-left {
    display: flex;
    align-items: center;
    gap: .8rem
}

.footer-ig-left p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    margin-top: .2rem
}

.footer-ig-left strong {
    color: var(--white);
    font-size: .92rem;
    display: block
}

.footer-ig-emoji {
    font-size: 1.4rem
}

.footer-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--red);
    color: var(--white);
    padding: .55rem 1.2rem;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap
}

.footer-ig-btn:hover {
    background: var(--red-dark)
}

.faq-section {
    padding: 6rem 5%;
    background: var(--light-gray)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 600;
    color: var(--black);
    transition: color .2s
}

body.fa .faq-question {
    text-align: right;
    font-family: var(--font-fa)
}

.faq-question:hover {
    color: var(--red)
}

.faq-question.open {
    color: var(--red)
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
    transition: background .2s, transform .3s
}

.faq-question.open .faq-icon {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.4rem
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 1.4rem 1.2rem
}

.faq-answer p {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--gray)
}

.booking-section {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.booking-info {
    position: sticky;
    top: 90px
}

.booking-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 2.5rem
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem
}

.binfo-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.binfo-text .lbl {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-bottom: .25rem
}

.binfo-text .val {
    font-size: .95rem;
    font-weight: 600;
    color: var(--black)
}

.binfo-text a {
    color: var(--black);
    text-decoration: none
}

.binfo-text a:hover {
    color: var(--red)
}

.booking-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06)
}

.form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: .4rem
}

.form-sub {
    font-size: .85rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-group.full {
    grid-column: 1/-1
}

.form-group label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dark)
}

.form-group input,
.form-group select {
    background: var(--light-gray);
    border: 1.5px solid transparent;
    color: var(--black);
    padding: .8rem 1rem;
    font-family: var(--font);
    font-size: .9rem;
    border-radius: 7px;
    outline: none;
    transition: border-color .2s, background .2s
}

.form-group textarea {
    background: var(--light-gray);
    border: 1.5px solid transparent;
    color: var(--black);
    padding: .8rem 1rem;
    font-family: var(--font);
    font-size: .9rem;
    border-radius: 7px;
    outline: none;
    transition: border-color .2s, background .2s;
    resize: vertical;
    min-height: 100px
}

body.fa .form-group input,
body.fa .form-group select,
body.fa .form-group textarea {
    font-family: var(--font-fa)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--white)
}

.form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 7px;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s
}

body.fa .form-submit {
    font-family: var(--font-fa)
}

.form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-1px)
}

.form-note {
    font-size: .75rem;
    color: var(--gray);
    text-align: center;
    margin-top: .8rem;
    line-height: 1.6
}

.form-success {
    display: none;
    background: #edf7ed;
    border: 1px solid #82c882;
    color: #2d6a2d;
    padding: 1rem;
    border-radius: 7px;
    font-size: .9rem;
    text-align: center;
    margin-top: 1rem
}

footer {
    background: var(--black);
    padding: 4rem 5% 2rem
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-logo-placeholder {
    height: 40px;
    width: 120px;
    background: rgba(255, 255, 255, .08);
    border: 2px dashed rgba(255, 255, 255, .15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 1rem
}

.footer-brand>img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1)
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .70);
    line-height: 1.8;
    max-width: 260px
}

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .60);
    margin-bottom: 1.2rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.footer-col a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--red)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .25)
}

.social-links {
    display: flex;
    gap: .8rem
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .8rem;
    transition: all .2s
}

.social-link:hover {
    border-color: var(--red);
    color: var(--red)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

body.fa .nav-inner {
    flex-direction: row-reverse
}

body.fa .nav-links {
    flex-direction: row-reverse
}

body.fa .nav-right {
    flex-direction: row-reverse
}

body.fa .hero-accent {
    right: auto;
    left: 0;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%)
}

body.fa .hero-stats {
    flex-direction: row-reverse
}

body.fa .instructor-grid {
    direction: rtl
}

body.fa .instructor-badge {
    right: auto;
    left: -1rem
}

body.fa .instructor-stats {
    flex-direction: row-reverse
}

body.fa .footer-top {
    direction: rtl
}

body.fa .footer-bottom {
    flex-direction: row-reverse
}

@media(max-width:960px) {

    .pricing-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr
    }

    .pricing-packages {
        grid-template-columns: 1fr 1fr
    }

    .lessons-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .instructor-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .instructors-cards {
        grid-template-columns: 1fr
    }

    .booking-section {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .booking-info {
        position: static
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .nav-cta {
        display: none
    }
}

@media(max-width:600px) {

    .pricing-grid,
    .pricing-packages,
    .reviews-grid,
    .faq-grid,
    .lessons-grid {
        grid-template-columns: 1fr
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .hero-stats {
        gap: 1.2rem;
        flex-wrap: wrap
    }

    .trust-bar {
        gap: 1rem;
        padding: .8rem 4%
    }

    .trust-item {
        font-size: .78rem
    }

    .section {
        padding: 4rem 4%
    }

    .instructor-card-body {
        padding: 1.2rem
    }

    .booking-wrap {
        padding: 1.5rem
    }

    .faq-section {
        padding: 4rem 4%
    }

    .footer-top {
        padding: 3rem 4%
    }

    .footer-ig-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem 4%
    }
}

@media(max-width:400px) {
    nav {
        padding: 0 4%
    }

    .nav-logo img {
        height: 36px
    }

    .lang-btn {
        padding: .25rem .6rem;
        font-size: .72rem
    }

    .hero-accent {
        display: none
    }

    .hero-circle {
        display: none
    }

    .hero-content {
        padding: 2rem 0
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-sub {
        font-size: .92rem
    }

    .hero-actions {
        flex-direction: column;
        gap: .75rem
    }

    .hero-actions .btn-red,
    .hero-actions .btn-ghost {
        width: 100%;
        text-align: center
    }

    .hero-stats {
        gap: 1rem
    }

    .stat-divider {
        display: none
    }

    .hero-stat .n {
        font-size: 1.6rem
    }

    .section {
        padding: 3.5rem 4%
    }

    .sec-title {
        font-size: 1.7rem
    }

    .instructor-card-name {
        font-size: 1.5rem
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .price-card {
        padding: 1.5rem
    }

    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .lessons-grid {
        grid-template-columns: 1fr 1fr
    }

    .booking-wrap {
        padding: 1.2rem
    }

    .form-submit {
        font-size: .88rem;
        padding: .9rem 1rem
    }

    .footer-ig-strip {
        padding: 1rem 4%
    }

    .footer-top {
        padding: 2.5rem 4%
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 4%
    }

    .cta-box {
        padding: 2.5rem 1.2rem
    }
}

.policy-block {
    margin: 1.2rem 0 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.policy-block:focus-within {
    border-color: var(--red)
}

.policy-check-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.1rem
}

.policy-check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--red);
    cursor: pointer;
    border-radius: 4px
}

.policy-check-label {
    font-size: .85rem;
    color: var(--dark);
    line-height: 1.55;
    cursor: pointer
}

.policy-check-label strong {
    color: var(--black)
}

.policy-toggle-btn {
    background: none;
    border: none;
    color: var(--red);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap
}

.policy-toggle-btn:hover {
    color: var(--red-dark)
}

.policy-details {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--light-gray);
    padding: 1.1rem 1.2rem;
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.7
}

.policy-details.open {
    display: block
}

.policy-details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: .7rem
}

.policy-details ul li {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding-left: .9rem;
    position: relative
}

body.fa .policy-details ul li {
    padding-left: 0;
    padding-right: .9rem
}

.policy-details ul li::before {
    content: '•';
    color: var(--red);
    font-weight: 800;
    position: absolute;
    left: 0;
    top: .15rem
}

body.fa .policy-details ul li::before {
    left: auto;
    right: 0
}

.policy-details strong {
    color: var(--black);
    display: block;
    font-size: .82rem
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-6px)
    }

    40% {
        transform: translateX(6px)
    }

    60% {
        transform: translateX(-4px)
    }

    80% {
        transform: translateX(4px)
    }
}

.policy-block.shake {
    animation: shake .35s ease;
    border-color: var(--red)
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--red);
    color: var(--white);
    padding: .6rem 1.2rem;
    border-radius: 0 0 8px 8px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

    html {
        scroll-behavior: auto
    }
}

/* ── Review clamp & See more ── */
.review-text {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--dark);
    margin-bottom: .8rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.review-text.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset
}

.review-seemore {
    background: none;
    border: 1px solid var(--border);
    color: var(--gray);
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    padding: .25rem .7rem;
    border-radius: 4px;
    font-family: inherit;
    margin-bottom: 1rem;
    transition: border-color .2s, color .2s;
    display: none
}

.review-seemore:hover {
    border-color: var(--red);
    color: var(--red)
}

.review-seemore.visible {
    display: inline-block
}

/* ── Video lessons page ── */
.page-hero {
    padding: 130px 5% 5rem;
    background: var(--black);
    position: relative;
    overflow: hidden
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 55, 50, .08), transparent);
    pointer-events: none
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.5rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4)
}

.breadcrumb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none
}

.breadcrumb a:hover {
    color: var(--red)
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 1rem
}

.page-hero h1 em {
    color: var(--red);
    font-style: normal
}

.page-hero p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
    max-width: 560px
}

.lessons-page {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto
}

.lessons-page .sec-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .7rem
}

.lessons-page .sec-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--black);
    margin-bottom: .8rem
}

.lessons-page .sec-sub {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px
}

.yt-section {
    margin-bottom: 4rem
}

/* ── VIDEO GRID ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
    border-color: var(--red)
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #111;
    overflow: hidden
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.video-card:hover .video-thumb img {
    transform: scale(1.04)
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    transition: background .2s
}

.video-card:hover .play-overlay {
    background: rgba(218, 55, 50, .35)
}

.play-circle {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
    transition: transform .2s, background .2s
}

.video-card:hover .play-circle {
    transform: scale(1.1);
    background: var(--red)
}

.play-circle svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    transition: fill .2s
}

.video-card:hover .play-circle svg path {
    fill: var(--white)
}

.video-info {
    padding: 1rem 1.1rem 1.2rem
}

.video-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.45;
    margin-bottom: .4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.video-meta {
    font-size: .75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: .4rem
}

.video-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray);
    opacity: .5
}

/* ── LOADING / ERROR STATES ── */
.videos-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    font-size: .9rem
}

.videos-loading .spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin: 0 auto 1rem
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.videos-error {
    grid-column: 1/-1;
    text-align: center;
    padding: 2.5rem;
    color: var(--gray);
    background: var(--light-gray);
    border-radius: 12px;
    font-size: .88rem;
    line-height: 1.7
}

.videos-error a {
    color: var(--red);
    font-weight: 600
}

/* ── SHOW MORE BUTTON ── */
.show-more-wrap {
    text-align: center;
    margin-top: .5rem
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--black);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    padding: .75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s
}

.btn-show-more:hover {
    border-color: var(--red);
    color: var(--red)
}

.btn-show-more svg {
    width: 16px;
    height: 16px;
    transition: transform .2s
}

.btn-show-more:hover svg {
    transform: translateY(2px)
}

.video-count-note {
    font-size: .78rem;
    color: var(--gray);
    margin-top: .75rem
}

/* ── MODAL ── */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem
}

.modal-backdrop.open {
    display: flex
}

.modal-box {
    background: #0a0a0a;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    animation: modalIn .22s ease
}

@keyframes modalIn {
    from {
        transform: scale(.96);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.2rem;
    background: #111
}

.modal-title {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 48px)
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s
}

.modal-close:hover {
    background: var(--red);
    color: var(--white)
}

.modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000
}

.modal-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.modal-embed-fallback {
    display: none;
    position: absolute;
    inset: 0;
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center
}

.modal-embed-fallback.is-visible {
    display: flex
}

.modal-embed-fallback-msg {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem
}

.modal-embed-fallback-btn {
    background: var(--red);
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none
}

.tips-section {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.tip-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all .25s
}

.tip-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 55, 50, .08)
}

.tip-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: .6rem
}

.tip-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .4rem
}

.tip-desc {
    font-size: .84rem;
    line-height: 1.65;
    color: var(--gray)
}

.cta-box {
    background: var(--black);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(218, 55, 50, .1), transparent 70%);
    pointer-events: none
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .8rem;
    position: relative
}

.cta-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

.btn-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .2);
    padding: .95rem 2rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-block
}

.btn-white:hover {
    border-color: var(--white)
}

body.fa .btn-white {
    font-family: var(--font-fa)
}

body.fa .breadcrumb {
    flex-direction: row-reverse
}

/* ── Video lessons page (responsive) ── */
@media(max-width:960px) {

    .tips-grid {
        grid-template-columns: 1fr 1fr
    }

    .video-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {

    .tips-grid {
        grid-template-columns: 1fr
    }

    .video-grid {
        grid-template-columns: 1fr
    }

    .cta-box {
        padding: 2.5rem 1.5rem
    }

    .lessons-page {
        padding: 3rem 4%
    }

    .tips-section {
        padding: 2rem 1.2rem
    }

    .page-hero {
        padding: 110px 4% 4rem
    }
}

@media(max-width:400px) {

    .page-hero {
        padding: 100px 4% 3rem
    }

    .page-hero h1 {
        font-size: 1.9rem
    }

    .page-hero p {
        font-size: .9rem
    }

    .lessons-page {
        padding: 2.5rem 4%
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .tips-section {
        padding: 1.5rem 1rem;
        border-radius: 12px
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .cta-box {
        padding: 2rem 1.2rem;
        border-radius: 12px
    }

    .cta-box h2 {
        font-size: 1.5rem
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch
    }

    .cta-box .btn-red,
    .cta-box .btn-white {
        text-align: center
    }

    .modal-backdrop {
        padding: .75rem
    }

    .modal-header {
        padding: .7rem 1rem
    }
}

/* ── Multi-playlist sections ── */
.playlist-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border)
}

.playlist-section:last-child {
    border-bottom: none
}

.playlist-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem
}

.playlist-yt-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--red);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    padding: .5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0
}

.playlist-yt-link:hover {
    background: var(--red-dark)
}


/* ── Contact Modal ── */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    transition: border-color .2s, background .2s, transform .15s
}

.contact-option:hover {
    border-color: var(--red);
    background: var(--red-light);
    transform: translateX(3px)
}

body.fa .contact-option:hover {
    transform: translateX(-3px)
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 36px;
    text-align: center
}

.contact-details {
    flex: 1
}

.contact-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-bottom: .15rem
}

.contact-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--black)
}

.contact-arrow {
    font-size: 1rem;
    color: var(--gray);
    flex-shrink: 0
}

body.fa .contact-arrow {
    transform: scaleX(-1)
}

/* ── Form field validation ── */
.field-error {
    display: block;
    color: var(--red);
    font-size: .78rem;
    font-weight: 600;
    margin-top: .3rem
}

.field-invalid {
    border-color: var(--red) !important;
    background: var(--red-light)
}


/* ════════════════════════════════════════
   PRICING SECTIONS — scrolling layout
════════════════════════════════════════ */

.price-section-header {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border)
}

.price-section-header:first-of-type {
    margin-top: 2rem
}

.price-section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .5rem
}

.price-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.02em;
    line-height: 1.2
}

/* Auto-fit grid — fills row, wraps naturally */
.pricing-grid-auto {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.5rem
}

.pricing-grid-auto.cols-4 {
    grid-template-columns: repeat(4, 1fr)
}

.pricing-grid-auto.cols-3 {
    grid-template-columns: repeat(3, 1fr)
}

/* 5-card row: first 4 then 1 centered — use auto-fill */
.pricing-grid-auto.cols-5-wrap {
    grid-template-columns: repeat(4, 1fr)
}

/* ────────────────────────────────────────
   Responsive
──────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-grid-auto.cols-4,
    .pricing-grid-auto.cols-5-wrap {
        grid-template-columns: repeat(2, 1fr)
    }
    .pricing-grid-auto.cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .pricing-grid-auto.cols-4,
    .pricing-grid-auto.cols-3,
    .pricing-grid-auto.cols-5-wrap {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .pricing-grid-auto.cols-4,
    .pricing-grid-auto.cols-3,
    .pricing-grid-auto.cols-5-wrap {
        grid-template-columns: 1fr
    }
    .price-section-title {
        font-size: 1.2rem
    }
}
