html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}
.container{
    padding: 0;
}
/* --- HERO SECTION --- */
.mentorship-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: flex-end;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-bg video {
    height: 100vh; 
    width: auto; 
    object-fit: contain; 
    opacity: 1; 
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1680px; 
    margin: 0 auto;
    padding: 0 60px 80px 60px; 
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text-block {
    text-align: left;
}

.hero-cta-block {
    text-align: right;
}

.hero-eyebrow {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-headline {
    font-size: var(--font-size-large);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f7efd7 0%, var(--color-primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.apple-pill-cta {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 24px;
    gap: 20px;
}

.cta-pricing {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.btn-pill-buy {
    background-color: var(--color-primary-gold);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pill-buy:hover {
    background-color: var(--color-primary-gold-hover);
    transform: scale(1.02);
}

/* --- Highlights --- */

.carousel-hero {
    position: relative;
    z-index: 20;
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.carousel-hero .large-subtitle,
.carousel-hero .gallery-slide-content h3 {
    color: var(--color-text-light);
}

.carousel-hero .gallery-slide-content p {
    color: var(--color-text-disabled);
}

.carousel-hero .nav-arrow-controls button,
.carousel-hero .pause-control {
    background-color: var(--color-bg-arrow-nav-dark);
    background-image: none !important;
}

.carousel-hero .nav-arrow-controls button:hover,
.carousel-hero .pause-control:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.carousel-hero button svg {
    stroke: var(--color-text-light);
}

.carousel-hero button svg.lucide-pause,
.carousel-hero button svg.lucide-play {
    fill: var(--color-text-light);
    stroke: none;
}

.carousel-hero .gallery-nav {
    margin-top: 10px;
}

.carousel-hero .dot-nav {
    background-color: rgba(255, 255, 255, 0.05);
}

.carousel-hero .dot {
    background-color: var(--color-text-light);
}

.carousel-hero .dot.active {
    background-color: var(--color-bg-arrow-nav-dark);
}

.carousel-hero .dot::after {
    background-color: var(--color-text-light);
}

.carousel-hero .gallery-slide {
    flex-basis: 900px; 
    scroll-snap-align: center;
}

.carousel-hero .gallery-image-slider {
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: calc((100vw - 1200px) / 2);
    scroll-snap-type: x mandatory;
}

.carousel-hero .gallery-slide-image {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background-color: #333;
}

.carousel-section {
    position: relative;
    z-index: 20;
    padding: 70px 0;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    color: var(--color-text-light);
}

.text-dark {
    color: var(--color-text-light);
}

.gallery-carousel-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.gallery-image-slider {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding-bottom: 40px;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: calc(((100vw - 1200px) / 2) + 24px);
    padding-right: calc(((100vw - 1200px) / 2) + 24px);
    scroll-behavior: smooth;
}

.gallery-image-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex-basis: 600px;
    flex-shrink: 0;
    position: relative;
}

.gallery-slide-image {
    line-height: 0;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-slide-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.gallery-slide-content {
    padding-left: 1rem;
    text-align: left;
    margin-top: 24px;
}

.gallery-slide-content h3 {
    font-size: var(--font-size-mid);
    font-family: var(--font-primary);
    color: var(--color-text-light);
}

.gallery-slide-content p {
    font-size: 16px;
    color: var(--color-text-disabled);
}

.gallery-nav {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    position: relative;
    margin-top: 40px;
    padding: 0 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.nav-center-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-arrow-controls {
    display: flex;
    gap: 12px;
}

.nav-arrow-controls button,
.pause-control {
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--color-bg-arrow-nav-dark);
    transition: background-color 0.3s ease;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-arrow-controls button:hover,
.pause-control:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.arrow-left {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}

.arrow-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}

.pause-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='white' stroke='none'%3E%3Crect x='6' y='4' width='4' height='16'/%3E%3Crect x='14' y='4' width='4' height='16'/%3E%3C/svg%3E");
}

.pause-control.is-paused {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='white' stroke='none'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
}

.pause-control.is-finished {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3C/svg%3E");
}

.dot-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 16px;
}

.dot {
    opacity: 0.3;
    border: none;
    height: 8px;
    width: 8px;
    border-radius: 100px;
    cursor: pointer;
    padding: 0;
    background-color: var(--color-text-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dot.active {
    width: 40px;
    opacity: 1;
    background-color: var(--color-bg-arrow-nav-dark);
}

.dot::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-text-light);
}

.dot.active.filling::after {
    width: 100%;
    transition: width 5s linear;
    background-color: var(--color-primary-gold);
}

.large-subtitle {
    font-size: var(--font-size-large);
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 40px;
    display: block;
}
/* --- Mentorship-phase --- */
.mentorship-phase-flow {
    background-color: var(--color-bg-dark);
}
.phase-header {
    text-align: center;
    padding: var(--space-xxl) 0 var(--space-xl);
}

.phase-eyebrow-center {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-gold);
    margin-bottom: var(--space-xs);
}

.phase-main-title {
    font-size: var(--font-size-large);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.phase-stop {
    display: flex;
    align-items: center;
    padding: var(--space-xxl) 0;
}

.phase-stop-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.phase-stop-text {
    flex: 0 0 45%;
}

.phase-stop-visual {
    flex: 0 0 50%;
}

.stop-reversed .phase-stop-inner {
    flex-direction: row-reverse;
}

.phase-eyebrow {
    font-size: var(--font-size-base);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-gold);
    display: block;
    margin-bottom: var(--space-xs);
}

.phase-stop-title {
    font-size: var(--font-size-ML);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.phase-stop-body {
    font-size: var(--font-size-base);
    color: var(--color-text-disabled);
    line-height: 1.6;
    max-width: 480px;
}

.visual-wrapper {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* --- Hero Imgae Seperator --- */
.phase-separator-hero {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--color-bg-grey);
}

.phase-separator-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Phase 02: Mastery Section Styling */
.phase-solution-mastery {
    background-color: #121212;
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
}

.mastery-inner {
    max-width: 900px;
    margin: 0 auto;
}

.mastery-hero-image {
    margin: 0 auto 0 auto;
    width: 100%;
    max-width: 850px;
}

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

.mastery-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.mastery-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0 auto;
}

/* --- Emotinal-hero --- */
.emotional-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.emotional-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.emotional-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.emotional-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.emotional-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-impact-title {
    font-size: clamp(2rem, 8vw, 6rem);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0;
}

.values-carousel-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.values-header {
    margin-bottom: var(--space-xl);
}

.values-carousel-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc((100vw - var(--container-width)) / 2 + var(--space-md));
}

.values-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: var(--space-xl);
}

.values-slider::-webkit-scrollbar {
    display: none;
}

.value-card {
    flex: 0 0 400px;
    height: 500px;
    background: #1c1c1e;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-label {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 800;
    color: var(--color-primary-gold);
    margin-bottom: var(--space-sm);
}

.value-card h3 {
    font-size: var(--font-size-ML);
    color: #ffffff;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.value-card p {
    font-size: var(--font-size-base);
    color: var(--color-text-disabled);
    line-height: 1.5;
}

.values-nav {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

.values-dots {
    display: flex;
    gap: 12px;
}
/* --- Light Carousel --- */
.carousel-light {
    background-color: #f5f5f7;
}

.carousel-light .large-subtitle,
.carousel-light .gallery-slide-content h3 {
    color: #1d1d1f;
}

.carousel-light .gallery-slide-content p {
    color: #86868b;
}

.carousel-light .gallery-slide-image {
    background-color: #e8e8ed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.carousel-light .nav-arrow-controls button,
.carousel-light .pause-control {
    background-color: rgba(0, 0, 0, 0.05);
}

.carousel-light .nav-arrow-controls button:hover,
.carousel-light .pause-control:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


.carousel-light .dot-nav {
    background-color: rgba(0, 0, 0, 0.05);
}

.carousel-light .dot {
    background-color: #49494f;
}

.carousel-light .dot.active {
    background-color: #86868b;
}

.carousel-light .dot::after {
    background-color: #d2d2d7;
}

.carousel-light .dot.active.filling::after {
    background-color: var(--color-primary-gold);
}
.carousel-light button svg {
    stroke: #1d1d1f;
}
.carousel-light button svg.lucide-pause,
.carousel-light button svg.lucide-play {
    fill: #1d1d1f;
    stroke: none;
}


/* --- Comparision grid --- */
.selection-area {
    background-color: #f5f5f7;
    padding: 120px 0;
}

.selection-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.selection-huge-title {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.015em;
    margin: 0;
}

.selection-intro .brand-text-link {
    font-size: 17px;
    color: var(--color-primary-gold);
    text-decoration: none;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.selection-intro .brand-text-link:hover .link-text {
    text-decoration: underline;
}

.selection-intro .chevron {
    text-decoration: none;
}

.selection-white-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.selection-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.selection-col {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.col-img {
    width: 280px;
    height: auto;
    border-radius: 25px;
}

.col-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.col-price {
    font-size: 19px;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.col-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #d2d2d7;
    margin-left: -20px;
    margin-right: -20px;
}

.brand-pill-button {
    background-color: var(--color-primary-gold);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.brand-pill-button:hover {
    opacity: 0.8;
}

.brand-text-link {
    color: var(--color-primary-gold);
    font-size: 17px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
}

.brand-text-link .link-text {
    text-decoration: none;
}

.brand-text-link:hover .link-text {
    text-decoration: underline;
}

.brand-text-link .chevron {
    text-decoration: none !important;
    display: inline-block;
}

.spec-block {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spec-big {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.1;
    margin-bottom: 6px;
}

.spec-small {
    font-size: 14px;
    color: #86868b;
}

/* --- lead-authority --- */
.lead-authority {
    background-color: #ffffff;
    padding: 120px 0;
}

.authority-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.authority-image-side {
    flex: 1;
    position: relative;
}

.profile-img {
    width: 100%;
    border-radius: 24px;
    filter: grayscale(20%);
}

.studio-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #86868b;
    border: 1px solid #d2d2d7;
    padding: 6px 12px;
    border-radius: 100px;
}

.authority-text-side {
    flex: 1;
}

.display-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0 24px 0;
    color: #1d1d1f;
}

.lead-text {
    font-size: 21px;
    line-height: 1.5;
    color: #424245;
    margin-bottom: 40px;
}

.authority-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid #d2d2d7;
    padding-top: 40px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-gold);
}

.stat-label {
    font-size: 14px;
    color: #86868b;
}

/* --- Discovery area --- */
.discovery-area {
    background-color: #ffffff;
    padding: 120px 0;
}

.discovery-card {
    background-color: #f5f5f7;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 415px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discovery-card:hover {
    transform: scale(1.01);
}

.discovery-content {
    flex: 1;
    padding: 80px;
}

.discovery-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 12px 0 20px 0;
    letter-spacing: -0.015em;
}

.discovery-text {
    font-size: 21px;
    line-height: 1.4;
    color: #424245;
    margin-bottom: 32px;
    max-width: 440px;
}

.discovery-visual {
    display: flex;
    align-items: center; 
    justify-content: center;
    flex: 1;
}

.discovery-visual img {
    max-width: 100%;
    height: auto;
    display: block;
}

.discovery-area .brand-text-link {
    font-size: 19px;
    color: var(--color-primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.discovery-area .brand-text-link:hover .link-text {
    text-decoration: underline;
}

.discovery-area .chevron {
    text-decoration: none !important;
}

/* --- Scroll Reveal Base --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-visual {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 1.2s cubic-bezier(0.15, 0, 0.15, 1);
}

.reveal-visual.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}


/* --- Media Breakpoints --- */

@media (max-width: 1069px) {
    /* --- General --- */
    .container {
        max-width: 100%;
        padding: 0;
    }

    /* --- Hero Section --- */
    .hero-content-container {
        width: 800px;
        margin: 0 auto;
        padding: 0 0 80px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .hero-text-block {
        width: 500px;
        text-align: left;
    }
    .hero-eyebrow{
        font-size: 24px;
        font-weight: 300;
    }

    .hero-headline {
        font-size: 35px;
    }

    .hero-cta-block {
        width: auto;
        text-align: right;
    }

    /* --- Phase Flow --- */
    .phase-stop{
        padding:30px 0;
    }
    .phase-stop-inner {
        width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .phase-stop-text {
        flex: 1;
        text-align: left;
    }

    .phase-stop-title {
        font-size: 2.2rem;
    }

    .phase-stop-visual {
        flex: 1;
        max-width: 400px;
    }

    /* --- Carousel --- */
    .carousel-hero .gallery-slide{
        flex-basis: 800px;
    }
    .large-subtitle {
        width: 820px;
        margin: 0 auto 40px auto;
        text-align: left;
    }

.carousel-hero    .gallery-image-slider {
        padding-left: calc((100% - 800px) / 2);
        padding-right: calc((100% - 800px) / 2);
    }


    /* --- Emotional Hero --- */
    .emotional-hero {
        height: 80vh;
    }

    .emotional-content {
        width: 820px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-impact-title {
        font-size: 5rem;
    }

    /* --- Selection Area --- */
    .selection-intro {
        width: 820px;
        margin: 0 auto 60px auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .selection-huge-title {
        font-size: 48px;
        text-align: left;
    }

    .selection-white-card {
        padding: 80px 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
    }

    .selection-grid {
        width: 820px;
        margin: 0 auto;
        gap: 60px;
        display: flex;
        flex-direction: row;
    }

    .selection-col {
        flex: 1;
        text-align: center;
    }



    .col-actions {
        position: relative;
        align-items: center;
    }

    .selection-col:first-child .col-actions::after {
        content: '';
        position: absolute;
        bottom: -1px;
        right: -60px;
        width: 60px;
        height: 1px;
        background-color: #d2d2d7;
        display: block;
    }

    .spec-block {
        align-items: center;
    }

    /* --- Lead Authority --- */
    .authority-grid {
        width: 820px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .authority-image-side {
        flex: 1;
    }

    .authority-text-side {
        flex: 1;
        text-align: left;
    }

    .display-title {
        font-size: 38px;
        text-align: left;
    }

    .studio-badges {
        justify-content: flex-start;
    }

    .authority-stats {
        justify-content: flex-start;
        gap: 40px;
    }

    /* --- Discovery Area --- */
    .discovery-card {
        width: 820px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        border-radius: 32px;
    }

    .discovery-content {
        flex: 1;
        padding: 40px;
        text-align: left;
    }

    .discovery-title {
        font-size: 38px;
    }

    .discovery-visual {
        flex: 1;
    }
}

@media (max-width: 832px) {
    /* --- General --- */
    .container {
        max-width: 100%;
        padding: 0;
    }

    /* --- Hero Section --- */
    .hero-content-container {
        width: 700px;
        margin: 0 auto;
        padding: 0 0 60px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .hero-text-block {
        width: 400px;
        margin-bottom: 0;
        text-align: left;
    }

    .hero-cta-block {
        width: auto;
        text-align: right;
        margin-bottom: 0;
    }

    .apple-pill-cta {
        width: auto;
        padding: 8px 8px 8px 20px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .hero-headline {
        font-size: 28px;
    }
    .hero-eyebrow{
        font-size: 16px;
        font-weight: 300;
    }

    /* --- Phase Flow --- */
    .phase-stop-inner {
        flex-direction: column !important;
        align-items: center;
        gap: 40px;
    }

    .phase-stop-text {
        width: 700px;
        order: 1;
        text-align: center;
    }

    .phase-stop-visual {
        width: 100%;
        max-width: 600px;
        order: 2;
    }

    .phase-stop-body {
        margin: auto;
        width: 100%;
        text-align: left;
    }

    /* --- Carousel --- */
    .carousel-hero .gallery-slide{
        flex-basis: 700px;
    }
    .large-subtitle {
        font-size: 3rem;
        padding: 0;
        width: 700px;
        margin: 0 auto 40px auto;
        text-align: left;
    }

    .carousel-hero .gallery-image-slider {
        padding-left: calc((100% - 700px) / 2);
        padding-right: calc((100% - 700px) / 2);
        gap: 20px;
    }

    .gallery-slide {
        flex-basis: 320px;
    }

    /* --- Emotional Hero --- */
    .emotional-hero {
        height: 60vh;
        align-items: center;
        justify-content: center;
    }

    .emotional-content {
        width: 700px;
        text-align: left;
    }

    .hero-impact-title {
        font-size: 3.5rem;
        padding: 0;
        text-align: center;
    }
    .mastery-description{
        width: 600px;
    }

    /* --- Selection Area --- */
    .selection-intro {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 700px;
        margin: 0 auto 50px auto;
    }

    .selection-huge-title {
        width: 100%;
        text-align: left;
        font-size: 42px;
    }

    .selection-intro .brand-text-link {
        align-self: flex-start;
    }

    .selection-white-card {
        padding: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .selection-grid {
        display: flex;
        flex-direction: row;
        width: 700px;
        margin: 0 auto;
        gap: 40px;
        box-sizing: border-box;
    }

    .selection-col {
        flex: 1;
        width: 100%;
    }


    .col-actions {
        position: relative;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .selection-col:first-child .col-actions::after {
        content: '';
        position: absolute;
        bottom: -1px;
        right: -40px;
        width: 40px;
        height: 1px;
        background-color: #d2d2d7;
        display: block;
    }

    .spec-block {
        align-items: center;
    }

    /* --- Authority --- */
    .authority-grid {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    
    .authority-image-side {
        width: 100%;
        max-width: 400px;
        margin-bottom: 40px;
    }

    .authority-text-side {
        width: 650px;
    }

    .display-title {
        text-align: left;
    }

    .studio-badges {
        justify-content: flex-start;
    }

    .authority-stats {
        justify-content: flex-start;
        gap: 60px;
    }

    /* --- Discovery Area --- */
    .discovery-card {
        flex-direction: column;
        text-align: left;
        min-height: auto;
        align-items: center;
        border-radius: 0;
    }

    .discovery-content {
        width: 700px;
        box-sizing: border-box;
    }

    .discovery-text {
        margin: 0 0 32px 0;
        max-width: 100%;
    }

    .discovery-visual {
        width: 100%;
        padding-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .discovery-visual img {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 734px) {
    /* --- General Container --- */
    .container {
        width: 100%; 
        margin: 0 auto;
        padding: 0; 
    }
    body {
        overflow-x: hidden;
    }

    /* --- Hero Section --- */
    .hero-content-container {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        padding: 0 0 50px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-video-bg video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .hero-text-block {
        width: 275px;
        margin: 0 auto 30px auto;
        text-align: left;
    }

    .hero-eyebrow {
        font-size: 14px;
        letter-spacing: 0.05em;
        margin-bottom: 8px;
        text-align: left;
        font-weight: 300;
    }

    .hero-headline {
        font-size: 28px;
        width: 275px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        text-align: left;
    }

    .hero-cta-block {
        width: 275px;
        margin: 0 auto;
        text-align: left;
    }

    .apple-pill-cta {
        width: 100%;
        margin: 0;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .cta-pricing {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: left;
    }

    .btn-pill-buy {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 0;
        text-align: center;
    }

    /* --- Phase Flow --- */
    .mentorship-phase-flow {
        padding: 60px 0;
    }

    .phase-header {
        width: 275px;
        margin: 0 auto 80px auto;
        text-align: center;
        padding: 0;
        font-size: 17px;
    }

    .phase-main-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }

    .phase-stop {
        width: 100%;
        max-width: 370px;
        margin: 0 auto 80px auto;
        padding: 0;
    }

    .phase-stop:last-child {
        margin-bottom: 0;
    }

    .phase-stop-inner {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phase-stop-text {
        width: 275px;
        margin: 0 auto;
    }

    .phase-stop-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: left;
    }

    .phase-stop-body {
        font-size: 1rem;
        line-height: 1.5;
        width: 100%;
        text-align: left;
    }

    .visual-wrapper {
        width: 355px;
        aspect-ratio: 1 / 1;
        margin: 30px auto 0 auto;
    }

    .visual-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- Carousel Section --- */
    .carousel-hero {
        padding: 60px 0;
    }

    .large-subtitle {
        width: 275px;
        margin: 0 auto 40px auto;
        font-size: 40px;
        padding: 0;
        text-align: left;
        box-sizing: border-box;
    }

    .gallery-carousel-wrapper {
        width: 100%;
        margin: 0 auto;
        overflow: visible;
    }

    .gallery-slide {
        flex: 0 0 340px !important;
        width: 340px;
        scroll-snap-align: center;
    }

    .gallery-image-slider {
        display: flex;
        width: auto;
        min-width: 100%;
        gap: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        overflow-x: auto;
        padding-bottom: 0;
    }

    .carousel-hero .gallery-image-slider {
        padding-left: calc((100% - 340px) /2 );
        padding-right: calc((100% - 340px) /2 );
    }


    .gallery-slide-image {
        border-radius: 20px;
        width: 340px;
    }

    .gallery-slide-image img {
        aspect-ratio: 4 / 5;
        width: 100%;
        height: auto;
    }

    .gallery-slide-content {
        width: 275px;
        padding: 0;
        margin: 20px auto 0 auto;
        text-align: left;
    }

    .gallery-slide-content h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
        text-align: left;
    }

    .gallery-slide-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
    }

    /* --- Gallery Navigation --- */
    .gallery-nav {
        width: 100%;
        max-width: 370px;
        margin: 40px auto 0 auto;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        left: 0;
        transform: none;
    }

    .pause-control, 
    .nav-arrow-controls {
        display: none !important; 
    }

    .nav-center-controls {
        position: relative;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .dot-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px; 
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        padding: 16px 24px;
        width: auto;
    }

    .dot {
        height: 14px; 
        width: 14px;
        opacity: 0.3;
        border: none;
        background-color: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dot.active {
        width: 40px; 
        opacity: 1;
        background-color: var(--color-primary-gold);
    }

    /* --- Mastery Section --- */
    .phase-solution-mastery {
        padding: 80px 0;
        width: 100%;
        background-color: #121212;
    }
    .phase-stop-inner{
        text-align: left;
    }

    .mastery-inner {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mastery-hero-image {
        width: 100%; 
        margin-bottom: 30px;
    }

    .mastery-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 0;
        display: block;
    }

    .mastery-title, 
    .mastery-description {
        width: 275px;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        text-align: left;
    }

    .mastery-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .mastery-description {
        font-size: 1.05rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }

    /* --- Emotional Hero --- */
    .emotional-hero {
        width: 100%;
        height: 80vh; 
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .emotional-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% center; 
    }

    .emotional-content {
        width: 275px;
        margin: 0 auto;
        padding: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-impact-title {
        font-size: 32px;
        line-height: 1.1;
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* --- Selection Area --- */
    .selection-area {
        padding: 60px 0;
    }

    .selection-intro {
        width: 275px;
        margin: 0 auto 40px auto;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .selection-huge-title {
        font-size: 40px;
        text-align: left;
        width: 100%;
    }

    .selection-white-card {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .selection-grid {
        width: 320px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }

    .selection-col {
        flex: 1;
        width: 50%;
        margin: 0;
        text-align: left;
        padding: 0;
    }

    .selection-col:first-child {
        border: none;
        padding: 0;
    }

    .col-img {
        width: 100%;
        height: auto;
        margin: 0 auto 20px auto;
        display: block;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .selection-col .col-title,
    .selection-col .col-price {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .col-title {
        font-size: 20px;
        text-align: center;
        line-height: 1.1;
    }

    .col-price {
        font-size: 14px;
        text-align: center;
    }

    .col-actions {
        width: 100%;
        margin: 0;
        padding-bottom: 40px;
        margin-bottom: 40px;
        align-items: center;
        border-bottom: 1px solid #d2d2d7;
    }

    .col-actions .brand-pill-button {
        width: calc(100% - 35px);
        margin: 0;
    }

    .brand-pill-button {
        padding: 10px 12px;
        font-size: 13px;
        text-align: center;
        box-sizing: border-box;
    }
    .brand-text-link{
        font-size: 14px;
    }

    .spec-block {
        align-items: flex-start;
        width: 100%;
        margin-bottom: 32px;
    }

    .selection-col .spec-big,
    .selection-col .spec-small {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .spec-big {
        font-size: 18px;
        text-align: center;
    }

    .spec-small {
        font-size: 11px;
        text-align: center;
        line-height: 1.3;
    }


    /* --- Lead Authority --- */
    .lead-authority {
        padding: 60px 0;
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        background-color: #ffffff;
    }

    .authority-grid {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        gap: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .authority-image-side {
        width: 100%;
    }

    .profile-img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .studio-badges {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .authority-text-side {
        width: 275px;
        margin: 0 auto;
        text-align: left;
    }

    .display-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }

    .lead-text {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: left;
    }

    .authority-stats {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* --- Discovery Area --- */
    .discovery-area {
        padding: 60px 0;
        width: 100%;
        margin: 0 auto;
    }

    .discovery-card {
        width: 100%;
        border-radius: 0;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        background-color: #f5f5f7;
    }

    .discovery-content {
        padding: 40px 0;
        width: 275px;
        margin: 0 auto;
        box-sizing: border-box;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .discovery-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin: 8px 0 16px 0;
        color: #1d1d1f;
        text-align: left;
    }

    .discovery-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px;
        width: 100%;
        text-align: left;
    }

    .discovery-visual {
        width: 100%;
        max-width: 370px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .discovery-visual img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        margin: 0 10px 20px 10px; 
        width: calc(100% - 20px);
    }

    .discovery-area .brand-text-link {
        font-size: 17px;
        justify-content: flex-start;
        color: var(--color-primary-gold);
    }
}