/* ================================
   FOODBOT - LUXURY MINIMAL DESIGN
   Inspired by YSL & Celine
   ================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F3EFEA;
    color: #111111;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 400;
}

p {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    line-height: 1.8;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(243, 239, 234, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #E0DCD5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-main {
    font-size: 1.5rem;
    font-weight: 500;
}

.nav-logo-sub {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #666;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #111111;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #BDA06A;
}

.nav-cta {
    padding: 10px 24px;
    border: 1px solid #BDA06A;
    color: #BDA06A !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #BDA06A;
    color: #F3EFEA !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    
    .nav-container {
        padding: 10px 20px;
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo-main {
        font-size: 1.2rem;
    }
    
    .nav-logo-sub {
        font-size: 0.5rem;
        max-width: 160px;
    }
    
    .nav-menu {
        gap: 12px;
        font-size: 0.7rem;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        flex-wrap: wrap;
    }
    
    .nav-cta {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 140px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 50px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 18px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: transparent;
    color: #111111;
    border: 1px solid #BDA06A;
}

.btn-primary:hover {
    background-color: #BDA06A;
    color: #F3EFEA;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #111111;
    border: 1px solid #111111;
}

.btn-outline:hover {
    background-color: #111111;
    color: #F3EFEA;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: transparent;
    color: #BDA06A;
    border: 2px solid #BDA06A;
}

.btn-accent:hover {
    background-color: #BDA06A;
    color: #F3EFEA;
    transform: translateY(-2px);
}

.btn-large {
    padding: 22px 70px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 16px 40px;
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 18px 50px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/newhero.jpg') no-repeat center 25% / cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle-small {
    color: #D4CFC7;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-title-main {
    color: #F3EFEA;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-text {
    color: #D4CFC7;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 50px;
    font-style: italic;
}

.hero .btn-primary {
    border-color: #BDA06A;
    color: #F3EFEA;
    margin-bottom: 16px;
}

.hero .btn-primary:hover {
    background-color: #BDA06A;
}

.hero-note {
    color: #B8B3AB;
    font-size: 0.875rem;
    margin-top: 16px;
    font-weight: 300;
}

.btn-hero {
    background-color: #BDA06A;
    color: #FFFFFF;
    border: 2px solid #BDA06A;
    padding: 20px 60px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(189, 160, 106, 0.4);
}

.btn-hero:hover {
    background-color: #9B845A;
    border-color: #9B845A;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(189, 160, 106, 0.5);
}

.hero-note-big {
    color: #FFFFFF;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-top: 24px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    background: rgba(189, 160, 106, 0.2);
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 24px;
    }
}

/* ===== PAIN SECTION ===== */
.section-pain {
    background-color: #EFEBE5;
}

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

.pain-block {
    background: #FFFFFF;
    padding: 50px 40px;
    border-left: 4px solid #BDA06A;
    margin-bottom: 40px;
}

.pain-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 30px;
    color: #111111;
    line-height: 1.4;
}

.pain-reasons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-reasons p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    padding: 16px 20px;
    background: #F8F6F3;
    border-radius: 4px;
    line-height: 1.6;
    font-weight: 400;
}

.pain-solution {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #BDA06A 0%, #9B845A 100%);
    border-radius: 8px;
}

.pain-highlight {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.5;
}

/* ===== SOLUTION SECTION ===== */
.steps-vertical-compact {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-item-vertical {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px;
    background: #EFEBE5;
    border-left: 4px solid #BDA06A;
    transition: all 0.3s ease;
}

.step-item-vertical:hover {
    transform: translateX(10px);
    background: #E8E4DD;
}

.step-item-vertical .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #BDA06A;
    font-weight: 400;
    line-height: 1;
    min-width: 70px;
}

.step-item-vertical .step-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    text-align: left;
    font-weight: 400;
}

.step-arrow {
    font-size: 2.5rem;
    color: #BDA06A;
    margin: 5px 0;
}

/* ===== FEATURES SECTION ===== */
.section-features {
    background-color: #EFEBE5;
}

.features-compact {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: #FFFFFF;
    border-left: 3px solid #BDA06A;
    transition: all 0.3s ease;
}

.feature-row:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.feature-title-compact {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
}

/* ===== ANALYTICS SECTION ===== */
.analytics-compact {
    max-width: 900px;
    margin: 0 auto;
}

.analytics-box {
    background: #FFFFFF;
    padding: 50px 40px;
    border: 2px solid #E0DCD5;
    margin-bottom: 30px;
}

.analytics-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
    color: #BDA06A;
    font-weight: 500;
    line-height: 1.4;
}

.analytics-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.9;
    color: #333;
}

.analytics-highlight-box {
    background: linear-gradient(135deg, #BDA06A 0%, #9B845A 100%);
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
}

.analytics-big {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

/* ===== EXERCISES SECTION ===== */
.section-exercises {
    background-color: #EFEBE5;
}

.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.exercise-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.exercise-item:hover {
    transform: translateY(-8px);
}

.exercise-image {
    width: 100%;
    height: 320px;
    margin-bottom: 30px;
    border-radius: 2px;
}

.exercise-video {
    width: 100%;
    height: 320px;
    margin-bottom: 30px;
    border-radius: 2px;
    overflow: hidden;
    background: #000;
}

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

.exercise-name {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.exercise-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    line-height: 1.6;
}

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

/* ===== COMPARISON SECTION ===== */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #BDA06A;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    border-bottom: 1px solid #E0DCD5;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 30px 25px;
    text-align: center;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    border-right: 1px solid #E0DCD5;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-header .comparison-cell {
    font-weight: 500;
    background-color: #EFEBE5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.comparison-cell-label {
    font-weight: 500;
    text-align: left;
    background-color: #F8F6F3;
}

.comparison-cell-accent {
    color: #BDA06A;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.comparison-cell-empty {
    background-color: #F3EFEA;
}

@media (max-width: 768px) {
    .comparison-cell {
        padding: 20px 15px;
        font-size: 0.9rem;
    }
    
    .comparison-header .comparison-cell {
        font-size: 0.8rem;
    }
}

/* ===== PRICING SECTION ===== */
.section-pricing {
    background-color: #EFEBE5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 50px 35px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #BDA06A;
    background: #FFFFFF;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(189, 160, 106, 0.2);
}

.pricing-card-featured {
    background: #F6F2EC;
    border: 2px solid #BDA06A;
}

.pricing-card-premium {
    background: linear-gradient(135deg, #FFFFFF 0%, #F6F2EC 100%);
    border: 3px solid #BDA06A;
    box-shadow: 0 10px 30px rgba(189, 160, 106, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #BDA06A;
    color: #FFFFFF;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.pricing-badge-premium {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #BDA06A 0%, #9B845A 100%);
    color: #FFFFFF;
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(189, 160, 106, 0.4);
    z-index: 10;
}

.pricing-title {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #BDA06A;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1;
}

.pricing-period {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-features li {
    font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
    margin-bottom: 14px;
    line-height: 1.7;
    text-align: left;
}

.pricing-note {
    font-size: 1.0625rem;
    color: #BDA06A;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 500;
}

.btn-premium {
    background: linear-gradient(135deg, #BDA06A 0%, #9B845A 100%);
    color: #FFFFFF;
    border: none;
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(189, 160, 106, 0.4);
}

.btn-premium:hover {
    background: linear-gradient(135deg, #9B845A 0%, #856F4A 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(189, 160, 106, 0.5);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.testimonial-item {
    padding: 40px;
    background-color: #EFEBE5;
    border-left: 2px solid #BDA06A;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateX(5px);
}

.testimonial-text {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    text-align: right;
}

.testimonials-proof {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #BDA06A;
}

.proof-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 50px;
    color: #BDA06A;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.proof-item {
    text-align: center;
}

.proof-image {
    border-radius: 4px;
    margin-bottom: 16px;
}

.proof-caption {
    font-size: 1rem;
    font-weight: 500;
    color: #111111;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .step-item-vertical {
        padding: 25px;
        gap: 20px;
    }
    
    .step-item-vertical .step-number {
        font-size: 3rem;
        min-width: 50px;
    }
}

/* ===== CTA SECTION ===== */
.section-cta {
    background-color: #EFEBE5;
    text-align: center;
    padding: 180px 0;
}

.cta-title {
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 768px) {
    .section-cta {
        padding: 100px 0;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #111111;
    color: #D4CFC7;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #F3EFEA;
    margin-bottom: 24px;
    letter-spacing: 0.15em;
}

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

.footer-links a {
    color: #D4CFC7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #BDA06A;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: #888;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-divider {
    border-top: 1px solid #333;
    margin: 30px 0 20px;
}

.footer-legal {
    text-align: center;
    margin-bottom: 20px;
}

.footer-executor {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.footer-disclaimer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-copyright {
        text-align: left;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 80px;
}

.mt-large {
    margin-top: 80px;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .exercises-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .exercise-video {
        height: 280px;
    }
    
    /* Корректировка позиции видео для планшетов */
    .exercise-video video {
        object-position: center center;
    }
    
    /* Махи на задние дельты - видео 1 */
    .exercise-item:nth-child(1) .exercise-video video {
        object-position: center 35%;
    }
    
    /* Приседания со свободным весом - видео 4 */
    .exercise-item:nth-child(4) .exercise-video video {
        object-position: center 60%;
    }
    
    /* Тяга гантели к поясу - видео 6 */
    .exercise-item:nth-child(6) .exercise-video video {
        object-position: center 30%;
    }
    
    .comparison-table {
        font-size: 0.8rem;
        overflow-x: auto;
    }
    
    .comparison-cell {
        padding: 15px 10px;
        font-size: 0.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-copyright {
        text-align: left;
    }
    
    .step-item-vertical {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .step-item-vertical .step-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }
    
    .nav-logo-main {
        font-size: 1.1rem;
    }
    
    .nav-logo-sub {
        font-size: 0.45rem;
        max-width: 140px;
    }
    
    .nav-menu {
        font-size: 0.65rem;
        gap: 8px;
    }
    
    .hero-title-main {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-small {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.75rem;
    }
    
    .btn-hero {
        padding: 16px 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .exercise-video {
        height: 250px;
    }
    
    /* Корректировка позиции видео для мобильных */
    .exercise-video video {
        object-position: center center;
    }
    
    /* Махи на задние дельты - видео 1 */
    .exercise-item:nth-child(1) .exercise-video video {
        object-position: center 35%;
    }
    
    /* Приседания со свободным весом - видео 4 */
    .exercise-item:nth-child(4) .exercise-video video {
        object-position: center 60%;
    }
    
    /* Тяга гантели к поясу - видео 6 */
    .exercise-item:nth-child(6) .exercise-video video {
        object-position: center 30%;
    }
    
    .pricing-badge,
    .pricing-badge-premium {
        font-size: 0.65rem;
        padding: 5px 15px;
    }
}