/* ========================================
   SPORTOVCI-KARIERA.CZ - MAIN STYLESHEET
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

/* CRITICAL: Prevent horizontal scroll globally */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    /* 🎨 Brand primární paleta podle DESIGNER.md */
    --primary-dark: #0E1B2E;  /* 70% - tmavá modrá (pozadí, header) */
    --light: #FFFFFF;         /* 70% - bílá (sekce, texty na tmavém) */
    --gray: #F2F2F2;          /* 20% - světle šedá (karty, oddělení) */
    --accent: #C9A227;        /* 10% - zlatá (CTA, zvýraznění) */

    /* Pomocné proměnné - zpětná kompatibilita */
    --primary: #0E1B2E;       /* alias pro primary-dark */
    --secondary: #C9A227;     /* alias pro accent */
    --dark: #0A0E27;          /* barva textu */
    --success: #C9A227;       /* změněno z zelené na zlatou (brand) */
    --warning: #C9A227;
}

body {
    font-family: 'Manrope', -apple-system, system-ui, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #fafafa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Typography Hierarchy - Distinctive Fonts */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.1;
    font-weight: 400;
}

h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* WORD-BREAK PROTECTION - Prevent long text overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    word-break: break-word; /* Break long URLs if needed */
}

/* ACCESSIBILITY - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ACCESSIBILITY - Skip to content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    z-index: 10001;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
}

/* ACCESSIBILITY - Better focus states */
button:focus, a:focus, .quiz-option:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Touch optimization */
button, a {
    -webkit-tap-highlight-color: rgba(14, 27, 46, 0.2);
    touch-action: manipulation;
    cursor: pointer;
}

a {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

button {
    -webkit-user-select: none;
    user-select: none;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUp 0.4s ease-out;
}
.cookie-consent.active {
    display: block;
}
.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}
.cookie-consent-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}
.cookie-consent-text a {
    color: var(--secondary);
    text-decoration: underline;
}
.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.cookie-btn-accept {
    background: var(--success);
    color: white;
}
.cookie-btn-accept:hover {
    background: #00c763;
    transform: translateY(-2px);
}
.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn {
        flex: 1;
    }
}

/* NAVIGATION */
nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    padding: 0.875rem 1.5rem; border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); z-index: 1000;
    display: flex; flex-wrap: nowrap; gap: 1.25rem; align-items: center; max-width: 90%;
    pointer-events: auto;
}

nav * {
    pointer-events: auto;
}
.logo {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.logo-text {
    font-weight: 900;
    font-size: 1.1rem;
}
.nav-links { display: flex; flex-wrap: nowrap; gap: 1.25rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.875rem;
    transition: color 0.3s; white-space: nowrap; word-break: keep-all;
    overflow: hidden; text-overflow: ellipsis;
}
.nav-links a:hover { color: var(--primary); }
.nav-links .nav-cta {
    background: #C9A227;
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}
.nav-links .nav-cta:hover {
    background: #A88520;
    transform: translateY(-2px);
    color: white !important;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
    z-index: 10001;
    -webkit-tap-highlight-color: rgba(14, 27, 46, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}
.menu-toggle:hover {
    background: rgba(14, 27, 46, 0.08);
}
.menu-toggle:active {
    background: rgba(14, 27, 46, 0.15);
}

/* Mobile menu backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* HERO SECTION - SIMPLIFIED */
.hero {
    min-height: 95vh;
    background: linear-gradient(135deg, #0E1B2E 0%, #1a2942 50%, rgba(201, 162, 39, 0.15) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    width: 100%;
    max-width: 100vw;
}
.hero::before {
    content: '';
    position: absolute;
    width: 100%; /* FIX: Changed from 150% to prevent horizontal scroll */
    height: 100%; /* FIX: Changed from 150% */
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
    left: 0;
    top: 0;
}
@keyframes float {
    0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-image {
    width: 100%;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    max-height: 650px;
}
.hero-text {
    text-align: left;
}
.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: inline-block;
}
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}
.hero h1 .highlight {
    color: var(--warning);
    display: inline-block;
}
.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    line-height: 1.5;
}
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-benefits li {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.hero-benefits .check-icon {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 900;
    flex-shrink: 0;
}
.hero-cta {
    display: inline-flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}
.btn {
    padding: 1.3rem 3rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    border: none;
}
.btn-hero {
    background: #C9A227;
    color: white;
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
    font-size: 1.3rem;
    padding: 1.5rem 3.5rem;
    font-weight: 800;
}
.btn-hero:hover {
    background: #A88520;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.6);
}
.hero-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* TESTIMONIALS CAROUSEL */
.testimonials-carousel {
    background: white;
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-testimonial {
    flex: 0 0 auto;
    width: 450px;
    background: var(--light);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.testimonial-author strong {
    color: var(--primary);
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .carousel-testimonial {
        width: 320px;
        padding: 1.5rem 2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .carousel-track {
        gap: 1.5rem;
        animation: scroll 30s linear infinite;
    }
}

/* PROBLEM SECTION */
.problem { padding: 7rem 2rem; background: white; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}
.problem-card {
    background: var(--light);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(14, 27, 46, 0.12);
}
/* Speciální hover pro zlatou CTA kartu */
.problem-card[style*="linear-gradient"]:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.4);
}
.problem-card[style*="linear-gradient"] .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.problem-card .emoji { font-size: 3.5rem; margin-bottom: 1.5rem; }
.problem-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--dark); }
.problem-card p { font-size: 1.05rem; color: #555; line-height: 1.7; }

.problem-conclusion {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(14, 27, 46, 0.04) 0%, rgba(201, 162, 39, 0.04) 100%);
    border-radius: 20px;
    border: 2px solid rgba(14, 27, 46, 0.1);
}
.problem-conclusion p {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.6;
}

/* SOLUTION SECTION */
.solution {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.solution-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.solution h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.solution > .solution-inner > p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.feature-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}
.feature-card .icon { font-size: 3rem; margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.feature-card p { font-size: 1.05rem; opacity: 0.9; line-height: 1.6; }

/* TESTIMONIALS - ENHANCED */
.testimonials {
    padding: 7rem 2rem;
    background: white;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.testimonial-card {
    background: var(--light);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.testimonial-result {
    background: rgba(0, 230, 118, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--success);
}
.testimonial-result strong {
    color: var(--success);
    font-weight: 800;
    font-size: 1.05rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}
.testimonial-author-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--dark);
}
.testimonial-author-info p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* PRICING SECTION */
.pricing { padding: 7rem 2rem; background: var(--light); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.pricing-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--secondary);
    transform: scale(1.05);
}
.pricing-card.featured:hover { transform: scale(1.08) translateY(-10px); }
.pricing-tier {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--primary);
}
.pricing-card.featured .pricing-tier { color: var(--secondary); }
.pricing-name { font-size: 2.2rem; font-weight: 900; margin-bottom: 1.5rem; }
.pricing-price { font-size: 3.5rem; font-weight: 900; margin-bottom: 0.5rem; line-height: 1; }
.pricing-price span { font-size: 1.3rem; font-weight: 600; }
.pricing-desc { font-size: 1.05rem; margin-bottom: 2.5rem; opacity: 0.85; line-height: 1.5; }
.pricing-features { list-style: none; margin-bottom: 2.5rem; }
.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.02rem;
}
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255, 255, 255, 0.2); }
.pricing-features li::before {
    content: '✓';
    font-weight: 900;
    color: var(--success);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.pricing-card.featured .pricing-features li::before { color: var(--secondary); }
.btn-pricing {
    width: 100%;
    justify-content: center;
    background: var(--primary);
    color: white;
}
.pricing-card.featured .btn-pricing {
    background: white;
    color: var(--primary);
}

/* ABOUT SECTION */
.about { padding: 7rem 2rem; background: white; overflow-x: hidden; }
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}
.about-content {
    text-align: left;
    width: 100%;
    max-width: 100%;
}
.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
}
.about-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}
.about-content p strong {
    color: var(--dark);
    font-weight: 700;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.about-stat {
    background: var(--light);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(14, 27, 46, 0.1);
}
.about-stat strong {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.about-stat span {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* PARTNERSHIP SECTION - REDESIGNED */
.partnership {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}
.partnership-inner { max-width: 1000px; margin: 0 auto; }
.partner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}
.partnership h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.3;
}
.partnership p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}
.partnership-image {
    margin: 3rem 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
.partnership-image img {
    width: 100%;
    height: auto;
    display: block;
}
.partnership .btn {
    margin-top: 1rem;
    background: white;
    color: #667eea;
}

/* WHERE I WORK SECTION - REDESIGNED */
.where-i-work {
    padding: 7rem 2rem;
    background: var(--light);
}
.where-i-work-inner { max-width: 1200px; margin: 0 auto; }

/* HIGHLIGHT EVENTS */
.highlight-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0 5rem;
}
.event-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 3px solid transparent;
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}
.event-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.event-card:hover .event-image img {
    transform: scale(1.05);
}
.event-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.event-badge.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark);
}
.event-badge.star {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
}
.event-content {
    padding: 2.5rem;
}
.event-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
}
.event-content p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}
.event-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.event-meta span {
    background: var(--light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

/* ORGANIZATIONS GRID */
.organizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 5rem 0;
}
.org-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.org-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}
.org-card.featured {
    background: linear-gradient(135deg, rgba(14, 27, 46, 0.04) 0%, rgba(201, 162, 39, 0.04) 100%);
    border-color: var(--primary);
}
.org-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.org-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}
.org-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}
.org-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* PHOTO GALLERY */
.photo-gallery {
    margin: 5rem 0;
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.photo-gallery h3 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    aspect-ratio: 4/3;
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ORG CTA */
.org-cta {
    margin-top: 5rem;
    text-align: center;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 25px;
    color: white;
}
.org-cta h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.org-cta p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.org-cta .btn {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}
.org-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* SOCIAL SECTION */
.social { padding: 7rem 2rem; background: white; }
.social-inner { max-width: 1200px; margin: 0 auto; }
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.social-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}
.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.social-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.social-card-content { padding: 2.5rem; background: white; }
.social-platform {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.social-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}
.social-card .btn {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* SOCIAL SHOWCASE CARDS */
.social-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.social-showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.social-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.social-showcase-header {
    padding: 2rem 1.5rem 1rem 1.5rem;
    color: white;
    text-align: center;
    position: relative;
}

.social-showcase-header.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.social-showcase-header.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-showcase-header.tiktok {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 100%);
}

.social-platform-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-emoji-preview {
    font-size: 3rem;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-showcase-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.social-handle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A0E27;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.verified-badge {
    color: #1DA1F2;
    font-size: 1rem;
}

.social-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.social-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-value-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.social-value-box.instagram {
    border-left-color: #833AB4;
}

.social-value-box.youtube {
    border-left-color: #FF0000;
}

.social-value-box.tiktok {
    border-left-color: #EE1D52;
}

.social-value-title {
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-value-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: white;
    margin-top: auto;
}

.social-cta-button.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.social-cta-button.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-cta-button.tiktok {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 100%);
}

.social-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* BLOG PREVIEW SECTION */
.blog-preview {
    padding: 7rem 2rem;
    background: white;
}

.blog-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-preview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-preview-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.blog-preview-header p {
    font-size: 1.2rem;
    color: #666;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-article-card:hover .blog-article-image img {
    transform: scale(1.1);
}

.blog-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-category-tag.prace { background: #F59E0B; }
.blog-category-tag.vzdelani { background: #667EEA; }
.blog-category-tag.motivace { background: #EC4899; }

.blog-article-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-article-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-article-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-view-all {
    text-align: center;
}

.blog-view-all .btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.blog-view-all .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 27, 46, 0.2);
}

/* FAQ SECTION - ENHANCED */
.faq { padding: 7rem 2rem; background: var(--light); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 4rem; }
.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--dark);
}
.faq-question:hover { background: var(--light); }
.faq-icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer-inner {
    padding: 0 2.5rem 2rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #555;
}
.faq-answer-inner strong {
    color: var(--dark);
    font-weight: 700;
}

/* CTA FINAL */
.cta-final {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}
.cta-final h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.cta-final p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}
.cta-final .btn {
    background: white;
    color: var(--primary);
}
.cta-final .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-logo h3 {
    margin-bottom: 0;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.8);
}

.footer-contact-info li span {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.footer-contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image {
        order: 2;
    }
    .about-content {
        order: 1;
    }
}

/* MOBILE FIX: About section proper padding */
@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem !important; /* Reduce padding on mobile */
    }
    .about-content {
        padding: 0 0.5rem; /* Extra padding for content */
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    /* Blog preview responsive */
    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-preview-header h2 {
        font-size: 2rem;
    }

    .social-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-emoji-preview {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem !important;
    }
    .about-content {
        padding: 0; /* Reset on very small screens */
    }
    .about-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    .about-stats {
        grid-template-columns: 1fr; /* Stack stats on very small screens */
        gap: 1rem;
    }
    .about-stat {
        padding: 1.5rem 1rem;
    }
    .about-stat strong {
        font-size: 2rem;
    }
    .about-badge {
        top: -10px;
        right: -10px;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Medium screens - hamburger menu for safety */
@media (max-width: 1150px) {
    nav { padding: 0.875rem 1.25rem; gap: 1rem; max-width: 95%; }
    .logo { font-size: 1rem; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.8125rem; }
}

@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        width: 90%;
        max-width: 90%;
        z-index: 10000;
    }

    .logo {
        flex-shrink: 0;
        margin-right: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        background: white;
        padding: 1.5rem;
        border-radius: 20px;
        margin: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 10001;
        pointer-events: none;
    }

    .nav-links.active {
        display: flex !important;
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.25rem;
        width: 100%;
        text-align: left;
        cursor: pointer;
        border-radius: 12px;
        transition: background 0.2s;
        -webkit-tap-highlight-color: rgba(14, 27, 46, 0.15);
        pointer-events: auto;
        position: relative;
        z-index: 1;
        color: var(--dark);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(14, 27, 46, 0.05);
        color: var(--primary);
    }

    .menu-toggle { display: flex; flex-shrink: 0; z-index: 10002; }
}

@media (max-width: 768px) {
    nav {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
        width: 95%;
        max-width: 95%;
        z-index: 10000;
    }

    .logo {
        gap: 0.4rem;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .menu-toggle {
        font-size: 1.35rem;
        min-width: 40px;
        min-height: 40px;
        z-index: 10002;
    }

    .nav-links {
        top: 70px;
        width: 95%;
        padding: 1.25rem;
    }

    .nav-links a {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    .trust-bar-content {
        gap: 2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .highlight-events {
        grid-template-columns: 1fr;
    }
    .event-image {
        height: 220px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    /* GLOBAL SECTION PADDING FIX - Fixes all sections on mobile */
    section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* QUIZ MODAL */
.quiz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}
.quiz-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.quiz-container {
    background: white;
    border-radius: 30px;
    max-width: 700px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.quiz-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.quiz-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}
.quiz-screen {
    display: none;
    padding: 3rem 2.5rem;
}
.quiz-screen.active {
    display: block;
}

/* INTRO SCREEN */
.quiz-intro-content {
    text-align: center;
    padding: 2rem 0;
}
.quiz-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.quiz-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.quiz-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.quiz-feature {
    background: var(--light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}
.btn-large {
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
}

/* PROGRESS BAR */
.quiz-progress {
    margin-bottom: 3rem;
}
.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}
.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.4s ease-out;
    width: 10%;
}
.quiz-progress-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

/* QUESTIONS */
.quiz-question-container {
    min-height: 400px;
}
.quiz-question {
    animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.quiz-question h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.4;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.quiz-option {
    background: var(--light);
    border: 3px solid transparent;
    padding: 1.3rem 1.8rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.quiz-option:hover {
    background: white;
    border-color: var(--primary);
    transform: translateX(5px);
}
.quiz-option-letter {
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.quiz-option:hover .quiz-option-letter {
    background: var(--primary-dark);
}

/* RESULTS */
.quiz-results-content {
    text-align: center;
}
.result-badge {
    display: inline-block;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.result-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.result-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}
.result-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}
.result-cta {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.result-cta h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}
.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.result-actions .btn {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* QUIZ RESPONSIVE */
@media (max-width: 768px) {
    .quiz-modal {
        padding: 1rem;
    }
    .quiz-screen {
        padding: 2rem 1.5rem;
    }
    .quiz-intro-content h2 {
        font-size: 2rem;
    }
    .quiz-question h3 {
        font-size: 1.3rem;
    }
    .quiz-option {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    .result-title {
        font-size: 1.8rem;
    }
    .result-actions {
        flex-direction: column;
    }
    .result-actions .btn {
        width: 100%;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE FIXES
   Added to prevent horizontal scroll and improve mobile UX
======================================== */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all sections don't overflow */
section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Container safety */
.hero-content,
.trust-bar-content,
.problem-inner,
.solution-inner,
.testimonials-inner,
.pricing-inner,
.about-inner,
.partnership-inner,
.where-i-work-inner,
.social-inner,
.faq-inner,
footer > div {
    width: 100%;
    max-width: 1200px;
    padding-left: min(2rem, 5vw);
    padding-right: min(2rem, 5vw);
}

/* Mobile First - Small devices (phones, 320px - 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 6rem 1rem 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: 2;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: 0.85rem;
        letter-spacing: 1.2px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero .subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
    }

    .hero-benefits {
        margin: 1.5rem 0;
        gap: 0.8rem;
    }

    .hero-benefits li {
        font-size: 1rem;
        justify-content: center;
    }

    .hero-benefits .check-icon {
        font-size: 1.2rem;
    }

    .btn-hero {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .trust-bar {
        padding: 2rem 1rem;
    }

    .trust-item strong {
        font-size: 2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .problems-grid,
    .testimonials-grid,
    .pricing-grid,
    .organizations-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    nav {
        padding: 0.8rem 1rem;
        max-width: 95%;
        gap: 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    /* GLOBAL SECTION PADDING FIX - Extra tight on small screens */
    section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 7rem 1.5rem 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        order: 2;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: 0.9rem;
        letter-spacing: 1.3px;
    }

    .hero-benefits {
        margin: 1.8rem 0;
        gap: 0.9rem;
    }

    .hero-benefits li {
        font-size: 1.05rem;
        justify-content: center;
    }

    .problems-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        flex-direction: column;
    }

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

/* Desktop - Larger tablets and small laptops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 900px) {
    .hero {
        min-height: 92vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .hero {
        min-height: 92vh;
    }

    .hero-content {
        gap: 3rem;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .organizations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens optimization (1025px+) */
@media (min-width: 1025px) {
    .hero {
        min-height: 95vh;
    }

    .problems-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix for very wide screens (prevent too wide layouts) */
@media (min-width: 1600px) {
    .hero-content,
    .problem-inner,
    .solution-inner,
    .testimonials-inner,
    .pricing-inner,
    .about-inner,
    .where-i-work-inner,
    .social-inner,
    .faq-inner {
        max-width: 1400px;
    }
}

/* Landscape mobile fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 5rem 2rem 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero .subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        margin-bottom: 1.5rem;
    }
}

/* Performance optimization for animations */
@media (prefers-reduced-motion: no-preference) {
    .btn,
    .problem-card,
    .testimonial-card,
    .pricing-card,
    nav,
    .quiz-option {
        will-change: transform;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   Smooth reveal animations on scroll
======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ========================================
   SCROLL PROGRESS BAR
   Visual indicator of page scroll position
======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ========================================
   LOADING & ERROR STATES
   Added for better mobile UX feedback
======================================== */

/* Skeleton loader for images */
img[loading="lazy"] {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(14, 27, 46, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error state */
.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #c62828;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message::before {
    content: "⚠️";
    font-size: 1.2rem;
}

/* Success state */
.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message::before {
    content: "✓";
    font-size: 1.2rem;
    font-weight: bold;
}

/* Image error fallback */
img[alt]:after {
    content: "📷 " attr(alt);
    display: block;
    padding: 2rem;
    text-align: center;
    color: #999;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
}

/* ========================================
   FRONTEND DESIGN ENHANCEMENTS
   Typography, Animations, Depth, Layout
   ======================================== */

/* === VISUAL DEPTH & TEXTURES === */

/* Noise texture overlay for atmosphere */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Grain overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
}

/* Enhanced gradient mesh on trust-bar */
.trust-bar {
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(14, 27, 46, 0.05) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10%, 5%) rotate(5deg); }
}

/* === ENHANCED SHADOWS & DEPTH === */

/* Dramatic layered shadows on cards */
.problem-card,
.testimonial-card,
.pricing-card {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 48px 96px rgba(0, 0, 0, 0.16);
}

/* === STAGGERED ANIMATIONS === */

/* Page load staggered reveals */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* Scroll-triggered fade in */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === MICRO-INTERACTIONS === */

/* Enhanced button hover with scale + glow */
.btn-hero,
.btn-secondary,
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero::before,
.btn-secondary::before,
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before,
.btn-secondary:hover::before,
.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover,
.btn-secondary:hover,
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(201, 162, 39, 0.2);
}

.btn-hero:active,
.btn-secondary:active,
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Card hover lift with rotation */
.problem-card:hover,
.testimonial-card:hover {
    transform: translateY(-12px) rotate(-0.5deg);
}

.pricing-card:hover {
    transform: translateY(-16px) scale(1.02);
}

/* Link underline animation */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === ASYMMETRIC LAYOUT ENHANCEMENTS === */

/* Grid-breaking elements */
.hero-content {
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 100%);
    border-radius: 35px;
    z-index: -1;
}

/* Overlapping elements for depth */
.about-image {
    position: relative;
    z-index: 2;
}

.about-badge {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    z-index: 3 !important;
    transform: rotate(3deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* === ENHANCED GRADIENTS === */

/* Multi-layer gradient backgrounds */
.problem,
.solution,
.testimonials {
    position: relative;
    overflow: hidden;
}

.problem::before,
.solution::before,
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 27, 46, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* === TYPOGRAPHY ENHANCEMENTS === */

/* Enhanced headings with subtle effects */
h1 {
    position: relative;
    display: inline-block;
}

/* Highlight effect on hover for interactive sections */
.section-title {
    transition: color 0.3s ease;
}

.section-title:hover {
    color: var(--accent);
}

/* Enhanced check icons */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* === SCROLL EFFECTS === */

/* Parallax effect on hero background */
@media (prefers-reduced-motion: no-preference) {
    .hero-content {
        animation: subtleFloat 6s ease-in-out infinite;
    }
    
    @keyframes subtleFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
}

/* === RESPONSIVE ENHANCEMENTS === */

@media (max-width: 768px) {
    /* Maintain animations on mobile but reduce intensity */
    .problem-card:hover,
    .testimonial-card:hover {
        transform: translateY(-6px) rotate(0deg);
    }
    
    .btn-hero:hover,
    .btn:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    /* Remove parallax on mobile for performance */
    .hero-content {
        animation: none;
    }
}

/* === STICKY CTA FOR MOBILE === */
.sticky-cta-mobile {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        animation: slideUpCTA 0.3s ease-out;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .btn-sticky {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--accent);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.05rem;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    }

    .btn-sticky:hover {
        background: #A88520;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
    }

    @keyframes slideUpCTA {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Add bottom padding to body to prevent content hiding */
    body {
        padding-bottom: 80px;
    }
}

/* === LOADING STATES === */

/* Skeleton loading for images */
img {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #f8f8f8 50%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img[src] {
    animation: none;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* === FOCUS ENHANCEMENTS === */

/* Enhanced focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.1);
}

/* === PRINT OPTIMIZATIONS === */

@media print {
    .hero::after,
    .hero::before,
    body::before,
    .trust-bar::before,
    .problem::before,
    .solution::before,
    .testimonials::before {
        display: none;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

