/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    /* Blue Gradient Theme */
    --primary: #58a0e9;
    --primary-dark: #2d6fb5;
    --primary-light: #8fd4ff;
    --secondary: #031d3a;
    --accent: #4a90e2;
    
    /* Neutral Colors */
    --dark: #1A1A1A;
    --dark-gray: #2D2D2D;
    --gray: #666666;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Preloader
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #020817 0%, #031d3a 40%, #031f45 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.fitness-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.dumbbell-loader {
    position: relative;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dumbbell-bar {
    width: 80px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(88, 160, 233, 0.6);
    position: relative;
    z-index: 2;
    animation: barPulse 1.5s ease-in-out infinite;
}

.dumbbell-weight {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.left-weight {
    left: 0;
    animation: leftWeightLift 2s ease-in-out infinite;
}

.right-weight {
    right: 0;
    animation: rightWeightLift 2s ease-in-out infinite;
}

.weight-plate {
    width: 50px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(88, 160, 233, 0.5);
}

.weight-plate:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.weight-plate:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.loading-text {
    display: flex;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 2px;
}

.loading-letter {
    display: inline-block;
    animation: letterBounce 1.4s ease-in-out infinite;
}

.loading-letter:nth-child(1) { animation-delay: 0s; }
.loading-letter:nth-child(2) { animation-delay: 0.1s; }
.loading-letter:nth-child(3) { animation-delay: 0.2s; }
.loading-letter:nth-child(4) { animation-delay: 0.3s; }
.loading-letter:nth-child(5) { animation-delay: 0.4s; }
.loading-letter:nth-child(6) { animation-delay: 0.5s; }
.loading-letter:nth-child(7) { animation-delay: 0.6s; }

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(88, 160, 233, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
    width: 0%;
    animation: progressFill 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(88, 160, 233, 0.8);
}

@keyframes barPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(88, 160, 233, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(88, 160, 233, 0.9);
    }
}

@keyframes leftWeightLift {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-5deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes rightWeightLift {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    background: linear-gradient(135deg, #020817 0%, #031d3a 40%, #031f45 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 40%, rgba(88, 160, 233, 0.5) 0%, transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(143, 212, 255, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(3, 31, 69, 0.9) 0%, transparent 60%);
    z-index: 0;
    animation: gradientPulse 8s ease-in-out infinite;
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(88, 160, 233, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 160, 233, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    opacity: 0.4;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.fitness-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.2;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-dumbbell {
    width: 80px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(88, 160, 233, 0.5);
}

.shape-dumbbell::before,
.shape-dumbbell::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(88, 160, 233, 0.6);
}

.shape-dumbbell::before {
    left: -15px;
}

.shape-dumbbell::after {
    right: -15px;
}

.shape-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    background: rgba(88, 160, 233, 0.1);
    box-shadow: 0 0 30px rgba(88, 160, 233, 0.4);
}

.shape-hexagon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    box-shadow: 0 0 25px rgba(143, 212, 255, 0.5);
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.shape:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.shape:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.shape:nth-child(4) {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.shape:nth-child(5) {
    bottom: 15%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.shape:nth-child(6) {
    top: 30%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.shape:nth-child(7) {
    bottom: 40%;
    left: 15%;
    animation-delay: 2.5s;
    animation-duration: 23s;
}

.shape:nth-child(8) {
    top: 60%;
    right: 30%;
    animation-delay: 4.5s;
    animation-duration: 17s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-40px, -50px) rotate(270deg);
    }
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(88, 160, 233, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
    width: 300px;
    height: 300px;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2s;
    width: 400px;
    height: 400px;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: var(--spacing-md);
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(88, 160, 233, 0.2);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    color: var(--white);
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
    line-height: 1.8;
}

.hero-form-container {
    max-width: 500px;
    margin: 0 auto var(--spacing-xl);
    animation: fadeInUp 1.4s ease;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(88, 160, 233, 0.3);
}

.form-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
    font-size: 1.75rem;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.lead-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 160, 233, 0.1);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin: 0;
}

.hero-trust-indicators {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item svg {
    color: var(--primary-light);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.1rem;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(88, 160, 233, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   What's Inside Section
   ============================================ */

.whats-inside {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
    transition: var(--transition-base);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.benefits-text h2 {
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.benefits-text p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.benefit-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 4px;
}

.benefit-item span {
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
}

.cheat-sheet-preview {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    transform: rotate(3deg);
    transition: var(--transition-base);
}

.cheat-sheet-preview:hover {
    transform: rotate(0deg) scale(1.05);
}

.preview-content h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    text-align: center;
}

.preview-items {
    display: grid;
    gap: var(--spacing-sm);
}

.preview-item {
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ============================================
   Social Proof Section
   ============================================ */

.social-proof {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--gray);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

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

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-section h4 {
    font-size: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Animations
   ============================================ */

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .cheat-sheet-preview {
        transform: rotate(0deg);
    }

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

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

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

    .hero-trust-indicators {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

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

    .form-card {
        padding: var(--spacing-md);
    }
}

/* ============================================
   Social Proof Widget
   ============================================ */

.sticky-cta-wrapper {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 40;
    pointer-events: none;
}

.social-proof-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 280px;
}

.social-proof-card {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    background: rgba(3, 29, 58, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 160, 233, 0.5);
    box-shadow: 0 10px 24px rgba(3, 29, 58, 0.8);
    color: #e5e7eb;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(20px);
    animation: socialProofIn 0.4s ease-out forwards;
}

.social-proof-avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.social-proof-text-strong {
    font-weight: 600;
    line-height: 1.3;
}

.social-proof-meta {
    font-size: 0.72rem;
    color: rgba(143, 212, 255, 0.8);
    margin-top: 0.1rem;
}

@keyframes socialProofIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .sticky-cta-wrapper {
        right: 1rem;
        bottom: 1rem;
    }

    .social-proof-stack {
        max-width: 240px;
    }

    .social-proof-card {
        font-size: 0.75rem;
        padding: 0.45rem 0.6rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */

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

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

