
.parents-page section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}


.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 800;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feat-item strong {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
}

.feat-item p {
    color: #666;
    line-height: 1.5;
}


.certsSwiper {
    padding: 20px 10px 60px 10px !important;
}

.cert-card {
    background: #fff;
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.cert-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}


.swiper-button-next, .swiper-button-prev {
    color: #111 !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 24px !important;
    border-radius: 4px !important;
}


.lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lesson-card {
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    position: relative;
}

.card-num {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    background: var(--accent);
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.lesson-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.lesson-card p {
    color: #666;
    line-height: 1.6;
}


.reviewsSwiper {
    padding: 30px 10px 70px 10px !important;
}

.iphone-mockup {
    width: 290px;
    height: 590px;
    background: #111;
    border: 12px solid #111;
    border-radius: 44px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}


.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 22px;
    background: #111;
    border-radius: 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f7;
    border-radius: 34px;
    overflow-y: auto;
    overflow-x: hidden;
}


.iphone-screen::-webkit-scrollbar {
    width: 0;
}

.iphone-screen img {
    width: 100%;
    height: auto;
    display: block;
}


.reviewsSwiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.reviewsSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}


.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 36px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.duration-tag {
    background: #f0eff6;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.price-value {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-value span {
    font-size: 18px;
    color: #777;
    font-weight: 400;
}

.price-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-card .btn {
    width: 100%;
}

.price-card.featured {
    border: 3px solid var(--accent);
    box-shadow: 0 25px 50px rgba(210,242,92,0.15);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    padding: 60px !important;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.contacts-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contacts-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.messengers {
    display: flex;
    gap: 16px;
}

.msg-link {
    display: inline-flex;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

.msg-link.tg { background: #229ED9; }
.msg-link.wa { background: #25D366; }
.msg-link:hover { transform: translateY(-3px); opacity: 0.9; }

.cta-box {
    background: #F8F7EF;
    padding: 40px;
    border-radius: 32px;
}

.cta-box h3 {
    margin-bottom: 12px;
}

.cta-box p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}


@media(max-width: 960px) {
    .parents-page section { padding: 60px 0; }
    .about-container, .lessons-grid, .price-grid, .contacts-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content, .section-header { text-align: center; }
    .about-image { order: -1; }
    .contacts-container { padding: 30px !important; }
}

@media(max-width: 640px) {
    .section-header h2 { font-size: 32px; }
    .about-content h2 { font-size: 36px; }
    .price-card { padding: 30px 20px; }
    .messengers { flex-direction: column; }
    .msg-link { justify-content: center; }
}
