:root {
    --primary-blue: #2B4163;
    --accent-red: #AE0616;
    --accent-yellow: #FBE640;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-right: 3rem;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--accent-red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.language-switcher {
    position: relative;
    margin-right: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    border-radius: 20px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-dark);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: var(--bg-light);
}

.lang-option.active {
    background: var(--primary-blue);
    color: white;
}

.nav-cta {
    padding: 0.6rem 1.25rem !important;
    width: auto !important;
    font-size: 0.875rem !important;
    white-space: nowrap;
    font-weight: 600 !important;
    margin-left: 0;
    border-radius: 25px !important;
    line-height: 1.3 !important;
    min-width: auto !important;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary:not(.nav-cta) {
    width: 100%;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(174, 6, 22, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px) !important;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    width: 100%;
    text-align: center;
}

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

/* Hero Section */
.hero {
    background: var(--bg-white);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-height: 600px;
    object-position: center;
}

.hero-text {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-red);
    margin: 2rem 0;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 500px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-expert {
    background: linear-gradient(135deg, #f6f7fb 0%, #ffffff 45%, #f3f4f8 100%);
}

.about-expert-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-expert-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-signature {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(43, 65, 99, 0.08);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-expert-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.about-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(43, 65, 99, 0.08);
    border: 1px solid rgba(43, 65, 99, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(43, 65, 99, 0.12);
}

.about-expert-bottom {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-values h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.value-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(174, 6, 22, 0.08);
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.about-note p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-note p:last-child {
    margin-bottom: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.methodology-subtitle-block {
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-partner-block {
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-partner-block p {
    font-size: 1.125rem;
    color: var(--primary-blue);
    font-weight: 500;
    line-height: 1.6;
}

.methodology-description-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.methodology-description-block p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.what-is-coaching,
.coaching-topics,
.why-coaching {
    margin-bottom: 5rem;
}

.what-is-coaching h3,
.coaching-topics h3,
.why-coaching h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.coaching-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(43, 65, 99, 0.1);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-item {
    background: white;
    border-left: 4px solid var(--accent-red);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.topic-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(174, 6, 22, 0.15);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 8px 24px rgba(174, 6, 22, 0.1);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reason-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Ideal Partner Section */
.ideal-partner-section {
    background: white;
    padding: 5rem 0;
}

.ideal-partner-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    background: var(--bg-light);
}

.pricing-content {
    margin-bottom: 3rem;
}

.coaching-header-block {
    text-align: center;
    margin-bottom: 2rem;
}

.coaching-header-block h3,
.strategic-header-block h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0;
}

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


.session-extras {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.strategic-session-block {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strategic-header-block {
    text-align: center;
    margin-bottom: 1.5rem;
}

.strategic-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    height: 100%;
}

.strategic-content .btn-primary,
.consultation-info .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

.strategic-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.strategic-description-box {
    margin: 0;
    max-width: 700px;
}

.strategic-description-box p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.strategic-features-box {
    margin: 0;
    max-width: 600px;
}

.strategic-session-block .pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid var(--accent-yellow);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.gift-text {
    font-size: 0.9375rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: -1rem 0 1rem 0;
    padding: 0.5rem 1rem;
    background: #e0f2fe;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.pricing-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-red);
    font-weight: bold;
    margin-right: 0.75rem;
}

.consultation-info {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    height: 100%;
}

.consultation-info h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.consultation-info p {
    color: var(--text-light);
    line-height: 1.8;
}

.consultation-highlight {
    font-weight: 600;
    color: var(--primary-blue);
}

.consultation-info ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 0 1.5rem;
    padding: 0;
}

.consultation-info ul li {
    padding: 0.75rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.consultation-info ul li::before {
    content: '•';
    color: var(--accent-red);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    background: white;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.testimonials-window {
    overflow: hidden;
    flex: 1 1 auto;
}

.testimonials-track {
    --cards-per-view: 3;
    --testimonial-gap: clamp(16px, 2vw, 24px);
    display: flex;
    gap: var(--testimonial-gap);
    transition: transform 0.6s ease;
    will-change: transform;
    padding: 0.5rem 0;
}

.testimonial-card {
    flex: 0 0 calc((100% - (var(--cards-per-view) - 1) * var(--testimonial-gap)) / var(--cards-per-view));
    background: var(--bg-light);
    border-radius: 18px;
    border: 1px solid rgba(16, 55, 92, 0.08);
    box-shadow: 0 12px 30px rgba(19, 39, 65, 0.08);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100%;
    position: relative;
    isolation: isolate;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(145deg, rgba(255, 225, 96, 0.35), rgba(16, 55, 92, 0.1)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.testimonial-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 225, 96, 0.65);
    box-shadow: 0 10px 20px rgba(16, 55, 92, 0.18);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-blue);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

.carousel-control {
    background: white;
    border: 1px solid rgba(16, 55, 92, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    font-size: 1.35rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(16, 55, 92, 0.12);
}

.carousel-control:hover,
.carousel-control:focus-visible {
    background: var(--primary-blue);
    color: white;
    border-color: transparent;
    outline: none;
    box-shadow: 0 12px 28px rgba(16, 55, 92, 0.22);
}

.carousel-control span {
    display: inline-block;
    transform: translateY(-1px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(16, 55, 92, 0.18);
    border: none;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active,
.carousel-dot:focus-visible {
    background: var(--primary-blue);
    transform: scale(1.2);
    outline: none;
}

@media (max-width: 1024px) {
    .testimonials-track {
        --cards-per-view: 2;
    }

    .testimonials-carousel {
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-track {
        --cards-per-view: 1;
    }

    .testimonials-carousel {
        gap: 0.25rem;
    }

    .carousel-control {
        display: none;
    }
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Certificates Section */
.certificates {
    background: var(--bg-light);
    padding: 6rem 0;
}

.certificates-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.certificates-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.certificate-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
}

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

.certificate-slide:first-child {
    opacity: 1;
    transform: scale(1);
}

.certificate-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    background: white;
}

.certificate-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(43, 65, 99, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
    transition: stroke 0.3s ease;
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    padding: 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
    transition: transform 0.3s ease;
}

.carousel-dot.active {
    border-color: var(--accent-red);
}

.carousel-dot.active::before {
    background: var(--accent-red);
    transform: translate(-50%, -50%) scale(1);
}

.carousel-dot:hover {
    transform: scale(1.2);
    border-color: var(--accent-red);
}

.carousel-dot:hover::before {
    background: var(--accent-red);
    transform: translate(-50%, -50%) scale(1);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    width: 100%;
}

.contact-info h2,
.contact-info h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.contact-info p:last-of-type {
    margin-bottom: 0;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.telegram-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #0088cc;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    min-width: 280px;
}

.btn-telegram:hover {
    background: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.telegram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(27, 41, 62, 0.08);
}

.legal-footer-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
}

.legal-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(27, 41, 62, 0.12);
    padding-bottom: 2.5rem;
}

.legal-footer-column {
    flex: 1 1 280px;
}

.legal-footer-column p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-light);
}

.legal-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-footer-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-footer-links a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.legal-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .language-switcher {
        margin-right: 0.5rem;
        order: -1;
    }

    .lang-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .nav-cta {
        display: none;
    }

    .logo {
        font-size: 1.25rem;
    }

    .about-expert-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-expert-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-signature {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .about-note p {
        font-size: 1rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: 1;
    }

    .hero-text {
        order: 2;
        padding: 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-intro h3,
    .what-is-coaching h3,
    .coaching-topics h3,
    .why-coaching h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .about-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .methodology-subtitle-block {
        margin-bottom: 1.5rem;
    }

    .methodology-partner-block {
        margin-bottom: 1.5rem;
    }

    .methodology-partner-block p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .methodology-description-block {
        margin-bottom: 2rem;
    }

    .methodology-description-block p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ideal-partner-section {
        padding: 3rem 0;
    }

    .coaching-features,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .reason-card {
        padding: 1.5rem;
    }

    .feature-card h4,
    .reason-card h4 {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .feature-card p,
    .reason-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

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

    .topic-item {
        padding: 1rem;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

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

    .session-extras {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strategic-session-block {
        padding: 1.5rem;
    }

    .coaching-header-block h3,
    .strategic-header-block h3 {
        font-size: 1.5rem;
    }

    .strategic-description-box p {
        font-size: 0.9375rem;
    }

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

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features {
        font-size: 0.9375rem;
    }

    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .consultation-info {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .consultation-info h3 {
        font-size: 1.5rem;
    }

    .consultation-info p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .consultation-info h4 {
        font-size: 1.125rem;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
    }

    .consultation-info ul {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .certificates {
        padding: 3rem 0;
    }

    .certificates-carousel-wrapper {
        padding: 0 50px;
    }

    .certificates-carousel {
        padding: 1rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-info p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-buttons {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .btn-telegram,
    .btn-primary {
        flex: 1;
        min-width: 0;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .legal-footer-title {
        text-align: left;
    }

    .legal-footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .legal-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.125rem;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-photo {
        max-height: 350px;
    }

    section {
        padding: 2.5rem 0;
    }

    .about-signature {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        text-align: center;
        white-space: normal;
    }

    .about-card {
        padding: 1.25rem;
    }

    .about-card h3 {
        font-size: 1.25rem;
    }

    .about-card p,
    .about-note p {
        font-size: 0.9375rem;
    }

    .value-chips {
        gap: 0.5rem;
    }

    .value-chip {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .about-intro h3,
    .what-is-coaching h3,
    .coaching-topics h3,
    .why-coaching h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .about-intro {
        margin-bottom: 2rem;
    }

    .about-intro p {
        font-size: 0.9375rem;
    }

    .methodology-partner-block p {
        font-size: 0.9375rem;
    }

    .methodology-description-block p {
        font-size: 0.9375rem;
    }

    .ideal-partner-section {
        padding: 2.5rem 0;
    }

    .feature-card,
    .reason-card {
        padding: 1.25rem;
    }

    .feature-card h4,
    .reason-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p,
    .reason-card p {
        font-size: 0.875rem;
    }

    .topic-item {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

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

    .session-extras {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .strategic-session-block {
        padding: 1.25rem;
    }

    .coaching-header-block h3,
    .strategic-header-block h3 {
        font-size: 1.25rem;
    }

    .strategic-description-box p {
        font-size: 0.875rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-card h3 {
        font-size: 1.125rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }

    .gift-text {
        font-size: 0.875rem;
        margin: -0.75rem 0 0.75rem 0;
        padding: 0.5rem 0.75rem;
    }

    .consultation-info {
        padding: 1.25rem;
    }

    .consultation-info h3 {
        font-size: 1.25rem;
    }

    .consultation-info p,
    .consultation-info ul li {
        font-size: 0.875rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-content p {
        font-size: 0.9375rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 0.875rem;
    }

    .certificates {
        padding: 2.5rem 0;
    }

    .certificates-carousel-wrapper {
        padding: 0 35px;
    }

    .certificates-carousel {
        padding: 0.75rem;
    }

    .certificate-image {
        border-radius: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dots {
        margin-top: 1.25rem;
        gap: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.9375rem;
    }

    .btn-telegram,
    .btn-primary {
        flex: 1;
        min-width: 0;
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer {
        padding: 2.5rem 0;
    }

    .legal-footer-column p,
    .legal-footer-links a {
        font-size: 0.8125rem;
    }

    .legal-footer-bottom {
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.8125rem;
    }

    .legal-footer-title {
        font-size: 1.25rem;
        text-align: left;
    }

    .legal-footer-content {
        gap: 1rem;
    }

    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}
