/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1c1917;
    background-color: #fafaf9;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(120, 113, 108, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c1917;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #f59e0b;
}

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

.nav-link {
    color: #78716c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1c1917;
}

.nav-link.active {
    color: #f59e0b;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #f59e0b;
}

.nav-link-cta {
    background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: #1c1917;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: rgba(250, 250, 249, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(120, 113, 108, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-link.active::after {
        bottom: -0.25rem;
    }
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f5f4 0%, #fef3c7 50%, #f5f5f4 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #78716c;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: #fafaf9;
}

/* Mentorship Section */
.mentorship-section {
    padding: 4rem 0;
    background: #fafaf9;
}

/* Diagnostic Section */
.diagnostic-section {
    padding: 4rem 0;
    background: #f5f5f4;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f4 0%, #fef3c7 50%, #f5f5f4 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

.blur-1 {
    top: 80px;
    left: 80px;
    width: 288px;
    height: 288px;
    background: #fbbf24;
}

.blur-2 {
    bottom: 80px;
    right: 80px;
    width: 384px;
    height: 384px;
    background: #fda4af;
}

.hero .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #78716c;
    margin-bottom: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 8rem);
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 0.95;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.title-dark {
    color: #1c1917;
}

.title-accent {
    color: #b45309;
}

.hero-description {
    font-size: 1.25rem;
    color: #57534e;
    line-height: 1.75;
    max-width: 36rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background: #1c1917;
    color: white;
}

.btn-primary:hover {
    background: #292524;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: 2px solid #f59e0b;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    border-color: #d97706;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 300;
    color: #1c1917;
}

.stat-label {
    color: #78716c;
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1c1917;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #a8a29e;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
    border-radius: 1.5rem;
    transform: rotate(3deg);
}

.about-image img {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1c1917;
    line-height: 1.2;
}

.white-title {
    color: white;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #57534e;
    font-size: 1.125rem;
    line-height: 1.75;
}

.about-features {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #b45309;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span {
    color: #44403c;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafaf9 0%, #fef3c7 100%);
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #57534e;
    max-width: 48rem;
    margin: 1.5rem auto 0;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    color: #b45309;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1c1917;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    color: #57534e;
    line-height: 1.75;
}

.services-cta {
    margin-top: 4rem;
    text-align: center;
}

/* Credentials Section */
.credentials {
    padding: 6rem 0;
    background: #1c1917;
    color: white;
    position: relative;
    overflow: hidden;
}

.credentials-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.blur-3 {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #f59e0b;
}

.blur-4 {
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #f43f5e;
}

.credentials .container {
    position: relative;
    z-index: 10;
}

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

.credentials-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    color: #fcd34d;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.credential-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon svg {
    color: #fcd34d;
}

.credential-item span {
    color: #e7e5e4;
    line-height: 1.4;
}

/* Quote Section */
.quote {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #fafaf9 100%);
}

.quote .container {
    max-width: 64rem;
}

.quote-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .quote-card {
        padding: 4rem;
    }
}

.quote-mark {
    position: absolute;
    font-size: 8rem;
    color: #fef3c7;
    font-family: serif;
    line-height: 1;
}

.quote-mark-open {
    top: 2rem;
    left: 2rem;
}

.quote-mark-close {
    bottom: 2rem;
    right: 2rem;
    transform: rotate(180deg);
}

blockquote {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #292524;
    line-height: 1.75;
    font-style: italic;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 1.875rem;
    }
}

.quote-footer {
    padding-top: 1.5rem;
}

.quote-divider {
    height: 1px;
    background: linear-gradient(to right, #fef3c7, #fce7f3, transparent);
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1c1917;
}

.quote-role {
    color: #78716c;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

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

.contact-form-wrapper {
    background: linear-gradient(135deg, #fafaf9 0%, #fef3c7 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #d6d3d1;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-textarea {
    resize: none;
}

.form-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-social {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-social-text {
    color: #57534e;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link.telegram {
    background: #f5f5f4;
    color: #44403c;
}

.social-link.telegram:hover {
    background: #e7e5e4;
    transform: scale(1.05);
}

.social-link.instagram {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
}

.social-link.instagram:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* Footer */
.footer {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid #e7e5e4;
    text-align: center;
    color: #78716c;
}

.footer-subtitle {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: linear-gradient(135deg, #fafaf9 0%, #fef3c7 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
    color: white;
    border-color: #f59e0b;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-tag {
    display: inline-block;
    font-size: 0.875rem;
    color: #78716c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-tag {
    color: #fcd34d;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1c1917;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-title {
    color: white;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.pricing-duration {
    font-size: 1rem;
    color: #57534e;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-duration {
    color: #e7e5e4;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 600;
    color: #b45309;
    margin: 1rem 0;
}

.pricing-card.featured .pricing-price {
    color: #fcd34d;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e7e5e4;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fcd34d;
    font-weight: bold;
}

.pricing-description {
    color: #57534e;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.pricing-note {
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
    color: #78716c;
}

.diagnostic-banner {
    background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    color: white;
}

.diagnostic-content h3 {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.diagnostic-content p {
    font-size: 1.125rem;
    color: #e7e5e4;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mentorship Section */
.mentorship {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafaf9 0%, #fef3c7 100%);
}

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

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

.mentorship-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mentorship-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.mentorship-header-bg {
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #ec4899 100%);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.mentorship-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 1rem;
}

.mentorship-subtitle {
    font-size: 1.125rem;
    color: #57534e;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.mentorship-intro {
    font-size: 1.125rem;
    color: #57534e;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.mentorship-modules {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.module {
    background: #fafaf9;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #f59e0b;
}

.module-number {
    display: inline-block;
    background: #1c1917;
    color: #fcd34d;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.module h4 {
    font-size: 1.125rem;
    color: #1c1917;
    margin-bottom: 0.75rem;
}

.module p {
    color: #57534e;
    line-height: 1.75;
}

.module ul {
    list-style: none;
    padding-left: 0;
}

.module ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #44403c;
    line-height: 1.6;
}

.module ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.module-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e7e5e4;
    font-style: italic;
    color: #78716c;
}

.mentorship-format {
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.mentorship-format h4 {
    font-size: 1.125rem;
    color: #1c1917;
    margin-bottom: 1rem;
}

.mentorship-format ul {
    list-style: none;
    padding-left: 0;
}

.mentorship-format ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #44403c;
}

.mentorship-format ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

/* Business Mentorship Specific Styles */
.business-info {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.business-highlight {
    font-style: italic;
    color: #78716c;
    line-height: 1.75;
}

.business-goal,
.business-for {
    margin: 2rem 0;
}

.business-goal h4,
.business-for h4 {
    font-size: 1.25rem;
    color: #1c1917;
    margin-bottom: 1rem;
}

.business-goal p {
    color: #57534e;
    line-height: 1.75;
}

.business-for ul {
    list-style: none;
    padding-left: 0;
}

.business-for ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #44403c;
}

.business-for ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.business-tiers {
    margin: 2rem 0;
}

.business-tiers h4 {
    font-size: 1.25rem;
    color: #1c1917;
    margin-bottom: 1.5rem;
}

.tier {
    background: #fafaf9;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e7e5e4;
    transition: all 0.3s ease;
}

.tier:hover {
    border-color: #f59e0b;
}

.tier h5 {
    font-size: 1rem;
    color: #1c1917;
    margin-bottom: 1rem;
}

.tier-detailed {
    background: white;
    border: 2px solid #f59e0b;
    padding: 2rem;
}

.tier-detailed h5 {
    font-size: 1.25rem;
    color: #1c1917;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fef3c7;
}

.tier-modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-module {
    background: #fafaf9;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #f59e0b;
}

.tier-module .module-number {
    display: inline-block;
    background: #1c1917;
    color: #fcd34d;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier-module ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.tier-module ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #44403c;
    line-height: 1.6;
}

.tier-module ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.tier-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e7e5e4;
    color: #1c1917;
    font-weight: 500;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

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

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #fafaf9 0%, #fef3c7 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(245, 158, 11, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: #44403c;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonial-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(245, 158, 11, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-category {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Personal Brand Specific Styles */
.personal-brand-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #78716c;
    font-style: italic;
}

.personal-brand-benefits {
    margin: 2rem 0;
}

.personal-brand-benefits h4 {
    font-size: 1.125rem;
    color: #1c1917;
    margin-bottom: 1.5rem;
}

.personal-brand-benefits ul {
    list-style: none;
    padding-left: 0;
}

.personal-brand-benefits ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #44403c;
    line-height: 1.75;
}

.personal-brand-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}
