/* === PROF PAGE SPECIFIC === */
.prof-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FAF7F2 0%, #F2E8E1 40%, #E8C9BE 100%);
}
.prof-hero .hero-bg-shape.s1 { background: #D4A89A; }
.prof-hero .hero-bg-shape.s2 { background: #C8D5C0; }
.prof-hero .hero-bg-shape.s3 { background: #E8D5C0; }

.prof-badge {
    display: inline-block;
    background: rgba(181, 134, 122, 0.12);
    border: 1px solid #D4A89A;
    color: #7A4F45;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s ease forwards;
}
.prof-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: #2C1F1A;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s ease forwards;
}
.prof-title em { font-style: italic; color: #B5867A; }
.prof-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: #5A3D36;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s ease forwards;
}
.prof-tagline {
    font-size: 0.95rem;
    color: #7A5A69;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s ease forwards;
}
.prof-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s ease forwards;
}
.btn-prof {
    display: inline-block;
    background: linear-gradient(135deg, #7A4F45, #B5867A);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(122, 79, 69, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-prof::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #B5867A, #D4A89A);
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-prof:hover::before { opacity: 1; }
.btn-prof span { position: relative; z-index: 1; }
.btn-prof:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(122,79,69,0.45); }

.btn-prof-outline {
    display: inline-block;
    background: transparent;
    color: #7A4F45;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid #D4A89A;
    transition: all 0.3s;
}
.btn-prof-outline:hover { background: rgba(212,168,154,0.15); border-color: #B5867A; transform: translateY(-2px); }

/* PRICE STRIP PROF */
.prof-strip {
    background: linear-gradient(135deg, #7A4F45 0%, #B5867A 100%);
    color: #fff;
    text-align: center;
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
}
.prof-strip::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}
.prof-strip p { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; position: relative; }
.prof-strip strong { font-weight: 700; font-size: 1.1rem; }
.prof-strip .prof-highlight { color: #E8D5AE; }
.price-old { text-decoration: line-through; opacity: 0.6; }

/* STATS */
.prof-stats { background: #fff; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}
.stat-card {
    padding: 40px 24px;
    background: linear-gradient(135deg, #FAF7F2, #F2E8E1);
    border-radius: 24px;
    border: 1px solid #E8C9BE;
    transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(122,79,69,0.12); }
.stat-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: #7A4F45;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: #5A3D36; line-height: 1.5; }

/* PROBLEMS */
.prof-problem { background: #FAF7F2; text-align: center; }
.prof-problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.prof-problem-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px;
    border: 1px solid #E8C9BE;
    transition: all 0.3s;
    text-align: left;
}
.prof-problem-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(122,79,69,0.1); }
.prof-problem-card .problem-icon { font-size: 2rem; margin-bottom: 16px; }
.prof-problem-card p { font-size: 0.88rem; color: #5A3D36; line-height: 1.7; }

/* WHAT YOU GET */
.prof-get { background: #fff; }
.get-list { display: grid; gap: 16px; margin-top: 50px; max-width: 760px; }
.get-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: linear-gradient(135deg, #FAF7F2, #F2E8E1);
    border-radius: 16px;
    border: 1px solid #E8C9BE;
}
.get-check {
    width: 28px; height: 28px;
    background: #7A4F45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.get-item p { font-size: 0.92rem; color: #2C1F1A; line-height: 1.6; margin: 0; font-style: normal; }

/* HOW IT WORKS */
.prof-how {
    background: linear-gradient(135deg, #2C1F1A 0%, #4A3028 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.prof-how::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: #B5867A;
    opacity: 0.07;
    border-radius: 50%;
    top: -100px; right: -100px;
    filter: blur(60px);
}
.prof-how .section-title { color: #fff; }
.prof-how .section-label { color: #D4A89A; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.how-step {
    padding: 36px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s;
}
.how-step:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: #D4A89A;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}
.how-step h3 { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 10px; font-weight: 500; }
.how-step p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-style: normal; }

/* PHOTO GALLERY */
.prof-gallery {
    background: #F8F6F2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #EFE7DD;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    min-height: 420px;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #EFE7DD;
}

/* MOBILE */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 500px;
    }
}

/* WHY ME */
.prof-why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.why-list { display: grid; gap: 16px; }
.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #FAF7F2;
    border-radius: 14px;
    border: 1px solid #E8C9BE;
}
.why-icon { font-size: 1.3rem; flex-shrink: 0; }
.why-item p { font-size: 0.9rem; color: #2C1F1A; line-height: 1.6; margin: 0; font-style: normal; }
.why-card {
    background: linear-gradient(135deg, #7A4F45, #B5867A);
    color: #fff;
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    bottom: -60px; right: -60px;
}
.why-card .big-num { font-family: var(--font-display); font-size: 5rem; font-weight: 600; color: #E8D5AE; line-height: 1; }
.why-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; margin: 12px 0 8px; }
.why-card p { font-size: 0.88rem; opacity: 0.85; line-height: 1.7; font-style: normal; }

/* TESTIMONIALS PROF */
.prof-testimonials { background: #FAF7F2; text-align: center; }
.prof-testimonials .testimonial-card { background: #fff; border-color: #E8C9BE; }
.prof-testimonials .quote-mark { color: #E8C9BE; }
.prof-testimonials .stars { color: #C9A96E; }

/* FOR WHOM */
.prof-whom { background: #fff; }
.whom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.whom-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #FAF7F2, #F2E8E1);
    border-radius: 18px;
    border: 1px solid #E8C9BE;
    transition: all 0.3s;
}
.whom-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(122,79,69,0.1); }
.whom-emoji { font-size: 2rem; flex-shrink: 0; }
.whom-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: #2C1F1A; margin-bottom: 4px; font-weight: 500; }
.whom-card p { font-size: 0.85rem; color: #5A3D36; line-height: 1.6; }

/* PRICING PROF */
.prof-pricing { background: #FAF7F2; text-align: center; }
.prof-price-card {
    max-width: 480px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, #7A4F45, #B5867A);
    border-radius: 36px;
    padding: 60px 48px;
    color: #fff;
    position: relative;
    box-shadow: 0 30px 70px rgba(122,79,69,0.4);
}
.prof-price-card .pricing-badge { background: #E8D5AE; color: #2C1F1A; }
.prof-price-card .pricing-period { opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 8px; }
.price-block { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 16px 0 8px; }
.price-new { font-family: var(--font-display); font-size: 5rem; font-weight: 600; color: #E8D5AE; line-height: 1; }
.price-new-currency { font-size: 2.5rem; vertical-align: super; font-weight: 400; }
.price-was { font-family: var(--font-display); font-size: 2rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.prof-price-card ul { list-style: none; text-align: left; margin: 30px 0; }
.prof-price-card ul li { padding: 10px 0; font-size: 0.9rem; display: flex; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.prof-price-card ul li:last-child { border: none; }
.prof-check { color: #E8D5AE; flex-shrink: 0; }

/* CONTACT PROF */
.prof-cta {
    background: linear-gradient(135deg, #7A4F45, #5A3530);
    text-align: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}
.prof-cta .section-title { color: #fff; max-width: 700px; margin: 20px auto 30px; }
.prof-cta .section-label { color: #D4A89A; }
.prof-cta p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 520px; margin: 0 auto 50px; line-height: 1.8; }

/* PROF CONTACT SECTION */
.prof-contact { background: #fff; }
.prof-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.prof-contact-item { display: flex; gap: 20px; align-items: flex-start; }
.prof-contact-icon { width: 48px; height: 48px; background: #F2E8E1; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.prof-contact-item h4 { font-weight: 600; font-size: 0.85rem; color: #2C1F1A; margin-bottom: 4px; letter-spacing: 0.05em; }
.prof-contact-item a, .prof-contact-item p { font-size: 0.9rem; color: #5A3D36; text-decoration: none; line-height: 1.6; }
.prof-contact-item a:hover { color: #B5867A; }
.prof-social-links { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.prof-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F2E8E1;
    color: #7A4F45;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #E8C9BE;
}
.prof-social-link:hover { background: #7A4F45; color: #fff; }

/* RESPONSIVE PROF */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: 1fr; }
    .prof-problem-cards { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
    .why-grid { grid-template-columns: 1fr; }
    .whom-grid { grid-template-columns: 1fr; }
    .prof-price-card { padding: 40px 28px; }
    .price-new { font-size: 4rem; }
    .prof-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
    .prof-actions { flex-direction: column; align-items: center; }
    .btn-prof, .btn-prof-outline { width: 100%; text-align: center; }
}
