/* ============================================
   collaborAItr Website Styles
   Typography: Poppins
   Theme: Dark with vibrant accents
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #ff6600;
    --primary-light: #ff8533;
    --primary-dark: #cc5200;
    --secondary: #9900ff;
    --secondary-light: #b333ff;
    --secondary-dark: #6600cc;
    --success: #00BB00;
    --success-light: #33cc33;
    --success-dark: #008800;
    --info: #0066ff;
    --info-light: #3399ff;
    --info-dark: #0044cc;
    
    /* Background Colors */
    --bg-dark: #1a1a1a;
    --bg-darker: #111111;
    --bg-accent: #333333;
    --bg-card: #222222;
    --bg-card-hover: #2a2a2a;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    
    /* Gradients */
    --btn-gradient-primary: linear-gradient(180deg,  #ff660007, #ff66003C);
    --btn-gradient-primary-hover: linear-gradient(180deg, #ff660011, #ff660066);
    --btn-gradient-secondary: linear-gradient(180deg,  #FFFFFF07, #FFFFFF22);
    --btn-gradient-secondary-hover: linear-gradient(180deg,  #FFFFFF11, #FFFFFF33);
    --gradient-primary: linear-gradient(135deg, #ff6600, #ff8533);
    --gradient-secondary: linear-gradient(135deg, #9900ff, #cc66ff);
    --gradient-gemini: linear-gradient(135deg, #956FFF, #589BFF, #11D4EE);
    --gradient-hero: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 1) 100%);
    
    /* Model Colors */
    --deepseek-color: #00a67e;
    --gemini-color: #589BFF;
    --grok-color: #ffffff;
    --mistral-color: #ff6600;
    --claude-color: #A8624A;
    --gpt-color: #0EA982;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow-primary: 0 0 24px rgba(255, 102, 0, 0.3);
    --shadow-glow-primary-hover: 0 0 20px rgba(255, 102, 0, 0.5);
    --shadow-glow-secondary: 0 0 24px rgba(153, 0, 255, 0.3);
    --shadow-glow-gray: 0 0 24px rgba(255, 255, 255, 0.15);
    --shadow-glow-gray-hover: 0 0 20px rgba(255, 255, 255, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Container */
    --container-max: 1300px;
    --container-padding: 1.5rem;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   Colors
   ============================================ */
.orng {
    color: var(--primary);
}
.orng-dark {
    color: var(--primary-dark);
}
.orng-light {
    color: var(--primary-light);
}
.purple {
    color: var(--secondary);
}
.purple-dark {
    color: var(--secondary-dark);
}
.purple-light {
    color: var(--secondary-light);
}
.green {
    color: var(--success);
}
.green-dark {
    color: var(--success-dark);
}
.green-light {
    color: var(--success-light);
}
.blue {
    color: var(--info);
}
.blue-dark {
    color: var(--info-dark);
}
.blue-light {
    color: var(--info-light);
}
.red {
    color: #C40000;
}
.red-dark {
    color: #990000;
}
.red-light {
    color: #FF0000;
}


/* ============================================
   Video Background
   ============================================ */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg .fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-bg.video-failed .fallback-bg {
    display: block;
}

.video-bg.video-failed video {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.95) 100%
    );
}

/* ============================================
   Container
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(17, 17, 17, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: var(--space-sm) var(--space-lg) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--btn-gradient-primary);
    color: var(--primary);
    border: 0.5px solid rgba(255, 102, 0);
    box-shadow: var(--shadow-glow-primary);
}
.btn-primary:hover {
    background: var(--btn-gradient-primary-hover);
    text-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-primary-hover);
}
.hero-ctas .btn-primary,
.cta-buttons .btn-primary {
    border-bottom: 5px solid rgba(255, 102, 0);
}

.btn-secondary {
    background: var(--btn-gradient-secondary);
    color: #999999;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glow-gray);
}
.btn-secondary:hover {
    background: var(--btn-gradient-secondary-hover);
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gray-hover);
}
.hero-ctas .btn-secondary,
.cta-buttons .btn-secondary {
    border-bottom: 5px solid rgba(255, 255, 255, 0.5);
}
.hero-ctas .btn-secondary:hover,
.cta-buttons .btn-secondary:hover {
    border-bottom: 5px solid rgba(255, 255, 255);
}


.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    box-shadow: var(--shadow-glow-primary);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-xl);
}

.btn-xl {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--font-size-lg);
}

.btn-icon {
    font-size: 1.2em;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-5xl);
    position: relative;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-xl);
    background: var(--btn-gradient-secondary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid #DDDD;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-glow-gray);
    animation: fadeInUp 0.6s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-6xl));
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 10px #000, 0 0px 40px;
    -webkit-text-stroke: 1px #00000077;
    text-stroke: 1px #00000077;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(var(--font-size-sm), 2vw, var(--font-size-base));
    font-weight: 400;
    color: var(--text-primary);
    max-width: 1000px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}
.hero-subtitle strong {
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    margin: var(--space-2xl) auto;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.trust-icon {
    color: var(--success);
    font-weight: bold;
}

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

/* Hero Visual (AI Cards) */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: none; /* Hidden on mobile, shown on large screens */
}

.ai-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.ai-card {
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 160px;
    animation: floatCard 3s ease-in-out infinite;
}

.ai-card:nth-child(2) { animation-delay: 0.5s; }
.ai-card:nth-child(3) { animation-delay: 1s; }
.ai-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-deepseek { border-color: var(--deepseek-color); }
.card-gemini { border-color: var(--gemini-color); }
.card-grok { border-color: var(--grok-color); }
.card-mistral { border-color: var(--mistral-color); }

.ai-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.ai-icon {
    font-size: var(--font-size-xl);
}

/* Phosphor Icons styling - Duotone */
/* Minimal styling - let Phosphor CSS handle font-family and pseudo-elements */
.ai-icon.ph-duotone,
.btn-icon.ph-duotone,
.trust-icon.ph-duotone,
.case-icon .ph-duotone,
.prop-icon .ph-duotone,
.model-logo .ph-duotone,
.social-link .ph-duotone {
    font-size: inherit;
    vertical-align: middle;
}

.btn-icon.ph-duotone {
    font-size: 2.5rem;
}



.ai-name {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.ai-card-status {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    position: relative;
    padding: var(--space-4xl) 0;
}

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

h1.section-title {
    font-size: clamp(var(--font-size-4xl), 4vw, var(--font-size-5xl));
    font-weight: 700;
    margin-bottom: var(--space-lg);
}
.section-title {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}



/* ============================================
   Screenshots Section
   ============================================ */
.screenshots {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03), rgba(153, 0, 255, 0.03));
    border-top: 1px solid #FFFFFF22;
    border-bottom: 1px solid #FFFFFF22;
    box-shadow: inset 0 0 50px #000000AA;
    width: calc(100% + 100px);
    margin-left: -50px;
}

.screenshots .container {
    max-width: 800px;
}

.screenshots-grid {
    margin: 0 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
.feature-visual .screenshots-grid {
    margin: 30px 0 0;
}


.screenshot-card {
    padding: 0;
    transition: all var(--transition-base);
    width: 100%;
}

.screenshots .screenshot-card:last-child {
    max-width: none;
    grid-column: span 2;
}

.screenshot-card:hover {
    transform: translateY(-5px);
}

.screenshot-card img {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: 0 0 40px #000000BB;
}
.feature-visual .screenshot-card img {
    box-shadow: var(--shadow-xl);
}
.screenshot-card img:hover {
    box-shadow: var(--shadow-glow-primary-hover);
}

.screenshot-description {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-align: center;
    margin-top: var(--space-sm);
    font-weight: 300;
}

.clickable-image {
    cursor: pointer;
    transition: all var(--transition-base);
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-primary-hover);
}

/* ============================================
   Modal Styles
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin-bottom: 1.5em;
    max-width: calc(100vw - 3em);
    max-height: calc(100vh - 3em);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 3em);
}

.modal-content img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-glow-primary);
}

.modal-close {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all var(--transition-fast);
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}


/* ============================================
   Value Props Section
   ============================================ */
XX.value-props {
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.5), transparent);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.prop-card {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.prop-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.prop-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    margin: 0 auto;
    margin-bottom: var(--space-lg);
}

.prop-icon .ph-duotone {
    font-size: 2.5em;
}

.prop-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-align: center;
}

.prop-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.prop-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--bg-darker);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-primary);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.step-example {
    padding: var(--space-md);
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.example-label {
    color: var(--primary);
    font-weight: 500;
}

.example-text {
    color: var(--text-secondary);
    font-style: italic;
}

.step-models {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.model-badge {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.model-badge.deepseek { background: rgba(0, 166, 126, 0.2); color: var(--deepseek-color); }
.model-badge.gemini { background: rgba(88, 155, 255, 0.2); color: var(--gemini-color); }
.model-badge.grok { background: rgba(255, 255, 255, 0.1); color: var(--grok-color); }
.model-badge.mistral { background: rgba(255, 102, 0, 0.2); color: var(--mistral-color); }

.step-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mini-btn {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.step-result {
    color: var(--success);
    font-size: var(--font-size-sm);
}

.step-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-left: 48px;
}

/* ============================================
   Use Cases Section
   ============================================ */
.use-cases {
    background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.case-card {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(153, 0, 255, 0.3);
    box-shadow: var(--shadow-glow-secondary);
}

.case-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    padding: 16px;
}

.case-icon .ph-duotone {
    font-size: 1em;
    color: white;
}

.case-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-align: center;
}

.case-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.case-stats {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-stat {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.case-stat strong {
    color: var(--secondary);
}

/* ============================================
   AI Models Section
   ============================================ */
.ai-models {
    background: var(--bg-dark);
}

.models-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.model-card {
    padding: var(--space-md);
    padding-top: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.model-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.1);
}

.model-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 auto var(--space-md);
    padding: 12px;
}

.feature-card-demo .model-logo {
    width: 24px;
    height: 24px;
    padding: 3px;
    border-radius: var(--radius-sm);
    margin: 0 5px 3px 0;
}

.model-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.model-logo .ph-duotone {
    font-size: 1em;
}

.gpt-bg { background: linear-gradient(135deg, #0EA982, #10c9a0); }
.claude-bg { background: linear-gradient(135deg, #A8624A, #c4826a); }
.gemini-bg { background: linear-gradient(135deg, #956FFF, #589BFF, #11D4EE); }
.grok-bg { background: linear-gradient(135deg, #333, #000); }
.meta-bg { background: linear-gradient(135deg, #0668E1, #0a7fff); }
.perplexity-bg { background: linear-gradient(135deg, #20808D, #2a9db0); }

.model-card h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.model-card p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.models-note {
    text-align: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.demo-models-arrows {
    display: flex;
    justify-content: space-around;
    padding: 10px 40px 5px;
}
.demo-models-arrow {
    display: flex;
    justify-content: center;
    padding: 11px 0;
}
.demo-models-button {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.storage-option .demo-models-button {
    margin: 0;
}

.demo-consolidation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-sm) var(--space-4xl);
    background: rgba(255, 255, 255, 0.03);
    width: fit-content;
    border-radius: var(--radius-md);
    margin: 0 auto 10px;
}

/* ============================================
   Social Proof Section
   ============================================ */
.social-proof {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(153, 0, 255, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.proof-quote {
    padding: var(--space-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
}

.quote-mark {
    font-size: var(--font-size-5xl);
    color: var(--primary);
    line-height: 0.5;
    display: block;
    margin-bottom: var(--space-md);
}

.proof-quote p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    display: block;
}

.author-title {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.proof-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.proof-stat {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
}

.proof-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.proof-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    padding: var(--space-4xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
}

.cta-feature {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}




/* Pricing Page Specific Styles */
.pricing-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-2xl);
    text-align: center;
}

.pricing-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.pricing-hero p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.billing-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.billing-label.active {
    color: var(--text-primary);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--bg-accent);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.toggle-switch.active::after {
    transform: translateX(28px);
}

.save-badge {
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 187, 0, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Pricing Cards */
.pricing-section {
    padding-bottom: var(--space-4xl);
    padding-top: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-primary);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-lg);
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.plan-header {
    text-align: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.plan-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.plan-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.plan-tagline {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.plan-price {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.price-amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
}

.price-amount .currency {
    font-size: var(--font-size-xl);
    vertical-align: super;
}

.price-period {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.price-annual {
    display: none;
}

.annual-pricing .price-monthly {
    display: none;
}

.annual-pricing .price-annual {
    display: block;
}

.plan-features {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.plan-features ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.plan-features li .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features li .icon.check {
    color: var(--success);
    font-weight: 800;
}

.plan-features li .icon.cross {
    color: #ff0000;
    font-weight: 800;
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-cta {
    margin-top: auto;
}

.plan-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Feature Comparison Table */
.comparison-section {
    background: var(--bg-darker);
    padding: var(--space-4xl) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--space-2xl);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: var(--bg-card);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check {
    color: var(--success);
    font-weight: 800;
    font-size: var(--font-size-lg);
}

.comparison-table .cross {
    color: #FF0000;
    font-weight: 800;
    font-size: var(--font-size-lg);
}

.comparison-table .highlight {
    color: var(--primary);
    font-weight: 600;
}

.comparison-table .pricebold {
    font-weight: 600;
    color: var(--text-primary);
}

.table-category {
    background: rgba(255, 102, 0, 0.05) !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.faq-item p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Enterprise Section */
.enterprise-section {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(153, 0, 255, 0.05));
    padding: var(--space-4xl) 0;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.enterprise-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.enterprise-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.enterprise-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.enterprise-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.enterprise-feature .icon {
    color: var(--success);
}

.enterprise-visual {
    text-align: center;
}

.enterprise-icon {
    font-size: 120px;
    margin-bottom: var(--space-lg);
}

.enterprise-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
}

.enterprise-stat {
    text-align: center;
}

.enterprise-stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
}

.enterprise-stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* Guarantee Section */
.guarantee-section {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 187, 0, 0.2);
}

.guarantee-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
}

.guarantee-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .enterprise-features {
        align-items: center;
    }
}



/* Features Page Specific Styles */
.tools-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
}

.tools-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tools-hero h1 {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.tools-hero p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin: 0 auto var(--space-xl);
    max-width: 700px;
}

/* Feature Highlight */
.feature-section {
    padding-top: 0;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-4xl) 0;
}

.feature-highlight.reverse {
    direction: rtl;
}

.feature-highlight.reverse > * {
    direction: ltr;
}

.feature-text {
    max-width: 500px;
}

.feature-label {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.feature-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
}

.feature-list-text {
    color: var(--text-secondary);
}

.feature-list-text strong {
    color: var(--text-primary);
}

.feature-visual {
    position: relative;
    margin: 50px 0 0;
}

.feature-card-demo {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dot.red { background: #ff5f56; }
.demo-dot.yellow { background: #ffbd2e; }
.demo-dot.green { background: #27ca40; }

.demo-title {
    margin-left: auto;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.download-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.file-why-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--font-size-lg);
}

/* Model Cards Demo */
.demo-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}
.feature-card-demo .demo-models {
    grid-template-columns: repeat(4, 1fr);
}

.demo-model {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border-left: 3px solid;
}
.feature-card-demo .demo-model {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px var(--radius-md) 5px;
    border-left: none;
}


.demo-model.deepseek { border-color: var(--deepseek-color); }
.demo-model.gemini { border-color: var(--gemini-color); }
.demo-model.grok { border-color: #fff; }
.demo-model.mistral { border-color: var(--mistral-color); }

.demo-model-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
.feature-card-demo .demo-model-name {
    font-size: var(--font-size-xs);
    font-weight: 400;
    margin-left: 6px;
}

.demo-model-status {
    font-size: var(--font-size-xs);
    color: var(--success);
}



.demo-models-button .btn.button-bg-grad {
    font-size: var(--font-size-lg);
    border: 1px solid #AAAAAA;
    border-radius: 6px; 
    color: #FFF;
    text-shadow: 1px 1px 3px #000000;
    font-weight: bold;
    background: linear-gradient(
        135deg,
        #FF6600,
        #FF6600,
        #9900FF,
        #0044FF,
        #00BB00,
        #FF6600,
        #9900FF,
        #0044FF,
        #00BB00
    );
    background-size: 200% 200%;
    background-position: 0% 50%;
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: background-position 1s ease-in-out;
}

.demo-models-button .btn.button-bg-grad:hover {
border: 1px solid #AAAAAA44;
background: linear-gradient(
    45deg,
        #FF660044,
        #9900FF44,
        #0044FF44,
        #00BB0044,
        #FF660044,
        #9900FF44,
        #0044FF44,
        #00BB0044
    );
    background-size: 200% 200%;
    background-position: 100% 100%;
}



/* Skills Demo */
.demo-skills {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.demo-skill {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.demo-skill:hover {
    background: rgba(255, 255, 255, 0.06);
}

.demo-skill-icon {
    font-size: var(--font-size-2xl);
}

.demo-skill-info h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.demo-skill-info p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin: 0;
}

.demo-skill-badge {
    margin-left: auto;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 187, 0, 0.1);
    color: var(--success);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Storage Demo */
.demo-storage {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.storage-option {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-card-demo .storage-option {
    justify-content: space-between;
    gap: 0;
}

.storage-icon {
    font-size: var(--font-size-3xl);
}

.storage-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.storage-info p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

.storage-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--success);
    font-size: var(--font-size-sm);
}
.feature-card-demo .storage-status {
    margin-left: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Thinking Demo */
.demo-thinking {
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(153, 0, 255, 0.1), rgba(153, 0, 255, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(153, 0, 255, 0.2);
}

.thinking-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--secondary);
    font-weight: 500;
}

.thinking-dots {
    display: flex;
    gap: 4px;
}

.thinking-dots span {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: thinkingPulse 1.4s infinite;
}

.thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.thinking-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes thinkingPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.thinking-content {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* All Features Grid */
.all-features {
    background: var(--bg-darker);
}

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

.feature-card {
    padding: var(--space-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(153, 0, 255, 0.05));
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.roadmap-card {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.roadmap-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(153, 0, 255, 0.2);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.roadmap-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding-right: 80px;
}

.roadmap-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .feature-highlight.reverse {
        direction: ltr;
    }
    
    .feature-text {
        max-width: 100%;
    }
}





/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    height: 40px;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
    .hero-visual {
        display: none;
    }
    
    .proof-content {
        grid-template-columns: 1fr;
    }
    
    .proof-stats {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg-darker);
        padding: var(--space-xl);
        gap: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding-top: calc(70px + var(--space-3xl));
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-connector {
        margin: 0 auto;
    }
    
    .step-models,
    .step-cta {
        justify-content: center;
    }
    
    .proof-stats {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .models-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-xl {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--font-size-base);
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* ============================================
   Coming Soon Section - Parallax Reveal
   ============================================ */
.soon-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(
        160deg,
        #FF6600,
        #FF660088,
        #9900FF77,
        #0044FF77,
        #00BB0088,
        #00BB00
        );
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
    clip-path: inset(0);
    box-shadow: inset 0 0 100px #000000, inset 0 0 30px #000000;
    width: calc(100% + 200px);
    margin-left: -100px;
}

.soon-text-fixed {
    position: fixed;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1.2em;
    color: #FFFFFF;
    text-shadow: 0 5px 20px #000000;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}


/* ============================================
Page Header (for subpages)
============================================ */
.page-header {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, var(--bg-dark) 100%);
}

.page-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/* ============================================
Policy/Legal Content Styles
============================================ */
.policy-content {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--bg-dark);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-date {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-intro {
    margin-bottom: var(--space-2xl);
}

.policy-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.policy-section {
    margin-bottom: var(--space-2xl);
}

.policy-section h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
}

.policy-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    margin: var(--space-lg) 0 var(--space-md);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.policy-section ul {
    list-style: disc;
    margin-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.policy-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.policy-section ul li strong {
    color: var(--text-primary);
}

.policy-section a {
    color: var(--info-light);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.policy-section a:hover {
    color: var(--primary);
}

.policy-highlight {
    font-weight: 600;
    color: var(--text-primary) !important;
    background: rgba(255, 102, 0, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.policy-warning {
    font-weight: 500;
    background: rgba(255, 102, 0, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-dark);
}

.policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    padding-top: var(--space-2xl);
    margin-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-nav .btn {
    gap: var(--space-sm);
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: var(--space-xl);
        margin: 0 var(--space-sm);
    }
    
    .policy-nav {
        flex-direction: column;
    }
    
    .policy-nav .btn {
        width: 100%;
    }
}
