/* Landing Page Custom Styles */
/* Max-width: 1350px layout */

/* CSS Variables - Brand Colors */
:root {
    --color-white: rgb(255, 255, 255);
    --color-black: rgb(0, 0, 0);
    --color-grey: rgb(69, 67, 65);
    --color-red: rgb(242, 0, 26);
    --color-beige: rgb(200, 175, 40);
}

/* Fonts */
body {
    font-family: 'Museo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Container */
.landing-container {
    min-height: 100vh;
    background: var(--color-black);
    padding: 0;
}

/* Content Wrapper - 1350px max-width constraint */
.landing-content-wrapper {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner Header */
.landing-banner {
    width: 100%;
    background: var(--color-white);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 18px 18px;
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.25) inset;
    max-height: 110px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.landing-banner.scrolled {
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-text {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-weight: 650;
    color: var(--color-red);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.banner-date {
    text-decoration: underline;
}

/* Footer - Full Width */
.landing-footer {
    width: 100%;
    background: var(--color-grey);
    color: var(--color-white);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.landing-footer-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.landing-footer-section h3 {
    color: var(--color-beige);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.landing-footer-section p,
.landing-footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    font-size: 14px;
}

.landing-footer-section a:hover {
    color: var(--color-beige);
}

.landing-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Hero Section - Full Width with Background Image */
.landing-hero {
    width: 100%;
    min-height: 600px;
    padding: 80px 0 100px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 15.11%, rgba(0, 0, 0, 0.36) 35.3%, #000 65.58%),
                url('/images/frontend/newLP/hero-section/hero-bg.webp') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.landing-hero-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Hero Left Content */
.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    width: 252px;
    height: 102.281px;
    aspect-ratio: 252.00/102.28;
    margin-bottom: 40px;
}

.hero-headline {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-subheadline {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    height: 54px;
    padding: 10px 20px;
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 650;
    text-decoration: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border: none;
}

.hero-btn-primary:hover {
    opacity: 0.9;
    color: var(--color-white);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-red);
    opacity: 0.7;
    font-weight: 600;
}

.hero-btn-secondary:hover {
    opacity: 1;
    color: var(--color-white);
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-proof-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-proof-stars {
    display: flex;
    gap: 4px;
}

.social-proof-text {
    font-family: 'Museo', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    color: var(--color-white);
}

.social-proof-reviews {
    font-family: 'Museo', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    color: var(--color-white);
    opacity: 0.5;
    margin: 0;
}

/* Hero Video Container */
.hero-video-container {
    flex-shrink: 0;
}

.hero-video-wrapper {
    width: 530px;
    height: 270px;
    border: 0.5px solid var(--color-red);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--color-black);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.video-placeholder svg {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder svg:hover {
    transform: scale(1.1);
}

/* Graduates Section */
.graduates-section {
    padding: 80px 0;
    background: var(--color-black);
}

.graduates-eyebrow {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 20px;
}

.graduates-headline {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 60px;
}

.graduates-slider-wrapper {
    width: 100%;
}

.graduates-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.graduates-mobile-nav {
    display: none;
}

.graduate-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.graduate-image-container {
    width: 320px;
    max-width: 320px;
    height: 470px;
    background: var(--color-red);
    border-radius: 60px 0 0 0;
    overflow: visible;
    position: relative;
}

.graduate-image {
    width: 110%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.graduate-name {
    font-family: 'Museo', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    margin: 10px 0 0 0;
}

.graduate-location {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
}

.graduate-salary {
    font-family: 'Museo', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-red);
    margin: 0;
}

/* Graduates CTA */
.graduates-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.graduates-cta-btn {
    background: var(--color-red);
    color: var(--color-white);
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-weight: 650;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.graduates-cta-btn:hover {
    opacity: 0.9;
    color: var(--color-white);
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: var(--color-black);
}

.courses-eyebrow {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 20px;
}

.courses-headline {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 60px;
}

.courses-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.course-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.course-card {
    width: 430px;
    height: 400px;
    border: 2px solid var(--color-red);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.course-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-label {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 10px 0;
    text-align: center;
}

.course-title {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    margin: 0 0 20px 0;
    text-align: center;
}

.course-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-details li {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.6;
}

.course-detail-label {
    color: var(--color-white);
    font-weight: 500;
}

.course-detail-value {
    color: var(--color-white);
    font-weight: 650;
}

.course-cta {
    width: 100%;
    max-width: 180px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-weight: 650;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    display: block;
}

.course-cta:hover {
    opacity: 0.9;
    color: var(--color-white);
}

/* Course Card Background Images */
.course-card-beginner {
    background-image: url('/images/frontend/newLP/cards/card-1.webp');
}

.course-card-professional {
    background-image: url('/images/frontend/newLP/cards/card-2.webp');
}

.course-card-expert {
    background-image: url('/images/frontend/newLP/cards/card-3.webp');
}

/* Bestseller Badge */
.bestseller-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-beige);
    color: var(--color-white);
    font-family: 'Museo', sans-serif;
    font-size: 14px;
    font-weight: 650;
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    z-index: 3;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Course Subtitle */
.course-subtitle {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 20px 0;
    text-align: center;
    opacity: 0.9;
}

/* Qualifier Section */
.qualifier-section {
    padding: 80px 0;
    background: var(--color-black);
}

.qualifier-eyebrow {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 20px;
}

.qualifier-headline {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 60px;
}

.qualifier-boxes {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.qualifier-box {
    width: 385px;
    max-width: 385px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.qualifier-question {
    width: 100%;
    height: 95px;
    border-radius: 10px;
    background: #454341;
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.50) inset;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    cursor: pointer;
    transition: border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.qualifier-box.active .qualifier-question {
    border-radius: 10px 10px 0 0;
    margin-bottom: 5px;
}

.qualifier-chevron {
    width: 95px;
    min-width: 95px;
    height: 95px;
    background: var(--color-white);
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.25) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qualifier-chevron svg {
    width: 49px;
    height: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qualifier-box.active .qualifier-chevron svg {
    transform: rotate(180deg);
}

.qualifier-question-text {
    font-family: 'Museo', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-red);
    flex: 1;
    padding: 20px;
}

.qualifier-answer {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    background: #D9D9D9;
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.50) inset;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.qualifier-box.active .qualifier-answer {
    max-height: 500px;
    padding: 20px;
}

.qualifier-answer p {
    font-family: "Fedra Sans Normal", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
}

/* Ideal Candidate Section */
.ideal-candidate-section {
    padding: 80px 0;
    background: var(--color-black);
}

.ideal-candidate-eyebrow {
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.ideal-candidate-headline {
    font-family: 'Museo', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
}

.ideal-candidate-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 60px;
    max-width: 1200px;
}

.ideal-candidate-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.ideal-candidate-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.ideal-candidate-item span {
    font-family: 'Fedra Sans Normal', sans-serif;
    font-size: 21.927px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    line-height: 1.4;
}

.ideal-candidate-cta {
    display: inline-block;
    padding: 10px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-weight: 650;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    width: fit-content;
    transition: background 0.3s ease;
}

.ideal-candidate-cta:hover {
    background: #d10015;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: var(--color-black);
}

.founder-eyebrow {
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.founder-headline {
    font-family: 'Museo', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
}

.founder-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.founder-image-container {
    width: 320px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 60px 0 0 0;
    overflow: visible;
    background: #F2001A;
    position: relative;
}

.founder-image {
    width: 140%;
    height: auto;
    display: block;
    position: relative;
    top: -56px;
    right: 30px;
}

.founder-copy {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-copy p {
    font-family: 'Fedra Sans Normal', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
    line-height: 1.6;
}

.founder-quote {
    font-family: 'Museo', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 650;
    color: #F2001A !important;
    margin-top: 20px;
    text-transform: uppercase;
}

.founder-read-more {
    display: none;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--color-black);
}

.reviews-eyebrow {
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.reviews-headline {
    font-family: 'Museo', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
}

/* Google Rating Box */
.google-rating-box {
    max-width: 1400px;
    margin: 0 auto 60px;
    border-radius: 16px;
    background: #454341;
    box-shadow: -3.003px -1.502px 12.012px 0 rgba(0, 0, 0, 0.08), 15.015px 10.511px 30.03px 0 rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.google-rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.google-rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.google-rating-score {
    font-size: 36.036px;
    font-style: normal;
    font-weight: 800;
    color: var(--color-red);
}

.google-stars {
    display: flex;
    gap: 5px;
}

.google-rating-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-text {
    font-size: 21.424px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-white);
}

.google-average {
    font-size: 10.712px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-white);
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo svg {
    width: 42px;
    height: 42px;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
    max-width: 1442px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.reviews-cards-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-cards {
    display: flex;
    gap: 20px;
    width: 100%;
}

.review-card {
    max-width: 310px;
    min-width: 310px;
    width: 310px;
    min-height: 350px;
    border-radius: 16px;
    background: rgba(59, 64, 71, 0.81);
    padding: 30px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.review-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.review-header-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.review-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    color: var(--color-white);
}

.review-rating {
    display: flex;
    gap: 5px;
    align-items: center;
}

.review-rating svg {
    width: 23px;
    height: 23px;
}

.review-rating svg:first-child {
    width: 23px;
    height: 23px;
}

.review-rating svg:not(:first-child) {
    width: 26px;
    height: 26px;
}

.review-card-content {
    position: relative;
}

.review-card-content p {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    color: #D5D5D5;
    margin: 0;
    line-height: 1.5;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.review-card-content p.expanded {
    max-height: none;
}

.review-read-more {
    background: none;
    border: none;
    color: var(--color-red);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0 0 0;
    margin-top: 10px;
    display: inline-block;
    text-decoration: underline;
}

.review-read-more:hover {
    opacity: 0.8;
}

.review-read-more.hidden {
    display: none;
}

.review-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.review-arrow:hover {
    opacity: 0.8;
}

.review-arrow svg {
    width: 40px;
    height: 40px;
}

/* Review Slider Dots - Hidden on Desktop */
.review-slider-dots {
    display: none;
}

/* Graduates Gallery Section */
.graduates-gallery-section {
    padding: 80px 0;
    background: #000;
}

.graduates-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 38px 20px;
    justify-content: center;
}

.graduates-row {
    display: contents;
}

.graduates-gallery-grid img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* CTA Section with Image */
.cta-image-section {
    padding: 80px 0;
    background: #000;
}

.cta-image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-image-content {
    flex: 1;
}

.cta-image-headline {
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    line-height: normal;
    color: var(--color-white);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.cta-image-headline .text-red {
    color: var(--color-red);
}

.cta-image-sub {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 30px 0;
}

.cta-image-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-image-buttons .landing-btn {
    height: 54px;
    padding: 10px 20px;
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 650;
    text-decoration: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-image-buttons .landing-btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border: none;
}

.cta-image-buttons .landing-btn-primary:hover {
    opacity: 0.9;
    color: var(--color-white);
}

.cta-image-buttons .landing-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-red);
    opacity: 0.7;
    font-weight: 600;
}

.cta-image-buttons .landing-btn-secondary:hover {
    opacity: 1;
    color: var(--color-white);
}

.cta-image-visual {
    position: relative;
    flex-shrink: 0;
}

.cta-image-box {
    width: 408px;
    height: 445px;
    background: var(--color-red);
    border-radius: 60px 0 0 0;
}

.cta-image-photo {
    position: absolute;
    top: -92px;
    left: 0px;
    width: 408px;
    height: 546px;
    object-fit: cover;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #000;
}

.faq-eyebrow {
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.faq-headline {
    font-family: 'Museo', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    background: var(--color-grey);
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.50) inset;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    align-items: stretch;
    min-height: 60px;
    cursor: pointer;
}

.faq-item.active .faq-header {
    background: var(--color-white);
}

.faq-icon {
    width: 120px;
    min-height: 60px;
    background: var(--color-white);
    border-radius: 10px 0 0 0;
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.25) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-question {
    flex: 1;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.faq-question span {
    font-family: 'Museo', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.25) inset;
}

.faq-item.active .faq-question span {
    color: var(--color-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-grey);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 15px 30px;
}

.faq-answer p {
    font-family: 'Fedra Sans Normal', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.landing-footer {
    background: #454341;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.footer-social-icons {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.footer-social-link {
    display: block;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.8;
}

.footer-social-link img {
    width: 51px;
    height: 71px;
    display: block;
}

.footer-info-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-info {
    font-family: 'Fedra Sans Normal', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
    text-align: left;
}

.footer-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px auto;
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-family: 'Fedra Sans Normal', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
}

/* Guarantee Badge */
.guarantee-badge {
    position: relative;
    width: 200px;
    height: 200px;
    background: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    margin: 0 auto;
    top: 95px;
    z-index: 10;
}

/* Guarantee Section */
.guarantee-section {
    height: 175px;
    background: #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    margin-top: 20px;
}

.guarantee-badge-image {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    display: block;
}

.guarantee-text {
    font-family: 'Museo', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-red);
    text-align: center;
    margin: 40px 0 0 0;
    max-width: 690px;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    background: var(--color-black);
    padding: 80px 0;
}

.testimonials-eyebrow {
    font-family: 'Museo', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.testimonials-headline {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

/* Testimonials Slider */
.testimonials-slider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.slider-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    opacity: 1 !important;
}

.slider-arrow svg {
    display: block;
}

.testimonials-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-item {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
}

.testimonial-name {
    font-family: 'Museo', sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    text-align: center;
    height: 40px;
}

.testimonial-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 2px solid var(--color-red);
    border-radius: 45px;
    overflow: hidden;
    background: var(--color-black);
}

.testimonial-video .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-video .video-placeholder svg {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.testimonial-video .video-placeholder svg:hover {
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
}

.slider-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-grey);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    width: 29px;
    height: 29px;
    background: var(--color-red);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--color-black);
}

/* Metrics Section */
.metrics-section {
    padding: 160px 0 80px;
    background: var(--color-black);
}

.metrics-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 230px;
    max-width: 230px;
    gap: 20px;
}

.metric-number {
    font-family: 'Museo', sans-serif;
    font-size: 70.254px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-red);
    line-height: 1;
    background: var(--color-white);
    border-radius: 18.915px 0 0 0;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.metric-label {
    font-family: 'Museo', sans-serif;
    font-size: 16.645px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Process Section */
.process-section {
    padding: 200px 0 80px;
    background: var(--color-black);
}

.process-container {
    display: grid;
    grid-template-columns: 295px minmax(100px, 200px) 295px minmax(100px, 200px) 295px;
    grid-template-rows: auto auto auto;
    justify-content: center;
    column-gap: 20px;
    row-gap: 20px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 280px;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-box {
    width: 295px;
    height: 100px;
    background: var(--color-red);
    border-radius: 30.689px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.process-box.final {
    width: 750px;
    height: 180px;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
}

.process-text {
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    flex: 1;
    z-index: 2;
}

.process-text-final {
    font-family: 'Museo', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-red);
    text-align: center;
}

.process-number {
    font-family: 'Museo', sans-serif;
    font-size: 76.126px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
    flex-shrink: 0;
    z-index: 2;
}

.process-box.final .process-number {
    color: var(--color-red);
    position: absolute;
    right: 30px;
    bottom: 20px;
}

.process-cta {
    font-family: 'Museo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    background: var(--color-red);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.process-cta:hover {
    opacity: 0.9;
    color: var(--color-white);
}

/* Process Connectors */
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-connector.horizontal {
    width: 100%;
    min-width: 100px;
    max-width: 200px;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        var(--color-white) 0,
        var(--color-white) 10px,
        transparent 10px,
        transparent 20px
    );
}

.process-connector.horizontal.reverse {
    width: 100%;
    min-width: 100px;
    max-width: 200px;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        var(--color-white) 0,
        var(--color-white) 10px,
        transparent 10px,
        transparent 20px
    );
}

.process-connector.vertical-right {
    width: 4px;
    height: 150px;
    background: repeating-linear-gradient(
        to bottom,
        var(--color-white) 0,
        var(--color-white) 10px,
        transparent 10px,
        transparent 20px
    );
    justify-self: center;
}

/* Step 6 L-shaped connector */
.process-step:nth-child(11)::after {
    content: '';
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 130px;
    background: repeating-linear-gradient(
        to bottom,
        var(--color-white) 0,
        var(--color-white) 10px,
        transparent 10px,
        transparent 20px
    );
}

.process-step:nth-child(11)::before {
    content: '';
    position: absolute;
    bottom: -130px;
    left: 50%;
    width: 400px;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        var(--color-white) 0,
        var(--color-white) 10px,
        transparent 10px,
        transparent 20px
    );
}

.process-connector.vertical-left {
    display: none;
}

/* Grid positioning for desktop */
/* Row 1: Step 1 - Connector - Step 2 - Connector - Step 3 */
.process-step:nth-child(1) { grid-column: 1; grid-row: 1; } /* Step 1 */
.process-connector.horizontal:nth-child(2) { grid-column: 2; grid-row: 1; } /* Connector 1-2 */
.process-step:nth-child(3) { grid-column: 3; grid-row: 1; } /* Step 2 */
.process-connector.horizontal:nth-child(4) { grid-column: 4; grid-row: 1; } /* Connector 2-3 */
.process-step:nth-child(5) { grid-column: 5; grid-row: 1; } /* Step 3 */

/* Row 2: Vertical connector from Step 3 */
.process-connector.vertical-right:nth-child(6) { grid-column: 5; grid-row: 2; } /* Connector 3-4 */

/* Row 3: Step 6 - Connector - Step 5 - Connector - Step 4 */
.process-step:nth-child(7) { grid-column: 5; grid-row: 3; } /* Step 4 */
.process-connector.horizontal.reverse:nth-child(8) { grid-column: 4; grid-row: 3; } /* Connector 4-5 */
.process-step:nth-child(9) { grid-column: 3; grid-row: 3; } /* Step 5 */
.process-connector.horizontal.reverse:nth-child(10) { grid-column: 2; grid-row: 3; } /* Connector 5-6 */
.process-step:nth-child(11) { grid-column: 1; grid-row: 3; } /* Step 6 */

/* Hidden connector placeholder */
.process-connector.vertical-left:nth-child(12) { display: none; } /* Connector 6-7 */

/* Step 7 positioned absolutely outside grid */
.process-step-final:nth-child(13) {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
} /* Step 7 */

.process-step-final .process-box.final {
    margin-top: 25px;
}

/* Hide mobile CTA on desktop */
.process-cta-mobile {
    display: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1110px;
    width: 100%;
    height: 95px;
    border-radius: 10px;
    background: var(--color-grey);
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.50) inset;
    margin: 0 auto;
}

.benefit-icon {
    width: 120px;
    height: 95px;
    background: var(--color-white);
    border-radius: 10px 0 0 10px;
    box-shadow: 3px 4px 45px 0 rgba(0, 0, 0, 0.25) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
    padding-right: 20px;
}

.benefit-title {
    font-family: 'Museo', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 650;
    color: var(--color-white);
    margin-bottom: 5px;
}

.benefit-description {
    font-family: 'Fedra Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Content Section */
.landing-content {
    padding: 80px 0;
}

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

.landing-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.landing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.landing-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.landing-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.landing-cta {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    margin-bottom: 80px;
    color: white;
}

.landing-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.landing-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.landing-btn {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #f5576c;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    color: #f5576c;
    text-decoration: none;
}

.landing-btn:active {
    transform: translateY(-1px);
}

/* Form Section */
.landing-form-section {
    padding: 80px 0;
    text-align: center;
}

.landing-form-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.landing-form-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .landing-content-wrapper,
    .landing-footer-inner,
    .landing-hero-inner {
        max-width: 1200px;
    }
}

@media (max-width: 1380px) {
    /* Course Cards - Initial scaling */
    .courses-cards {
        gap: 25px;
        padding: 0 20px;
    }

    .course-card {
        width: 380px;
        height: 390px;
    }

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

    .course-label {
        font-size: 19px;
    }

    .course-details li {
        font-size: 19px;
    }
}

@media (max-width: 1200px) {
    .landing-content-wrapper,
    .landing-footer-inner,
    .landing-hero-inner {
        max-width: 960px;
    }

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

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

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

    .hero-subheadline {
        font-size: 18px;
    }

    /* Course Cards Responsive */
    .courses-cards {
        gap: 20px;
        padding: 0 20px;
    }

    .course-card {
        width: 350px;
        height: 380px;
    }

    .course-title {
        font-size: 34px;
    }

    .course-label {
        font-size: 18px;
    }

    .course-details li {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .landing-content-wrapper,
    .landing-footer-inner,
    .landing-hero-inner {
        padding: 0 30px;
    }

    .landing-hero {
        padding: 80px 0 60px;
    }

    .landing-hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left {
        max-width: 100%;
        text-align: center;
        padding-top: 10px!important;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-social-proof {
        align-items: center;
    }

    .hero-video-container {
        margin: 0 auto;
        padding-top: 10px;
    }

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

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

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

    .hero-subheadline {
        font-size: 18px;
    }

    .landing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .landing-cta h2 {
        font-size: 36px;
    }

    .landing-cta p {
        font-size: 18px;
    }

    .landing-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Course Cards - Further adjustments */
    .courses-cards {
        gap: 15px;
    }

    .course-card {
        width: 300px;
        height: 360px;
    }

    .course-card-content {
        padding: 20px;
    }

    .course-title {
        font-size: 30px;
    }

    .course-label {
        font-size: 16px;
    }

    .course-details li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }

    body,
    html {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
        touch-action: pan-y !important;
        overscroll-behavior-x: none !important;
    }

    .landing-container {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
        touch-action: pan-y !important;
    }

    .landing-content-wrapper,
    .landing-footer-inner,
    .landing-hero-inner {
        padding: 0 20px;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .landing-banner,
    .landing-footer,
    section {
        max-width: 100vw;
        overflow-x: hidden !important;
        box-sizing: border-box;
        width: 100%;
    }

    .landing-banner {
        padding: 15px 0;
        max-height: 80px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    .banner-text {
        font-size: 20px;
        padding: 0 15px;
        line-height: 1.2;
    }

    .landing-hero {
        padding: 10px 0 20px;
        min-height: 500px;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 15.11%, rgba(0, 0, 0, 0.36) 35.3%, #000 65.58%),
                    var(--color-black);
        background-size: cover;
        background-position: center;
    }

    .landing-hero-inner {
        flex-direction: column-reverse;
    }

    .hero-content-left {
        text-align: center;
        padding-top: 60px;
    }

    .hero-logo {
        display: none;
    }

    .hero-headline {
        font-size: 28px;
        font-weight: 650;
    }

    .hero-subheadline {
        font-size: 16px;
        font-weight: 500;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-social-proof {
        align-items: flex-start;
    }

    .hero-video-container {
        width: 100%;
        max-width: 100%;
    }

    .hero-video-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 530 / 270;
    }

    .social-proof-text {
        font-size: 14px;
        font-weight: 500;
    }

    .social-proof-reviews {
        font-size: 14px;
        font-weight: 500;
    }

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

    .landing-subtitle {
        font-size: 16px;
    }

    .landing-content {
        padding: 60px 0;
    }

    .landing-card {
        padding: 30px 20px;
    }

    .landing-card h2 {
        font-size: 24px;
    }

    .landing-cta {
        padding: 60px 30px;
        margin-bottom: 60px;
    }

    .landing-cta h2 {
        font-size: 28px;
    }

    .landing-cta p {
        font-size: 16px;
    }

    .landing-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .landing-form-section {
        padding: 60px 0;
    }

    .landing-form-section h2 {
        font-size: 32px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
        touch-action: pan-y !important;
        position: relative;
    }

    .testimonials-eyebrow,
    .testimonials-headline {
        display: none;
    }

    .testimonials-slider {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        touch-action: pan-y !important;
    }

    .testimonials-slider-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
        overflow-x: clip !important;
        position: relative;
        touch-action: pan-y !important;
        transform: translateZ(0);
        will-change: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonials-track {
        gap: 15px !important;
        width: max-content;
        touch-action: pan-y !important;
        pointer-events: none;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        padding: 5px;
        pointer-events: auto;
        touch-action: auto;
        z-index: 10;
        background: transparent;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .slider-dots {
        display: none;
    }

    .testimonial-item {
        flex: 0 0 100vw !important;
        max-width: 100vw !important;
        width: 100vw !important;
        min-width: 100vw !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        touch-action: auto;
    }

    .testimonial-video {
        order: 1;
        width: 66.67%;
        max-width: 280px;
        max-height: 450px;
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        transform: translateX(-7px);
    }

    .testimonial-name {
        font-size: 22px;
        order: 2;
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: center;
    }

    .testimonial-quote {
        font-size: 16px;
        order: 3;
        margin-bottom: 0;
        text-align: center;
    }

    /* Benefits Mobile */
    .benefits-section {
        padding: 60px 0;
    }

    .benefit-item {
        flex-direction: column;
        height: auto;
        padding: 0;
        gap: 0;
    }

    .benefit-icon {
        width: 100px;
        height: 80px;
        border-radius: 0 0 10px 10px;
        align-self: center;
    }

    .benefit-content {
        padding: 20px;
        text-align: left;
    }

    .benefit-title {
        font-size: 20px;
        font-style: normal;
        font-weight: 650;
        margin-bottom: 10px;
        text-transform: none;
    }

    .benefit-description {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
    }

    /* Metrics Mobile */
    .metrics-section {
        padding: 30px 0 60px;
    }

    .metrics-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: start;
    }

    .metric-item {
        flex-direction: column;
        max-width: 100%;
        gap: 20px;
        width: auto;
        align-items: flex-start;
    }

    .metric-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .metric-number {
        font-size: 26px;
        font-weight: 650;
        padding: 15px;
        width: auto;
        min-width: 145px;
        flex-shrink: 0;
        margin: 0 auto;
    }

    .metric-label {
        font-size: 20px;
        font-weight: 650;
        text-align: center;
        text-transform: lowercase;
    }

    /* Process Mobile */
    .process-section {
        padding: 40px 0 60px;
    }

    .process-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 60px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .process-step,
    .process-step-final {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 215px;
    }

    .process-step-final {
        max-width: 335px;
        position: static !important;
        transform: none !important;
    }

    .process-box {
        width: 100%;
        max-width: 215px;
        height: auto;
        min-height: 100px;
        padding: 15px;
    }

    .process-box.final {
        width: 100%;
        max-width: 335px;
        height: 105px;
        padding: 15px 20px;
        position: relative;
        flex-direction: row;
        align-items: center;
        margin-top: 0px!important;
        justify-content: flex-start;
    }

    .process-text {
        font-size: 16.477px;
        font-weight: 650;
    }

    .process-text-final {
        font-size: 20px;
        font-weight: 650;
        text-align: left;
        flex: 1;
        padding-right: 60px;
    }

    .process-number {
        font-size: 69.685px;
        font-weight: 600;
    }

    .process-box.final .process-number {
        font-size: 69.685px;
        position: absolute;
        right: 15px;
        bottom: 10px;
    }

    .process-box.final .process-cta {
        display: none;
    }

    /* Hide all desktop connectors */
    .process-connector {
        display: none !important;
    }

    /* Hide desktop L-shaped connector on step 6 */
    .process-step:nth-child(11)::before {
        content: none !important;
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        visibility: hidden !important;
    }

    /* Reset desktop positioning on step 6 */
    .process-step:nth-child(11) {
        position: static !important;
        overflow: visible;
    }

    /* Mobile connector lines - positioned relative to cards */
    /* Step 1 -> Step 2: LEFT aligned line */
    .process-step:nth-child(1)::after {
        content: '';
        width: 4px;
        height: 80px;
        background: repeating-linear-gradient(
            to bottom,
            var(--color-white) 0,
            var(--color-white) 10px,
            transparent 10px,
            transparent 20px
        );
        align-self: flex-start;
        margin-left: 20px;
        margin-top: 20px;
    }

    /* Step 2 -> Step 3: RIGHT aligned line */
    .process-step:nth-child(3)::after {
        content: '';
        width: 4px;
        height: 80px;
        background: repeating-linear-gradient(
            to bottom,
            var(--color-white) 0,
            var(--color-white) 10px,
            transparent 10px,
            transparent 20px
        );
        align-self: flex-end;
        margin-right: 20px;
        margin-top: 20px;
    }

    /* Step 3 -> Step 4: LEFT aligned line */
    .process-step:nth-child(5)::after {
        content: '';
        width: 4px;
        height: 80px;
        background: repeating-linear-gradient(
            to bottom,
            var(--color-white) 0,
            var(--color-white) 10px,
            transparent 10px,
            transparent 20px
        );
        align-self: flex-start;
        margin-left: 20px;
        margin-top: 20px;
    }

    /* Step 4 -> Step 5: RIGHT aligned line */
    .process-step:nth-child(7)::after {
        content: '';
        width: 4px;
        height: 80px;
        background: repeating-linear-gradient(
            to bottom,
            var(--color-white) 0,
            var(--color-white) 10px,
            transparent 10px,
            transparent 20px
        );
        align-self: flex-end;
        margin-right: 20px;
        margin-top: 20px;
    }

    /* Step 5 -> Step 6: LEFT aligned line */
    .process-step:nth-child(9)::after {
        content: '';
        width: 4px;
        height: 80px;
        background: repeating-linear-gradient(
            to bottom,
            var(--color-white) 0,
            var(--color-white) 10px,
            transparent 10px,
            transparent 20px
        );
        align-self: flex-start;
        margin-left: 20px;
        margin-top: 20px;
    }

    /* Step 6 -> Step 7: CENTER aligned line - match spacing of other connectors */
    .process-step:nth-child(11)::after {
        content: '';
        position: static !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
        width: 4px;
        height: 80px;
        background: repeating-linear-gradient(
            to bottom,
            var(--color-white) 0,
            var(--color-white) 10px,
            transparent 10px,
            transparent 20px
        );
        align-self: center;
        margin-top: 20px;
    }

    /* CTA button below final card */
    .process-cta-mobile {
        display: block;
        width: 100%;
        max-width: 335px;
        background: var(--color-red);
        color: var(--color-white);
        font-family: 'Museo', sans-serif;
        font-size: 18px;
        font-weight: 650;
        padding: 10px 20px;
        border-radius: 10px;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        box-sizing: border-box;
        margin-top: 20px;
        transition: opacity 0.3s ease;
    }

    .process-cta-mobile:hover {
        opacity: 0.9;
        color: var(--color-white);
    }

    /* Graduates Section Mobile */
    .graduates-section {
        padding: 60px 0;
    }

    .graduates-eyebrow {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .graduates-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .graduates-slider-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .graduates-cards {
        display: flex;
        flex-direction: row;
        gap: 0;
        align-items: center;
        padding: 0;
        transition: transform 0.3s ease;
        width: 300%;
    }

    .graduate-card {
        width: 33.333%;
        min-width: 33.333%;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .graduate-image-container {
        width: 100%;
        max-width: 280px;
        height: 400px;
        margin: 0 auto;
    }

    .graduate-name,
    .graduate-location,
    .graduate-salary {
        width: 100%;
        max-width: 280px;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .graduate-name {
        font-size: 24px;
    }

    .graduate-location {
        font-size: 18px;
    }

    .graduate-salary {
        font-size: 24px;
    }

    .graduates-mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: 30px;
    }

    .graduate-arrow {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        transition: opacity 0.3s ease;
    }

    .graduate-arrow:hover {
        opacity: 0.8;
    }

    .graduate-arrow svg {
        display: block;
    }

    /* Graduates CTA Mobile */
    .graduates-cta-container {
        margin-top: 40px;
        padding: 0 20px;
    }

    .graduates-cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Courses Section Mobile */
    .courses-section {
        padding: 60px 0;
    }

    .courses-eyebrow {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .courses-headline {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 0;
    }

    .courses-cards {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 0;
    }

    .course-card-wrapper {
        width: 100%;
        max-width: 360px;
    }

    .course-card {
        width: 100%;
        height: auto;
        min-height: 315px;
    }

    .course-label {
        font-size: 16px;
        font-weight: 500;
    }

    .course-title {
        font-size: 31.586px;
        font-weight: 650;
    }

    .course-details li {
        font-size: 16px;
        font-weight: 500;
    }

    .course-cta {
        max-width: 100%;
        width: 100%;
    }

    /* Qualifier Section Mobile */
    .qualifier-section {
        padding: 60px 0;
    }

    .qualifier-eyebrow {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .qualifier-headline {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 0;
    }

    .qualifier-boxes {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0;
    }

    .qualifier-box {
        width: 100%;
        max-width: 100%;
    }

    .qualifier-question {
        height: auto;
        min-height: 95px;
        padding: 0;
    }

    .qualifier-question-text {
        font-size: 18px;
    }

    .qualifier-chevron {
        width: 25px;
    }

    .qualifier-answer p {
        font-size: 16px;
    }

    /* Reviews Section Mobile */
    .reviews-section {
        padding: 60px 20px;
    }

    .reviews-eyebrow {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin: 0 0 15px 0;
    }

    .reviews-headline {
        font-size: 26px;
        font-style: normal;
        font-weight: 650;
        margin: 0 0 40px 0;
    }

    .google-rating-box {
        margin: 0 auto 40px;
        padding: 25px;
    }

    .google-rating-content {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

    .google-rating-score {
        font-size: 28px;
    }

    .google-stars svg {
        width: 14px;
        height: 14px;
    }

    .google-text {
        font-size: 18px;
    }

    .google-average {
        font-size: 9px;
    }

    .google-logo {
        position: static;
        transform: none;
        margin-top: 0;
    }

    .google-logo svg {
        width: 36px;
        height: 36px;
    }

    .reviews-slider-wrapper {
        gap: 0;
        padding: 0;
        overflow: visible;
        flex-direction: column;
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .reviews-cards-container {
        flex: 1;
        overflow: visible;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        position: relative;
    }

    /* Gradient overlays to show peek of next/previous cards */
    .reviews-cards-container::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
        z-index: 2;
        pointer-events: none;
    }

    .reviews-cards-container::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
        z-index: 2;
        pointer-events: none;
    }

    .reviews-cards {
        gap: 15px;
        touch-action: pan-y;
        transition: transform 0.3s ease;
        padding: 0 40px;
    }

    .review-card {
        max-width: calc(100vw - 120px);
        min-width: calc(100vw - 120px);
        width: calc(100vw - 120px);
        padding: 20px;
        flex-shrink: 0;
        box-sizing: border-box;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    /* Highlight the active/center card */
    .review-card.active {
        opacity: 1;
    }

    .review-card-header {
        gap: 12px;
        margin-bottom: 15px;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
    }

    .review-name {
        font-size: 18px;
    }

    .review-rating svg {
        width: 20px;
        height: 20px;
    }

    .review-rating svg:first-child {
        width: 17px;
        height: 17px;
    }

    .review-rating svg:not(:first-child) {
        width: 20px;
        height: 20px;
    }

    .review-card-content p {
        font-size: 16.015px;
        font-style: normal;
        font-weight: 300;
        max-height: 100px;
    }

    .review-read-more {
        font-size: 14px;
        margin-top: 8px;
    }

    .review-arrow {
        display: none;
    }

    /* Review Slider Dots (Mobile) */
    .review-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .review-slider-dot {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--color-grey);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .review-slider-dot.active {
        width: 29px;
        height: 29px;
        background: var(--color-red);
    }

    /* Graduates Gallery Mobile */
    .graduates-gallery-section {
        padding: 60px 0;
        overflow: hidden;
        position: relative;
    }

    .graduates-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    /* Row wrapper to hold scroll indicators */
    .graduates-gallery-grid > div {
        position: relative;
    }

    .graduates-row {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 40px;
        position: relative;
    }

    .graduates-row::-webkit-scrollbar {
        display: none;
    }

    /* Subtle scroll indicators - Fixed on screen */
    .graduates-gallery-section::before {
        content: '‹';
        position: fixed;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 32px;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.6);
        pointer-events: none;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .graduates-gallery-section::after {
        content: '›';
        position: fixed;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 32px;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.6);
        pointer-events: none;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Show arrows only when section is in view */
    .graduates-gallery-section.section-in-view::before,
    .graduates-gallery-section.section-in-view::after {
        opacity: 1;
    }

    /* Hide specific arrows based on scroll position */
    .graduates-gallery-section.section-in-view.hide-left-arrow::before {
        opacity: 0;
    }

    .graduates-gallery-section.section-in-view.hide-right-arrow::after {
        opacity: 0;
    }

    .graduates-gallery-grid img {
        width: 260px;
        height: 260px;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 10px;
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }

    .graduates-gallery-grid img.active {
        opacity: 1;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-icon {
        width: 60px;
        min-height: 60px;
    }

    .faq-icon svg {
        width: 15px;
        height: 27px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        text-transform: capitalize;
    }

    .faq-answer-content {
        padding: 15px 20px;
    }

    .faq-answer p {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
    }

    /* CTA Section with Image Mobile */
    .cta-image-section {
        padding: 60px 20px;
    }

    .cta-image-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .cta-image-content {
        text-align: left;
    }

    .cta-image-headline {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-image-sub {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .cta-image-buttons {
        justify-content: flex-start;
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }

    .cta-image-buttons .landing-btn {
        height: 50px;
        padding: 10px 20px;
        font-size: 16px;
        width: 100%;
    }

    .cta-image-visual {
        width: 100%;
        max-width: 350px;
    }

    .cta-image-box {
        width: 100%;
        height: 380px;
        border-radius: 40px 0 0 0;
    }

    .cta-image-photo {
        width: 101%;
        height: 380px;
        top: 4px;
        left: -2px;
    }

    /* Guarantee Section Mobile */
    .guarantee-badge {
        width: 125px;
        height: 125px;
        top: 50px;
        padding: 7px;
    }

    .guarantee-section {
        height: 105px;
        margin-top: 20px;
    }

    .guarantee-badge-image {
        width: calc(100% - 14px);
        height: calc(100% - 14px);
    }

    .guarantee-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 650;
        margin: 30px 0 0 0;
        padding: 0 20px;
    }

    /* Ideal Candidate Section Mobile */
    .ideal-candidate-section {
        padding: 60px 20px;
    }

    .ideal-candidate-eyebrow {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .ideal-candidate-headline {
        font-size: 26px;
        font-style: normal;
        font-weight: 650;
        margin-bottom: 40px;
        padding: 0;
    }

    .ideal-candidate-list {
        margin-bottom: 0;
    }

    .ideal-candidate-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .ideal-candidate-item svg {
        width: 21px;
        height: 14px;
        margin-top: 3px;
    }

    .ideal-candidate-item span {
        font-family: 'Fedra Sans Normal', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
    }

    .ideal-candidate-cta {
        display: none;
    }

    /* Founder Section Mobile */
    .founder-section {
        padding: 60px 20px;
    }

    .founder-eyebrow {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .founder-headline {
        font-size: 26px;
        font-style: normal;
        font-weight: 650;
        margin-bottom: 40px;
    }

    .founder-content {
        flex-direction: column;
        gap: 30px;
    }

    .founder-image-container {
        width: 238px;
        height: 260px;
        border-radius: 60px 0 0 0;
        background: #F2001A;
        margin: 0 auto;
    }

    .founder-image {
        width: 140%;
        height: auto;
        position: relative;
        top: -41px;
        right: 25px;
    }

    .founder-copy {
        width: 100%;
        position: relative;
    }

    .founder-copy p {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
    }

    .founder-copy:not(.expanded) p:nth-child(2) {
        max-height: 50px;
        overflow: hidden;
        position: relative;
    }

    .founder-copy:not(.expanded) p:nth-child(2)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(to bottom, transparent, var(--color-black));
        pointer-events: none;
    }

    .founder-copy p:nth-child(n+3):not(.founder-quote) {
        display: none;
    }

    .founder-copy.expanded p:nth-child(n+2):not(.founder-quote) {
        display: block;
        max-height: none;
    }

    .founder-copy.expanded p:nth-child(2)::after {
        display: none;
    }

    .founder-quote {
        font-size: 20px !important;
        font-style: normal !important;
        font-weight: 650 !important;
        margin-top: 30px;
        text-transform: none !important;
        text-align: center !important;
    }

    .founder-read-more {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: var(--color-red);
        font-family: 'Museo', sans-serif;
        font-size: 14px;
        font-weight: 650;
        text-transform: uppercase;
        margin-top: 15px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .founder-read-more svg {
        transition: transform 0.3s ease;
    }

    .founder-copy.expanded .founder-read-more svg {
        transform: rotate(180deg);
    }

    .landing-footer {
        margin-top: 60px;
        padding: 30px 0 15px;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        min-height: 450px;
    }

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

    .hero-subheadline {
        font-size: 14px;
    }

    .hero-btn {
        font-size: 16px;
        height: 48px;
        padding: 10px 15px;
    }

    .hero-video-wrapper {
        width: 100%;
        max-width: 392px;
        height: 200px;
    }

    .social-proof-text,
    .social-proof-reviews {
        font-size: 16px;
    }

    .landing-title {
        font-size: 28px;
    }

    .landing-subtitle {
        font-size: 14px;
    }

    .landing-card h2 {
        font-size: 20px;
    }

    .landing-card p {
        font-size: 14px;
    }

    .landing-cta h2 {
        font-size: 24px;
    }

    .landing-cta p {
        font-size: 14px;
    }

    .landing-logo {
        font-size: 20px;
    }

    .landing-nav a {
        font-size: 14px;
    }

    /* Footer Mobile */
    .landing-footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-social-icons {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-social-link img {
        width: 25px;
        height: 35px;
    }

    .footer-info-container {
        width: 100%;
        align-items: flex-start;
        padding-bottom: 30px;
    }

    .footer-info {
        text-align: left;
    }

    .footer-divider {
        display: none;
    }

    .footer-bottom {
        text-align: center;
    }
}
