@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    /* Refined Luxury Palette */
    --clr-bg-pearl: #FAFAFA;
    --clr-bg-cream: #F5EFEB;
    /* Very subtle warm organic tone */
    --clr-bg-glass: rgba(250, 250, 250, 0.7);

    --clr-text-navy: #1C2733;
    /* Softer, richer than pure black */
    --clr-text-body: #475569;
    --clr-text-muted: #94A3B8;

    --clr-accent-teal: #66d7d1;
    /* Original brand color, used sparingly */
    --clr-accent-darkteal: #4caba7;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Instrument Sans', sans-serif;

    /* Spacing & Radii (The 'Organic' Feel) */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-float: 0 20px 40px rgba(28, 39, 51, 0.08);
    --shadow-soft: 0 10px 30px rgba(28, 39, 51, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-pearl);
    color: var(--clr-text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    color: var(--clr-text-navy);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-xl {
    padding: 140px 0;
}

.section-lg {
    padding: 100px 0;
}

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

/* Announcement Bar */
.top-bar {
    background-color: var(--clr-bg-cream);
    color: var(--clr-text-navy);
    text-align: center;
    padding: 6px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar a.btn-top {
    display: inline-block;
    background-color: var(--clr-accent-teal);
    color: var(--clr-text-navy);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: all 0.3s;
    margin-left: 0;
}

.top-bar a.btn-top:hover {
    background-color: var(--clr-text-navy);
    color: white;
}

/* Glass Navigation */
.nav-wrapper {
    position: sticky;
    top: 40px;
    z-index: 90;
    padding: 0 40px;
    margin-bottom: -100px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(102, 215, 209, 0.3);
    /* Teal tinted border */
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 40px rgba(102, 215, 209, 0.25);
    /* Brand color glow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 12px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    position: relative;
    display: flex;
    align-items: center;
    height: 54px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-logo-sticky {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.nav-wrapper.scrolled .nav-brand {
    height: 38px;
}

.nav-wrapper.scrolled .nav-logo-main {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.nav-wrapper.scrolled .nav-logo-sticky {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-accent-teal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    color: var(--clr-text-navy);
}

.desktop-only {
    display: inline-block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* Buttons */
.btn-pill {
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--clr-text-navy);
    color: var(--clr-bg-pearl);
}

.btn-primary:hover {
    background-color: var(--clr-accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 215, 209, 0.3);
}

.btn-teal {
    background-color: var(--clr-accent-teal);
    color: var(--clr-text-navy);
}

.btn-teal:hover {
    background-color: var(--clr-text-navy);
    color: white;
}

.btn-outline {
    border: 1px solid var(--clr-text-navy);
    color: var(--clr-text-navy);
    background: transparent;
}

.btn-outline:hover {
    background: var(--clr-text-navy);
    color: white;
}

/* Editorial Split Hero */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
    background: white;
    overflow: hidden;
    position: relative;
}

.hero-bg-left {
    flex: 1.1;
    position: relative;
    overflow: hidden;
    /* Diagonal editorial cut */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 1;
    background: var(--clr-bg-cream);
}

.hero-bg-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content-right {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px 120px 40px;
    z-index: 2;
    position: relative;
    left: -8%;
    /* Pull text into the diagonal space */
}

.hero-content-right h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--clr-text-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content-right p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--clr-text-body);
    max-width: 500px;
    margin-bottom: 48px;
}

.hero-pricing-block {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 24px 40px;
    border-radius: 24px;
    align-self: flex-start;
}

.hero-price {
    display: flex;
    flex-direction: column;
}

.hero-price-sub {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--clr-text-muted);
    font-weight: 500;
    opacity: 0.6;
}

.hero-price-main {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--clr-accent-darkteal);
    line-height: 1;
}

.hero-btn {
    background: var(--clr-accent-teal);
    color: var(--clr-text-navy);
    padding: 20px 56px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    letter-spacing: 0.12em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: var(--clr-text-navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Overlapping Video Card */
.hero-video-card {
    position: relative;
    margin: -120px auto 0;
    max-width: 1000px;
    width: 90%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    z-index: 10;
    overflow: hidden;
}

.hero-video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Logos Strip */
.logos-strip {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.logos-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.4s ease;
}

.logos-flex:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

.logo-txt {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-navy);
    letter-spacing: -0.02em;
}

/* Discovery Section (Steps Bar + Features) */
.steps-bar {
    background-color: #E2E8E2;
    padding: 24px 0;
    text-align: center;
}

.steps-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-text-navy);
    opacity: 0.8;
}

.discovery-section {
    padding: 80px 0;
    background: #FFFCF9;
}

.discovery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.discovery-header h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--clr-text-navy);
}

.discovery-header p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--clr-text-body);
}

.discovery-grid {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Bold Trainers Section */
.trainers-section-bold {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    overflow: hidden;
}

.trainers-header-bold {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: var(--clr-text-navy);
    padding: 80px 20px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trainers-grid-bold {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0;
    gap: 0;
}

.trainer-card-bold {
    display: flex;
    flex-direction: column;
    height: 700px;
    position: relative;
    background: #FFFCF9;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.trainer-card-bold:last-child {
    border-right: none;
}

.trainer-info {
    padding: 60px 40px;
    text-align: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
    position: relative;
}

.trainer-info h3 {
    font-size: 2.5rem;
    color: var(--clr-text-navy);
    margin-bottom: 12px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.trainer-info p {
    font-size: 1.1rem;
    color: var(--clr-text-body);
}

.trainer-img-cut {
    flex-grow: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
    z-index: 1;
}

.trainer-card-bold:nth-child(2) .trainer-img-cut {
    clip-path: polygon(0 0%, 100% 15%, 100% 100%, 0% 100%);
}

.trainer-card-bold:nth-child(3) .trainer-img-cut {
    clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
}

.trainer-img-cut img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.trainer-card-bold:hover .trainer-img-cut img {
    transform: scale(1.05);
}

.feature-col.left {
    align-items: flex-end;
    text-align: right;
}

.feature-col.right {
    align-items: flex-start;
    text-align: left;
}

.discovery-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-col.left .discovery-feature {
    flex-direction: row-reverse;
}

.discovery-feature i {
    width: 28px;
    height: 28px;
    color: var(--clr-accent-darkteal);
    flex-shrink: 0;
    opacity: 0.7;
}

.discovery-feature span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-navy);
    line-height: 1.4;
    max-width: 240px;
}

.discovery-circle-wrapper {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: white;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.discovery-circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .discovery-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .discovery-circle-wrapper {
        margin: 0 auto;
        width: 380px;
        height: 380px;
        max-width: 100%;
        order: -1;
    }

    .discovery-feature {
        justify-content: center;
        text-align: center;
    }
}

/* Bento Grid System */
.bento-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: minmax(300px, auto);
}

.bento-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

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

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-dark {
    background: var(--clr-text-navy);
    color: white;
}

.bento-dark h3 {
    color: white;
}

.bento-accent {
    background: var(--clr-bg-cream);
}

/* Interactive Before/After Slider */
.ba-slider {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    line-height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ba-slider img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    z-index: 1;
}

.ba-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.ba-handle::after {
    content: '< >';
    font-weight: bold;
    color: var(--clr-text-navy);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
    font-size: 12px;
}

/* Video Reels (TikTok style) */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reel-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
    box-shadow: var(--shadow-float);
    cursor: pointer;
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 39, 51, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}

.reel-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Meet the Expert / Editorial Cutout */
.editorial-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.editorial-img-container {
    position: relative;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--clr-bg-cream);
    padding: 20px 20px 0;
}

.editorial-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 180px 180px 0 0;
}

/* Modern Pricing Toggle */
.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    width: max-content;
    background: white;
    padding: 6px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    margin: 0 auto 60px;
}

.toggle-btn {
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    background: transparent;
}

.toggle-btn.active {
    background: var(--clr-text-navy);
    color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.p-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
}

.p-card.featured {
    background: var(--clr-text-navy);
    color: white;
    transform: translateY(-16px);
}

.p-card.featured h3,
.p-card.featured .price-num {
    color: white;
}

.price-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--clr-text-navy);
    margin: 24px 0 8px;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--clr-text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

.p-list {
    list-style: none;
    margin: 40px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
}

.feat-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent-teal);
    color: var(--clr-text-navy);
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Subtle Form */
.form-container {
    background: var(--clr-bg-cream);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
}

.form-inline {
    display: flex;
    max-width: 600px;
    margin: 40px auto 0;
    gap: 12px;
}

.form-inline input {
    flex-grow: 1;
    padding: 18px 32px;
    border-radius: var(--radius-pill);
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}

.form-inline .btn-pill {
    padding: 18px 48px;
}

/* Footer */
footer {
    background: var(--clr-text-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 40px;
    margin-bottom: 32px;
}

.footer-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--clr-accent-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        align-items: stretch;
        padding-top: 100px;
    }

    .hero-bg-left {
        position: relative;
        width: 100%;
        height: 50vh;
        clip-path: none;
        order: 2;
    }

    .hero-content-right {
        margin-left: 0;
        width: 100%;
        padding: 40px 24px 80px;
        order: 1;
        text-align: center;
        left: 0;
    }

    .hero-pricing-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 24px;
        width: 100%;
        margin-top: 32px;
    }

    .hero-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-video-card {
        margin-top: -60px;
        margin-bottom: 0;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nav-links {
        display: none;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-container {
        grid-template-columns: 1fr;
    }

    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .p-card.featured {
        transform: translateY(0);
        border: 2px solid var(--clr-accent-teal);
    }

    .trainers-grid-bold {
        grid-template-columns: 1fr;
    }

    .trainer-card-bold {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .reels-grid,
    .app-features-grid {
        grid-template-columns: 1fr;
    }

    .steps-flex {
        flex-direction: column;
        gap: 16px;
    }

    .form-container {
        padding: 40px 20px;
    }

    .form-inline {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .form-inline input,
    .form-inline button {
        width: 100%;
        padding: 18px 32px;
        /* Sync vertical padding */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-icon-link {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .nav-glass {
        padding: 8px 16px;
    }

    .logos-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        align-items: center;
        justify-items: center;
        width: 100%;
    }

    .logos-flex .logo-txt {
        text-align: center;
        width: 100%;
    }

    .logos-flex .logo-txt:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .section-xl {
        padding: 60px 0;
    }

    .section-lg {
        padding: 40px 0;
    }
}