/* ==========================================================================
   CSS DESIGN SYSTEM & STYLES FOR sportkatia.life
   ========================================================================== */

/* 1. CSS VARIABLES (Theme Tokens) */
:root {
    --bg-main: #0b0c0e;
    --bg-card: #15181c;
    --bg-card-glass: rgba(21, 24, 28, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --primary: #ff6b00;
    --primary-hover: #e05e00;
    --primary-glow: rgba(255, 107, 0, 0.3);
    
    --accent-green: #00e676;
    --accent-red: #ff3d00;
    
    --text-primary: #f5f6f8;
    --text-secondary: #9ea4b0;
    --text-muted: #646a78;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* 2. BASE STYLES & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

/* 4. BUTTONS & UI ELEMENTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    margin-bottom: 16px;
}

.badge-accent {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
    border-color: rgba(0, 230, 118, 0.2);
}

/* 5. HEADER (NAVIGATION) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(11, 12, 14, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* 6. HERO SECTION */
.hero-section {
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-badge .icon {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stock-alert {
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.hero-media {
    position: relative;
}

.media-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    aspect-ratio: 9 / 16;
    max-height: 600px;
    max-width: 337px;
    margin: 0 auto;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.media-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(11, 12, 14, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.glass-overlay p {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 7. COMPARISON / PROBLEM SECTION */
.problems-section {
    padding: 100px 0;
    background-color: #0e1013;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.comparison-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    position: relative;
    transition: var(--transition-smooth);
}

.comparison-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 61, 0, 0.3);
}

.card-status {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-bad {
    color: var(--accent-red);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-banner {
    background: linear-gradient(135deg, #1d2127 0%, #15181c 100%);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.solution-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.solution-banner-content {
    max-width: 800px;
}

.solution-tag-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.solution-banner h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.solution-banner p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* 8. ADVANTAGES SECTION */
.advantages-section {
    padding: 100px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.advantage-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 9. SEO & CONTENT SECTION */
.seo-section {
    padding: 100px 0;
    background-color: #0e1013;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.seo-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.seo-text-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.seo-paragraphs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.seo-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0;
}

.seo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.stat-card {
    background: var(--bg-card-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 10. FAQ SECTION */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ Item State */
.faq-item.active {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
    border-color: var(--primary);
}

/* 11. ORDER / CTA SECTION */
.order-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0e1013 0%, var(--bg-main) 100%);
}

.order-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: flex-start;
}

.order-form-block {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.order-form-block h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.order-text {
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    background-color: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-security {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.order-guarantee-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 24px;
}

.guarantee-card {
    display: flex;
    gap: 24px;
}

.guarantee-icon {
    font-size: 2rem;
    background: var(--bg-card);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
}

.guarantee-card h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.guarantee-card p {
    font-size: 0.95rem;
}

.order-image-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-image-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.order-device-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.order-image-card:hover .order-device-img {
    transform: scale(1.02);
}

.order-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 12, 14, 0.65);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--border-glass);
    padding: 10px 16px;
    text-align: center;
}

.order-image-caption span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* 12. FOOTER */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-glass);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-social-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-insta:hover {
    border-color: #e1306c;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.btn-tg:hover {
    border-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
    background-color: #0088cc;
}

.btn-wa:hover {
    border-color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    background-color: #25d366;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--text-primary);
}

.modal-messenger-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.btn-messenger {
    width: 100%;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-whatsapp {
    background-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-telegram {
    background-color: #0088cc;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

/* 13. SUCCESS MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 12, 14, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    max-width: 500px;
    width: calc(100% - 48px);
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.modal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-card p {
    font-size: 1rem;
    margin-bottom: 32px;
}

/* Modal Open state */
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

/* 14. KEYFRAMES ANIMATIONS */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* 15. RESPONSIVE DESIGN (BREAKPOINTS) */

/* Tablets (landscape) and smaller desktops */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-container {
        gap: 40px;
    }
    .problems-section,
    .advantages-section,
    .workouts-section,
    .seo-section,
    .faq-section,
    .order-section {
        padding: 80px 0;
    }
}

/* Intermediate screen width optimization for header */
@media (max-width: 880px) {
    .nav-list {
        gap: 20px;
    }
    #header-call-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-card);
        border-bottom: 1px solid var(--border-glass);
        padding: 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .nav.open {
        max-height: 300px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-media {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .seo-container {
        gap: 32px;
    }

    .seo-paragraphs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-paragraph {
        text-align: left;
    }
    
    .seo-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .order-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .problems-section,
    .advantages-section,
    .workouts-section,
    .seo-section,
    .faq-section,
    .order-section {
        padding: 60px 0;
    }
}

/* Hide header CTA on mobile to prevent overflow/wrap */
@media (max-width: 560px) {
    #header-call-btn {
        display: none;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .problems-section,
    .advantages-section,
    .workouts-section,
    .seo-section,
    .faq-section,
    .order-section {
        padding: 48px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-banner {
        padding: 32px 24px;
    }
    
    .comparison-card {
        padding: 24px;
    }
    
    .order-form-block {
        padding: 32px 20px;
    }
    
    .new-price {
        font-size: 2.2rem;
    }
    
    /* Fine-tuning cards and lists for tiny screens */
    .faq-trigger {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-content p {
        padding: 0 20px 20px 20px;
    }
    
    .modal-card {
        padding: 32px 20px;
    }
    
    .modal-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }
    
    .modal-card h3 {
        font-size: 1.5rem;
    }
    
    .modal-card p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .guarantee-card {
        gap: 16px;
    }
    
    .guarantee-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   ONLINE WORKOUTS SECTION
   ========================================================================== */
.workouts-section {
    padding: 100px 0;
    background-color: #0b0c0e;
}

.workouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.workout-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.workout-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workout-media {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.workout-img,
.workout-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workout-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.workout-info h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.workout-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .workouts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .workouts-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA block in workouts section */
.workouts-cta-block {
    text-align: center;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-insta-cta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3) !important;
    border: none !important;
}

.btn-insta-cta:hover {
    background: linear-gradient(45deg, #f2a048 0%, #e8784e 25%, #de3a54 50%, #d13473 75%, #c02a93 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.5) !important;
}

.workouts-alternative-links {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.alternative-link-item {
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

#workouts-tg-link {
    color: #0088cc;
}

#workouts-tg-link:hover {
    color: #33a3fc;
    text-decoration: underline;
}

#workouts-wa-link {
    color: #25d366;
}

#workouts-wa-link:hover {
    color: #4ce182;
    text-decoration: underline;
}

/* Sound toggle button in hero video */
.sound-toggle-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(11, 12, 14, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    padding: 0;
}

.sound-toggle-btn:hover {
    background: rgba(11, 12, 14, 0.8);
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.sound-toggle-btn svg {
    display: block;
    width: 20px;
    height: 20px;
}


