/**
 * Socia Landing Page Styles
 *
 * @description Main stylesheet for the Socia real estate platform landing page
 * @author Socia Development Team
 * @version 1.0
 * @created 2025
 */

/* === CSS RESET & VARIABLES === */
*: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;
}

/* Explicit FontAwesome icon styling */
.fas, .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.fab, .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.far, .fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

:root {
    /* Brand Colors */
    --socia-primary: #9d3ef5;
    --socia-secondary: #6366f1;
    --socia-accent: #06b6d4;
    --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;

    /* Gradients */
    --socia-gradient-primary: linear-gradient(135deg, #9d3ef5 0%, #6366f1 100%);
    --socia-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9d3ef5 100%);

    /* Spacing */
    --socia-section-padding: clamp(3rem, 8vw, 6rem);
    --socia-container-padding: clamp(1rem, 4vw, 2rem);

    /* Typography */
    --socia-h1: clamp(2.5rem, 8vw, 4rem);
    --socia-h2: clamp(2rem, 6vw, 3rem);
    --socia-h3: clamp(1.25rem, 4vw, 1.5rem);
    --socia-body: clamp(1rem, 2vw, 1.125rem);

    /* Effects */
    --socia-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --socia-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --socia-shadow-window: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --socia-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --socia-border-radius: 1rem;
    --socia-window-radius: clamp(1rem, 2vw, 1.5rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--socia-gray-800);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: clamp(1rem, 3vw, 2rem);
    min-height: 100vh;
}

/* === OS WINDOW WRAPPER === */
.socia-os-window {
    background: var(--socia-white);
    border-radius: clamp(1rem, 2vw, 1.5rem);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: windowAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.socia-os-window:hover {
    box-shadow:
        0 35px 60px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.socia-window-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socia-window-controls {
    display: flex;
    gap: 0.5rem;
}

.socia-window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.socia-window-control:hover {
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.socia-window-control:active {
    transform: scale(0.95);
}

.socia-window-control.red {
    background: linear-gradient(135deg, #ff5f57 0%, #ff4444 100%);
}

.socia-window-control.yellow {
    background: linear-gradient(135deg, #ffbd2e 0%, #ffaa00 100%);
}

.socia-window-control.green {
    background: linear-gradient(135deg, #28ca42 0%, #22aa33 100%);
}

.socia-window-title {
    font-weight: 600;
    color: var(--socia-gray-700);
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    margin-right: 5rem; /* Compensate for controls */
}

.socia-window-content {
    background: var(--socia-white);
    position: relative;
    overflow: hidden;
}

.socia-window-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(157, 62, 245, 0.1) 20%, rgba(157, 62, 245, 0.2) 50%, rgba(157, 62, 245, 0.1) 80%, transparent 100%);
    z-index: 1;
}

/* === UTILITIES === */
.socia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--socia-container-padding);
}

/* No-translate class for preserving brand names */
.notranslate {
    /* Preserve brand name styling */
}

/* Responsive OS Window */
@media (max-width: 768px) {
    body {
        padding: clamp(0.5rem, 2vw, 1rem);
    }

    .socia-os-window {
        border-radius: clamp(0.75rem, 3vw, 1rem);
        box-shadow:
            0 10px 25px -5px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .socia-window-header {
        padding: 0.75rem 1rem;
    }

    .socia-window-control {
        width: 10px;
        height: 10px;
    }

    .socia-window-title {
        font-size: 0.8rem;
        margin-right: 3rem;
    }

    .socia-hero {
        min-height: 70vh;
        min-height: 70dvh;
        padding-top: 1rem;
    }

    .socia-os-window {
        animation: windowAppearMobile 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
}

@keyframes windowAppearMobile {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.socia-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: var(--socia-body);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--socia-transition);
    min-height: 3rem;
    position: relative;
    overflow: hidden;
}

.socia-btn-primary {
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    border: 2px solid rgba(157, 62, 245, 0.8);
    position: relative;
    overflow: hidden;
    animation:
        lightning-breathe 3s ease-in-out infinite,
        lightning-border 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.socia-btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: inherit;
    animation: lightning-sweep 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.socia-btn-primary span,
.socia-btn-primary > * {
    position: relative;
    z-index: 2;
}

.socia-btn-primary:hover {
    animation-duration: 1.5s, 1s;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 20px rgba(157, 62, 245, 0.8),
        0 0 40px rgba(157, 62, 245, 0.4),
        0 8px 25px rgba(157, 62, 245, 0.3);
    color: var(--socia-white);
}

/* Lightning Animations */
@keyframes lightning-breathe {
    0%, 100% {
        box-shadow:
            0 0 8px rgba(157, 62, 245, 0.25),
            0 0 16px rgba(157, 62, 245, 0.15),
            0 0 24px rgba(157, 62, 245, 0.08),
            inset 0 0 8px rgba(255, 255, 255, 0.08);
    }
    25% {
        box-shadow:
            0 0 12px rgba(157, 62, 245, 0.35),
            0 0 22px rgba(157, 62, 245, 0.22),
            0 0 32px rgba(157, 62, 245, 0.12),
            inset 0 0 12px rgba(255, 255, 255, 0.12);
    }
    50% {
        box-shadow:
            0 0 16px rgba(157, 62, 245, 0.45),
            0 0 28px rgba(157, 62, 245, 0.28),
            0 0 40px rgba(157, 62, 245, 0.15),
            inset 0 0 16px rgba(255, 255, 255, 0.15);
    }
    75% {
        box-shadow:
            0 0 12px rgba(157, 62, 245, 0.35),
            0 0 22px rgba(157, 62, 245, 0.22),
            0 0 32px rgba(157, 62, 245, 0.12),
            inset 0 0 12px rgba(255, 255, 255, 0.12);
    }
}

@keyframes lightning-border {
    0%, 100% {
        border-color: rgba(157, 62, 245, 0.7);
    }
    20% {
        border-color: rgba(144, 72, 238, 0.75);
    }
    40% {
        border-color: rgba(134, 82, 231, 0.8);
    }
    60% {
        border-color: rgba(147, 77, 234, 0.8);
    }
    80% {
        border-color: rgba(151, 73, 236, 0.75);
    }
}

@keyframes lightning-sweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(300%) rotate(45deg);
    }
}

.socia-btn-secondary {
    background: var(--socia-white);
    color: var(--socia-primary);
    border: 2px solid var(--socia-primary);
}

.socia-btn-secondary:hover {
    background: var(--socia-primary);
    color: var(--socia-white);
    transform: translateY(-2px);
}

.socia-section-title {
    font-size: var(--socia-h2);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--socia-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.socia-section-subtitle {
    font-size: var(--socia-body);
    color: var(--socia-gray-800);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* === NAVIGATION === */
.socia-nav {
    position: relative;
    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;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--socia-container-padding);
}

.socia-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--socia-primary);
}

.socia-logo img {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
}

.socia-nav-cta {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    min-height: auto;
}

/* === FLOATING TOPBAR === */
.socia-floating-topbar {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 2000;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.socia-floating-topbar.visible {
    top: clamp(0.5rem, 1vw, 1rem);
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.socia-floating-topbar-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.socia-floating-topbar-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1.25rem);
    box-shadow:
        0 8px 20px -4px rgba(0, 0, 0, 0.1),
        0 15px 30px -8px rgba(157, 62, 245, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: floatIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.socia-floating-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 800;
    color: var(--socia-primary);
    transition: var(--socia-transition);
}

.socia-floating-logo:hover {
    transform: scale(1.05);
}

.socia-floating-logo img {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    border-radius: 0.25rem;
}

.socia-floating-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.socia-floating-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 3vw, 2rem);
}

.socia-floating-cta {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
    min-height: auto;
    white-space: nowrap;
    border-radius: 1.5rem;
}

/* Floating Topbar Animations */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Floating Topbar */
@media (max-width: 768px) {
    .socia-floating-topbar.visible {
        top: clamp(0.5rem, 2vw, 1rem);
    }

    .socia-floating-topbar-inner {
        padding: 0.75rem 1rem;
        border-radius: 1rem;
    }

    .socia-floating-nav {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .socia-floating-topbar-inner {
        padding: 0.6rem 0.75rem;
    }

    .socia-floating-logo {
        font-size: 1rem;
        gap: 0.4rem;
    }

    .socia-floating-cta {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* === HERO SECTION === */
.socia-hero {
    background: var(--socia-gradient-hero);
    min-height: 85vh;
    min-height: 85dvh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--socia-white);
    padding-top: 2rem;
}

.socia-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.socia-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--socia-section-padding) 0;
}

.socia-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.socia-hero-title {
    font-size: var(--socia-h1);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.socia-hero-subtitle {
    font-size: var(--socia-body);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.socia-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.socia-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.socia-stat {
    text-align: center;
}

.socia-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.socia-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === SECTION SEPARATORS === */
.socia-section-separator {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 4rem 0;
    opacity: 0.6;
}

.socia-separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--socia-primary) 50%, transparent 100%);
}

.socia-separator-icon {
    width: 50px;
    height: 50px;
    background: var(--socia-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(157, 62, 245, 0.3);
}

/* === VIDEO DEMONSTRATION SECTION === */
.socia-video-section {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 999999 !important;
    position: relative !important;
}

/* === MOBILE VIDEO SCALING SYSTEM === */
.socia-video-mobile-scaler {
    width: 100%;
    overflow: visible;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop - no scaling needed */
@media (min-width: 769px) {
    .socia-video-mobile-scaler {
        transform: scale(1);
        margin-bottom: 0;
    }
}

/* Tablet scaling - gentle zoom out */
@media (max-width: 768px) and (min-width: 481px) {
    .socia-video-mobile-scaler {
        transform-origin: top center;
        transform: scale(0.85);
        margin-bottom: -8%;
    }
}

/* Mobile scaling - more aggressive zoom out */
@media (max-width: 480px) and (min-width: 361px) {
    .socia-video-mobile-scaler {
        transform-origin: top center;
        transform: scale(0.72);
        margin-bottom: -18%;
    }
}

/* Small mobile scaling - maximum zoom out */
@media (max-width: 360px) {
    .socia-video-mobile-scaler {
        transform-origin: top center;
        transform: scale(0.62);
        margin-bottom: -25%;
    }
}

/* Ultra-small devices - preserve readability */
@media (max-width: 320px) {
    .socia-video-mobile-scaler {
        transform: scale(0.58);
        margin-bottom: -28%;
    }
}

/* Enhanced mobile video container - prevent overflow issues */
@media (max-width: 768px) {
    .socia-video-mobile-scaler .socia-video-section {
        margin: 2rem auto;
    }

    .socia-video-mobile-scaler .socia-video-container {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--socia-gray-300);
    }
}

/* Ensure text remains readable at smaller scales */
@media (max-width: 480px) {
    .socia-video-mobile-scaler .socia-video-title {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .socia-video-mobile-scaler .socia-video-time {
        font-size: 0.85rem;
    }
}

/* Accessibility enhancement - larger touch targets when scaled */
@media (max-width: 480px) {
    .socia-video-mobile-scaler .socia-video-play {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    .socia-video-mobile-scaler .socia-video-progress-bar {
        height: 6px;
        cursor: pointer;
    }
}

.socia-video-container {
    background: var(--socia-white);
    border-radius: var(--socia-border-radius);
    box-shadow: var(--socia-shadow-lg);
    overflow: hidden;
    border: 1px solid var(--socia-gray-200);
    z-index: 999999 !important;
    position: relative !important;
}

.socia-video-player {
    position: relative;
}

.socia-video-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--socia-border-radius) var(--socia-border-radius) 0 0;
    z-index: 999999 !important;
}

.socia-video-screen > * {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--socia-border-radius) var(--socia-border-radius) 0 0;
    overflow: hidden;
}

.socia-video-screen .socia-video-demo,
.socia-video-screen .socia-video-intro,
.socia-video-screen .socia-video-actual {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: var(--socia-border-radius) var(--socia-border-radius) 0 0 !important;
    overflow: hidden !important;
    z-index: 999999 !important;
}

.socia-video-screen .socia-video-demo > *,
.socia-video-screen .socia-video-actual > *,
.socia-video-screen .socia-video-actual > div,
.socia-video-screen .socia-video-demo > div {
    border-radius: var(--socia-border-radius) var(--socia-border-radius) 0 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    max-height: 100% !important;
    z-index: 999999 !important;
}

.socia-video-screen {
    z-index: 10;
}

.socia-video-container {
    z-index: 10;
    position: relative;
}

.socia-video-controls {
    background: var(--socia-white);
    padding: 1rem;
}

.socia-video-progress {
    margin-bottom: 1rem;
}

.socia-video-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--socia-gray-200);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.socia-video-progress-fill {
    height: 100%;
    background: var(--socia-gradient-primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease-out;
}

.socia-video-controls-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socia-video-play {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--socia-gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--socia-transition);
}

.socia-video-play:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(157, 62, 245, 0.4);
}

.socia-video-time {
    font-size: 0.9rem;
    color: var(--socia-gray-800);
    font-weight: 500;
}

.socia-video-title {
    flex: 1;
    font-weight: 600;
    color: var(--socia-gray-800);
    text-align: center;
}

.socia-video-fullscreen {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--socia-gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--socia-transition);
}

.socia-video-fullscreen:hover {
    background: var(--socia-gray-100);
    color: var(--socia-primary);
}

/* Video demonstration content */
.socia-video-demo {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.socia-video-intro {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    color: white;
    background: var(--socia-gradient-hero);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.socia-video-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

.socia-video-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.socia-video-intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.socia-video-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.socia-video-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.socia-video-intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.socia-video-intro-stat {
    text-align: center;
}

.socia-video-intro-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: var(--socia-gold);
}

.socia-video-intro-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.socia-video-actual {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* === SHOW MORE FUNCTIONALITY === */
.socia-show-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 1rem 0 0.5rem 0;
}

.socia-show-more-btn {
    background: rgba(157, 62, 245, 0.1);
    border: 2px solid rgba(157, 62, 245, 0.3);
    color: var(--socia-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.socia-show-more-btn:hover {
    background: rgba(157, 62, 245, 0.2);
    border-color: rgba(157, 62, 245, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(157, 62, 245, 0.2);
}

.socia-show-more-count {
    opacity: 0.7;
    font-size: 0.8rem;
}

.socia-show-more-icon {
    transition: transform 0.3s ease;
}

.socia-show-more-btn.expanded .socia-show-more-icon {
    transform: rotate(180deg);
}

.socia-additional-apps {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.socia-additional-apps.expanding {
    display: grid;
    animation: expandApps 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.socia-additional-apps.collapsing {
    animation: collapseApps 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.socia-additional-apps.expanded {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

@keyframes expandApps {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
}

@keyframes collapseApps {
    0% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
}

/* === DESKTOP PREVIEW === */
.socia-desktop-preview {
    max-width: 800px;
    margin: 0 auto;
}

.socia-desktop {
    background: var(--socia-white);
    border-radius: var(--socia-border-radius);
    padding: 1.5rem;
    box-shadow: var(--socia-shadow-lg);
    border: 1px solid var(--socia-gray-200);
}

.socia-desktop-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--socia-gray-200);
    margin-bottom: 1.5rem;
}

.socia-window-controls {
    display: flex;
    gap: 0.5rem;
}

.socia-window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.socia-window-control.red { background: #ef4444; }
.socia-window-control.yellow { background: #eab308; }
.socia-window-control.green { background: #22c55e; }

.socia-desktop-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--socia-gray-700);
}

.socia-desktop-apps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.socia-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--socia-gray-50);
    border: 2px solid transparent;
    transition: var(--socia-transition);
    cursor: pointer;
}

.socia-app:hover {
    border-color: var(--socia-primary);
    transform: translateY(-2px);
    box-shadow: var(--socia-shadow);
}

.socia-app-icon {
    font-size: 2rem;
    color: var(--socia-primary);
    opacity: 0.9;
    transition: var(--socia-transition);
}

.socia-app:hover .socia-app-icon {
    transform: scale(1.1);
    color: var(--socia-secondary);
}

.socia-app-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--socia-gray-900);
}

/* === FEATURED APP WITH ANIMATED BORDER === */
.socia-app-featured {
    position: relative;
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.05), rgba(99, 102, 241, 0.05));
}

.socia-app-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        var(--socia-primary),
        var(--socia-secondary),
        var(--socia-accent),
        var(--socia-primary)
    );
    border-radius: 1rem;
    z-index: -1;
    animation: snakeBorder 4s linear infinite;
}

.socia-app-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--socia-white);
    border-radius: 0.75rem;
    z-index: -1;
}

@keyframes snakeBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Click Indicator */
.socia-click-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    color: var(--socia-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(157, 62, 245, 0.4);
    animation: clickPulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

@keyframes clickPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(157, 62, 245, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(157, 62, 245, 0.6);
    }
}

/* Enhanced hover for featured app */
.socia-app-featured:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(157, 62, 245, 0.3);
}

.socia-app-featured:hover .socia-click-indicator {
    animation-duration: 0.8s;
}

/* === BENEFIT CARDS === */
.socia-benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--socia-gray-50);
    border: 2px solid transparent;
    transition: var(--socia-transition);
    cursor: default;
}

.socia-benefit-card:hover {
    background: var(--socia-white);
    border-color: var(--socia-primary);
    box-shadow: var(--socia-shadow-lg);
    transform: translateY(-2px);
}

.socia-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--socia-primary);
    color: var(--socia-white);
    font-size: 1.2rem;
}

.socia-benefit-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    color: var(--socia-gray-900);
    line-height: 1.2;
}

.socia-benefit-description {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    color: var(--socia-gray-700);
}

/* === FEATURED BENEFIT WITH ANIMATED BORDER === */
.socia-benefit-featured {
    position: relative;
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.05), rgba(99, 102, 241, 0.05));
}

.socia-benefit-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        var(--socia-primary),
        var(--socia-secondary),
        var(--socia-accent),
        var(--socia-primary)
    );
    border-radius: 1rem;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.socia-benefit-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--socia-white);
    border-radius: 0.75rem;
    z-index: -1;
}

.socia-benefit-featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(157, 62, 245, 0.3);
}

/* === INLINE APP DEMO WINDOW === */
.socia-app-demo-window {
    grid-column: 1 / -1;
    background: #1a1a1a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.socia-app-demo-window.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.socia-demo-window-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socia-demo-window-controls {
    display: flex;
    gap: 0.5rem;
}

.socia-demo-minimize,
.socia-demo-close {
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--socia-transition);
    font-size: 0.7rem;
}

.socia-demo-minimize {
    background: #f59e0b;
    color: #1a1a1a;
}

.socia-demo-close {
    background: #ef4444;
    color: var(--socia-white);
}

.socia-demo-minimize:hover,
.socia-demo-close:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.socia-demo-window-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--socia-white);
    font-weight: 600;
}

.socia-demo-window-title i {
    font-size: 1.5rem;
    color: var(--socia-primary);
}

.socia-demo-window-content {
    padding: 2rem;
    background: #1a1a1a;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}

/* Demo Content Styles - Dark Theme Optimized */
.socia-demo-interface {
    background: #2d2d2d;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--socia-white);
}

.socia-demo-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socia-demo-message {
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    max-width: 80%;
    animation: slideInMessage 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.socia-demo-message.user {
    background: var(--socia-primary);
    color: var(--socia-white);
    align-self: flex-end;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(157, 62, 245, 0.3);
}

.socia-demo-message.ai {
    background: #3d3d3d;
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.socia-demo-typing {
    padding: 1rem 1.5rem;
    background: #3d3d3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    align-self: flex-start;
    max-width: 80px;
}

.socia-demo-dots {
    display: flex;
    gap: 4px;
}

.socia-demo-dot {
    width: 8px;
    height: 8px;
    background: var(--socia-primary);
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.socia-demo-dot:nth-child(1) { animation-delay: -0.32s; }
.socia-demo-dot:nth-child(2) { animation-delay: -0.16s; }
.socia-demo-dot:nth-child(3) { animation-delay: 0s; }

@keyframes slideInMessage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dashboard Demo */
.socia-demo-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.socia-demo-metric {
    background: #3d3d3d;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.socia-demo-metric:nth-child(1) { animation-delay: 0.1s; }
.socia-demo-metric:nth-child(2) { animation-delay: 0.2s; }
.socia-demo-metric:nth-child(3) { animation-delay: 0.3s; }
.socia-demo-metric:nth-child(4) { animation-delay: 0.4s; }
.socia-demo-metric:nth-child(5) { animation-delay: 0.5s; }
.socia-demo-metric:nth-child(6) { animation-delay: 0.6s; }

.socia-demo-metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--socia-primary);
    display: block;
    text-shadow: 0 2px 4px rgba(157, 62, 245, 0.3);
}

.socia-demo-metric-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin-top: 0.5rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Demo Styles */
.socia-demo-card {
    background: #3d3d3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--socia-transition);
}

.socia-demo-card:hover {
    border-color: var(--socia-primary);
    box-shadow: 0 4px 16px rgba(157, 62, 245, 0.2);
}

.socia-demo-progress {
    background: #2d2d2d;
    border-radius: 0.5rem;
    height: 8px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.socia-demo-progress-bar {
    background: linear-gradient(90deg, var(--socia-primary), var(--socia-secondary));
    height: 100%;
    border-radius: 0.5rem;
    transition: width 2s ease;
    box-shadow: 0 0 8px rgba(157, 62, 245, 0.5);
}

.socia-demo-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.socia-demo-status.ready {
    background: #10b981;
    color: var(--socia-white);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.socia-demo-status.generating {
    background: var(--socia-primary);
    color: var(--socia-white);
    box-shadow: 0 2px 8px rgba(157, 62, 245, 0.3);
    animation: pulse 2s infinite;
}

.socia-demo-status.pending {
    background: #f59e0b;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* === PROBLEM SECTION === */
.socia-problem {
    padding: var(--socia-section-padding) 0;
    background: var(--socia-gray-50);
}

.socia-problem-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.socia-problem-text h2 {
    font-size: var(--socia-h2);
    font-weight: 800;
    color: var(--socia-gray-900);
    margin-bottom: 1.5rem;
}

.socia-problem-text p {
    font-size: var(--socia-body);
    color: var(--socia-gray-800);
    margin-bottom: 2rem;
}

.socia-pain-points {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.socia-pain-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--socia-white);
    border-radius: 0.75rem;
    box-shadow: var(--socia-shadow);
}

.socia-pain-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #dc2626;
    opacity: 0.9;
}

.socia-chaos-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background: var(--socia-white);
    border-radius: var(--socia-border-radius);
    box-shadow: var(--socia-shadow);
}

.socia-tool-box {
    padding: 1rem;
    text-align: center;
    background: var(--socia-gray-100);
    border: 2px dashed var(--socia-gray-300);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    color: var(--socia-gray-800);
    position: relative;
}

.socia-tool-box::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #dc2626;
    border-radius: 50%;
    border: 2px solid var(--socia-white);
}

.socia-chaos-total {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    color: #dc2626;
    padding: 1rem;
    background: rgba(157, 62, 245, 0.05);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* === SOLUTION SECTION === */
.socia-solution {
    padding: var(--socia-section-padding) 0;
}

/* === FEATURES SECTION === */
.socia-features {
    padding: var(--socia-section-padding) 0;
    background: var(--socia-gray-50);
}

.socia-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.socia-feature {
    background: var(--socia-white);
    padding: 2rem;
    border-radius: var(--socia-border-radius);
    box-shadow: var(--socia-shadow);
    transition: var(--socia-transition);
    border-top: 4px solid var(--socia-primary);
}

.socia-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--socia-shadow-lg);
}

.socia-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--socia-primary);
    opacity: 0.9;
}

.socia-feature-title {
    font-size: var(--socia-h3);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--socia-gray-900);
}

.socia-feature-description {
    color: var(--socia-gray-800);
}

/* === VALUE PROPOSITION SECTION === */
.socia-value-proposition {
    padding: var(--socia-section-padding) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.socia-value-comparison {
    max-width: 1000px;
    margin: 0 auto;
}

/* Old comparison header removed - now integrated into table */

.socia-comparison-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.socia-comparison-column p {
    font-size: 0.9rem;
    color: var(--socia-gray-600);
    margin: 0;
}

.socia-others-column {
    text-align: center;
    border-left: 2px solid var(--socia-gray-200);
    padding-left: 1rem;
}

.socia-socia-column {
    text-align: center;
    border-left: 2px solid var(--socia-primary);
    padding-left: 1rem;
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 0.5rem;
    margin-left: 0.5rem;
    padding: 1rem;
}

.socia-socia-column h3 {
    color: var(--socia-primary);
}

.socia-comparison-table {
    background: var(--socia-white);
    border-radius: var(--socia-border-radius);
    overflow: hidden;
    box-shadow: var(--socia-shadow);
}

.socia-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--socia-gray-200);
    transition: var(--socia-transition);
}

.socia-comparison-row:hover {
    background: var(--socia-gray-50);
}

.socia-comparison-row:last-child {
    border-bottom: none;
}

/* === COMPARISON TABLE HEADER ROW === */
.socia-comparison-header-row {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 2px solid var(--socia-purple-500);
    font-weight: 700;
}

.socia-comparison-header-row:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.socia-header-column h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--socia-gray-900);
}

.socia-header-column p {
    display: none;
    margin: 0;
    font-size: 0.875rem;
    color: var(--socia-gray-600);
    font-weight: 400;
}

.socia-feature-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--socia-gray-900);
}

.socia-feature-name i {
    width: 20px;
    color: var(--socia-primary);
    font-size: 1.1rem;
}

.socia-others-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    border-left: 2px solid var(--socia-gray-200);
}

.socia-service-name {
    font-size: 0.8rem;
    color: var(--socia-gray-600);
    margin-bottom: 0.25rem;
}

.socia-price {
    font-weight: 700;
    color: #dc2626;
    font-size: 1rem;
}

.socia-socia-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 2px solid var(--socia-primary);
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.05), rgba(99, 102, 241, 0.05));
    padding: 0.75rem;
    gap: 0.5rem;
}

.socia-socia-check i {
    width: 24px;
    height: 24px;
    background: var(--socia-primary);
    color: var(--socia-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.socia-included-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--socia-primary);
    line-height: 1.2;
}

.socia-zero-commission {
    font-size: 1.2rem;
    font-weight: 900;
    color: #10b981;
    margin-left: 0.5rem;
}

.socia-comparison-total {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--socia-white);
    font-size: 1.1rem;
    padding: 2rem 1.5rem;
}

.socia-comparison-total .socia-feature-name {
    color: var(--socia-white);
    font-size: 1.2rem;
}

.socia-others-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
}

.socia-total-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 0.25rem;
}

.socia-yearly-cost {
    font-size: 0.9rem;
    color: #fca5a5;
}

.socia-socia-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 2px solid var(--socia-primary);
    background: linear-gradient(135deg, rgba(157, 62, 245, 0.2), rgba(99, 102, 241, 0.2));
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.socia-socia-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--socia-accent);
    margin-bottom: 0.25rem;
}

.socia-savings {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.socia-value-cta {
    margin-top: 3rem;
    text-align: center;
}

.socia-value-highlight {
    background: var(--socia-gradient-primary);
    color: var(--socia-white);
    padding: 2rem;
    border-radius: var(--socia-border-radius);
    box-shadow: 0 8px 32px rgba(157, 62, 245, 0.3);
}

.socia-value-highlight h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.socia-value-highlight p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* === VALUE PROPOSITION MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    /* Show header on mobile with white text */
    .socia-comparison-header-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        border-radius: 1.25rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        overflow: hidden;
        border: none;
    }

    .socia-header-column {
        border-bottom: none;
        padding: 1.25rem 1rem;
        margin-bottom: 0;
    }

    /* Only first column (What You Need) is white */
    .socia-header-column.socia-feature-name h3 {
        color: white !important;
        font-size: 1.125rem;
        margin: 0 0 0.5rem 0;
        text-align: center;
    }

    .socia-header-column.socia-feature-name p {
        display: block !important;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.875rem;
        text-align: center;
    }

    /* Other columns stay hidden */
    .socia-header-column.socia-others-price,
    .socia-header-column.socia-socia-check {
        display: none;
    }

    .socia-header-column:last-child {
        border-bottom: none;
    }

    /* Mobile: Side-by-side comparison cards */
    .socia-comparison-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-bottom: 1.5rem;
        background: transparent;
        border-radius: 1.25rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        overflow: hidden;
        border: none;
    }

    /* Feature header with icon */
    .socia-feature-name {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
        padding: 1.25rem 1rem;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        color: white !important;
        font-weight: 700;
        font-size: 1rem;
        border-bottom: none;
        margin-bottom: 0;
    }

    .socia-feature-name i {
        color: white !important;
        font-size: 1.5rem;
    }

    .socia-feature-name span {
        color: white !important;
    }

    /* Comparison split container */
    .socia-comparison-row > div:not(.socia-feature-name) {
        width: 100%;
    }

    /* Create side-by-side layout for comparison */
    .socia-comparison-row {
        position: relative;
    }

    .socia-comparison-row::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        bottom: 0;
        width: 0;
        display: none;
    }

    /* Container for side-by-side comparison */
    .socia-others-price,
    .socia-socia-check {
        border-left: none;
        border-top: none;
        padding: 1.25rem 1rem;
        margin-bottom: 0;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
        position: relative;
    }

    /* Without Sócia - Red theme */
    .socia-others-price {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(239, 68, 68, 0.12));
        border-bottom: 2px solid rgba(220, 38, 38, 0.2);
    }

    .socia-others-price::before {
        content: "❌ Without Sócia";
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        color: #dc2626;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
        padding: 0.4rem 0.75rem;
        background: rgba(220, 38, 38, 0.1);
        border-radius: 2rem;
        border: 1px solid rgba(220, 38, 38, 0.3);
    }

    .socia-service-name {
        font-size: 0.85rem;
        color: #1f2937;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .socia-price {
        font-weight: 900;
        color: #dc2626;
        font-size: 1.25rem;
    }

    /* With Sócia - Green/Purple theme */
    .socia-socia-check {
        background: linear-gradient(135deg, rgba(157, 62, 245, 0.08), rgba(16, 185, 129, 0.08));
        border-top: 2px solid rgba(157, 62, 245, 0.3);
    }

    .socia-socia-check::before {
        content: "✅ With Sócia";
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        color: var(--socia-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
        padding: 0.4rem 0.75rem;
        background: rgba(157, 62, 245, 0.1);
        border-radius: 2rem;
        border: 1px solid rgba(157, 62, 245, 0.3);
    }

    .socia-socia-check i {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--socia-primary), #10b981);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .socia-included-text {
        font-size: 0.85rem;
        font-weight: 700;
        color: #7c3aed;
        line-height: 1.4;
    }

    .socia-zero-commission {
        font-size: 1.25rem;
        font-weight: 900;
        color: #059669;
        margin: 0;
    }

    /* Total row */
    .socia-comparison-total {
        grid-template-columns: 1fr;
        text-align: center;
        flex-direction: column;
    }

    .socia-comparison-total .socia-feature-name {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 1rem;
        margin-bottom: 0;
    }

    .socia-others-total {
        border-left: none;
        border-top: none;
        border-bottom: 2px solid rgba(239, 68, 68, 0.3);
        padding: 1.25rem 1rem;
        margin-bottom: 0;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.15));
    }

    .socia-others-total::before {
        content: "❌ Total Without Sócia";
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        color: #dc2626;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .socia-socia-total {
        border-left: none;
        border-top: 2px solid var(--socia-primary);
        padding: 1.25rem 1rem;
        background: linear-gradient(135deg, rgba(157, 62, 245, 0.1), rgba(16, 185, 129, 0.1));
    }

    .socia-socia-total::before {
        content: "✅ Total With Sócia";
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        color: var(--socia-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .socia-value-highlight h3 {
        font-size: 1.3rem;
    }

    .socia-value-highlight p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .socia-value-comparison {
        padding: 0 0.5rem;
    }

    .socia-comparison-row {
        margin-bottom: 1.25rem;
        border-radius: 1rem;
    }

    /* Smaller feature header */
    .socia-feature-name {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        color: white !important;
    }

    .socia-feature-name i {
        font-size: 1.3rem;
        color: white !important;
    }

    .socia-feature-name span {
        color: white !important;
    }

    /* Tighter comparison sections */
    .socia-others-price,
    .socia-socia-check {
        padding: 1rem 0.75rem;
        min-height: 90px;
    }

    .socia-others-price::before,
    .socia-socia-check::before {
        font-size: 0.65rem;
        padding: 0.35rem 0.65rem;
        margin-bottom: 0.5rem;
    }

    .socia-service-name {
        font-size: 0.8rem;
        color: #1f2937;
    }

    .socia-price {
        font-size: 1.1rem;
        color: #dc2626;
    }

    .socia-zero-commission {
        font-size: 1.1rem;
        color: #059669;
    }

    .socia-included-text {
        font-size: 0.8rem;
        color: #7c3aed;
    }

    .socia-socia-check i {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    /* Total row adjustments */
    .socia-others-total,
    .socia-socia-total {
        padding: 1rem 0.75rem;
    }

    .socia-others-total::before,
    .socia-socia-total::before {
        font-size: 0.65rem;
    }

    .socia-comparison-row {
        margin-bottom: 1.5rem;
        border-radius: 0.75rem;
    }

    .socia-feature-name {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .socia-others-price,
    .socia-socia-check {
        padding: 0.75rem;
    }

    .socia-others-price::before,
    .socia-socia-check::before {
        font-size: 0.7rem;
        margin-bottom: 0.375rem;
    }

    .socia-total-amount,
    .socia-socia-price {
        font-size: 1.1rem;
    }

    .socia-value-highlight {
        padding: 1.5rem;
    }

    .socia-value-highlight h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .socia-value-highlight p {
        font-size: 0.9rem;
    }
}

/* === CTA SECTION === */
.socia-cta {
    padding: var(--socia-section-padding) 0;
    background: var(--socia-gradient-hero);
    color: var(--socia-white);
    text-align: center;
}

.socia-cta-title {
    font-size: var(--socia-h2);
    font-weight: 900;
    margin-bottom: 1rem;
}

.socia-cta-subtitle {
    font-size: var(--socia-body);
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === FOOTER === */
.socia-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--socia-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socia-footer-content {
    display: grid;
    gap: 3rem;
}

.socia-footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.socia-footer-brand {
    max-width: 350px;
}

.socia-footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.socia-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--socia-primary);
}

.socia-footer-tagline {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.socia-footer-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--socia-primary);
    font-weight: 600;
}

.socia-footer-location i {
    font-size: 1.1rem;
}

.socia-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.socia-footer-column h4 {
    color: var(--socia-white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.socia-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socia-footer-column li {
    margin-bottom: 0.75rem;
}

.socia-footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--socia-transition);
    font-size: 0.95rem;
}

.socia-footer-column a:hover {
    color: var(--socia-primary);
    transform: translateX(4px);
}

.socia-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.socia-footer-bottom-left p {
    margin: 0 0 0.25rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.socia-footer-reg {
    color: #808080;
    font-size: 0.8rem;
}

.socia-footer-disclaimer {
    color: #707070;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    max-width: 400px;
}

.socia-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.socia-social-links {
    display: flex;
    gap: 1rem;
}

.socia-social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--socia-transition);
}

.socia-social-links a:hover {
    background: var(--socia-primary);
    color: var(--socia-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 62, 245, 0.3);
}

.socia-footer-portugal {
    color: var(--socia-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 1024px) {
    .socia-footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .socia-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .socia-footer {
        padding: 3rem 0 1.5rem;
    }

    .socia-footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .socia-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .socia-footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }

    /* Video section mobile styles */
    .socia-video-section {
        margin: 2rem 0;
    }

    .socia-video-demo h3 {
        font-size: 1.5rem;
    }

    .socia-video-demo p {
        font-size: 1rem;
    }

    .socia-video-demo-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .socia-video-controls-bottom {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .socia-video-title {
        order: -1;
        text-align: left;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .socia-section-separator {
        margin: 2rem 0;
        gap: 1rem;
    }

    .socia-separator-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .socia-footer-brand {
        max-width: 100%;
    }

    .socia-social-links {
        justify-content: center;
    }

    /* Video section extra small mobile styles */
    .socia-video-demo {
        padding: 1.5rem;
    }

    .socia-video-demo h3 {
        font-size: 1.25rem;
    }

    .socia-video-demo-stat-number {
        font-size: 2rem;
    }

    .socia-video-controls {
        padding: 0.75rem;
    }

    .socia-separator-line {
        height: 1px;
    }
}

/* === ENHANCED MOBILE RESPONSIVENESS === */

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
    .socia-video-play,
    .socia-video-fullscreen {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        touch-action: manipulation;
    }

    .socia-video-progress-bar {
        height: 8px;
        border-radius: 4px;
    }

    .socia-video-controls {
        padding: 1.25rem;
    }

    .socia-video-controls-bottom {
        gap: 1rem;
    }

    .socia-window-control {
        width: 16px;
        height: 16px;
        touch-action: manipulation;
    }

    .socia-app {
        padding: 1rem 0.75rem;
        min-height: 100px;
        touch-action: manipulation;
    }

    .socia-app-name {
        font-size: 0.75rem;
        line-height: 1.3;
        min-height: 2em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .socia-demo-window-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .socia-video-title {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .socia-btn {
        min-height: 48px;
        touch-action: manipulation;
        padding: 0.75rem 1.5rem;
    }

    .socia-nav-cta {
        min-height: 44px;
        touch-action: manipulation;
    }

    .lang-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    .socia-demo-minimize,
    .socia-demo-close {
        width: 2rem;
        height: 2rem;
        touch-action: manipulation;
    }

    .socia-app-demo-window.active {
        max-height: 400px;
    }

    .socia-demo-window-content {
        max-height: 300px;
        padding: 1.5rem;
    }

    /* Enhanced focus states for mobile */
    .socia-app:focus,
    .socia-window-control:focus,
    .socia-video-play:focus,
    .socia-video-fullscreen:focus {
        outline: 3px solid var(--socia-primary);
        outline-offset: 2px;
    }

    /* Performance optimization for mobile */
    .socia-app-featured::before {
        will-change: transform;
    }

    .socia-video-progress-fill {
        will-change: width;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .socia-video-play,
    .socia-video-fullscreen {
        width: 44px;
        height: 44px;
    }

    .socia-video-progress-bar {
        height: 10px;
    }

    .socia-window-control {
        width: 18px;
        height: 18px;
    }

    .socia-app {
        padding: 1.25rem 0.75rem;
        min-height: 110px;
    }

    .socia-app-name {
        font-size: 0.8rem;
    }

    .socia-footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .socia-footer-disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .socia-app-demo-window.active {
        max-height: 350px;
    }

    .socia-demo-window-content {
        max-height: 250px;
        padding: 1rem;
    }

    .socia-demo-interface {
        padding: 1rem;
    }
}

/* Ultra-small screens */
@media (max-width: 320px) {
    .socia-floating-topbar-inner {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .socia-floating-nav {
        width: 100%;
        justify-content: center;
    }

    .socia-floating-cta {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    .socia-container {
        padding: 0 0.75rem;
    }

    .socia-hero-buttons {
        gap: 0.75rem;
    }

    .socia-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        min-height: 44px;
    }

    .socia-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .socia-feature {
        padding: 1.25rem;
    }
}

/* Landscape orientation optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .socia-hero {
        min-height: 100vh;
        padding-top: 1rem;
    }

    .socia-video-section {
        margin: 1.5rem 0;
    }

    .socia-hero-content {
        padding: 2rem 0;
    }
}

/* Reduce complex animations on mobile for performance */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .socia-app:hover {
        transform: translateY(-1px);
    }
}

/* === RESPONSIVE DESIGN === */
@media (min-width: 768px) {
    .socia-problem-content {
        grid-template-columns: 1fr 1fr;
    }

    .socia-desktop-apps {
        grid-template-columns: repeat(5, 1fr);
    }

    .socia-hero-buttons {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .socia-hero {
        padding-top: 4rem;
        min-height: 100vh;
    }

    .socia-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .socia-btn {
        width: 100%;
        max-width: 280px;
    }

    .socia-desktop {
        padding: 1rem;
    }

    .socia-desktop-apps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .socia-app {
        padding: 0.75rem;
    }

    .socia-app-icon {
        font-size: 1.5rem;
    }

    .socia-app-name {
        font-size: 0.7rem;
    }

    .socia-feature {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .socia-nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .socia-logo {
        font-size: 1.2rem;
    }

    .socia-logo img {
        width: 32px;
        height: 32px;
    }

    .socia-nav-cta {
        order: 3;
        flex: 1;
        text-align: center;
    }

    .socia-desktop-apps {
        grid-template-columns: repeat(2, 1fr);
    }

    .socia-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .socia-chaos-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }
}

/* === LANGUAGE TOGGLE === */
.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);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--socia-transition);
}

.lang-btn.active {
    background: var(--socia-primary);
    color: var(--socia-white);
}

.lang-btn:hover:not(.active) {
    background: rgba(157, 62, 245, 0.2);
}

@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;
    }

    /* Smaller Portuguese CTA buttons on mobile */
    .socia-floating-cta,
    .socia-nav-cta {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.75rem !important;
        white-space: nowrap;
    }

    /* Smaller waitlist buttons on mobile */
    .socia-wizard-btn,
    .socia-wizard-submit {
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem !important;
    }
}

/* === ANIMATIONS === */
@keyframes windowAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.socia-animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --socia-primary: #7c3aed;
        --socia-gray-600: #374151;
    }
}

/* === FOCUS STATES === */
.socia-btn:focus,
.lang-btn:focus {
    outline: 2px solid var(--socia-primary);
    outline-offset: 2px;
}

/* === HERO BENEFIT TAGS === */
.socia-hero-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem 1rem;
    margin: 3rem auto 2.5rem;
    max-width: 1000px;
    line-height: 1.2;
    padding: 0 1rem;
}

.socia-benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.625rem 1rem;
    color: var(--socia-white);
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--socia-transition);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.socia-benefit-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.socia-benefit-tag i {
    font-size: 0.75rem;
    color: var(--socia-gold);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
    flex-shrink: 0;
}

.socia-benefit-tag.featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.2));
    border-color: var(--socia-gold);
    animation: tagPulse 3s ease-in-out infinite;
}

.socia-benefit-tag.featured i {
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes tagPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(245, 158, 11, 0.1);
    }
}

@keyframes iconGlow {
    0% {
        text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
    }
    100% {
        text-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
    }
}

/* === HERO SEPARATOR === */
.socia-hero-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem auto 2rem;
    opacity: 0.8;
    padding: 0 2rem;
}

.socia-hero-separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%);
    max-width: 200px;
}

.socia-hero-separator-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socia-gold);
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
        text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        text-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    }
}

/* Responsive benefit tags */
@media (max-width: 768px) {
    .socia-hero-benefit-tags {
        gap: 0.5rem 0.75rem;
        margin: 2rem auto 2rem;
        padding: 0 0.75rem;
    }

    .socia-benefit-tag {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .socia-benefit-tag i {
        font-size: 0.7rem;
    }

    .socia-hero-separator {
        gap: 1rem;
        margin: 1.5rem auto 1.5rem;
        padding: 0 1rem;
    }

    .socia-hero-separator-line {
        max-width: 120px;
    }

    .socia-hero-separator-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .socia-hero-benefit-tags {
        gap: 0.4rem 0.6rem;
        margin: 1.5rem auto 1.5rem;
        padding: 0 0.5rem;
    }

    .socia-benefit-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

    .socia-benefit-tag i {
        font-size: 0.65rem;
    }

    .socia-hero-separator {
        gap: 0.75rem;
        margin: 1.25rem auto 1.25rem;
    }

    .socia-hero-separator-line {
        max-width: 80px;
    }

    .socia-hero-separator-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* === 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 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.875rem;
    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 0.875rem;
    }

    .socia-tool-checkbox label {
        font-size: 0.8rem;
        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;
    }

    .socia-tool-checkbox label {
        font-size: 0.875rem;
    }
}

/* === LOADING STATE === */
body {
    opacity: 1;
}

/* === AGENT TRANSFORMATION SECTION === */
.socia-transformation {
    padding: 6rem 0;
    background: linear-gradient(135deg,
        #f8fafc 0%,
        #f1f5f9 50%,
        #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.socia-transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMTI0LCA1OCwgMjM3LCAwLjAzKSI+PC9jaXJjbGU+Cjwvc3ZnPg==') repeat;
    opacity: 0.4;
    pointer-events: none;
}

.socia-transformation .socia-container {
    position: relative;
    z-index: 1;
}

/* === TRANSFORMATION HOOK === */
.socia-transformation-hook {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.socia-transformation-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.socia-highlight {
    background: linear-gradient(135deg, #7c3aed, #9d3ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.socia-transformation-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* === COMPARISON CONTAINER === */
.socia-comparison-container {
    margin-bottom: 4rem;
}

.socia-comparison-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: white;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.socia-toggle-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.socia-toggle-btn.active {
    background: linear-gradient(135deg, #7c3aed, #9d3ef5);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.socia-toggle-btn:hover:not(.active) {
    background: #f3f4f6;
    color: #374151;
}

/* === COMPARISON VIEW === */
.socia-comparison-view {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.socia-comparison-view.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.socia-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* === COMPARISON CARDS === */
.socia-comparison-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.socia-comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.socia-comparison-card.success::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.socia-comparison-card:hover::before {
    transform: translateX(0);
}

.socia-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.socia-comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.socia-comparison-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.socia-comparison-badge.danger {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.socia-comparison-badge.success {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #059669;
    border: 1px solid #bbf7d0;
}

.socia-comparison-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    background: #f9fafb;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.socia-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socia-comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.socia-comparison-list li:last-child {
    border-bottom: none;
}

.socia-comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.socia-comparison-card.success .socia-comparison-list li::before {
    color: #10b981;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f00c';
}

/* === COMPARISON METRICS === */
.socia-comparison-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.socia-metric {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #ef4444;
}

.socia-comparison-metrics.success .socia-metric {
    border-top-color: #10b981;
}

.socia-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.socia-metric-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ef4444;
}

.socia-metric-value.success {
    color: #10b981;
}

.socia-metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* === TESTIMONIALS === */
.socia-testimonials {
    margin-bottom: 4rem;
}

.socia-testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.socia-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.socia-testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 4px solid #7c3aed;
}

.socia-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.15);
}

.socia-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.socia-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #9d3ef5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
}

.socia-testimonial-name {
    font-weight: 700;
    color: #1f2937;
}

.socia-testimonial-location {
    font-size: 0.875rem;
    color: #6b7280;
}

.socia-testimonial-content {
    line-height: 1.6;
}

.socia-testimonial-label {
    font-weight: 600;
    color: #7c3aed;
}

.socia-testimonial-before,
.socia-testimonial-after,
.socia-testimonial-difference {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #f9fafb;
}

.socia-testimonial-before {
    border-left: 3px solid #ef4444;
}

.socia-testimonial-after {
    border-left: 3px solid #10b981;
}

.socia-testimonial-difference {
    border-left: 3px solid #7c3aed;
}

/* === REMEMBER WHY SECTION === */
.socia-remember-why {
    margin-bottom: 4rem;
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.socia-remember-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.socia-remember-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.socia-remember-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.socia-remember-subtitle.danger {
    color: #ef4444;
}

.socia-remember-subtitle.success {
    color: #10b981;
}

.socia-remember-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socia-remember-list.danger li {
    color: #6b7280;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 2rem;
}

.socia-remember-list.danger li::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f00d';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.socia-remember-list.success li {
    color: #6b7280;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 2rem;
}

.socia-remember-list.success li::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f00c';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.socia-remember-cta {
    text-align: center;
    font-size: 1.25rem;
    color: #374151;
}

/* === URGENCY SECTION === */
.socia-urgency {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.socia-urgency::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: urgencyShimmer 3s ease-in-out infinite;
}

@keyframes urgencyShimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
}

.socia-urgency-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.socia-urgency-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.socia-urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.socia-urgency-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.socia-urgency-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    opacity: 0.9;
}

.socia-urgency-list li::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0e7';
    position: absolute;
    left: 0;
    color: #fbbf24;
}

.socia-urgency-question {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.socia-urgency-question p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* === BEFORE/AFTER INDICATORS === */
.socia-before-after-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.socia-indicator {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.socia-indicator.before {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fecaca;
}

.socia-indicator.after {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #bbf7d0;
}

.socia-indicator-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.socia-indicator-badge.danger {
    background: #ef4444;
    color: white;
}

.socia-indicator-badge.success {
    background: #10b981;
    color: white;
}

.socia-indicator-text {
    font-weight: 600;
    color: #374151;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .socia-transformation-title {
        font-size: 2.5rem;
    }

    .socia-comparison-grid {
        grid-template-columns: 1fr;
    }

    .socia-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .socia-remember-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .socia-transformation {
        padding: 4rem 0;
    }

    .socia-transformation-title {
        font-size: 2rem;
    }

    .socia-transformation-subtitle {
        font-size: 1.1rem;
    }

    .socia-comparison-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .socia-toggle-btn {
        padding: 0.75rem 1.5rem;
    }

    .socia-comparison-card,
    .socia-testimonial-card,
    .socia-remember-why,
    .socia-urgency {
        padding: 1.5rem;
    }

    .socia-testimonials-title,
    .socia-remember-title,
    .socia-urgency-title {
        font-size: 1.75rem;
    }

    .socia-before-after-indicators {
        grid-template-columns: 1fr;
    }

    .socia-comparison-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ====================================
   CHECKOUT WIZARD MODAL STYLES
   ==================================== */

.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;
    display: none;
}

.socia-checkout-wizard-error.show {
    display: block;
}

.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;
    }
}