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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F8F8F8;
    color: #434343;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
    width: 100%;
}

.header {
    padding: 60px 80px 40px 80px;
    background-color: #F8F8F8;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    width: 250px;
    height: auto;
}

.tagline {
    font-size: 28px;
    font-weight: 400;
    color: #434343;
    margin-top: 10px;
}

.hero-section {
    margin: 0 80px;
    background: linear-gradient(135deg, #F7C873 0%, #FAEBCD 50%, #F8F8F8 100%);
    border-radius: 30px;
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 50%;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    margin: 0;
}

.hero-text-small {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    display: block;
}

.hero-text-large {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 8px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.shot-on-iphone {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.starring-credit {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 100px;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -4px;
}

.cta-button {
    background: #F7C873;
    color: #434343;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(247, 200, 115, 0.3);
}

.cta-button:hover {
    background: #F5B041;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 200, 115, 0.4);
}

.hero-image {
    position: relative;
    width: 300px;
    height: 400px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 600"><defs><linearGradient id="skinGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23D4A574;stop-opacity:1" /><stop offset="100%" style="stop-color:%23B8956A;stop-opacity:1" /></linearGradient><linearGradient id="hoodie" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23E8E8E8;stop-opacity:1" /><stop offset="100%" style="stop-color:%23D0D0D0;stop-opacity:1" /></linearGradient></defs><rect width="450" height="600" fill="none"/><ellipse cx="225" cy="180" rx="65" ry="75" fill="url(%23skinGrad)"/><path d="M160 120 Q180 100 200 105 Q220 95 240 105 Q260 95 280 105 Q300 100 320 120 Q310 140 300 160 Q290 180 280 200 Q270 220 260 240 Q250 260 240 280 Q230 300 220 280 Q210 260 200 240 Q190 220 180 200 Q170 180 160 160 Q150 140 160 120 Z" fill="%23333" opacity="0.9"/><ellipse cx="205" cy="165" rx="8" ry="12" fill="%23444"/><ellipse cx="245" cy="165" rx="8" ry="12" fill="%23444"/><ellipse cx="225" cy="185" rx="12" ry="8" fill="%23333"/><path d="M210 200 Q225 210 240 200" stroke="%23333" stroke-width="3" fill="none"/><rect x="150" y="250" width="150" height="180" fill="url(%23hoodie)" rx="15"/><rect x="170" y="270" width="110" height="60" fill="%23999" rx="8"/><rect x="185" y="285" width="80" height="30" fill="%23333" rx="4"/><rect x="125" y="320" width="40" height="100" fill="url(%23hoodie)" rx="20"/><rect x="285" y="320" width="40" height="100" fill="url(%23hoodie)" rx="20"/><rect x="170" y="430" width="30" height="100" fill="%23444" rx="15"/><rect x="250" y="430" width="30" height="100" fill="%23444" rx="15"/><rect x="160" y="520" width="50" height="20" fill="%23333" rx="10"/><rect x="240" y="520" width="50" height="20" fill="%23333" rx="10"/></svg>') center/contain no-repeat;
    margin-right: -50px;
    animation: gentleFloat 4s ease-in-out infinite;
}

.pause-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pause-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pause-icon {
    width: 20px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.pause-icon::before,
.pause-icon::after {
    content: '';
    width: 3px;
    height: 16px;
    background: white;
    border-radius: 1px;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Blueprint Section Styles */
.blueprint-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
    position: relative;
}

.blueprint-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
}

.blueprint-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 20px;
}

.blueprint-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #434343;
    line-height: 1.3;
    max-width: 800px;
}

.blueprint-cards {
    display: flex;
    gap: 20px;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 80px 0 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blueprint-cards::-webkit-scrollbar {
    display: none;
}

.blueprint-card {
    background: linear-gradient(135deg, #434343 0%, #2a2a2a 100%);
    border-radius: 24px;
    padding: 60px 40px;
    width: 370px;
    height: 680px;
    min-width: 370px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.blueprint-card:hover {
    transform: translateY(-5px);
}

.blueprint-card:nth-child(1) {
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%),
        url('images/card.jpg');
    background-size: cover;
    background-position: center;
}

.blueprint-card:nth-child(2) {
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%),
        url('images/card2.jpg');
    background-size: cover;
    background-position: center;
}

.blueprint-card:nth-child(3) {
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%),
        url('images/card3.jpg');
    background-size: cover;
    background-position: center;
}

.blueprint-card:nth-child(4) {
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%),
        url('images/card4.jpg');
    background-size: cover;
    background-position: center;
}

.card-category {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.card-description {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 30px;
}

.blueprint-card:nth-child(2) .card-category,
.blueprint-card:nth-child(3) .card-category,
.blueprint-card:nth-child(4) .card-category {
    color: rgba(255, 255, 255, 0.8);
}

.blueprint-card:nth-child(2) .card-title,
.blueprint-card:nth-child(3) .card-title,
.blueprint-card:nth-child(4) .card-title {
    color: #fff;
}

.blueprint-card:nth-child(2) .card-description,
.blueprint-card:nth-child(3) .card-description,
.blueprint-card:nth-child(4) .card-description {
    color: rgba(255, 255, 255, 0.9);
}

.card-action {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-action-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.card-icon {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-action:hover .card-action-text {
    color: rgba(255, 255, 255, 1);
}

.card-action:hover .card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.card-icon::after {
    content: '+';
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 300;
}

.card-action-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.card-action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.blueprint-card:nth-child(2) .card-icon,
.blueprint-card:nth-child(3) .card-icon,
.blueprint-card:nth-child(4) .card-icon {
    border-color: rgba(255, 255, 255, 0.5);
}

.blueprint-card:nth-child(2) .card-icon:hover,
.blueprint-card:nth-child(3) .card-icon:hover,
.blueprint-card:nth-child(4) .card-action:hover .card-action-text {
    color: rgba(255, 255, 255, 1);
}

.card-action:hover .card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.blueprint-card:nth-child(2) .card-icon::after,
.blueprint-card:nth-child(3) .card-icon::after,
.blueprint-card:nth-child(4) .card-icon::after {
    color: rgba(255, 255, 255, 0.8);
}

.navigation-arrows {
    position: absolute;
    bottom: -25px;
    right: 80px;
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #e5e5e7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-arrow::after {
    content: '›';
    font-size: 22px;
    color: #86868b;
    font-weight: 500;
}

.nav-arrow.prev::after {
    content: '‹';
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header {
        padding: 40px 60px 30px 60px;
    }
    
    .hero-section {
        margin: 0 60px;
        padding: 0 60px;
        height: 650px;
    }
    
    .hero-title {
        font-size: 120px;
    }
    
    .hero-image {
        width: 400px;
        height: 550px;
    }

    .blueprint-section {
        padding: 80px 0 73px 0;
    }

    .blueprint-header {
        padding: 0 60px;
    }

    .blueprint-cards {
        padding: 20px 60px 0 60px;
    }

    .blueprint-title {
        font-size: 46px;
    }

    .blueprint-subtitle {
        font-size: 22px;
    }

    .blueprint-card {
        width: 320px;
        height: 588px;
        min-width: 320px;
    }

    .card-title {
        font-size: 40px;
    }

    .card-description {
        font-size: 18px;
    }

    .navigation-arrows {
        right: 60px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 30px 40px 20px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .logo {
        width: 200px;
    }
    
    .tagline {
        font-size: 24px;
    }
    
    .hero-section {
        margin: 0 20px;
        padding: 40px 30px;
        height: 600px;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        padding-top: 40px;
    }
    
    .hero-headline {
        font-size: 28px;
        text-align: left;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-image {
        width: 280px;
        height: 350px;
        margin-right: 0;
    }

    .blueprint-section {
        padding: 60px 0 73px 0;
    }

    .blueprint-header {
        padding: 0 40px;
    }

    .blueprint-cards {
        padding: 20px 40px 0 40px;
    }

    .blueprint-title {
        font-size: 42px;
    }

    .blueprint-subtitle {
        font-size: 20px;
    }

    .blueprint-card {
        width: 280px;
        height: 514px;
        min-width: 280px;
        padding: 40px 30px;
    }

    .card-title {
        font-size: 36px;
    }

    .card-description {
        font-size: 16px;
    }

    .navigation-arrows {
        right: 40px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 20px 15px 20px;
    }
    
    .logo {
        width: 150px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .hero-section {
        margin: 0 15px;
        padding: 30px 20px;
        height: 500px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-image {
        width: 220px;
        height: 280px;
    }

    .blueprint-section {
        padding: 40px 0 73px 0;
    }

    .blueprint-header {
        padding: 0 20px;
    }

    .blueprint-cards {
        padding: 20px 20px 0 20px;
    }

    .blueprint-title {
        font-size: 36px;
    }

    .blueprint-subtitle {
        font-size: 18px;
    }

    .blueprint-card {
        width: 240px;
        height: 441px;
        min-width: 240px;
        padding: 30px 20px;
    }

    .card-title {
        font-size: 32px;
    }

    .card-description {
        font-size: 14px;
    }

    .navigation-arrows {
        right: 20px;
    }
}

/* Earnings Section Styles */
.earnings-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
    position: relative;
}

.earnings-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
}

.earnings-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 20px;
}

.earnings-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #434343;
    line-height: 1.3;
    max-width: 800px;
}

.earnings-cards {
    display: flex;
    gap: 20px;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 0 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* For wider screens, align cards with the title */
@media (min-width: 1650px) {
    .earnings-cards {
        padding: 20px 0 0 calc(50vw - 825px + 80px);
    }
}

.earnings-cards::-webkit-scrollbar {
    display: none;
}

.earnings-card {
    background: linear-gradient(135deg, #434343 0%, #2a2a2a 100%);
    border-radius: 24px;
    padding: 60px 40px;
    width: 370px;
    height: 680px;
    min-width: 370px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.earnings-card:hover {
    transform: translateY(-5px);
}

.earnings-card .earnings-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.earnings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0) 15%);
    z-index: 2;
}

.earnings-amount {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 3;
}

.earnings-nav {
    right: 80px;
}

/* Responsive styles for earnings section */
@media (max-width: 1024px) {
    .earnings-section {
        padding: 80px 0 73px 0;
    }
    .earnings-header {
        padding: 0 60px;
    }
    .earnings-cards {
        padding: 20px 0 0 60px;
    }
    .earnings-title {
        font-size: 46px;
    }
    .earnings-subtitle {
        font-size: 22px;
    }
    .earnings-card {
        width: 320px;
        height: 588px;
        min-width: 320px;
    }
    .earnings-amount {
        font-size: 28px;
        top: 30px;
        left: 40px;
    }
    .earnings-nav {
        right: 60px;
    }
}

@media (max-width: 768px) {
    .earnings-section {
        padding: 60px 0 73px 0;
    }
    .earnings-header {
        padding: 0 40px;
    }
    .earnings-cards {
        padding: 20px 0 0 40px;
    }
    .earnings-title {
        font-size: 42px;
    }
    .earnings-subtitle {
        font-size: 20px;
    }
    .earnings-card {
        width: 280px;
        height: 514px;
        min-width: 280px;
        padding: 40px 30px;
    }
    .earnings-amount {
        font-size: 24px;
        top: 25px;
        left: 30px;
    }
    .earnings-nav {
        right: 40px;
    }
}

@media (max-width: 480px) {
    .earnings-section {
        padding: 40px 0 73px 0;
    }
    .earnings-header {
        padding: 0 20px;
    }
    .earnings-cards {
        padding: 20px 0 0 20px;
    }
    .earnings-title {
        font-size: 36px;
    }
    .earnings-subtitle {
        font-size: 18px;
    }
    .earnings-card {
        width: 240px;
        height: 441px;
        min-width: 240px;
        padding: 30px 20px;
    }
    .earnings-amount {
        font-size: 20px;
        top: 20px;
        left: 20px;
    }
    .earnings-nav {
        right: 20px;
    }
}

/* Family Section Styles */
.family-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
    text-align: center;
    position: relative;
}

.family-container {
    background-color: #fff;
    border-radius: 30px;
    padding: 120px 80px;
    margin: 0 80px;
    max-width: calc(100% - 160px);
}

.family-avatars {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-bottom: 60px;
}

.avatar-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -25px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle.green {
    background-color: #F7C873;
}

.avatar-circle.pink {
    background-color: #FAEBCD;
}

.avatar-circle.yellow {
    background-color: #F7C873;
}

.avatar-circle.blue {
    background-color: #FAEBCD;
}

.avatar-circle.purple {
    background-color: #F7C873;
}

.avatar-image {
    width: 152px;
    height: 152px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.avatar-1 {
    background-image: url('images/thumb2.jpg');
}

.avatar-2 {
    background-image: url('images/thumb1.jpg');
}

.avatar-3 {
    background-image: url('images/thumb.jpg');
}

.avatar-4 {
    background-image: url('images/thumb3.jpg');
}

.avatar-5 {
    background-image: url('images/thumb4.jpg');
}

.family-content {
    max-width: 800px;
    margin: 0 auto;
}

.family-title {
    font-size: 64px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 20px;
}

.family-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #434343;
    line-height: 1.4;
    margin-bottom: 40px;
}

.family-cta {
    background: #F7C873;
    color: #434343;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.family-cta:hover {
    background: #E6B655;
    transform: translateY(-2px);
}



/* Responsive Design for Family Section */
@media (max-width: 1200px) {
    .family-section {
        padding: 80px 0 73px 0;
    }

    .family-container {
        padding: 100px 60px;
        margin: 0 60px;
        max-width: calc(100% - 120px);
    }

    .family-title {
        font-size: 56px;
    }

    .family-subtitle {
        font-size: 22px;
    }

    .avatar-circle {
        width: 120px;
        height: 120px;
        margin-left: -18px;
    }

    .avatar-circle:first-child {
        margin-left: 0;
    }

    .avatar-image {
        width: 112px;
        height: 112px;
    }
}

@media (max-width: 768px) {
    .family-section {
        padding: 60px 0 40px 0;
    }

    .family-container {
        padding: 80px 40px;
        margin: 0 40px;
        max-width: calc(100% - 80px);
    }

    .family-title {
        font-size: 48px;
    }

    .family-subtitle {
        font-size: 20px;
    }

    .family-avatars {
        gap: -6px;
        margin-bottom: 50px;
    }

    .avatar-circle {
        width: 90px;
        height: 90px;
        margin-left: -14px;
    }

    .avatar-circle:first-child {
        margin-left: 0;
    }

    .avatar-image {
        width: 82px;
        height: 82px;
    }
}

@media (max-width: 480px) {
    .family-section {
        padding: 40px 0 20px 0;
    }

    .family-container {
        padding: 70px 20px;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }

    .family-title {
        font-size: 40px;
    }

    .family-subtitle {
        font-size: 18px;
    }

    .family-avatars {
        gap: -5px;
        margin-bottom: 40px;
    }

    .avatar-circle {
        width: 70px;
        height: 70px;
        margin-left: -12px;
    }

    .avatar-circle:first-child {
        margin-left: 0;
    }

    .avatar-image {
        width: 62px;
        height: 62px;
    }
}

/* Inside Section Styles */
.inside-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
}

.inside-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
}

.inside-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 0;
}

.inside-banner {
    background: url('images/dentro.jpg');
    background-size: cover;
    background-position: center right;
    border-radius: 30px;
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
    margin: 0 80px;
}

.inside-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.inside-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 30px 0;
}

.inside-cta {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.inside-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.founder-credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
}

.founder-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.founder-title {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Responsive Design for Inside Section */
@media (max-width: 1200px) {
    .inside-header {
        padding: 0 60px;
    }
    
    .inside-banner {
        padding: 0 60px;
        height: 400px;
        margin: 0 60px;
    }
    
    .inside-title {
        font-size: 46px;
    }
    
    .inside-headline {
        font-size: 28px;
    }
    
    .founder-credit {
        bottom: 16px;
        right: 16px;
    }
    
    .founder-name {
        font-size: 13px;
    }
    
    .founder-title {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .inside-section {
        padding: 40px 0 40px 0;
    }
    
    .inside-header {
        padding: 0 40px;
        margin-bottom: 40px;
    }
    
    .inside-banner {
        padding: 40px 30px 30px 30px;
        height: 500px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        position: relative;
        margin: 0 40px 73px 40px;
    }
    
    .inside-content {
        width: 100%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        position: static;
    }
    
    .inside-title {
        font-size: 42px;
    }
    
    .inside-headline {
        font-size: 26px;
        text-align: center;
        margin: 0;
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .inside-cta {
        margin: 0;
    }
    
    .founder-credit {
        bottom: 12px;
        right: 12px;
    }
    
    .founder-name {
        font-size: 12px;
    }
    
    .founder-title {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .inside-section {
        padding: 20px 0 20px 0;
    }
    
    .inside-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .inside-banner {
        padding: 30px 20px 20px 20px;
        height: 450px;
        justify-content: center;
        flex-direction: column;
        position: relative;
        margin: 0 30px 73px 30px;
    }
    
    .inside-content {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        position: static;
    }
    
    .inside-title {
        font-size: 36px;
    }
    
    .inside-headline {
        font-size: 22px;
        text-align: center;
        margin: 0;
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .inside-cta {
        padding: 10px 20px;
        font-size: 14px;
        margin: 0;
    }
    
    .founder-credit {
        bottom: 10px;
        right: 10px;
    }
    
    .founder-name {
        font-size: 11px;
    }
    
    .founder-title {
        font-size: 9px;
    }
}

/* Why Section Styles */
.why-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
}

.why-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
}

.why-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 0;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    padding: 0 80px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-stats {
    display: flex;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #434343;
    margin-top: auto;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #F7C873;
}

.card-stats .lessons,
.card-stats .hours {
    line-height: 1.2;
}

.emoji-icon {
    font-size: 40px;
}

.why-card-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.why-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #434343;
    line-height: 1.2;
    margin-bottom: 16px;
}

.why-card-description {
    font-size: 16px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Responsive Design for Why Section */
@media (max-width: 1200px) {
    .why-header {
        padding: 0 60px;
        margin-bottom: 50px;
    }
    
    .why-title {
        font-size: 46px;
    }
    
    .why-cards {
        gap: 20px;
        padding: 0 60px;
    }
    
    .why-card {
        padding: 32px 24px;
    }
    
    .why-card-title {
        font-size: 22px;
    }
    
    .why-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 40px 0 40px 0;
    }
    
    .why-header {
        padding: 0 40px;
        margin-bottom: 40px;
    }
    
    .why-title {
        font-size: 42px;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 40px;
    }
    
    .why-card {
        padding: 28px 20px;
    }
    
    .why-card-title {
        font-size: 20px;
    }
    
    .why-card-description {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 20px 0 20px 0;
    }
    
    .why-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .why-title {
        font-size: 36px;
    }
    
    .why-cards {
        padding: 0 20px;
    }
    
    .why-card {
        padding: 24px 16px;
    }
    
    .why-card-title {
        font-size: 18px;
    }
    
    .why-card-description {
        font-size: 13px;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .card-stats {
        font-size: 10px;
        margin-top: auto;
        gap: 6px;
        padding: 6px 10px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
}

.faq-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
}

.faq-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 0;
}

.faq-container {
    padding: 0 80px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(67, 67, 67, 0.1);
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: none;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #F7C873;
}

.faq-question h3 {
    font-size: 24px;
    font-weight: 600;
    color: #434343;
    margin: 0;
    line-height: 1.3;
    flex-grow: 1;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #F7C873;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #86868b;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #F7C873;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for FAQ Section */
@media (max-width: 1200px) {
    .faq-header {
        padding: 0 60px;
    }
    
    .faq-container {
        padding: 0 60px;
    }
    
    .faq-title {
        font-size: 46px;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 22px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 20px 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0 40px 0;
    }
    
    .faq-header {
        padding: 0 40px;
        margin-bottom: 40px;
    }
    
    .faq-container {
        padding: 0 40px;
    }
    
    .faq-title {
        font-size: 42px;
    }
    
    .faq-question {
        padding: 18px 0;
    }
    
    .faq-question h3 {
        font-size: 20px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 18px 0;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 0 20px 0;
    }
    
    .faq-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-question {
        padding: 16px 0;
    }
    
    .faq-question h3 {
        font-size: 18px;
        padding-right: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 16px 0;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 100px 0 73px 0;
    background-color: #F8F8F8;
}

.guarantee-container {
    padding: 0 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-image {
    flex-shrink: 0;
    position: relative;
    text-align: center;
}
.guarantee-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

.stamp-circle {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #F7C873 0%, #E6B655 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(247, 200, 115, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 6px solid #fff;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.stamp-circle:hover {
    transform: rotate(0deg) scale(1.05);
}

.stamp-circle::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px dashed rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.stamp-circle::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.stamp-text-main {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stamp-text-sub {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 42px;
    font-weight: 700;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: left;
}

.guarantee-text {
    font-size: 18px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: left;
}

.guarantee-conditions {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #F7C873;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.guarantee-conditions h4 {
    font-size: 16px;
    font-weight: 600;
    color: #434343;
    margin-bottom: 12px;
}

.guarantee-conditions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-conditions li {
    font-size: 14px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.guarantee-conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F7C873;
    font-weight: bold;
}

.guarantee-note {
    font-size: 12px;
    color: #86868b;
    font-style: italic;
    margin-top: 16px;
    margin-bottom: 0;
    text-align: left;
}

/* Responsive Design for Guarantee Section */
@media (max-width: 1200px) {
    .guarantee-container {
        padding: 0 60px;
        gap: 40px;
    }
    
    
    .guarantee-title {
        font-size: 38px;
    }
    
    .guarantee-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 40px 0 40px 0;
    }
    
    .guarantee-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 30px;
    }
    
    
    .guarantee-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .guarantee-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .guarantee-conditions {
        padding: 20px;
    }
    
    .guarantee-conditions h4 {
        font-size: 15px;
    }
    
    .guarantee-conditions li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .guarantee-section {
        padding: 20px 0 20px 0;
    }
    
    .guarantee-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    
    .guarantee-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .guarantee-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .guarantee-conditions {
        padding: 16px;
    }
    
    .guarantee-conditions h4 {
        font-size: 14px;
    }
    
    .guarantee-conditions li {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

/* Investment Section Styles - Apple-like Design */
.investment-section {
    padding: 170px 0 0 0;
    background-color: #fff;
    /* Make section span full viewport width like essentials-section */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.investment-container {
    padding: 0 80px;
    width: 100%;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.investment-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0;
}

.investment-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 20px;
}

.investment-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #6e6e73;
    line-height: 1.2;
    margin: 0;
}

.investment-content {
    width: 100%;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 0;
    padding: 80px 40px;
    background: #000;
    color: #fff;
    position: relative;
    overflow: visible;
    /* Span full viewport width */
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 100vh;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(247, 200, 115, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px; /* match internal padding of hero */
}

.pricing-columns {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pricing-column {
    flex: 1;
    text-align: center;
}

.column-header {
    margin-bottom: 40px;
}

.pricing-column .price-label {
    font-size: 19px;
    color: #a1a1a6;
    margin-bottom: 8px;
    font-weight: 400;
}

.pricing-column .price {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-column:first-child .price {
    color: #a1a1a6;
    opacity: 0.6;
}

.pricing-column:first-child .price-label {
    color: #a1a1a6;
}

.pricing-column-sticky {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-column-sticky .payment-options {
    margin-top: 20px;
}

.pricing-column-sticky .payment-option {
    background: transparent;
    border: none;
    box-shadow: none;
}

.pricing-column-sticky .payment-price {
    font-size: 32px;
    font-weight: 800;
}

.sticky-cta-section {
    margin-top: 24px;
    text-align: center;
}

.sticky-cta-button {
    display: block;
    background: #F7C873;
    color: #434343;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 200, 115, 0.3);
}

.sticky-cta-button:hover {
    background: #E6B655;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 182, 85, 0.4);
}

.sticky-payment-info {
    font-size: 12px;
    color: #a1a1a6;
    margin: 0;
    font-weight: 400;
}

.payment-options {
    margin-top: 30px;
}

.payment-option {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.payment-price {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.payment-label {
    font-size: 16px;
    font-weight: 400;
    color: #a1a1a6;
    margin: 12px 0;
}

.pricing-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.original-price {
    text-align: center;
    opacity: 0.6;
}

.original-price .price-label {
    font-size: 19px;
    color: #a1a1a6;
    margin-bottom: 8px;
    font-weight: 400;
}

.original-price .price {
    font-size: 96px;
    font-weight: 700;
    color: #a1a1a6;
    text-decoration: line-through;
    line-height: 1;
}

.price-separator {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.current-price {
    text-align: center;
}

.current-price .price-label {
    font-size: 17px;
    color: #f5f5f7;
    margin-bottom: 8px;
    font-weight: 500;
}

.current-price .price {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-note {
    font-size: 19px;
    color: #a1a1a6;
    margin: 0;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.features-grid.features-column {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-top: 40px;
    margin-bottom: 0;
}

.features-grid.features-dark {
    max-width: 500px;
}

.features-grid.features-dark .feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.features-grid.features-dark .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.features-grid.features-dark .feature-card .why-icon svg {
    stroke: #ffffff;
    width: 24px;
    height: 24px;
}

.features-grid.features-dark .feature-card .why-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.features-grid.features-dark .feature-card .why-card-description {
    font-size: 13px;
    font-weight: 400;
    color: #a1a1a6;
    line-height: 1.4;
    margin-bottom: 0;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-card .why-icon svg {
    width: 40px;
    height: 40px;
    stroke: #434343;
}

.feature-card .why-card-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-card .why-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #434343;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feature-card .why-card-description {
    font-size: 16px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: #f5f5f7;
    border-radius: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.investment-cta {
    background: #F7C873;
    color: #434343;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 20px;
    min-width: 280px;
    letter-spacing: -0.01em;
}

.investment-cta:hover {
    background: #E6B655;
    transform: scale(1.02);
}

.payment-info {
    font-size: 17px;
    color: #6e6e73;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design for Investment Section */
@media (max-width: 1200px) {
    .investment-container {
        padding: 0;
    }
    
    .investment-section {
        padding: 100px 0 0 0;
        min-height: 120vh;
    }
    
    .investment-header {
        margin-bottom: 50px;
        padding: 0 60px;
    }
    
    .investment-title {
        font-size: 46px;
    }
    
    .investment-subtitle {
        font-size: 24px;
    }
    
    .pricing-hero {
        padding: 60px 40px;
        margin-bottom: 0;
        min-height: 80vh;
        overflow: visible;
    }
    
    .pricing-columns {
        gap: 60px;
        min-height: auto;
    }
    
    .pricing-column .price {
        font-size: 60px;
    }
    
    .payment-options {
        margin-top: 25px;
    }
    
    .payment-option {
        padding: 0;
    }
    
    .payment-price {
        font-size: 24px;
    }
    
    .pricing-column-sticky .payment-price {
        font-size: 28px;
    }
    
    .sticky-cta-section {
        margin-top: 20px;
    }
    
    .sticky-cta-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .sticky-payment-info {
        font-size: 11px;
    }
    
    .pricing-comparison {
        gap: 40px;
    }
    
    .original-price .price {
        font-size: 76px;
    }
    
    .current-price .price {
        font-size: 42px;
    }
    
    .features-grid {
        gap: 20px;
        padding: 0 60px;
        margin-bottom: 0;
    }
    
    .features-grid.features-column {
        gap: 16px;
        padding: 0;
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .cta-section {
        padding: 60px 40px;
        margin: 0 60px;
    }
}

@media (max-width: 768px) {
    .investment-section {
        padding: 40px 0 0 0;
        min-height: auto;
    }
    
    .investment-header {
        margin-bottom: 40px;
        padding: 0 40px;
    }
    
    .investment-title {
        font-size: 42px;
    }
    
    .investment-subtitle {
        font-size: 21px;
    }
    
    .pricing-hero {
        padding: 40px 20px;
        margin-bottom: 0;
        min-height: 60vh;
        overflow: visible;
    }
    
    .pricing-columns {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .pricing-column-sticky {
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        backdrop-filter: none;
    }
    
    .pricing-column .price {
        font-size: 48px;
    }
    
    .column-header {
        margin-bottom: 20px;
    }
    
    .payment-options {
        margin-top: 20px;
    }
    
    .payment-option {
        padding: 0;
    }
    
    .payment-price {
        font-size: 22px;
    }
    
    .pricing-column-sticky .payment-price {
        font-size: 24px;
    }
    
    .sticky-cta-section {
        margin-top: 18px;
    }
    
    .sticky-cta-button {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .sticky-payment-info {
        font-size: 10px;
    }
    
    .payment-label {
        font-size: 14px;
    }
    
    .pricing-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-separator {
        width: 40px;
        transform: rotate(90deg);
    }
    
    .original-price .price {
        font-size: 64px;
    }
    
    .current-price .price {
        font-size: 36px;
    }
    
    .current-price .price-label {
        font-size: 19px;
    }
    
    .pricing-note {
        font-size: 17px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 40px;
        margin-bottom: 0;
    }
    
    .features-grid.features-column {
        gap: 16px;
        padding: 0;
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .features-grid.features-dark .feature-card {
        padding: 20px 16px;
    }
    
    .features-grid.features-dark .feature-card .why-card-title {
        font-size: 15px;
    }
    
    .features-grid.features-dark .feature-card .why-card-description {
        font-size: 12px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .feature-card .why-card-title {
        font-size: 22px;
    }
    
    .feature-card .why-card-description {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 40px 20px;
        margin: 0 40px;
        border-radius: 20px;
    }
    
    .investment-cta {
        font-size: 19px;
        padding: 18px 32px;
        min-width: 240px;
    }
    
    .payment-info {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .investment-section {
        padding: 20px 0 0 0;
        min-height: auto;
    }
    
    .investment-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .investment-title {
        font-size: 36px;
    }
    
    .investment-subtitle {
        font-size: 19px;
    }
    
    .pricing-hero {
        margin-bottom: 0;
        min-height: auto;
        overflow: visible;
    }

    .pricing-hero-content {
        padding: 0;
    }
    
    .pricing-comparison {
        gap: 16px;
    }
    
    .pricing-columns {
        gap: 30px;
    }
    
    .pricing-column .price {
        font-size: 36px;
    }
    
    .pricing-column .price-label {
        font-size: 16px;
    }
    
    .payment-options {
        margin-top: 16px;
    }
    
    .payment-option {
        padding: 0;
    }
    
    .payment-price {
        font-size: 18px;
    }
    
    .pricing-column-sticky .payment-price {
        font-size: 20px;
    }
    
    .sticky-cta-section {
        margin-top: 16px;
    }
    
    .sticky-cta-button {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .sticky-payment-info {
        font-size: 9px;
    }
    
    .payment-label {
        font-size: 13px;
    }
    
    .original-price .price {
        font-size: 52px;
    }
    
    .original-price .price-label {
        font-size: 17px;
    }
    
    .current-price .price {
        font-size: 28px;
    }
    
    .current-price .price-label {
        font-size: 15px;
    }
    
    .pricing-note {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 16px;
        padding: 0 20px;
        margin-bottom: 0;
    }
    
    .features-grid.features-column {
        gap: 16px;
        padding: 0;
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .features-grid.features-dark .feature-card {
        padding: 18px 14px;
    }
    
    .features-grid.features-dark .feature-card .why-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .features-grid.features-dark .feature-card .why-card-title {
        font-size: 14px;
    }
    
    .features-grid.features-dark .feature-card .why-card-description {
        font-size: 11px;
    }
    
    .feature-card {
        padding: 28px 20px;
    }
    
    .feature-card .why-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card .why-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-card .why-card-title {
        font-size: 20px;
    }
    
    .feature-card .why-card-description {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-card .why-card-title {
        font-size: 18px;
    }
    
    .feature-card .why-card-description {
        font-size: 13px;
    }
    
    .cta-section {
        padding: 30px 16px;
        margin: 0 20px;
        border-radius: 16px;
    }
    
    .investment-cta {
        font-size: 17px;
        padding: 16px 28px;
        min-width: 220px;
        border-radius: 25px;
    }
    
    .payment-info {
        font-size: 14px;
    }
}

/* Footer Styles */
.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    font-size: 16px;
}

.footer-container {
    max-width: 1650px;
    padding: 0 80px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-copy {
    font-size: 14px;
    color: #a1a1a6;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 40px;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Essentials Section Styles */
.essentials-section {
    padding: 100px 0 73px 0;
    background-color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.essentials-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.essentials-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 0;
}

.essentials-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 80px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.essentials-card {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 0;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.essentials-card-content {
    padding: 40px 40px 0 40px;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.essentials-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #434343;
    line-height: 1.2;
    margin-bottom: 16px;
}

.essentials-card-description {
    font-size: 16px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 24px;
}

.essentials-card-link {
    color: #F7C873;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.essentials-card-link:hover {
    color: #E6B655;
    text-decoration: underline;
}

.essentials-card-image {
    flex: 1;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E5E5E7 0%, #D1D1D6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.essentials-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design for Essentials Section */
@media (max-width: 1200px) {
    .essentials-header {
        padding: 0 60px;
        margin-bottom: 50px;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .essentials-title {
        font-size: 46px;
    }
    
    .essentials-cards {
        gap: 20px;
        padding: 0 60px;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .essentials-card {
        padding: 0;
        height: 500px;
    }
    
    .essentials-card-content {
        padding: 32px;
    }
    
    .essentials-card-title {
        font-size: 24px;
    }
    
    .essentials-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .essentials-section {
        padding: 40px 0 40px 0;
    }
    
    .essentials-header {
        padding: 0 40px;
        margin-bottom: 40px;
    }
    
    .essentials-title {
        font-size: 42px;
    }
    
    .essentials-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 40px;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .essentials-card {
        padding: 0;
        height: 450px;
    }
    
    .essentials-card-content {
        padding: 32px 24px 0 24px;
    }
    
    .essentials-card-title {
        font-size: 22px;
    }
    
    .essentials-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .essentials-section {
        padding: 20px 0 20px 0;
    }
    
    .essentials-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .essentials-title {
        font-size: 36px;
    }
    
    .essentials-cards {
        padding: 0 20px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .essentials-card {
        padding: 0;
        height: 400px;
    }
    
    .essentials-card-content {
        padding: 24px 20px 0 20px;
    }
    
    .essentials-card-title {
        font-size: 20px;
    }
    
    .essentials-card-description {
        font-size: 13px;
    }
}

/* Exclusives Section Styles */
.exclusives-section {
    padding: 100px 0 73px 0;
    background-color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.exclusives-wrapper {
    padding: 0 80px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.exclusives-container {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 80px;
    background-color: #F8F8F8;
    border-radius: 30px;
}

.exclusives-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 80px;
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.exclusives-title {
    font-size: 52px;
    font-weight: 500;
    color: #434343;
    line-height: 1.1;
    margin-bottom: 0;
}

.exclusives-content {
    flex: 1;
    max-width: 500px;
}

.exclusives-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(67, 67, 67, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:first-child {
    border-top: none;
}

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: #F7C873;
}

.accordion-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #434343;
    margin: 0;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: #F7C873;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: #86868b;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #F7C873;
}

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

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 0 24px 0;
}

.accordion-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #434343;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.accordion-content p {
    font-size: 16px;
    font-weight: 400;
    color: #86868b;
    line-height: 1.5;
    margin: 0;
}

.exclusives-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    margin-left: 20px;
    margin-right: -80px;
    margin-top: -60px;
    margin-bottom: -60px;
}

.image-container {
    width: 100%;
    max-width: 600px;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-right: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
    min-height: 400px;
    border-radius: 0;
}

/* Responsive Design for Exclusives Section */
@media (max-width: 1200px) {
    .exclusives-header {
        padding: 0 60px;
    }
    
    .exclusives-wrapper {
        padding: 0 60px;
    }
    
    .exclusives-container {
        gap: 60px;
        padding: 60px;
    }
    
    .exclusives-image {
        margin-right: -60px;
    }
    
    .exclusives-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .exclusives-section {
        padding: 40px 0 40px 0;
    }
    
    .exclusives-header {
        padding: 0 40px;
    }
    
    .exclusives-wrapper {
        padding: 0 40px;
    }
    
    .exclusives-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }
    
    .exclusives-image {
        justify-content: center;
        margin-left: -40px;
        margin-right: -40px;
        margin-top: 20px;
        margin-bottom: -60px;
    }
    
    .exclusives-title {
        font-size: 42px;
    }
    
    .image-container {
        height: 300px;
        margin-right: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .exclusives-section {
        padding: 20px 0 20px 0;
    }
    
    .exclusives-header {
        padding: 0 20px;
    }
    
    .exclusives-wrapper {
        padding: 0 20px;
    }
    
    .exclusives-container {
        gap: 30px;
        padding: 40px 20px;
    }
    
    .exclusives-image {
        margin-left: -20px;
        margin-right: -20px;
        margin-top: 20px;
        margin-bottom: -40px;
    }
    
    .image-container {
        border-radius: 0;
    }
    
    .exclusives-title {
        font-size: 36px;
    }
    
    .accordion-header h3 {
        font-size: 20px;
    }
    
    .accordion-content p {
        font-size: 14px;
    }
    
    .exclusives-image {
        justify-content: center;
        margin-left: 0;
    }
    
    .image-container {
        height: 250px;
        margin-right: 0;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
    padding: 40px 20px;
    overflow-y: auto;
}

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

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
    min-height: calc(100vh - 80px);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin: auto;
    padding: 70px;
}

.modal-close {
    position: sticky;
    top: 30px;
    left: calc(100% - 44px);
    background: #333;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.modal-close:hover {
    background: #222;
    color: white;
    transform: scale(1.05);
}

.modal-content {
    padding: 0;
}

.modal-section {
    margin-bottom: 40px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.modal-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.modal-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.modal-feature-card {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 24px;
    display: flex;
    align-items: stretch;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.modal-feature-card.reverse {
    flex-direction: row-reverse;
}

.modal-feature-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.modal-feature-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.modal-feature-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.modal-feature-image {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.placeholder-image {
    font-size: 48px;
    opacity: 0.7;
}

.feature-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    display: block;
}

.course-category {
    display: inline-block;
    background: linear-gradient(135deg, #F7C873 0%, #FAEBCD 100%);
    color: #8B4513;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
    align-self: flex-start;
}

.modal-class-list {
    margin-top: 24px;
}

.class-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.class-number {
    background: #F7C873;
    color: #8B4513;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.class-title {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.modal-box {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.modal-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-box-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.modal-box-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.modal-badge {
    background: linear-gradient(135deg, #F7C873 0%, #FAEBCD 100%);
    color: #8B4513;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-box-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.modal-features li {
    color: #666;
    font-size: 14px;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.modal-features li:before {
    content: '•';
    color: #F7C873;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-stats {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid #e9ecef;
    padding-top: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px 10px;
    }
    
    .modal-close {
        top: 20px;
        left: calc(100% - 40px);
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .modal-container {
        min-height: calc(100vh - 40px);
        border-radius: 16px;
        padding: 40px;
    }
    
    .modal-content {
        padding: 0;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-subtitle {
        font-size: 16px;
    }
    
    .modal-section-title {
        font-size: 20px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-methodology {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-box {
        padding: 20px;
    }
    
    .modal-box-header h3 {
        font-size: 18px;
    }
    
    .modal-box-header h4 {
        font-size: 16px;
    }
    
    .modal-feature-card {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        align-items: stretch;
    }
    
    .modal-feature-card.reverse {
        flex-direction: column;
    }
    
    .modal-feature-content h4 {
        font-size: 20px;
    }
    
    .modal-feature-content p {
        font-size: 14px;
    }
    
    .modal-feature-image {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    border-radius: 16px;
    overflow: hidden;
}
    
    .placeholder-image {
        font-size: 32px;
    }
    
    .modal-class-list {
        margin-top: 16px;
    }
    
    .class-item {
        padding: 6px 0;
    }
    
    .class-number {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .class-title {
        font-size: 13px;
    }
}