/**
 * Socia Waitlist Page Styles
 *
 * @description Stylesheet for the Socia waitlist and pricing page
 * @author Socia Development Team
 * @version 1.0
 * @created 2025
 */

/* === ROOT VARIABLES === */
:root {
    /* Brand Colors */
    --socia-primary: #9d3ef5;
    --socia-secondary: #6366f1;
    --socia-accent: #00d4aa;
    --socia-gold: #f59e0b;

    /* UI Colors */
    --socia-white: #ffffff;
    --socia-gray-50: #f9fafb;
    --socia-gray-100: #f3f4f6;
    --socia-gray-200: #e5e7eb;
    --socia-gray-300: #d1d5db;
    --socia-gray-400: #9ca3af;
    --socia-gray-500: #6b7280;
    --socia-gray-600: #4b5563;
    --socia-gray-700: #374151;
    --socia-gray-800: #1f2937;
    --socia-gray-900: #111827;

    /* Mac Colors */
    --mac-red: #ff5f57;
    --mac-yellow: #ffbd2e;
    --mac-green: #28ca42;
    --mac-gray: #f6f6f6;
    --mac-dark: #2d2d2d;

    /* Gradients */
    --socia-gradient-primary: linear-gradient(135deg, #9d3ef5 0%, #6366f1 100%);
    --socia-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9d3ef5 100%);
    --mac-wallpaper: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);

    /* Typography */
    --socia-h1: clamp(2.5rem, 5vw, 3.5rem);
    --socia-h2: clamp(2rem, 4vw, 2.75rem);
    --socia-h3: clamp(1.5rem, 3vw, 2rem);
    --socia-body: 1.125rem;

    /* Layout */
    --socia-container-width: 1200px;
    --socia-section-padding: clamp(3rem, 8vw, 5rem);
    --socia-border-radius: 1rem;
    --socia-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --socia-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --socia-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --mac-window-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

/* === GLOBAL STYLES === */
*:not(i[class*="fa"]):not([class*="fa-"]):not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.fad) {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif !important;
}

.fa, .fas, .far, .fal, .fab, .fad,
i[class*="fa-"], [class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--socia-gray-800);
    background: var(--socia-gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.socia-container {
    max-width: var(--socia-container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.socia-highlight {
    color: var(--socia-primary);
    font-weight: 700;
}

.notranslate {
    translate: no;
}

/* === HEADER === */
.socia-waitlist-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--socia-gray-200);
    padding: 1rem 0;
}

.socia-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socia-logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--socia-primary);
}

.socia-nav-link {
    color: var(--socia-gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--socia-transition);
}

.socia-nav-link:hover {
    color: var(--socia-primary);
}

/* === WAITLIST CONTAINER === */
.socia-waitlist-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 100px;
}

/* === HERO SECTION === */
.socia-waitlist-hero {
    padding: var(--socia-section-padding) 0 3rem 0;
    text-align: center;
}

.socia-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.socia-hero-badge {
    display: inline-block;
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--socia-shadow);
}

.socia-waitlist-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--socia-gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.socia-waitlist-subtitle {
    font-size: var(--socia-body);
    color: var(--socia-gray-600);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* === PROBLEMS GRID - iOS STYLE MAGIC === */
.socia-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.socia-problem-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.socia-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.socia-problem-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(157, 62, 245, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(157, 62, 245, 0.3);
}

.socia-problem-card:hover::before {
    left: 100%;
}

.socia-problem-card:active {
    transform: translateY(-2px) scale(0.98);
}

.socia-problem-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(157, 62, 245, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.socia-problem-card:hover .socia-problem-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(157, 62, 245, 0.4);
}

.socia-problem-icon i {
    color: white;
    font-size: 1.25rem;
}

/* Red Stop Icon Override */
.socia-problem-icon.socia-stop-icon {
    background: #ff0000 !important;
    border-radius: 12px !important;
    padding: 10px !important;
}

.socia-problem-card:hover .socia-problem-icon.socia-stop-icon {
    background: #ff0000 !important;
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.socia-problem-content {
    flex: 1;
    min-width: 0;
}

.socia-stop-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes pulse-stop {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.5);
        transform: scale(1.05);
    }
}

.socia-problem-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--socia-gray-700);
    font-weight: 500;
}

/* === SOLUTION CARD - HERO MOMENT === */
.socia-solution-card {
    margin-top: 3rem;
    position: relative;
    background: linear-gradient(145deg,
        rgba(157, 62, 245, 0.1),
        rgba(99, 102, 241, 0.05),
        rgba(0, 212, 170, 0.05)
    );
    backdrop-filter: blur(25px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socia-solution-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary), var(--socia-accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.socia-solution-card:hover::before {
    opacity: 1;
}

.socia-solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(157, 62, 245, 0.15),
        0 10px 30px rgba(0, 212, 170, 0.1);
}

/* Make highlight text white when solution card is hovered */
.socia-solution-card:hover .socia-highlight {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: white !important;
}

.socia-solution-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(157, 62, 245, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.socia-solution-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.socia-solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.4);
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.socia-solution-icon i {
    color: white;
    font-size: 1.5rem;
}

.socia-solution-text {
    flex: 1;
    text-align: left;
}

.socia-highlight {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.socia-solution-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--socia-gray-600);
    font-weight: 500;
    line-height: 1.4;
}

/* === SUCCESS MODAL - macOS WINDOW === */
.socia-success-modal {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 70vh;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* macOS Window Header */
.socia-macos-header {
    background: linear-gradient(180deg, #f7f7f7 0%, #ebebeb 100%);
    border-bottom: 1px solid #d1d1d1;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}

.socia-macos-controls {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 16px;
}

.socia-macos-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.socia-close-btn {
    background: linear-gradient(135deg, #ff5f57 0%, #ff453a 100%);
}

.socia-minimize-btn {
    background: linear-gradient(135deg, #ffbd2e 0%, #ff9500 100%);
}

.socia-maximize-btn {
    background: linear-gradient(135deg, #28ca42 0%, #30d158 100%);
}

.socia-macos-control:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.socia-macos-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
    flex: 1;
    margin: 0 60px;
}

/* macOS Window Content */
.socia-macos-content {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-height: 300px;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.socia-success-animation {
    position: relative;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socia-success-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--socia-accent), #00b894);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 212, 170, 0.5);
    }
}

.socia-success-circle i {
    font-size: 1.5rem;
    color: white;
    animation: checkmarkDraw 0.8s ease-in-out 0.3s both;
}

@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.socia-success-content {
    flex: 1;
    text-align: left;
    overflow: hidden;
}

.socia-success-content h2 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.socia-success-content p {
    font-size: 0.9rem;
    color: var(--socia-gray-700);
    line-height: 1.5;
    margin-bottom: 1rem;
}



.socia-success-next {
    margin: 1rem 0;
    text-align: left;
}

.socia-success-next h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
    text-align: left;
}

.socia-success-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.socia-success-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: stepSlideIn 0.6s ease-out;
    animation-fill-mode: both;
}

.socia-success-step:nth-child(1) { animation-delay: 1.4s; }
.socia-success-step:nth-child(2) { animation-delay: 1.6s; }
.socia-success-step:nth-child(3) { animation-delay: 1.8s; }

@keyframes stepSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.socia-step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.socia-step-content {
    flex: 1;
}

.socia-step-content strong {
    display: block;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 0.1rem;
    font-size: 0.85rem;
}

.socia-step-content span {
    color: var(--socia-gray-600);
    font-size: 0.8rem;
    line-height: 1.3;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .socia-success-modal {
        margin: 1rem auto;
        max-width: 90%;
        width: calc(100vw - 2rem);
    }

    .socia-macos-content {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 1.5rem;
        align-items: center;
    }

    .socia-success-animation {
        margin-bottom: 1rem;
        order: 1;
    }

    .socia-success-circle {
        width: 80px;
        height: 80px;
        animation: mobileSuccessPulse 1.5s ease-in-out infinite;
    }

    .socia-success-circle i {
        font-size: 2rem;
        animation: mobileCheckmarkDraw 1s ease-in-out 0.5s both;
    }

    .socia-success-content {
        text-align: center;
        order: 2;
        margin-top: 0;
    }

    .socia-success-content h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .socia-success-content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .socia-success-next {
        order: 3;
        margin: 1.5rem 0 0 0;
        text-align: center;
    }

    .socia-success-next h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .socia-success-steps {
        gap: 1.25rem;
        align-items: center;
    }

    .socia-success-step {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem;
        background: rgba(124, 58, 237, 0.02);
        border-radius: 8px;
        border: 1px solid rgba(124, 58, 237, 0.1);
    }

    @keyframes mobileSuccessPulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 12px 30px rgba(0, 212, 170, 0.4);
        }
        50% {
            transform: scale(1.08);
            box-shadow: 0 18px 40px rgba(0, 212, 170, 0.6);
        }
    }

    @keyframes mobileCheckmarkDraw {
        0% {
            opacity: 0;
            transform: scale(0) rotate(45deg);
        }
        60% {
            opacity: 1;
            transform: scale(1.4) rotate(45deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }
}

.socia-solution-text {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--socia-gray-700);
}

/* === DESKTOP SECTION === */
.socia-desktop-section {
    padding: 2rem 0;
    background: var(--socia-gray-100);
}

.socia-desktop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.socia-mac-desktop {
    width: 100%;
    height: 700px;
    background: var(--mac-dark);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--mac-window-shadow);
    margin: 0 auto;
}

/* === STATS SECTION === */
.socia-stats-section {
    padding: 3rem 0;
    background: var(--socia-white);
}

.socia-waitlist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.socia-waitlist-stat {
    text-align: center;
    padding: 2rem;
    background: var(--socia-gray-50);
    border-radius: var(--socia-border-radius);
    border: 2px solid transparent;
    transition: var(--socia-transition);
}

.socia-waitlist-stat:hover {
    border-color: var(--socia-primary);
    transform: translateY(-4px);
    box-shadow: var(--socia-shadow-lg);
}

.socia-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--socia-primary);
    line-height: 1;
}

.socia-stat-label {
    font-size: 0.875rem;
    color: var(--socia-gray-600);
    font-weight: 500;
    margin-top: 0.5rem;
}

.socia-desktop-wallpaper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mac-wallpaper);
    opacity: 0.8;
}

/* === MAC MENU BAR === */
.socia-menu-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    font-size: 0.8rem;
    color: var(--socia-white);
    z-index: 100;
}

.socia-menu-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.socia-menu-left .fab {
    font-size: 1rem;
}

.socia-menu-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* === MAC DOCK === */
.socia-dock {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    z-index: 50;
}

.socia-dock-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--socia-transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.socia-dock-item:hover {
    transform: translateY(-8px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.socia-dock-item i {
    font-size: 1.5rem;
    color: var(--socia-white);
}

.socia-disabled-app {
    opacity: 0.4;
    filter: grayscale(100%);
}

.socia-active-app {
    background: var(--socia-gradient-primary);
    border: 2px solid var(--socia-white);
}

.socia-active-app:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.4);
}

.socia-dock-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* Dock Tooltips */
.socia-dock-item:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--socia-white);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
}

/* === FORM WINDOW === */
.socia-form-window {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    max-height: 480px;
    background: var(--socia-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--mac-window-shadow);
    z-index: 200;
    animation: windowAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes windowAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.socia-window-header {
    background: var(--mac-gray);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--socia-gray-200);
}

.socia-window-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.socia-window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.socia-window-control.red {
    background: var(--mac-red);
}

.socia-window-control.yellow {
    background: var(--mac-yellow);
}

.socia-window-control.green {
    background: var(--mac-green);
}

.socia-window-title {
    font-weight: 600;
    color: var(--socia-gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.socia-window-title i {
    color: var(--socia-primary);
}

/* === FORM CONTENT === */
.socia-form-content {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.socia-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.socia-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 0.5rem;
}

.socia-form-header p {
    color: var(--socia-gray-600);
    font-size: 0.9rem;
}

/* === FORM STYLES === */
.socia-waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socia-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.socia-form-group {
    display: flex;
    flex-direction: column;
}

.socia-form-input,
.socia-form-select,
.socia-form-textarea {
    padding: 0.75rem;
    border: 2px solid var(--socia-gray-200);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: var(--socia-transition);
    background: var(--socia-white);
    color: var(--socia-gray-800);
}

.socia-form-input:focus,
.socia-form-select:focus,
.socia-form-textarea:focus {
    outline: none;
    border-color: var(--socia-primary);
    box-shadow: 0 0 0 3px rgba(157, 62, 245, 0.1);
}

.socia-form-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

.socia-form-select {
    cursor: pointer;
}

.socia-form-benefits {
    background: var(--socia-gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
}

.socia-form-benefits h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.socia-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.socia-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--socia-gray-700);
}

.socia-benefit-item i {
    color: var(--socia-primary);
    font-size: 0.9rem;
}

.socia-submit-btn {
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--socia-transition);
    margin-top: 1rem;
    box-shadow: var(--socia-shadow);
}

.socia-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.3);
}

.socia-form-footer {
    text-align: center;
    margin-top: 1rem;
}

.socia-form-footer p {
    font-size: 0.8rem;
    color: var(--socia-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.socia-form-footer i {
    color: var(--socia-accent);
}

/* === SOCIAL PROOF === */
.socia-social-proof {
    padding: var(--socia-section-padding) 0;
    background: var(--socia-white);
}

.socia-social-proof h3 {
    text-align: center;
    font-size: var(--socia-h3);
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 3rem;
}

.socia-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.socia-testimonial {
    background: var(--socia-gray-50);
    padding: 2rem;
    border-radius: var(--socia-border-radius);
    border-left: 4px solid var(--socia-primary);
}

.socia-testimonial-content {
    font-style: italic;
    color: var(--socia-gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.socia-testimonial-author strong {
    color: var(--socia-gray-900);
    font-weight: 600;
}

.socia-testimonial-author span {
    color: var(--socia-gray-600);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* === FOOTER === */
.socia-waitlist-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--socia-white);
    padding: 3rem 0 1rem;
}

.socia-footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.socia-footer-brand .socia-logo {
    font-size: 1.5rem;
    color: var(--socia-white);
    margin-bottom: 0.5rem;
}

.socia-footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.socia-footer-links {
    display: flex;
    gap: 2rem;
}

.socia-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--socia-transition);
}

.socia-footer-links a:hover {
    color: var(--socia-primary);
}

.socia-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socia-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .socia-desktop-container {
        padding: 0 1rem;
    }

    .socia-mac-desktop {
        height: 600px;
    }

    .socia-form-window {
        width: 400px;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .socia-container {
        padding: 0 1rem;
    }

    /* === MOBILE HERO OPTIMIZATIONS === */
    .socia-waitlist-hero {
        padding: 2rem 0;
        background: linear-gradient(135deg, rgba(157, 62, 245, 0.02) 0%, rgba(99, 102, 241, 0.02) 100%);
    }

    .socia-hero-content {
        max-width: none;
        padding: 0 0.5rem;
    }

    .socia-hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(157, 62, 245, 0.15);
    }

    .socia-waitlist-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }

    .socia-waitlist-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: none;
        padding: 0 0.5rem;
        color: var(--socia-gray-700);
    }

    .socia-stop-line {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    /* === MOBILE PROBLEM CARDS === */
    .socia-problems-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }

    .socia-problem-card {
        padding: 1.25rem;
        border-radius: 1rem;
        gap: 0.75rem;
    }

    .socia-problem-card:hover {
        transform: translateY(-2px) scale(1.01);
    }

    .socia-problem-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .socia-problem-icon i {
        font-size: 1rem;
    }

    .socia-stop-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .socia-problem-text {
        font-size: 0.9rem;
    }

    .socia-solution-card {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 1.25rem;
    }

    .socia-solution-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .socia-solution-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .socia-solution-icon i {
        font-size: 1.25rem;
    }

    .socia-highlight {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .socia-solution-subtitle {
        font-size: 0.95rem;
    }

    .socia-solution-glow {
        width: 150px;
        height: 150px;
    }

    .socia-waitlist-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .socia-mac-desktop {
        height: auto !important;
        min-height: 500px !important;
        padding: 1.5rem 0 !important;
        background: linear-gradient(135deg, rgba(157, 62, 245, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%) !important;
        border-radius: 1rem !important;
        margin: 1rem auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .socia-form-window {
        position: static !important;
        transform: none !important;
        width: 90% !important;
        max-width: 380px !important;
        max-height: none !important;
        margin: 1rem auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        box-shadow: 0 10px 40px rgba(157, 62, 245, 0.15) !important;
        border-radius: 1rem !important;
    }

    .socia-form-content {
        padding: 1.25rem;
        max-height: none;
        overflow-y: visible;
        border-radius: 0 0 1rem 1rem;
    }

    .socia-dock {
        padding: 0.75rem;
        gap: 0.5rem;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto;
        justify-content: center;
        max-width: 300px;
        border-radius: 1rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .socia-dock-item {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .socia-dock-item:hover {
        transform: scale(1.1);
    }

    .socia-dock-item i {
        font-size: 1.1rem;
    }

    .socia-discount-badge {
        position: static;
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }

    .socia-benefits-list {
        grid-template-columns: 1fr;
    }

    .socia-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socia-footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .socia-waitlist-container {
        padding-top: 80px;
    }

    .socia-waitlist-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }

    .socia-mac-desktop {
        height: auto;
        min-height: 500px;
        padding: 1rem;
    }

    .socia-form-window {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 350px;
        max-height: none;
        margin: 1rem auto;
    }

    .socia-form-content {
        padding: 1rem;
    }

    .socia-form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .socia-dock {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }

    .socia-dock-item {
        width: 35px;
        height: 35px;
    }

    .socia-dock-item i {
        font-size: 1rem;
    }

    .socia-testimonials {
        grid-template-columns: 1fr;
    }

    .socia-stop-line {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .socia-solution-text {
        font-size: 1.125rem;
        margin-top: 1rem;
    }
}

/* === DISCOUNT BADGE === */
.socia-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--socia-transition);
    box-shadow: var(--socia-shadow);
    position: absolute;
    top: 100px;
    left: 50px;
    z-index: 150;
    animation: pulse 2s infinite;
}

.socia-discount-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.4);
}

.socia-discount-badge i {
    font-size: 1rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.socia-question-icon {
    margin-left: 0.25rem;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.socia-question-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.socia-question-icon-small {
    margin-left: 0.25rem;
    font-size: 0.75rem;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.socia-question-icon-small:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--socia-primary);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(157, 62, 245, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(157, 62, 245, 0);
    }
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* === PRICING SECTION === */
.socia-pricing-section {
    padding: var(--socia-section-padding) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* === PRICING CARDS GRID === */
.socia-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.socia-pricing-card {
    background: var(--socia-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--socia-shadow);
    border: 2px solid transparent;
    transition: var(--socia-transition);
    position: relative;
    overflow: hidden;
}

.socia-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mac-window-shadow);
    border-color: var(--socia-primary);
}

.socia-pricing-card.popular {
    border-color: var(--socia-accent);
    transform: scale(1.05);
}

.socia-pricing-card.best-value {
    border-color: var(--socia-gold);
}

.socia-plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--socia-accent);
    color: var(--socia-white);
    padding: 0.5rem 1rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 10;
}

.socia-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.socia-plan-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--socia-gray-900);
    margin-bottom: 0.5rem;
}

.socia-plan-description {
    color: var(--socia-gray-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.socia-plan-pricing {
    position: relative;
}

.socia-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.socia-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--socia-primary);
}

.socia-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--socia-primary);
    line-height: 1;
}

.socia-period {
    font-size: 1.25rem;
    color: var(--socia-gray-600);
    font-weight: 500;
}

.socia-vat-note {
    font-size: 0.75rem;
    color: var(--socia-gray-500);
    font-weight: 400;
    margin-left: 0.5rem;
    opacity: 0.8;
}

.socia-original-price {
    text-align: center;
    color: var(--socia-gray-500);
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.socia-discount-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--socia-accent);
    color: var(--socia-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.socia-discount-badge-small:hover {
    background: var(--socia-primary);
    transform: translateY(-1px);
}

.socia-card-features {
    margin-bottom: 2rem;
}

.socia-features-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.socia-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--socia-gray-700);
}

.socia-feature-item i {
    color: var(--socia-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.socia-limits-list {
    border-top: 1px solid var(--socia-gray-200);
    padding-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.socia-limit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--socia-gray-600);
}

.socia-limit-item i {
    color: var(--socia-gray-500);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.socia-card-footer {
    text-align: center;
}

.socia-select-plan-btn {
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--socia-transition);
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.socia-select-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.3);
}

.socia-trial-info {
    font-size: 0.875rem;
    color: var(--socia-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.socia-trial-info i {
    color: var(--socia-accent);
}

/* === ENHANCED CALCULATOR === */
.socia-calculator-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--socia-white);
    border-radius: 1rem;
    box-shadow: var(--socia-shadow);
}

.socia-calculator-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--socia-gray-900);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.socia-calculator-header i {
    color: var(--socia-primary);
}

.socia-plan-selector {
    background: var(--socia-white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--socia-shadow);
}

.socia-selector-label {
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.socia-selected-plan {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.socia-selected-plan .plan-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--socia-primary);
}

.socia-selected-plan .plan-description {
    color: var(--socia-gray-600);
    font-size: 1rem;
}

.socia-billing-options {
    background: var(--socia-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--socia-shadow);
}

.socia-billing-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1.5rem;
}

.socia-billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.socia-billing-option {
    background: var(--socia-gray-50);
    border: 2px solid var(--socia-gray-200);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--socia-transition);
    position: relative;
}

.socia-billing-option:hover {
    border-color: var(--socia-primary);
    transform: translateY(-4px);
    box-shadow: var(--socia-shadow-lg);
}

.socia-billing-option.selected {
    background: var(--socia-gradient-primary);
    border-color: var(--socia-primary);
    color: var(--socia-white);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(157, 62, 245, 0.3);
}

.socia-billing-option.recommended {
    border-color: var(--socia-accent);
}

.socia-billing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.socia-billing-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.popular-badge {
    background: var(--socia-accent);
    color: var(--socia-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.savings-badge {
    background: var(--socia-gold);
    color: var(--socia-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.socia-billing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.socia-billing-price .currency {
    font-size: 1.25rem;
    font-weight: 700;
}

.socia-billing-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.socia-billing-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.socia-billing-details {
    font-size: 0.95rem;
    opacity: 0.9;
}

.socia-billing-option.selected .socia-billing-details {
    opacity: 1;
}

.savings {
    color: var(--socia-accent);
    font-weight: 600;
}

.socia-billing-option.selected .savings {
    color: var(--socia-white);
}

.socia-payment-options {
    text-align: center;
    margin-top: 1.5rem;
}

.socia-payment-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.socia-payment-badges i {
    font-size: 2rem;
    color: var(--socia-gray-400);
    transition: var(--socia-transition);
}

.socia-payment-badges i:hover {
    color: var(--socia-primary);
    transform: scale(1.1);
}

.socia-features-section {
    background: var(--socia-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--socia-shadow);
}

.socia-features-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.socia-features-section h4 i {
    color: var(--socia-primary);
}

.socia-support-info {
    border-top: 1px solid var(--socia-gray-200);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.socia-support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--socia-gray-700);
    margin-bottom: 0.75rem;
}

.socia-support-item i {
    color: var(--socia-accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.socia-form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.socia-form-message.success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.socia-form-message.error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.socia-form-message.info {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: #1f2937;
}

.socia-form-message i {
    font-size: 1.1rem;
}

.socia-pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.socia-pricing-badge {
    display: inline-block;
    background: var(--socia-accent);
    color: var(--socia-white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.socia-pricing-title {
    font-size: var(--socia-h2);
    font-weight: 900;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.socia-pricing-subtitle {
    font-size: var(--socia-body);
    color: var(--socia-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.socia-pricing-calculator {
    max-width: 800px;
    margin: 0 auto;
    background: var(--socia-white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--mac-window-shadow);
    border: 1px solid var(--socia-gray-200);
}

.socia-pricing-step {
    margin-bottom: 2.5rem;
}

.socia-pricing-step:last-child {
    margin-bottom: 0;
}

.socia-pricing-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.socia-step-number {
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.socia-duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.socia-duration-option {
    position: relative;
    background: var(--socia-gray-50);
    border: 2px solid var(--socia-gray-200);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--socia-transition);
}

.socia-duration-option:hover {
    border-color: var(--socia-primary);
    transform: translateY(-2px);
}

.socia-duration-option.selected {
    background: var(--socia-gradient-primary);
    border-color: var(--socia-primary);
    color: var(--socia-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.3);
}

.socia-duration-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--socia-accent);
    color: var(--socia-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.socia-duration-months {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.socia-duration-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-primary);
}

.socia-duration-option.selected .socia-duration-price {
    color: var(--socia-white);
}

.socia-duration-savings {
    font-size: 0.875rem;
    color: var(--socia-gray-600);
    margin-top: 0.5rem;
}

.socia-duration-option.selected .socia-duration-savings {
    color: rgba(255, 255, 255, 0.8);
}

.socia-pricing-summary {
    background: var(--socia-gray-50);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--socia-primary);
}

.socia-pricing-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--socia-gray-200);
}

.socia-pricing-breakdown:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.socia-pricing-label {
    font-weight: 600;
    color: var(--socia-gray-700);
}

.socia-pricing-value {
    font-weight: 700;
    color: var(--socia-gray-900);
}

.socia-pricing-discount {
    color: var(--socia-accent) !important;
}

.socia-pricing-total .socia-pricing-label {
    font-size: 1.25rem;
    color: var(--socia-gray-900);
}

.socia-pricing-total .socia-pricing-value {
    font-size: 1.5rem;
    color: var(--socia-primary);
}

.socia-pricing-benefits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--socia-gray-200);
}

.socia-pricing-benefits h5 {
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
}

.socia-pricing-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.socia-pricing-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--socia-gray-700);
}

.socia-pricing-benefit i {
    color: var(--socia-accent);
    font-size: 1rem;
}

.socia-checkout-btn {
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--socia-transition);
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--socia-shadow-lg);
}

.socia-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(157, 62, 245, 0.4);
}

.socia-checkout-btn i {
    font-size: 1.25rem;
}

.socia-pricing-guarantee {
    background: var(--socia-white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--socia-shadow);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.socia-guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.socia-guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--socia-gray-700);
}

.socia-guarantee-item i {
    color: var(--socia-accent);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.socia-guarantee-item span {
    font-weight: 600;
}

/* === PRICING RESPONSIVE === */
@media (max-width: 1024px) {
    .socia-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .socia-pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .socia-pricing-calculator {
        padding: 2rem;
        margin: 0 1rem;
    }

    .socia-calculator-header {
        padding: 1.5rem;
    }

    .socia-calculator-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .socia-billing-grid {
        grid-template-columns: 1fr;
    }

    .socia-pricing-grid {
        grid-template-columns: 1fr;
    }

    .socia-pricing-benefits-list {
        grid-template-columns: 1fr;
    }

    .socia-discount-badge {
        position: static;
        margin-bottom: 1rem;
        align-self: center;
    }

    .socia-guarantee-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .socia-guarantee-item {
        flex-direction: row;
        text-align: left;
    }

    .socia-guarantee-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .socia-payment-badges {
        gap: 0.75rem;
    }

    .socia-payment-badges i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .socia-pricing-calculator {
        padding: 1.5rem;
    }

    .socia-calculator-header,
    .socia-plan-selector,
    .socia-billing-options,
    .socia-pricing-summary,
    .socia-features-section,
    .socia-pricing-guarantee {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .socia-billing-option {
        padding: 1rem;
    }

    .socia-billing-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .socia-billing-price .amount {
        font-size: 2rem;
    }

    .socia-pricing-breakdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .socia-checkout-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .socia-plan-name {
        font-size: 1.5rem;
    }

    .socia-price {
        font-size: 2.5rem;
    }

    .socia-features-list {
        gap: 0.5rem;
    }

    .socia-feature-item {
        font-size: 0.875rem;
    }
}

/* === TOOLS CHECKLIST === */
.socia-form-label {
    display: block;
    font-weight: 600;
    color: var(--socia-gray-700);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.socia-tools-checklist {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(8px);
}

.socia-tools-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.socia-tools-row:last-child {
    margin-bottom: 0;
}

.socia-tool-checkbox {
    position: relative;
    background: white;
    border: 2px solid var(--socia-gray-200);
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem 0.875rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.socia-tool-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.socia-tool-checkbox:hover {
    border-color: var(--socia-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.socia-tool-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.socia-tool-checkbox label {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--socia-gray-700);
    cursor: pointer;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding-left: 1.75rem;
}

.socia-tool-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--socia-gray-300);
    border-radius: 0.375rem;
    background: white;
    transition: all 0.3s ease;
}

.socia-tool-checkbox label::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 12px;
    font-weight: 700;
    color: white;
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.socia-tool-checkbox input[type="checkbox"]:checked + label::before {
    background: var(--socia-primary);
    border-color: var(--socia-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.socia-tool-checkbox input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) scale(1);
}

.socia-tool-checkbox input[type="checkbox"]:checked + label {
    color: var(--socia-primary);
    font-weight: 600;
}

.socia-tool-checkbox:has(input[type="checkbox"]:checked) {
    border-color: var(--socia-primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(157, 62, 245, 0.03));
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.socia-tool-checkbox:has(input[type="checkbox"]:checked)::before {
    opacity: 0.03;
}

@media (max-width: 768px) {
    .socia-tools-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .socia-tools-checklist {
        padding: 1.25rem;
        border-radius: 0.875rem;
    }

    .socia-tool-checkbox {
        padding: 0.75rem 1rem 0.75rem 0.875rem;
    }

    .socia-tool-checkbox label {
        font-size: 0.7rem;
        padding-left: 1.5rem;
    }

    .socia-tool-checkbox label::before {
        width: 16px;
        height: 16px;
    }

    .socia-tool-checkbox label::after {
        left: 3px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .socia-tools-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .socia-tools-checklist {
        padding: 1rem;
    }

    .socia-tool-checkbox {
        padding: 0.875rem 1rem 0.875rem 0.875rem;
    }

    .socia-tool-checkbox label {
        font-size: 0.8rem;
    }

    /* Fix tools layout on mobile */
    .socia-tools-row {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem;
    }

    .socia-tool-item {
        max-width: 100%;
    }

    .socia-compact-tools .socia-tools-row {
        padding: 0.5rem;
    }
}

/* === LAPTOP / SMALL SCREEN OPTIMIZATIONS === */
@media (max-width: 1024px) {
    .socia-modal-overlay {
        padding: 1rem;
    }

    .socia-modal {
        max-width: 90vw;
        max-height: 85vh;
    }

    .socia-confirmation-summary {
        gap: 0.75rem;
    }

    .socia-summary-section {
        margin-bottom: 0.75rem;
    }

    .socia-tools-row {
        gap: 0.25rem;
    }

    .socia-tool-item {
        max-width: 48%;
    }

    .socia-tool-checkbox {
        padding: 0.25rem 0.375rem;
        min-height: 32px;
    }

    .socia-tool-checkbox label {
        font-size: 0.75rem;
    }
}

/* === CUSTOM PRICING STYLES === */
.socia-price-display.custom {
    text-align: center;
    padding: 1rem 0;
}

.socia-custom-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--socia-primary);
    margin-bottom: 0.25rem;
}

.socia-custom-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--socia-gray-600);
    font-weight: 500;
}

.socia-select-plan-btn.custom-plan {
    background: linear-gradient(135deg, var(--socia-accent), var(--socia-secondary));
    border-color: var(--socia-accent);
}

.socia-select-plan-btn.custom-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

/* === AGENCY SECTION LAYOUT === */
.socia-agency-section {
    margin-top: 6rem;
    position: relative;
}

.socia-agency-section::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(135deg, transparent, var(--socia-primary), var(--socia-accent), transparent);
    border-radius: 2px;
}


.socia-pricing-grid.main-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.socia-pricing-grid.agency-plans {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.socia-pricing-card.agency-card {
    width: 100%;
    height: 200px;
    border: 2px solid var(--socia-primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(157, 62, 245, 0.03));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socia-agency-content {
    text-align: center;
    padding: 3rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.socia-agency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--socia-primary);
    margin: 1rem 0 0 0;
    line-height: 1.2;
}

.socia-agency-subtitle {
    font-size: 1.2rem;
    color: var(--socia-gray-600);
    margin: 0;
    font-weight: 500;
}

.socia-pricing-card.agency-card .socia-select-plan-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    width: 200px;
    flex-shrink: 0;
    align-self: center;
}

.socia-pricing-card.agency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-accent));
}

.socia-pricing-card.agency-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--socia-accent);
}

@media (max-width: 1024px) {
    .socia-pricing-grid.main-plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .socia-pricing-grid.agency-plans {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .socia-pricing-grid.main-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .socia-agency-section {
        margin-top: 4rem;
    }

    .socia-agency-section::before {
        top: -2rem;
        width: 90%;
    }

    .socia-pricing-card.agency-card {
        height: auto;
        min-height: 180px;
    }

    .socia-agency-content {
        padding: 2.5rem 1.5rem;
        gap: 1rem;
    }

    .socia-agency-title {
        font-size: 2rem;
        margin: 0.75rem 0 0 0;
    }

    .socia-agency-subtitle {
        font-size: 1rem;
        margin: 0;
    }

    .socia-pricing-card.agency-card .socia-select-plan-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* === CONFIRMATION MODAL === */
.socia-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.socia-modal {
    background: var(--socia-white);
    border-radius: 1.25rem;
    max-width: 520px;
    width: 100%;
    max-height: 80vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.socia-modal-header {
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    color: var(--socia-white);
    padding: 1.5rem 2rem;
    border-radius: 1.25rem 1.25rem 0 0;
    position: relative;
    text-align: center;
    flex-shrink: 0;
}

.socia-modal-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.socia-modal-header i {
    color: var(--socia-gold);
    font-size: 1.5rem;
}

.socia-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--socia-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.socia-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.socia-modal-body {
    padding: 1.25rem 1.75rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    max-height: calc(80vh - 140px);
}

.socia-confirmation-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socia-summary-section {
    background: var(--socia-gray-50);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border-left: 3px solid var(--socia-primary);
}

.socia-summary-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--socia-gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.socia-summary-section:nth-child(3) {
    grid-column: 1 / -1;
}

.socia-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--socia-gray-200);
}

.socia-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.socia-label {
    font-weight: 500;
    color: var(--socia-gray-600);
    min-width: 100px;
    font-size: 0.9rem;
}

.socia-value {
    font-weight: 600;
    color: var(--socia-gray-800);
    text-align: right;
    flex: 1;
    font-size: 0.9rem;
}

.socia-tools-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.socia-tool-badge {
    background: var(--socia-primary);
    color: var(--socia-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.socia-modal-footer {
    background: var(--socia-gray-50);
    padding: 1.25rem 2rem;
    border-radius: 0 0 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.socia-btn-primary, .socia-btn-secondary {
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.socia-modal-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}

.socia-btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.socia-modal-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.socia-btn-primary {
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    color: var(--socia-white);
}

.socia-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.socia-btn-secondary {
    background: var(--socia-white);
    color: var(--socia-gray-700);
    border: 2px solid var(--socia-gray-300);
}

.socia-btn-secondary:hover {
    border-color: var(--socia-primary);
    color: var(--socia-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .socia-modal-overlay {
        padding: 1rem;
    }

    .socia-modal {
        max-height: 90vh;
    }

    .socia-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .socia-modal-header h3 {
        font-size: 1.2rem;
    }

    .socia-modal-body {
        padding: 1.25rem 1.5rem;
    }

    .socia-confirmation-summary {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .socia-summary-section {
        padding: 1rem;
    }

    .socia-summary-section:nth-child(3) {
        grid-column: auto;
    }

    .socia-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }

    .socia-value {
        text-align: left;
    }

    .socia-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }

    .socia-btn-primary, .socia-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* === FOUNDER PRICING SECTION === */
.socia-founder-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02), rgba(157, 62, 245, 0.02));
}

.socia-founder-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 2px dashed var(--socia-primary);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    position: relative;
}

.socia-founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-gold));
}

.socia-founder-header {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(245, 158, 11, 0.05));
    padding: 2rem;
    text-align: center;
    border-bottom: 1px dashed rgba(124, 58, 237, 0.2);
}

.socia-founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-gold));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.socia-founder-badge i {
    font-size: 1rem;
}

.socia-founder-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--socia-gray-800);
    margin: 0 0 0.75rem 0;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.socia-founder-header p {
    font-size: 1.2rem;
    color: var(--socia-gray-600);
    margin: 0;
}

.socia-founder-content {
    padding: 2rem;
}

.socia-founder-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.socia-founder-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--socia-gray-50);
    border-radius: 1rem;
    border-left: 4px solid var(--socia-primary);
    transition: all 0.3s ease;
}

.socia-founder-feature:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

.socia-founder-feature i {
    font-size: 1.5rem;
    color: var(--socia-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.socia-founder-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--socia-gray-800);
    margin: 0 0 0.5rem 0;
}

.socia-founder-feature p {
    font-size: 0.95rem;
    color: var(--socia-gray-600);
    margin: 0;
    line-height: 1.5;
}

.socia-founder-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.socia-founder-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border: 2px dashed var(--socia-gold);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.socia-founder-highlight h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--socia-gray-800);
    margin: 0 0 1rem 0;
}

.socia-founder-highlight p {
    color: var(--socia-gray-600);
    margin: 0 0 1.5rem 0;
}

.socia-founder-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socia-counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--socia-gold);
    line-height: 1;
}

.socia-counter-label {
    font-size: 0.9rem;
    color: var(--socia-gray-600);
    font-weight: 500;
}

.socia-founder-legal {
    background: var(--socia-gray-50);
    border-radius: 1rem;
    padding: 2rem;
}

.socia-founder-legal h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--socia-gray-800);
    margin: 0 0 1rem 0;
}

.socia-founder-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socia-founder-legal li {
    font-size: 0.9rem;
    color: var(--socia-gray-600);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.socia-founder-legal li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--socia-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .socia-founder-header {
        padding: 1.5rem;
    }

    .socia-founder-header h3 {
        font-size: 1.6rem;
    }

    .socia-founder-header p {
        font-size: 1rem;
    }

    .socia-founder-content {
        padding: 1.5rem;
    }

    .socia-founder-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .socia-founder-feature {
        padding: 1.25rem;
    }

    .socia-founder-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .socia-founder-highlight {
        padding: 1.5rem;
    }

    .socia-founder-highlight h4 {
        font-size: 1.1rem;
    }

    .socia-counter {
        font-size: 2.5rem;
    }

    .socia-founder-legal {
        padding: 1.5rem;
    }
}

/* === WIZARD FORM STYLES === */
.socia-wizard-form {
    position: relative;
}

/* Wizard Progress Bar */
.socia-wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 1rem;
    position: relative;
}

.socia-wizard-progress::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--socia-gray-200);
    z-index: 1;
}

.socia-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.socia-step-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--socia-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--socia-gray-500);
    transition: all 0.3s ease;
    border: 2px solid var(--socia-gray-200);
}

.socia-wizard-step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--socia-gray-500);
    text-align: center;
    transition: all 0.3s ease;
}

.socia-wizard-step.active .socia-step-circle {
    background: var(--socia-primary);
    color: white;
    border-color: var(--socia-primary);
    box-shadow: 0 0 0 4px rgba(157, 62, 245, 0.2);
}

.socia-wizard-step.active span {
    color: var(--socia-primary);
    font-weight: 600;
}

.socia-wizard-step.completed .socia-step-circle {
    background: var(--socia-accent);
    color: white;
    border-color: var(--socia-accent);
}

.socia-wizard-step.completed span {
    color: var(--socia-accent);
    font-weight: 500;
}

/* Wizard Frames */
.socia-wizard-frame {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.socia-wizard-frame.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.socia-wizard-content {
    margin-bottom: 1rem;
}

/* Big Input Elements for Wizard */
.socia-big-input-group {
    margin-bottom: 1rem;
}

.socia-big-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--socia-gray-700);
    margin-bottom: 0.25rem;
}

.socia-big-input,
.socia-big-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--socia-gray-200);
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.socia-big-input:focus,
.socia-big-select:focus {
    outline: none;
    border-color: var(--socia-primary);
    box-shadow: 0 0 0 4px rgba(157, 62, 245, 0.1);
}

.socia-big-input::placeholder {
    color: var(--socia-gray-400);
    font-weight: 400;
}

/* Tools Selection Styles */
.socia-wizard-tools-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.socia-tools-category {
    background: var(--socia-gray-50);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--socia-gray-100);
}

.socia-tools-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--socia-gray-700);
    margin-bottom: 1.5rem;
}

.socia-tools-category-title i {
    font-size: 1.25rem;
    color: var(--socia-primary);
}

.socia-tools-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.socia-tool-card {
    background: white;
    border: 2px solid var(--socia-gray-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.socia-tool-card:hover {
    border-color: var(--socia-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.15);
}

.socia-tool-card.selected {
    border-color: var(--socia-primary);
    background: rgba(157, 62, 245, 0.05);
    box-shadow: 0 0 0 2px rgba(157, 62, 245, 0.2);
}

.socia-tool-icon {
    font-size: 2rem;
    color: var(--socia-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.socia-tool-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.socia-tool-checkbox {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--socia-gray-300);
    border-radius: 0.25rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.socia-tool-checkbox input[type="checkbox"]:checked {
    background: var(--socia-primary);
    border-color: var(--socia-primary);
}

.socia-tool-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.socia-tool-checkbox:hover input[type="checkbox"] {
    border-color: var(--socia-primary);
}

.socia-tool-checkbox:has(input:checked) {
    background: rgba(124, 58, 237, 0.05);
}

.socia-tool-checkbox label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--socia-gray-700);
    cursor: pointer;
    margin: 0;
    user-select: none;
    text-align: left;
    flex: 1;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.socia-tool-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.socia-tool-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--socia-gray-700);
    text-align: center;
    cursor: pointer;
}

/* Compact Tools Layout */
.socia-compact-tools {
    margin-top: 1rem;
    overflow-x: hidden;
    max-width: 100%;
}

.socia-tools-intro {
    margin-bottom: 1rem;
    text-align: center;
}

.socia-tools-description {
    font-size: 0.8125rem;
    color: var(--socia-gray-600);
    margin: 0;
    font-weight: 700;
}

.socia-tools-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: var(--socia-gray-50);
    border-radius: 0.5rem;
    border: 1px solid var(--socia-gray-100);
}

.socia-tool-item {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Clean ASP.NET CheckBox styling */
.socia-tool-checkbox {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    text-align: left;
}

.socia-tool-checkbox input[type="checkbox"] {
    appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid var(--socia-gray-300);
    border-radius: 0.25rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin: 0;
    background: var(--socia-white);
}

.socia-tool-checkbox input[type="checkbox"]:checked {
    background: var(--socia-primary);
    border-color: var(--socia-primary);
}

.socia-tool-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.socia-tool-checkbox label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--socia-gray-700);
    cursor: pointer;
    margin: 0;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

/* Wizard Buttons */
.socia-wizard-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.socia-wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.socia-wizard-next {
    background: var(--socia-primary);
    color: white;
    margin-left: auto;
}

.socia-wizard-next:hover {
    background: #8b35e8;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(157, 62, 245, 0.3);
}

.socia-wizard-back {
    background: var(--socia-gray-100);
    color: var(--socia-gray-700);
}

.socia-wizard-back:hover {
    background: var(--socia-gray-200);
    transform: translateY(-1px);
}

.socia-wizard-submit {
    background: var(--socia-gradient-primary);
    color: white;
    font-size: 0.875rem;
    padding: 0.75rem 2rem;
    margin-left: auto;
}

.socia-wizard-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(157, 62, 245, 0.4);
}

/* Step 4 Confirmation Styles */
.socia-confirmation-preview {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--socia-gray-100);
    margin-bottom: 2rem;
}

.socia-preview-section {
    margin-bottom: 2rem;
}

.socia-preview-section:last-child {
    margin-bottom: 0;
}

.socia-preview-section h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--socia-gray-700);
    margin-bottom: 1rem;
}

.socia-preview-section h4 i {
    font-size: 1.25rem;
    color: var(--socia-primary);
}

.socia-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.socia-preview-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.socia-preview-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--socia-gray-500);
}

.socia-preview-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--socia-gray-800);
}

.socia-preview-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.socia-preview-placeholder {
    font-style: italic;
    color: var(--socia-gray-400);
}

.socia-tool-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--socia-primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.socia-wizard-final-cta {
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.05), rgba(0, 212, 170, 0.05));
    border: 2px dashed var(--socia-primary);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.socia-final-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socia-benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--socia-gray-700);
}

.socia-benefit-item i {
    font-size: 1.25rem;
    color: var(--socia-primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .socia-wizard-progress {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .socia-wizard-progress::before {
        top: 0.75rem;
        left: 20%;
        right: 20%;
    }

    .socia-step-circle {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }

    .socia-wizard-step span {
        font-size: 0.625rem;
    }

    .socia-tools-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .socia-wizard-header h2 {
        font-size: 1.5rem;
    }

    .socia-wizard-header p {
        font-size: 1rem;
    }

    .socia-big-input,
    .socia-big-select {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .socia-tools-cards {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .socia-tool-card {
        padding: 1rem;
    }

    .socia-tool-icon {
        font-size: 1.5rem;
    }

    .socia-wizard-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .socia-wizard-btn {
        width: 100%;
        justify-content: center;
    }

    .socia-wizard-next,
    .socia-wizard-submit {
        margin-left: 0;
        order: 2;
    }

    .socia-wizard-back {
        order: 1;
    }

    .socia-preview-grid {
        grid-template-columns: 1fr;
    }

    .socia-final-benefits {
        gap: 0.75rem;
    }

    .socia-benefit-item {
        font-size: 0.9rem;
    }
}

/* === DUPLICATE EMAIL MODAL === */
.socia-duplicate-modal {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--mac-window-shadow);
    animation: duplicateModalAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes duplicateModalAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.socia-macos-header {
    background: var(--mac-gray);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--socia-gray-200);
    border-radius: 1rem 1rem 0 0;
}

.socia-macos-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.socia-macos-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.socia-close-btn {
    background: var(--mac-red);
}

.socia-close-btn:hover {
    background: #e14942;
}

.socia-minimize-btn {
    background: var(--mac-yellow);
}

.socia-maximize-btn {
    background: var(--mac-green);
}

.socia-macos-title {
    font-weight: 600;
    color: var(--socia-gray-700);
    font-size: 0.9rem;
}

.socia-macos-content {
    padding: 2rem;
}

.socia-duplicate-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.socia-duplicate-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--socia-accent), #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: duplicatePulse 2s infinite;
}

@keyframes duplicatePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

.socia-duplicate-content h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--socia-gray-800);
    margin: 0 0 1rem 0;
}

.socia-duplicate-message {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(0, 212, 170, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--socia-gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.socia-duplicate-next {
    margin-bottom: 2rem;
}

.socia-duplicate-next h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--socia-gray-800);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.socia-duplicate-updates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socia-update-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--socia-gray-50);
    border-radius: 0.75rem;
    border-left: 4px solid var(--socia-primary);
}

.socia-update-icon {
    width: 40px;
    height: 40px;
    background: var(--socia-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.socia-update-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.socia-update-content strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--socia-gray-800);
}

.socia-update-content span {
    font-size: 0.875rem;
    color: var(--socia-gray-600);
    line-height: 1.4;
}

.socia-duplicate-footer {
    text-align: center;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid var(--socia-gray-200);
}

.socia-duplicate-footer p {
    margin: 0 0 1rem 0;
    color: var(--socia-gray-600);
    font-size: 0.9rem;
}

.socia-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.socia-social-link {
    width: 40px;
    height: 40px;
    background: var(--socia-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socia-gray-600);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.socia-social-link:hover {
    background: var(--socia-primary);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Duplicate Modal */
@media (max-width: 768px) {
    .socia-duplicate-modal {
        width: 95%;
        max-height: 90vh;
    }

    .socia-macos-content {
        padding: 1.5rem;
    }

    .socia-duplicate-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .socia-duplicate-content h2 {
        font-size: 1.5rem;
    }

    .socia-duplicate-message {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .socia-update-item {
        padding: 0.75rem;
    }

    .socia-update-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .socia-social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* === COMPACT PROFESSIONAL CHECKBOX STYLING - OVERRIDES LANDING.CSS === */

/* CRITICAL: Override all conflicting landing.css styles */
body .socia-tools-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
}

@media (max-width: 768px) {
    body .socia-tools-row {
        display: block !important;
        margin-bottom: 20px !important;
    }

    body .socia-tool-item {
        width: 100% !important;
        margin-bottom: 12px !important;
        display: block !important;
    }

    body .socia-tool-checkbox {
        padding: 20px 16px !important;
        min-height: 70px !important;
        font-size: 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        border: 2px solid #e5e7eb !important;
        border-radius: 8px !important;
        background: white !important;
        transform: none !important;
        box-shadow: none !important;
    }

    body .socia-tool-checkbox input[type="checkbox"] {
        width: 22px !important;
        height: 22px !important;
        margin: 0 15px 0 0 !important;
        flex-shrink: 0 !important;
    }

    body .socia-tool-checkbox label {
        font-size: 18px !important;
        line-height: 1.5 !important;
        flex: 1 !important;
        overflow: visible !important;
        white-space: nowrap !important;
        padding: 0 !important;
        margin: 0 !important;
        font-weight: 500 !important;
        color: #374151 !important;
        text-overflow: visible !important;
        position: static !important;
        z-index: auto !important;
    }

    body .socia-tool-checkbox * {
        font-size: 18px !important;
        overflow: visible !important;
        text-overflow: visible !important;
    }
}

body .socia-tool-item {
    width: 100% !important;
}

/* CRITICAL: Override landing.css pseudo-element styles */
body .socia-tool-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 4px !important;
    background: white !important;
    cursor: pointer !important;
    width: 100% !important;
    font-size: 13px !important;
    min-height: 32px !important;
    box-sizing: border-box !important;
    position: static !important;
    overflow: visible !important;
    transform: none !important;
    box-shadow: none !important;
}

body .socia-tool-checkbox::before {
    display: none !important;
}

body .socia-tool-checkbox:hover {
    border-color: #7c3aed !important;
    background: #fafbff !important;
    transform: none !important;
    box-shadow: none !important;
}

/* CRITICAL: Make checkbox input visible */
body .socia-tool-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    position: static !important;
    opacity: 1 !important;
}

/* CRITICAL: Override label pseudo-elements */
body .socia-tool-checkbox label {
    font-size: 13px !important;
    color: #374151 !important;
    cursor: pointer !important;
    flex: 1 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    display: block !important;
    position: static !important;
    z-index: auto !important;
    padding-left: 0 !important;
}

body .socia-tool-checkbox label::before,
body .socia-tool-checkbox label::after {
    display: none !important;
}

/* Extra fixes to ensure text visibility */
body .socia-tool-checkbox * {
    color: #374151 !important;
    font-size: 13px !important;
}

/* Force override any hidden text */
body .socia-tool-checkbox label,
body .socia-tool-checkbox span {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline !important;
}

/* === ENHANCED MOBILE RESPONSIVENESS FOR PORTUGUESE PAGES === */
@media (max-width: 768px) {
    /* Ensure perfect mobile layout for Portuguese pages */
    .socia-waitlist-hero,
    .socia-hero,
    .socia-problem,
    .socia-solution,
    .socia-features {
        padding: 2rem 1rem !important;
    }

    /* Mobile-optimized Portuguese text */
    .socia-waitlist-title,
    .socia-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    /* Ensure language toggle appears correctly */
    .socia-nav-container,
    .socia-floating-topbar-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
    }

    /* Language toggle mobile optimization */
    .socia-lang-toggle {
        display: flex !important;
        margin: 0 0.5rem !important;
        z-index: 999 !important;
    }

    /* Portuguese pricing cards mobile */
    .socia-pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    /* Portuguese form elements */
    .socia-wizard-step,
    .socia-form-group {
        margin-bottom: 1.5rem !important;
    }

    /* Portuguese button styling */
    .socia-floating-cta,
    .socia-nav-cta,
    .socia-btn {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
        white-space: nowrap !important;
    }

    /* Ensure proper spacing for Portuguese content */
    .socia-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    /* Portuguese specific mobile improvements */
    .socia-problems-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .socia-problem-card {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Ensure footnote styling works on mobile */
    .socia-footnote {
        font-size: 0.8rem !important;
        padding: 0.5rem !important;
        margin: 1rem 0 !important;
    }
}

/* === LANGUAGE TOGGLE STYLING FOR PORTUGUESE PAGES === */
.socia-lang-toggle {
    display: flex;
    background: rgba(157, 62, 245, 0.1);
    border: 1px solid rgba(157, 62, 245, 0.3);
    border-radius: 1.5rem;
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--socia-gray-800, #374151);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--socia-primary, #9d3ef5);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(157, 62, 245, 0.2);
}

/* Extra mobile language toggle styling */
@media (max-width: 480px) {
    .socia-lang-toggle {
        padding: 1px;
        gap: 1px;
        border-radius: 1rem;
    }

    .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 0.75rem;
    }
}

/* ========================================
   CHECKOUT WIZARD MODAL
   ======================================== */

.socia-checkout-wizard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.socia-checkout-wizard-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.socia-checkout-wizard-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.5rem 0;
}

.socia-checkout-wizard-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.socia-checkout-wizard-close:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

.socia-checkout-wizard-content {
    padding: 0 2rem 2rem;
}

.socia-checkout-wizard-progress {
    margin-bottom: 2rem;
}

.socia-checkout-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.socia-checkout-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #9d3ef5, #764ba2);
    transition: width 0.4s ease;
    width: 33.33%;
}

.socia-checkout-progress-text {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

.socia-checkout-wizard-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.socia-checkout-wizard-title i {
    color: #9d3ef5;
}

.socia-checkout-wizard-step {
    display: none;
}

.socia-checkout-wizard-step.active {
    display: block;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.socia-checkout-wizard-input-group {
    margin-bottom: 1.5rem;
}

.socia-checkout-wizard-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.socia-checkout-wizard-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.socia-checkout-wizard-input:focus {
    outline: none;
    border-color: #9d3ef5;
    box-shadow: 0 0 0 3px rgba(157, 62, 245, 0.1);
}

.socia-checkout-wizard-input.error {
    border-color: #ef4444;
}

.socia-checkout-wizard-helper {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.socia-checkout-wizard-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.socia-checkout-wizard-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.socia-checkout-wizard-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.socia-checkout-wizard-back {
    background: #f3f4f6;
    color: #6b7280;
}

.socia-checkout-wizard-back:hover {
    background: #e5e7eb;
}

.socia-checkout-wizard-next,
.socia-checkout-wizard-submit {
    background: linear-gradient(135deg, #9d3ef5, #764ba2);
    color: white;
}

.socia-checkout-wizard-next:hover,
.socia-checkout-wizard-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 62, 245, 0.3);
}

.socia-checkout-wizard-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.socia-checkout-selected-plan {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
}

.socia-checkout-selected-plan strong {
    color: #9d3ef5;
    font-weight: 700;
}

@media (max-width: 768px) {
    .socia-checkout-wizard-modal {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }

    .socia-checkout-wizard-content {
        padding: 0 1.5rem 2rem;
    }

    .socia-checkout-wizard-title {
        font-size: 1.5rem;
    }

    .socia-checkout-wizard-buttons {
        flex-direction: column;
    }
}