* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 2rem;
    font-weight: 400;
    color: #d4af37;
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;
}

.nav-logo span {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content {
    text-align: center;
}

.hero-staying {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-stuck {
    font-weight: 700;
    font-style: italic;
}

.hero-choice {
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.8;
    text-transform: lowercase;
    font-style: italic;
}

.section {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
}

.section-1 {
    background-image: url('Assets/1.png');
}

.section-2 {
    background-image: url('Assets/2.png');
}

.section-3 {
    background-image: url('Assets/3.png');
}

.section-4 {
    background-image: url('Assets/4.jpeg');
}

.section-5 {
    background-image: url('Assets/5.png');
}

.section-6 {
    background-image: url('Assets/6.jpeg');
}

.ready-content {
    position: absolute;
    top: 150px;
    left: 150px;
    text-align: left;
    max-width: 600px;
}

.ready-if {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(167, 167, 167);
    margin-bottom: 5px;
}

.ready-thinking {
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.ready-you {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(167, 167, 167);
    line-height: 0.5;
}

.ready-title {
    font-size: 8rem;
    font-weight: 700;
    color: white;
    line-height: 0.6;
    margin: 25px -5px;
}

.ready-stop {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(167, 167, 167);
}

.ready-stop span {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(255, 255, 255);
}

.not-coach-content {
    text-align: center;
    max-width: 1000px;
}

.not-coach-header {
    display: flex;
    align-items: center;
    margin-left: -300px;
    margin-bottom: 60px;
    gap: 20px;
}

.not-coach-who {
    margin: 0;
}

.not-coach-title {
    margin: 0;
}

.not-coach-who {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.not-coach-choose {
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
}

.not-coach-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.not-coach-people {
    font-size: 12rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 50px;
    letter-spacing: 2rem;
}

.not-coach-list {
    text-align: center;
    font-size: 1.6rem;
    color: white;
    line-height: 1.5;
    margin-bottom: 40px;
}

.not-coach-list p {
    margin: 10px 0;
}

.italic-text {
    font-style: italic;
    font-weight: 600;
}

.bold-text {
    font-weight: 700;
}

.choose-content {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 120px 100px;
}

.choose-header {
    position: absolute;
    top: 35%;
    left: 120px;
    transform: translateY(-50%);
    color: white;
}

.choose-who {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

.choose-title {
    font-size: 8rem;
    font-weight: 800;
    line-height: 0.9;
    margin: 0;
}

.choose-to-coach {
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    margin-top: -20px;
    position: relative;
    left: 70%;
}

.choose-grid {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 750px;
}

.choose-card {
    display: grid;
    grid-template-columns: 2fr 1.8fr;
    align-items: start;
    gap: 40px;
    align-items: center;
}

.choose-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-align: right;
    margin: 0;
    white-space: nowrap;
}

.choose-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.863);
    line-height: 1.5;
    text-align: justify;
    word-break: break-word;
    font-style: italic;
}

.pick-title:first-of-type {
    font-size: 8rem;
    font-style: italic;
}

.pick-content {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -200px;
    left: 72%;
}

.pick-title {
    font-size: 6.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 0.6;
}

.pick-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(143, 143, 143);
    text-align: left;
}

.options-content {
    max-width: 14000px;
    width: 100%;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.option-column {
    padding: 40px;
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.option-column:last-child {
    border-right: none;
}

.option-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.option-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
}

.option-text {
    font-size: 1.3rem;
    color: white;
    line-height: 1.3;
    text-align: center;
}

.option-text .italic-text {
    font-style: italic;
}

.option-text .bold-text {
    font-weight: 700;
}

.options-grid .option-column:nth-child(2) .option-title {
    margin-top: -80px;
    font-size: 5rem;
}

.options-grid .option-column:nth-child(2) .option-subtitle {
    font-size: 5rem;
    font-weight: 700;
}

.options-grid .option-column:nth-child(2) .option-text {
    font-size: 1.7rem;
}

.story-section {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.story-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 40px;
}

.story-image {
    width: 180%;
    height: auto;
    margin-left: -30%;
}

.story-content {
    color: white;
}

.story-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: justify;
}

.truth-text {
    font-size: 1.3rem;
}

.story-text .bold-text {
    font-weight: 700;
}

.story-text .italic-text {
    font-style: italic;
}

.highlight-text {
    color: #d4af37;
    font-weight: 700;
}

.cta-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    font-style: italic;
    margin-top: 15px;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 1rem;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1600px) {
    .hero-choice {
        font-size: 9rem;
    }

    .ready-title {
        font-size: 7rem;
    }

    .not-coach-people {
        font-size: 10rem;
    }

    .choose-title {
        font-size: 7rem;
    }

    .pick-title {
        font-size: 5.5rem;
    }

    .pick-content {
        left: 68%;
    }

    .choose-grid {
        max-width: 700px;
        gap: 50px;
    }

    .choose-card-title {
        font-size: 1.2rem;
    }

    .choose-card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1400px) {
    .hero-choice {
        font-size: 8rem;
    }

    .ready-title {
        font-size: 6rem;
    }

    .ready-if, .ready-you, .ready-stop {
        font-size: 1.5rem;
    }

    .not-coach-people {
        font-size: 9rem;
    }

    .not-coach-title {
        font-size: 3.5rem;
    }

    .choose-title {
        font-size: 6rem;
    }

    .choose-grid {
        max-width: 650px;
        gap: 45px;
    }

    .choose-card-title {
        font-size: 1.1rem;
    }

    .choose-card-text {
        font-size: 0.85rem;
    }

    .pick-title {
        font-size: 5rem;
    }

    .pick-content {
        left: 65%;
    }

    .option-title {
        font-size: 2.5rem;
    }

    .option-text {
        font-size: 1.2rem;
    }

    .story-title {
        font-size: 3.5rem;
    }

    .story-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 1200px) {
    .hero-choice {
        font-size: 7rem;
    }

    .ready-content {
        left: 80px;
    }

    .ready-title {
        font-size: 5rem;
    }

    .not-coach-people {
        font-size: 8rem;
    }

    .choose-content {
        padding: 100px 60px;
    }

    .choose-header {
        left: 80px;
    }

    .choose-title {
        font-size: 5rem;
    }

    .choose-grid {
        max-width: 600px;
        gap: 40px;
    }

    .pick-content {
        left: 62%;
    }

    .story-container {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .story-title {
        font-size: 3rem;
    }

    .story-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 15px 40px;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 250px;
        padding: 30px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-choice {
        font-size: 6rem;
    }

    .ready-content {
        left: 50px;
        top: 120px;
    }

    .ready-title {
        font-size: 4.5rem;
    }

    .not-coach-header {
        flex-direction: column;
        margin-left: 0;
        gap: 10px;
    }

    .not-coach-people {
        font-size: 6rem;
        letter-spacing: 1rem;
    }

    .not-coach-list {
        font-size: 1.4rem;
    }

    .choose-content {
        padding: 80px 40px;
    }

    .choose-header {
        position: static;
        transform: none;
        margin-bottom: 60px;
        text-align: center;
    }

    .choose-to-coach {
        left: 0;
        text-align: center;
    }

    .choose-grid {
        position: static;
        transform: none;
        max-width: 100%;
    }

    .choose-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choose-card-title {
        text-align: center;
        white-space: normal;
        font-size: 1.3rem;
    }

    .choose-card-text {
        font-size: 1rem;
    }

    .pick-content {
        position: static;
        transform: none;
        margin: 0 auto;
        text-align: center;
        left: auto;
    }

    .pick-title {
        font-size: 4rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .option-column {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }

    .option-column:last-child {
        border-bottom: none;
    }

    .options-grid .option-column:nth-child(2) .option-title {
        margin-top: 0;
        font-size: 4rem;
    }

    .options-grid .option-column:nth-child(2) .option-subtitle {
        font-size: 4rem;
    }

    .options-grid .option-column:nth-child(2) .option-text {
        font-size: 1.5rem;
    }

    .story-section {
        position: relative;
    }

    .story-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('Assets/6.jpeg');
        background-size: cover;
        background-position: center;
        opacity: 0.4;
        z-index: 0;
    }

    .story-container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 40px;
        position: relative;
        z-index: 1;
    }

    .story-container>div:first-child {
        display: none;
    }

    .story-title {
        font-size: 2.5rem;
    }

    .story-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .hero-staying {
        font-size: 1.5rem;
    }

    .hero-choice {
        font-size: 4rem;
    }

    .section {
        padding: 60px 20px;
    }

    .section-3 {
        background-size: 500%;
        background-position: center;
    }

    .ready-content {
        left: 30px;
        top: 120px;
        max-width: 90%;
    }

    .ready-if,
    .ready-you,
    .ready-stop {
        font-size: 1.3rem;
    }

    .ready-title {
        font-size: 3.5rem;
    }

    .not-coach-who {
        font-size: 1.5rem;
    }

    .not-coach-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .not-coach-people {
        font-size: 4rem;
        letter-spacing: 0.5rem;
    }

    .not-coach-list {
        font-size: 1.1rem;
    }

    .choose-content {
        padding: 60px 20px;
    }

    .choose-who {
        font-size: 1.5rem;
    }

    .choose-title {
        font-size: 4rem;
    }

    .choose-to-coach {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .choose-grid {
        gap: 40px;
    }

    .choose-card-title {
        font-size: 1.2rem;
    }

    .choose-card-text {
        font-size: 0.95rem;
    }

    .pick-content {
        margin-top: 100px;
    }

    .pick-title {
        font-size: 3rem;
    }

    .pick-subtitle {
        font-size: 1.5rem;
    }

    .option-title {
        font-size: 2rem;
    }

    .option-subtitle {
        font-size: 1.3rem;
    }

    .option-text {
        font-size: 1rem;
    }

    .options-grid .option-column:nth-child(2) .option-title {
        font-size: 2.5rem;
    }

    .options-grid .option-column:nth-child(2) .option-subtitle {
        font-size: 2.5rem;
    }

    .options-grid .option-column:nth-child(2) .option-text {
        font-size: 1.2rem;
    }

    .story-section {
        position: relative;
    }

    .story-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('Assets/6.jpeg');
        background-size: cover;
        background-position: center;
        opacity: 0.4;
        z-index: 0;
    }

    .story-container {
        padding: 40px 20px;
        position: relative;
        z-index: 1;
        grid-template-columns: 1fr;
    }

    .story-container>div:first-child {
        display: none;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .truth-text {
        font-size: 1.1rem;
    }

    .cta-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-staying {
        font-size: 1.2rem;
    }

    .hero-choice {
        font-size: 3rem;
    }

    .section-3 {
        background-size: 1500%;
        background-position: center;
    }

    .section-4 {
        background-size: 300%;
        background-position: 65% 20%;
    }

    .ready-content {
        left: 20px;
        top: 100px;
    }

    .ready-if,
    .ready-you,
    .ready-stop {
        font-size: 1rem;
    }

    .ready-title {
        font-size: 2.5rem;
    }

    .not-coach-title {
        font-size: 2rem;
    }

    .not-coach-people {
        font-size: 3rem;
    }

    .choose-title {
        font-size: 3rem;
    }

    .choose-to-coach {
        margin-top: 2px;
    }

    .pick-content {
        margin-top: 120px;
    }

    .pick-title {
        font-size: 2.5rem;
    }

    .story-title {
        font-size: 1.5rem;
    }
}