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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #161618;
    background-color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.header {
    background: #fff;
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 30px;
    height: 30px;
    background: #161618;
    border-radius: 50%;
}

.logo-text {
    font-weight: 700;
    font-size: 19.759px;
    color: #161618;
}

.logo-light {
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    border-radius: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-dropdown:hover {
    color: #1b854a;
}

.nav-dropdown span {
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.chevron-down {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>') no-repeat center;
    background-size: 12px;
}

.cta-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #1b854a;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 606px;
    margin-right: 40px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 62px;
    color: #161618;
}

.hero-coach {
    font-weight: 600;
    color: #1b854a;
}

.hero-subtitle {
    font-size: 16px;
    color: #636363;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-visual {
    flex: 1;
    max-width: 844px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Achievements Section */
.achievements {
    padding: 60px 0;
    background: rgba(187, 201, 225, 0.2);
}

.achievements h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #161618;
    line-height: 62px;
}

.achievements .container {
    max-width: 1440px;
}

.achievements-content {
    max-width: 880px;
    margin: 0 auto;
}

.achievement-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.achievement-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.achievement-card.full-width {
    grid-column: 1 / -1;
}

.achievement-card:not(.full-width) {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-card:not(.full-width) .card-image {
    width: 100%;
    height: 239px;
}

.achievement-card:not(.full-width) .card-content {
    flex: 1;
}

.achievement-card:not(.full-width) .card-content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.achievement-card:not(.full-width) .card-content p {
    font-size: 16px;
}

.card-image {
    width: 340px;
    height: 235px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #161618;
}

.card-content p {
    font-size: 16px;
    color: #636363;
    line-height: 1.5;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.how-it-works-content {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.phone-demo {
    flex: 0 0 auto;
}

.phone-demo-image {
    width: auto;
    height: 535px;
    display: block;
}

.how-it-works-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.text-header h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #161618;
    line-height: 62px;
}

.section-subtitle {
    font-size: 16px;
    color: #636363;
    font-weight: 400;
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-footer {
    margin-top: auto;
}

.how-it-works-text .text-footer .cta-btn {
    width: 224px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    height: 24px;
    background: #E9E9E9;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item:hover {
    background: rgba(27, 133, 74, 0.05);
}

.feature-number {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #e9e9e9;
    color: #1b854a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-item.active .feature-number {
    background: #1b854a;
    border-color: #1b854a;
    color: white;
}

.feature-item p {
    font-size: 16px;
    color: #161618;
    line-height: 1.5;
    margin: 0;
}

/* Masterclass Section */
.masterclass {
    padding: 84px 60px;
    background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
}

.masterclass h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #161618;
    line-height: 62px;
}

.masterclass-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-direction: column;
}

.video-section {
    width: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 535px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coach-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .coach-video-image {
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-icon {
    width: 100%;
    height: 100%;
}

.masterclass-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0px 0px 52px 0px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.book-icon {
    width: 100%;
    height: 100%;
}

.feature-card p {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.text-black {
    color: #000;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: radial-gradient(ellipse at center, #F4F4F4 0%, #FFFFFF 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #161618;
    line-height: 62px;
    max-width: 700px;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    height: 400px;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 434px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.testimonial-card.left {
    /* Center card scaled: 434 * 1.5 = 651px. Gap: 24px */
    /* Left card translation: -651/2 - 24 - 434*1/2 */
    transform: translateX(calc(-325.5px - 24px - 217px)) scale(1);
    opacity: 0.4;
    z-index: 0;
}

.testimonial-card.center {
    transform: translateX(0) scale(1.5);
    z-index: 2;
    opacity: 1;
}

.testimonial-card.right {
    /* Center card scaled: 434 * 1.5 = 651px. Gap: 24px */
    /* Right card translation: 651/2 + 24 + 434*1/2 */
    transform: translateX(calc(325.5px + 24px + 217px)) scale(1);
    opacity: 0.4;
    z-index: 0;
}

.testimonial-card.center:hover {
    transform: translateX(0) scale(1.6);
}

.testimonial-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.testimonial-card p {
    padding: 16px 0 0;
    font-size: 14px;
    color: #161618;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.video-testimonial {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.testimonial-play-button img {
    width: 100%;
    height: 100%;
}

.video-testimonial:hover .testimonial-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
}

.video-thumbnail-img {
    transition: opacity 0.3s ease;
}

.video-testimonial.playing .video-thumbnail-img,
.video-testimonial.playing .testimonial-play-button {
    display: none;
}

.video-testimonial.playing .testimonial-video {
    display: block !important;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #161618;
}

.author-info p {
    font-size: 12px;
    color: #636363;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev {
    background: #f4f4f4;
}

.carousel-btn.next {
    background: #ebebeb;
}

.carousel-btn:hover {
    background: #1b854a;
}

.arrow-icon {
    width: 24px;
    height: 24px;
}

/* Pricing Section */
.pricing {
    padding: 60px;
    background: #f1f4f9;
    position: relative;
    overflow: hidden;
}

.pricing::before,
.pricing::after {
    content: '';
    position: absolute;
    width: 945px;
    height: 945px;
    background: url('assets/ellipse.png') no-repeat;
    background-size: contain;
    z-index: 1 !important;
    border-radius: 100%;
}

.pricing::before {
    right: -470px;
    top: -409px;
    z-index: 2;
}

.pricing::after {
    right: 1080px;
    top: 370px;
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 3;
}

.pricing h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #161618;
    line-height: 62px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 16px;
    color: #636363;
    margin-bottom: 42px;
    font-weight: 400;
}

.pricing-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.08);
    width: 424px;
    display: flex;
    flex-direction: column;
    gap: 0;
}


.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #161618;
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #1b854a;
    line-height: 1;
}

.original-price {
    font-size: 24px;
    color: #636363;
    text-decoration: line-through;
}

.pricing-card .features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-card .features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 16px;
    color: #161618;
    line-height: 24px;
}

/* Add checkmarks to all list items */
.pricing-card .features li::before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url('assets/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* Regular list items - horizontal layout */
.pricing-card .features > li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* List items with sub-features */
.pricing-card .features > li.has-subfeatures {
    display: block;
}

/* The span in has-subfeatures li should display inline with the checkmark */
.pricing-card .features > li.has-subfeatures > span {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Make the span's content part of the flex row with checkmark */
.pricing-card .features > li.has-subfeatures span::before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url('assets/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* Hide the check on the li when it has the has-subfeatures class */
.pricing-card .features > li.has-subfeatures::before {
    display: none;
}

/* Hide checkmarks on sub-features items */
.pricing-card .sub-features li::before {
    display: none !important;
}

.pricing-card .features li p {
    font-size: 16px;
    color: #161618;
    line-height: 22px;
}

.sub-features {
    list-style: none;
    margin-top: 12px;
    margin-left: 44px;
    position: relative;
    padding-left: 0;
    font-size: 14px;
}

.sub-features::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -6px;
    bottom: 6px;
    width: 1px;
    background: #1b854a;
}

.sub-features li {
    position: relative;
    padding-left: 0;
    margin-bottom: 8px;
    font-size: 14px !important;
    color: #161618;
    line-height: 24px;
    list-style: none;
}

.pricing-card .sub-features {
    font-size: 14px;
}

.pricing-card .sub-features li {
    font-size: 14px !important;
    line-height: 18px;
}

.sub-features li::before {
    display: none !important;
}

.sub-features li strong {
    font-weight: 600;
}

.pricing-card button {
    margin-top: auto;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #161618;
    line-height: 62px;
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6d6d6d;
    margin-bottom: 72px;
}

.faq-content {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eaecf0;
    padding-bottom: 32px;
    margin-bottom: 24px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    cursor: pointer;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #242424;
    line-height: 28px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon-img {
    width: 100%;
    height: 100%;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 8px;
}

.faq-answer p {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #fff;
    padding: 24px 0;
}

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

.footer p {
    color: #8e8e8e;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 44px;
}

.footer-links a {
    color: #8e8e8e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1b854a;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #1b854a;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .how-it-works-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .phone-demo-image {
        width: 100%;
        height: auto;
        max-height: 535px;
    }
    
    .masterclass-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .masterclass-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 48px;
        line-height: 1.2;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 100%;
    }
    
    .achievement-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        flex-direction: column;
    }
    
    .achievement-card .card-image {
        width: 100%;
        height: auto;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .achievements h2,
    .how-it-works-text h2,
    .masterclass h2,
    .testimonials h2,
    .pricing h2,
    .faq h2 {
        font-size: 36px;
    }
    
    .hero-visual {
        height: 400px;
    }
}

