/* ========== FONT IMPORTS ========== */
@import url('https://rsms.me/inter/inter.css');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ========== CSS VARIABLES FOR MINIMAL BLACK/WHITE THEME ========== */
:root {
    /* Minimal Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-dark: #000000;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-muted: #999999;
    --accent-color: #dc2626;
    --accent-hover: #b91c1c;
    --accent-light: rgba(220, 38, 38, 0.1);
    --accent-soft: rgba(220, 38, 38, 0.05);
    --red-primary: #dc2626;
    --red-secondary: #b91c1c;
    --red-light: rgba(220, 38, 38, 0.1);
    --red-soft: rgba(220, 38, 38, 0.05);
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --border-dark: #d4d4d4;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --shadow-red: rgba(220, 38, 38, 0.1);
    --overlay-bg: rgba(255, 255, 255, 0.98);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --gradient-primary: linear-gradient(135deg, #dc2626, #b91c1c);
    --gradient-secondary: linear-gradient(135deg, #fafafa, #ffffff);
    --gradient-red-soft: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

/* ========== MODERN HEADER ========== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

/* Navbar background that appears on scroll */
.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Make text black when navbar background appears */
.modern-header.scrolled .logo-text {
    color: black !important;
    mix-blend-mode: normal !important;
}

.modern-header.scrolled .get-started-btn {
    color: black !important;
    border: none !important;
}

.modern-header.scrolled .get-started-btn:hover {
    color: black !important;
    border: none !important;
}

/* Header container */
.modern-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 24px;
}

/* Logo positioning */
.modern-header .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    mix-blend-mode: difference;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Navigation bar */
.modern-header .nav-bar {
    display: flex;
}

.modern-header .nav-bar ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

/* Header actions */
.modern-header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Remove the old corner and pill navigation styles */
.corner-logo,
.corner-nav,
.pill-nav {
    display: none;
}

/* Static navbar text - always black */

/* Logo styling - always black */
.modern-header .logo-link {
    color: #1a1a1a;
    mix-blend-mode: normal;
}

.modern-header .logo-link img {
    filter: brightness(0) invert(0) !important;
}

/* Navigation links - always black */
.modern-header .nav-link {
    color: #1a1a1a;
    mix-blend-mode: normal;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.modern-header .nav-link:hover {
    color: #dc2626;
    background: transparent;
    border-color: transparent;
    text-decoration: none;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    mix-blend-mode: difference;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Dynamic logo colors */
.modern-header.navbar-light .logo-link {
    color: #1a1a1a;
    mix-blend-mode: normal;
}

.modern-header.navbar-dark .logo-link {
    color: white;
    mix-blend-mode: normal;
}

.modern-header.navbar-light .logo-link img {
    filter: brightness(0) invert(0) !important;
}

.modern-header.navbar-dark .logo-link img {
    filter: brightness(0) invert(1) !important;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px var(--shadow-red),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-link:hover .logo-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px var(--accent-color),
        0 2px 8px var(--shadow-red),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-weight: 500;
    font-size: 20px;
    color: black;
    mix-blend-mode: difference;
}

/* Dynamic logo text colors */
.modern-header.navbar-light .logo-text {
    color: black;
    mix-blend-mode: normal;
}

.modern-header.navbar-dark .logo-text {
    color: black;
    mix-blend-mode: normal;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    mix-blend-mode: difference;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

/* Dynamic navigation link colors */
.modern-header.navbar-light .nav-link {
    color: #4a4a4a;
    mix-blend-mode: normal;
}

.modern-header.navbar-light .nav-link:hover {
    color: #dc2626;
}

.modern-header.navbar-dark .nav-link {
    color: #e0e0e0;
    mix-blend-mode: normal;
}

.modern-header.navbar-dark .nav-link:hover {
    color: #dc2626;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* User Greeting in Header - Professional Clickable Design */
.user-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.user-greeting:hover {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.user-greeting:active {
    transform: translateY(0);
}

.greeting-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.greeting-text #userName {
    color: var(--text-primary);
    font-weight: 600;
}

.dashboard-arrow {
    color: var(--text-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.user-greeting:hover .dashboard-arrow {
    transform: translateX(2px);
    color: var(--text-primary);
}

/* Responsive adjustments for user greeting */
@media (max-width: 768px) {
    .user-greeting {
        padding: 7px 12px;
        gap: 8px;
    }

    .greeting-text {
        font-size: 0.8rem;
    }

    .dashboard-arrow {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .user-greeting {
        padding: 6px 10px;
        gap: 6px;
    }

    .dashboard-arrow {
        width: 12px;
        height: 12px;
    }
}

.get-started-btn {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(100%);
    -webkit-backdrop-filter: blur(25px) saturate(100%);
    border: none;
    color: #000000;
    mix-blend-mode: normal;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.18);
    border: none;
    color: #000000;
    mix-blend-mode: normal;
}

/* Get Started button styling is handled by the main .get-started-btn styles above */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ========== HERO SECTION (RED INSPIRED) ========== */
.hero-red {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background-color: #fcfcfc;
    /* Very light grey/white background */
    position: relative;
    overflow: hidden;
}

.hero-red::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.04) 50%, transparent 80%);
    animation: heroPulse 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroPulse {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5%, 5%) scale(1.1);
    }

    66% {
        transform: translate(-5%, 2%) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-content-red {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-header-red {
    margin-bottom: 48px;
}

.hero-eyebrow {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

.hero-title-red {
    font-size: 64px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Mock Search Bar */
.hero-search-container {
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    /* Allow cards to wrap below */
    align-items: center;
    gap: 16px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 20px 25px -5px rgba(0, 0, 0, 0.02),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Subtle border */
    margin-bottom: 48px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    cursor: text;
    position: relative;
}

.hero-search-container:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 20px -5px rgba(0, 0, 0, 0.04),
        0 20px 25px -5px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.search-icon {
    color: #9ca3af;
    display: flex;
    align-items: center;
}

.search-input-mock {
    flex: 1;
    text-align: left;
    font-size: 20px;
    color: #111;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    min-height: 30px;
    white-space: pre;
    /* Preserve spaces */
}

/* Fixed Cursor - No longer contains text */
.search-cursor {
    display: inline-block;
    width: 2px;
    height: 24px;
    background-color: #000;
    margin-left: 1px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

.search-actions {
    display: flex;
    align-items: center;
}

/* Send Button */
.search-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-send-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.05);
}

.search-send-btn:active {
    transform: scale(0.95);
}

/* Inline Icons in Typing Text */
.inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 4px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.inline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* MCP Context Cards Container */
.mcp-cards-container {
    width: 100%;
    display: flex;
    gap: 12px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    display: none;
    /* Hidden by default until content added */
}

.mcp-cards-container.visible {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
}

/* Individual MCP Card */
.mcp-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.mcp-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mcp-card-icon.substack {
    background: #fff1e6;
    color: #ff6719;
}

.mcp-card-icon.notion {
    background: #f3f4f6;
    color: #000;
}

.mcp-card-icon.github {
    background: #f0f0f0;
    color: #24292e;
}

.mcp-card-icon.workflow {
    background: #f3e8ff;
    color: #9333ea;
}

/* Purple for Workflow */
.mcp-card-icon.voice {
    background: #fee2e2;
    color: #dc2626;
}

/* Red for Voice */
.mcp-card-icon.capture {
    background: #e0f2fe;
    color: #0284c7;
}

/* Blue/Cyan for Screen Capture */

.mcp-card-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mcp-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.mcp-card-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* CTA Button */
.hero-cta-container {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.download-btn-red {
    background: #ffffff;
    color: #000000;
    padding: 6px 24px 6px 6px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.download-btn-red::after {
    display: none;
}

.btn-icon-circle {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.download-btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
}

.download-btn-red:hover .btn-icon-circle {
    transform: scale(1.1);
    background: #dc2626;
}

.download-btn-red:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    60% {
        transform: translateY(-2px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-red {
        font-size: 42px;
    }

    .hero-search-container {
        padding: 16px;
    }

    .search-input-mock {
        font-size: 18px;
    }

    .mcp-cards-container {
        flex-direction: column;
    }
}

/* ========== ENHANCED ANIMATED BACKGROUND ========== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg,
            rgba(220, 38, 38, 0.04) 0%,
            rgba(252, 165, 165, 0.03) 15%,
            rgba(185, 28, 28, 0.02) 30%,
            rgba(107, 114, 128, 0.02) 45%,
            rgba(75, 85, 99, 0.03) 60%,
            rgba(156, 163, 175, 0.02) 75%,
            rgba(220, 38, 38, 0.03) 90%,
            rgba(254, 202, 202, 0.04) 100%);
    background-size: 600% 600%;
    animation: gradientShift 20s ease-in-out infinite;
    opacity: 0.8;
}

.animated-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%,
            rgba(220, 38, 38, 0.08) 0%,
            transparent 50%),
        radial-gradient(ellipse at 70% 80%,
            rgba(107, 114, 128, 0.06) 0%,
            transparent 50%),
        radial-gradient(ellipse at 20% 70%,
            rgba(185, 28, 28, 0.05) 0%,
            transparent 40%);
    animation: gradientPulse 12s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        background-position: 50% 0%;
        transform: rotate(1deg) scale(1.02);
    }

    50% {
        background-position: 100% 50%;
        transform: rotate(0deg) scale(1);
    }

    75% {
        background-position: 50% 100%;
        transform: rotate(-1deg) scale(0.98);
    }
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: float 20s ease-in-out infinite;
    opacity: 0;
}

.orb-1 {
    width: 140px;
    height: 140px;
    top: 8%;
    left: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.02));
    animation-delay: 0s;
    animation-duration: 28s;
}

.orb-2 {
    width: 90px;
    height: 90px;
    top: 18%;
    right: 12%;
    background: radial-gradient(circle at 40% 60%, rgba(252, 165, 165, 0.12), rgba(252, 165, 165, 0.01));
    animation-delay: -7s;
    animation-duration: 22s;
}

.orb-3 {
    width: 70px;
    height: 70px;
    bottom: 35%;
    left: 15%;
    background: radial-gradient(circle at 50% 20%, rgba(185, 28, 28, 0.1), rgba(185, 28, 28, 0.015));
    animation-delay: -14s;
    animation-duration: 25s;
}

.orb-4 {
    width: 110px;
    height: 110px;
    bottom: 18%;
    right: 8%;
    background: radial-gradient(circle at 60% 40%, rgba(107, 114, 128, 0.08), rgba(107, 114, 128, 0.01));
    animation-delay: -21s;
    animation-duration: 20s;
}

.orb-5 {
    width: 50px;
    height: 50px;
    top: 45%;
    left: 45%;
    background: radial-gradient(circle at 25% 75%, rgba(254, 202, 202, 0.1), rgba(254, 202, 202, 0.02));
    animation-delay: -28s;
    animation-duration: 26s;
}

.orb-6 {
    width: 80px;
    height: 80px;
    top: 65%;
    left: 75%;
    background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.01));
    animation-delay: -35s;
    animation-duration: 24s;
}

.orb-7 {
    width: 35px;
    height: 35px;
    top: 25%;
    left: 65%;
    background: radial-gradient(circle at 80% 20%, rgba(156, 163, 175, 0.1), rgba(156, 163, 175, 0.02));
    animation-delay: -42s;
    animation-duration: 30s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    15% {
        transform: translate(15px, -20px) rotate(45deg) scale(1.1);
        opacity: 0.5;
    }

    30% {
        transform: translate(25px, -35px) rotate(90deg) scale(0.9);
        opacity: 0.7;
    }

    45% {
        transform: translate(10px, -25px) rotate(135deg) scale(1.05);
        opacity: 0.4;
    }

    60% {
        transform: translate(-5px, -15px) rotate(180deg) scale(0.95);
        opacity: 0.6;
    }

    75% {
        transform: translate(-20px, 5px) rotate(225deg) scale(1.02);
        opacity: 0.5;
    }

    90% {
        transform: translate(-15px, 15px) rotate(270deg) scale(0.98);
        opacity: 0.3;
    }
}

/* ========== GEOMETRIC SHAPES ========== */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    opacity: 0;
    animation: shapeFloat 25s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 25%;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 30%;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.08), rgba(107, 114, 128, 0.015));
    border-radius: 8px;
    animation-delay: -15s;
    animation-duration: 28s;
}

.shape-3 {
    width: 50px;
    height: 50px;
    bottom: 40%;
    left: 70%;
    background: linear-gradient(225deg, rgba(185, 28, 28, 0.09), rgba(185, 28, 28, 0.02));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -25s;
    animation-duration: 32s;
}

.shape-4 {
    width: 30px;
    height: 30px;
    top: 55%;
    left: 15%;
    background: linear-gradient(315deg, rgba(252, 165, 165, 0.1), rgba(252, 165, 165, 0.025));
    border-radius: 50%;
    animation-delay: -35s;
    animation-duration: 26s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }

    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(-20px, -30px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translate(-40px, 20px) rotate(270deg);
        opacity: 0.5;
    }
}

/* ========== LIGHT RAYS ========== */
.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ray {
    position: absolute;
    opacity: 0;
    animation: rayShine 15s ease-in-out infinite;
}

.ray-1 {
    width: 2px;
    height: 200px;
    top: 10%;
    left: 20%;
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.1), transparent);
    transform-origin: top center;
    animation-delay: 0s;
}

.ray-2 {
    width: 1px;
    height: 150px;
    top: 30%;
    right: 25%;
    background: linear-gradient(to bottom, rgba(252, 165, 165, 0.08), transparent);
    transform-origin: top center;
    animation-delay: -5s;
}

.ray-3 {
    width: 1.5px;
    height: 180px;
    bottom: 20%;
    left: 60%;
    background: linear-gradient(to top, rgba(185, 28, 28, 0.06), transparent);
    transform-origin: bottom center;
    animation-delay: -10s;
}

@keyframes rayShine {

    0%,
    100% {
        opacity: 0;
        transform: rotate(0deg) scaleY(0.8);
    }

    25% {
        opacity: 0.3;
        transform: rotate(2deg) scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: rotate(-1deg) scaleY(1.1);
    }

    75% {
        opacity: 0.2;
        transform: rotate(1deg) scaleY(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-header {
    margin-bottom: 12px;
}

.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-cycling-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 500;
    line-height: 1.1;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-cycling-title:hover {
    transform: translateY(-2px);
}

#cyclingWord {
    display: inline;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    vertical-align: baseline;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Smooth Cycling Word Animation */
@keyframes smoothFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-3px) scale(0.98);
    }
}

@keyframes smoothFadeIn {
    0% {
        opacity: 0;
        transform: translateY(3px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* Smooth animation classes for cycling word */
.cycling-word-fade-out {
    animation: smoothFadeOut 0.4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.cycling-word-fade-in {
    animation: smoothFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}



/* Hero title animations */



.hero-search-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 800px;
}

.access-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.badge-text {
    font-weight: 500;
}

.download-red-btn {
    background: var(--gradient-primary);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px var(--shadow-red),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.download-red-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px var(--accent-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--red-primary), var(--red-secondary));
}

/* ========== FLOATING ASSISTANT DEMO ========== */
.floating-assistant-demo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.demo-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px) saturate(80%);
    -webkit-backdrop-filter: blur(12px) saturate(80%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 12px;
}

.demo-navigation ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.demo-list {
    position: relative;
    cursor: default;
    /* Changed from pointer - buttons are non-interactive for demo */
    z-index: 2;
    pointer-events: none;
    /* Disable all user interactions */
    transition: 0.5s;
    border-radius: 50px;
    border: none;
}

/* The highlight is a ::before pseudo-element */
.demo-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(25px) saturate(120%);
    -webkit-backdrop-filter: blur(25px) saturate(120%);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.4s ease-in-out;
}

.demo-list.active::before {
    opacity: 1;
    transform: scale(1);
}

.demo-list a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    color: #000;
    text-decoration: none;
    transition: 0.5s;
    overflow: hidden;
}

.demo-list a .icon {
    width: 24px;
    height: 24px;
    transition: 0.5s;
    flex-shrink: 0;
    color: #000;
}

.demo-list a .text {
    color: #000;
    font-weight: 400;
    white-space: nowrap;
    transition: max-width 0.4s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s, margin-left 0.4s ease-in-out 0.1s;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
}

.demo-list.active a .icon {
    color: #000;
}

.demo-list.active a .text {
    opacity: 1;
    max-width: 100px;
    margin-left: 8px;
}

.demo-window-container {
    width: 700px;
    max-width: 90vw;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    max-height: calc(100vh - 120px);
    overflow: visible;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.demo-window {
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px) saturate(80%);
    -webkit-backdrop-filter: blur(15px) saturate(80%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: none;
    color: #e0e0e0;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
}

.demo-window.visible {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.demo-window.fade-out {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
}

#demo-chat-window.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== CHAT WINDOW STYLES ========== */
#demo-chat-window {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.demo-chat-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: default;
    /* Changed from pointer - buttons are non-interactive for demo */
    transition: background-color 0.3s, color 0.3s;
    padding: 0;
    border-radius: 10px;
    height: 40px;
    width: 40px;
    background-color: transparent;
    color: #000;
    pointer-events: none;
    /* Disable all user interactions */
}

/* Hover effects disabled for demo - buttons are non-interactive */
/* .demo-icon-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
} */

.demo-screen-capture-active {
    color: #000;
    background-color: transparent;
}

.demo-chat-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    color: #000;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-chat-input:focus {
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px var(--accent-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.demo-chat-input::placeholder {
    color: #666;
}

.demo-send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 10px;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(0, 0, 0, 0.15);
}

/* Hover effects disabled for demo - buttons are non-interactive */
/* .demo-send-button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
} */

.demo-conversation-view {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: none;
    /* For Firefox */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.demo-conversation-view::-webkit-scrollbar {
    display: none;
}

.demo-message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 75%;
    word-wrap: break-word;
    width: fit-content;
}

.user-message {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: none;
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ai-message {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-message .text-content {
    flex-grow: 1;
}

.demo-message .screen-capture-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #000;
    /* Black to match other icons */
}

.demo-typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    animation: typingIndicatorAppear 0.4s ease-out forwards;
}

.demo-typing-indicator.disappearing {
    animation: typingIndicatorDisappear 0.3s ease-in forwards;
}

.demo-typing-dot {
    width: 6px;
    height: 6px;
    background: black;
    border-radius: 50%;
    animation: typingDots 1.4s infinite;
}

.demo-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.demo-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes typingIndicatorAppear {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }

    50% {
        opacity: 0.7;
        transform: translateY(2px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes typingIndicatorDisappear {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translateY(-5px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(156, 163, 175, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 8px 32px rgba(156, 163, 175, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

/* ========== VOICE WINDOW STYLES ========== */
.demo-voice-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.demo-voice-main-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(107, 114, 128, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.demo-voice-main-btn:hover {
    background: rgba(75, 85, 99, 0.8);
    box-shadow: 0 12px 40px rgba(107, 114, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.demo-voice-main-btn.recording {
    background: transparent;
    box-shadow: 0 8px 32px rgba(156, 163, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.demo-voice-main-btn .icon {
    width: 32px;
    height: 32px;
}

.demo-voice-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-voice-action-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.demo-voice-action-btn .icon {
    width: 24px;
    height: 24px;
}

/* ========== WORKFLOWS WINDOW STYLES ========== */
.demo-workflow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-workflow-item {
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.demo-workflow-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ========== SETTINGS WINDOW STYLES ========== */
.demo-settings-section {
    margin-bottom: 25px;
}

.demo-settings-section:last-child {
    margin-bottom: 0;
}

.demo-settings-header {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-account-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.demo-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(107, 114, 128, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.demo-user-details {
    flex-grow: 1;
}

.demo-user-name {
    font-weight: 500;
    color: #000;
}

.demo-user-email {
    font-size: 14px;
    color: #666;
}

.demo-manage-btn {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-manage-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ========== NOT MEMBER SECTION ========== */
.not-member-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.not-member-text {
    color: var(--text-secondary);
}

.join-waitlist-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.join-waitlist-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ========== TRUST SECTION ========== */
.trust-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 114, 128, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.trust-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

.trust-prefix,
.trust-suffix {
    color: var(--text-secondary);
    font-weight: 400;
}

.rotating-trust {
    position: relative;
    height: 28px;
    overflow: hidden;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    opacity: 0;
    color: var(--red-primary);
    font-weight: 600;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.trust-item.active {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}

.trust-item.exit {
    transform: translate(-50%, -50%) translateY(-30px);
    opacity: 0;
}

/* ========== DEMO BUTTON ========== */
.hero-demo-section {
    margin-top: 40px;
}

.watch-demo-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 16px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.watch-demo-btn:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.demo-thumbnail {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* ========== VIDEO SECTION ========== */
.demo-video-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.video-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.highlight-word {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    border: 1px solid var(--border-color);
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: var(--bg-tertiary);
}

.demo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.demo-video:hover {
    opacity: 0.95;
}

/* Video play hint styles */
.video-play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.video-play-hint:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

/* Video loading state */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper.loading::before {
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.video-navigation {
    padding: 48px 40px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.video-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.video-nav-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}

.video-nav-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.video-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.video-nav-btn svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.video-nav-btn:hover:not(:disabled)::before {
    opacity: 0.1;
}

.video-nav-btn:hover:not(:disabled) svg {
    transform: scale(1.1);
    color: var(--accent-color);
}

.video-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.video-indicators {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.video-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--accent-color);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.video-dot:hover {
    background: rgba(220, 38, 38, 0.3);
    transform: scale(1.2);
}

.video-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15),
        0 2px 8px rgba(220, 38, 38, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.video-dot.active::before {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.current-video-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 24px 0;
    position: relative;
}

.current-video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.current-video-info h4 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.current-video-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 600px;
    font-weight: 400;
    opacity: 0.9;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 114, 128, 0.3), transparent);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.pricing-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.billing-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.billing-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e5e5;
    transition: .4s;
    border-radius: 34px;
}

.billing-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.billing-slider {
    background-color: var(--accent-color);
}

input:checked+.billing-slider:before {
    transform: translateX(28px);
}

.billing-discount-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Early Access Discount Banner */
.early-access-discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-soft));
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    margin: 24px auto;
    max-width: 600px;
    font-weight: 600;
    color: var(--accent-color);
}

.early-access-discount-banner svg {
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Early Access Badge in Hero */
.early-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.early-access-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.early-access-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    animation: ripple 2s infinite;
}

.early-access-badge .badge-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    animation: rippleExpand 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes ripple {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Original Price Strikethrough */
.original-price {
    margin-top: 8px;
}

.original-price .strikethrough {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-2px);
    border-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Enterprise Card (Red/Dark) */
.pricing-card.enterprise {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #1a1a1a;
}

.pricing-card.enterprise:hover {
    transform: translateY(-2px);
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card.enterprise .plan-name {
    color: #1a1a1a;
}

.pricing-card.enterprise .price-currency,
.pricing-card.enterprise .price-amount,
.pricing-card.enterprise .price-period {
    color: #1a1a1a;
}

.pricing-card.enterprise .plan-description {
    color: #6b7280;
}

.pricing-card.enterprise .feature-item {
    color: #374151;
}

.pricing-card.enterprise .feature-icon {
    color: #1a1a1a;
}

/* Featured Card (for middle card) */
.pricing-card.featured {
    background: #ffffff;
    border: 1px solid #1a1a1a;
    transform: none;
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-2px);
    border-color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Plan Badge */
.plan-badge {
    display: none;
    padding: 4px 8px;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.plan-badge.featured {
    background: #1a1a1a;
    color: #ffffff;
}

/* Plan Name */
.plan-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

/* Plan Price */
.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    gap: 2px;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
}

/* Plan Description */
.plan-description {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #6b7280;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
}

/* Features List */
.pricing-card-features {
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 12px;
    line-height: 1.3;
    color: #374151;
}

.feature-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    margin-right: 6px;
    border-radius: 50%;
    background-color: #10b981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::after {
    content: '✓';
    color: white;
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
}

.pricing-card.featured .feature-icon {
    background-color: #10b981;
}

/* Disabled feature items */
.feature-item.disabled {
    opacity: 0.5;
    color: #9ca3af;
}

.feature-item.disabled .feature-icon {
    color: #d1d5db;
    stroke: currentColor;
}

/* Enhanced pricing card features */
.pricing-card-features {
    flex: 1;
    padding: 8px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    transition: all 0.2s ease;
}

.feature-item:hover:not(.disabled) {
    color: #1a1a1a;
    transform: translateX(4px);
}

.feature-item:hover:not(.disabled) .feature-icon {
    color: #059669;
    transform: scale(1.1);
}

/* Plan comparison indicators */
.pricing-card .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.pricing-card .plan-badge.featured {
    background: linear-gradient(135deg, #dc2626, #f97316);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Pricing Button */
.pricing-card-footer {
    margin-top: auto;
    padding-top: 12px;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.pricing-btn.primary {
    background: #1a1a1a;
    color: white;
    box-shadow: none;
}

.pricing-btn.primary:hover {
    transform: none;
    box-shadow: none;
    text-decoration: none;
    color: white;
    background: #000000;
}

.pricing-btn.secondary {
    background: white;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    backdrop-filter: none;
}

/* Enterprise card button */
.pricing-card.enterprise .pricing-btn.primary {
    background: #1a1a1a;
    color: white;
}

.pricing-card.enterprise .pricing-btn.primary:hover {
    background: #000000;
    color: white;
    box-shadow: none;
}

.pricing-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #1a1a1a;
    transform: none;
    box-shadow: none;
    text-decoration: none;
    color: #1a1a1a;
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    padding: 16px 20px;
    background: #f8f9fa;
    backdrop-filter: none;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: none;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.guarantee-text h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.guarantee-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ========== COMPACT PRICING COMPARISON (NEW) ========== */
.pricing-comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Plan Headers */
.pricing-plans-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.plan-header-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-header-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.plan-header-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(220, 38, 38, 0.06));
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
}

.plan-header-card .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header-card .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.plan-header-card .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.plan-header-card .price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.plan-header-card .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin: 0 4px;
}

.plan-header-card .price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-header-card .original-price {
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

.plan-header-card .strikethrough {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.875rem;
}

.plan-header-card .plan-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.plan-header-card .pricing-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.plan-header-card .pricing-btn.primary {
    background: var(--accent-color);
    color: white;
}

.plan-header-card .pricing-btn.primary:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

.plan-header-card .pricing-btn.secondary {
    background: #f3f4f6;
    color: var(--text-primary);
    border: 2px solid #e5e7eb;
}

.plan-header-card .pricing-btn.secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

/* Feature Comparison Accordion */
.pricing-features-accordion {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.feature-dropdown {
    border-bottom: 1px solid #e5e7eb;
}

.feature-dropdown:last-child {
    border-bottom: none;
}

.feature-dropdown-header {
    width: 100%;
    background: white;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-dropdown-header:hover {
    background: #f9fafb;
}

.feature-dropdown-header.active {
    background: #f3f4f6;
}

.feature-dropdown-header .feature-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-dropdown-header .dropdown-arrow {
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.feature-dropdown-header.active .dropdown-arrow {
    transform: rotate(180deg);
}

.feature-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafbfc;
}

.feature-dropdown-content.active {
    max-height: 200px;
    padding: 20px 24px;
}

.feature-comparison-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.feature-value:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.feature-value.disabled {
    opacity: 0.5;
    background: #f9fafb;
}

.feature-value.disabled:hover {
    border-color: #e5e7eb;
    box-shadow: none;
}

.feature-value span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-value.disabled span {
    color: var(--text-secondary);
}

.feature-value .check-icon {
    flex-shrink: 0;
}

.feature-value .x-icon {
    flex-shrink: 0;
}

/* Responsive Design for Compact Pricing */
@media (max-width: 1024px) {
    .pricing-plans-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-header-card {
        padding: 24px;
    }

    .feature-comparison-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .pricing-plans-header {
        gap: 12px;
    }

    .plan-header-card {
        padding: 20px;
    }

    .plan-header-card .plan-name {
        font-size: 1.25rem;
    }

    .plan-header-card .price-amount {
        font-size: 2rem;
    }

    .feature-dropdown-header {
        padding: 16px 20px;
    }

    .feature-dropdown-header .feature-name {
        font-size: 0.95rem;
    }

    .feature-dropdown-content.active {
        padding: 16px 20px;
    }
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }

    .price-amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 16px;
    }

    .plan-price {
        justify-content: center;
    }

    .pricing-footer {
        margin-top: 40px;
    }
}

/* ========== FAQ SECTION ========== */
.section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.questions-text {
    color: var(--red-primary);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.enhance-text {
    color: var(--red-primary);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.plan-text {
    color: var(--red-primary);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-toggle {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 24px;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ========== CONTACT SECTION ========== */
.contact-bento-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.contact-bento-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-visual {
    position: relative;
    background: url('images/Darkshell_20-_2012.jpeg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.contact-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.fractal-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fractal-image {
    display: none;
}

.contact-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 30px;
}

.contact-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form-section {
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.form-progress {
    margin-bottom: 30px;
}

.step-indicator {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.contact-info-section {
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.contact-value {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-value:hover {
    color: var(--accent-color);
}

.form-content {
    margin-top: 30px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.form-description {
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    font-size: 16px;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
    position: relative;
    z-index: 2;
}

.form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-input::placeholder {
    color: rgba(26, 26, 26, 0.5);
}

.form-textarea {
    min-height: 120px;
    max-height: 300px;
    resize: vertical;
    font-family: inherit;
    overflow-y: auto;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* ========== ULTRA MODERN FOOTER ========== */
.ultra-modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.ultra-modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.ultra-modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: rotate(360deg) scale(1.1);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
    max-width: 300px;
    font-weight: 400;
}

/* Navigation Grid */
.footer-nav-grid {
    display: flex;
    gap: 48px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.6));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-link:hover::after {
    width: 100%;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(220, 38, 38, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Discord Link Special Styling */
.discord-link:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.25);
}

.discord-link::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.15));
}

.discord-link:hover svg {
    color: #5865F2;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

.status-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 16px rgba(0, 255, 0, 0.8);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .contact-bento-container {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        min-height: 300px;
    }

    /* Ultra Modern Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-nav-grid {
        justify-content: center;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .modern-header .container {
        gap: 12px;
    }

    /* Mobile navbar adjustments */
    .modern-header .header-container {
        padding: 0 20px;
    }

    .modern-header .nav-bar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 20px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .modern-header .nav-bar.active {
        transform: translateX(0);
    }

    .modern-header .nav-bar ul {
        flex-direction: column;
        gap: 24px;
        padding: 0;
        width: 100%;
        max-width: 400px;
        text-align: center;
        margin-bottom: 40px;
    }

    .modern-header .nav-bar ul li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .modern-header .nav-bar.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for list items */
    .modern-header .nav-bar.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .modern-header .nav-bar.active ul li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .modern-header .nav-bar.active ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .modern-header .nav-bar.active ul li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .modern-header .nav-bar.active ul li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .modern-header .nav-link {
        display: block;
        padding: 16px;
        font-size: 24px;
        font-weight: 500;
        color: #1a1a1a;
        border-radius: 16px;
        transition: all 0.3s ease;
        background: transparent;
        border: 1px solid transparent;
    }

    .modern-header .nav-link:hover,
    .modern-header .nav-link:active {
        background: rgba(220, 38, 38, 0.05);
        color: #dc2626;
        transform: scale(1.02);
        border-color: rgba(220, 38, 38, 0.1);
    }

    /* Tablet hero title improvements */
    .hero-cycling-title {
        font-size: clamp(3.5rem, 10vw, 6rem);
        line-height: 1.15;
    }

    #cyclingWord {
        display: inline;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-main-content {
        gap: 32px;
    }

    .trust-section {
        padding: 40px 0;
    }

    .trust-content {
        font-size: 16px;
        gap: 10px;
        padding: 24px 32px;
    }

    .rotating-trust {
        min-width: 140px;
        height: 24px;
    }

    .trust-item {
        font-size: 16px;
    }

    .floating-assistant-demo {
        max-width: 100%;
    }

    .demo-navigation ul {
        flex-wrap: wrap;
        gap: 4px;
    }

    .demo-list a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .demo-window {
        padding: 16px;
    }

    .demo-window-container {
        height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    /* Ultra Modern Footer Mobile */
    .footer-nav-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer-nav-column {
        align-items: center;
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ultra-modern-footer {
        margin-top: 80px;
    }

    .footer-content {
        padding: 32px 0;
        gap: 24px;
    }

    .section {
        padding: 80px 0;
    }

    /* Adjust video container for tablets */
    .video-container {
        max-width: 95%;
        margin: 0 auto;
    }

    /* Stack FAQ items on tablets */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .modern-header {
        top: 10px;
        padding: 4px 12px;
        border-radius: 30px;
    }

    .logo-circle {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 16px;
    }

    .get-started-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Mobile hero title improvements */
    .hero-cycling-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        font-size: clamp(3rem, 12vw, 5rem);
        line-height: 1.2;
    }

    #cyclingWord {
        display: inline;
        text-align: center;
        order: -1;
        /* Move cycling word above "with Red" */
        font-size: 0.85em;
        margin-bottom: 4px;
    }

    .hero-modern {
        padding: 100px 0 60px;
    }

    .trust-section {
        padding: 30px 0;
    }

    .trust-content {
        font-size: 14px;
        gap: 8px;
        flex-wrap: wrap;
        text-align: center;
        padding: 20px 24px;
        border-radius: 20px;
    }

    .rotating-trust {
        min-width: 120px;
        height: 20px;
    }

    .trust-item {
        font-size: 14px;
    }

    /* Ultra Modern Footer Small Mobile */
    .footer-brand-section {
        gap: 8px;
    }

    .footer-content {
        padding: 24px 0;
        gap: 20px;
    }

    .footer-nav-grid {
        gap: 16px;
    }

    .footer-nav-column {
        gap: 8px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .access-badge {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .demo-navigation {
        padding: 12px 16px;
    }

    .demo-window {
        padding: 12px;
    }

    .demo-chat-input-area {
        padding: 12px;
        gap: 8px;
    }

    .contact-overlay {
        padding: 20px;
    }

    .contact-form-section {
        padding: 25px 16px;
    }

    /* Adjust video container for mobile */
    .video-container {
        max-width: 95%;
        margin: 0 auto;
        border-radius: 16px;
    }

    .demo-video-section {
        padding: 80px 0;
    }

    /* FAQ mobile adjustments */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .faq-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 24px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* ========== 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: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.d-flex {
    display: flex;
}

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

.align-items-center {
    align-items: center;
}

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

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

/* ========== ANIMATION CLASSES ========== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
}

/* ========== CONVERSATION WINDOW TRANSITION ANIMATION ========== */
.demo-window-container.transitioning {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-behavior: smooth;
}

/* Prevent unwanted scrolling on page load */
html.loading {
    scroll-behavior: auto;
    overflow: hidden;
}

body.loading {
    overflow: hidden;
}

/* ========== FOCUS STYLES ========== */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ========== BLOG STYLES ========== */
.blog-hero-section {
    padding: 140px 0 80px;
    background: var(--bg-secondary);
    position: relative;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 114, 128, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.blog-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Article */
.featured-article-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.featured-article-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-tertiary);
}

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

.featured-article:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-article-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-article-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}

.featured-article-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-primary);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-more-btn:hover {
    background: var(--red-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    text-decoration: none;
}

/* Blog Articles */
.blog-articles-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-article {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.blog-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.12);
}

.article-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-tertiary);
}

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

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

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.article-date {
    color: var(--text-secondary);
    font-weight: 400;
}

.article-category {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.article-link {
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.article-link:hover {
    color: var(--red-secondary);
    text-decoration: none;
    transform: translateX(4px);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(107, 114, 128, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--red-primary);
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.newsletter-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
    background: rgba(255, 255, 255, 1);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-primary);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--red-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

/* Section Badge (reusable) */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--red-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 120px 0 60px;
    }

    .featured-article-section {
        padding: 40px 0;
    }

    .featured-article {
        padding: 30px 20px;
        gap: 30px;
    }

    .featured-article-title {
        font-size: 1.5rem;
    }

    .blog-articles-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-content {
        padding: 32px 24px;
    }

    .form-group-inline {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .blog-hero-section {
        padding: 100px 0 40px;
    }

    .featured-article {
        padding: 24px 16px;
        gap: 24px;
    }

    .featured-article-title {
        font-size: 1.25rem;
    }

    .newsletter-content {
        padding: 24px 20px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .article-content {
        padding: 20px;
    }
}

/* ========== DASHBOARD SIDEBAR ========== */
.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    border-right: 1px solid var(--border-light);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.sidebar-logo img {
    filter: brightness(0) invert(0);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item {
    padding: 0 16px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    font-size: 14px;
}

.nav-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
}

.nav-link.active {
    background: var(--bg-dark);
    color: white;
}

.nav-link.active:hover {
    background: var(--bg-dark);
    color: white;
}

.nav-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.nav-link span {
    font-size: 14px;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.user-info-avatar {
    width: 32px;
    height: 32px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.user-info-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.user-info-email {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.2;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

.logout-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.logout-btn svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* ========== MINI SIDEBAR FOR SETTINGS ========== */
.nav-item {
    position: relative;
}

.mini-sidebar {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 6px;
    animation: slideDown 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 8px var(--shadow-medium);
}

.mini-sidebar.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Settings nav item styling when expanded */
.nav-item.settings-expanded .nav-link {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.nav-item.settings-expanded .nav-link:hover {
    background: var(--bg-secondary);
}

.mini-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-nav-item {
    display: block;
}

.mini-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 13px;
}

.mini-nav-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    text-decoration: none;
}

.mini-nav-link.active {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

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

.mini-nav-link svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.mini-nav-link span {
    font-size: 13px;
}

/* Dashboard main content adjustments */
.dashboard-main {
    margin-left: 280px;
    min-height: 100vh;
    background: #ffffff;
    padding: 0;
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Update dashboard container styles */
.dashboard-container {
    padding-top: 40px;
}

/* ========== MINIMAL DASHBOARD STYLES ========== */
.dashboard-header {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px var(--shadow-light);
}

.dashboard-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 1px 2px var(--shadow-light);
}

.dashboard-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-dark);
    transform: none;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 2px 4px var(--shadow-medium);
}

.dashboard-btn.danger {
    background: var(--bg-primary);
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.dashboard-btn.danger:hover {
    background: var(--red-light);
    color: var(--red-primary);
}

.metric-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px var(--shadow-light);
}

.metric-card:hover {
    transform: translateY(-1px);
    border-color: var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    box-shadow: none;
}

.metric-progress-bar {
    height: 100%;
    background: var(--red-primary);
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.usage-chart-container,
.account-info,
.billing-info {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px var(--shadow-light);
}

.chart-placeholder {
    height: 200px;
    background: var(--bg-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.plan-badge {
    display: none;
    background: var(--red-light);
    color: var(--red-primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--red-primary);
    margin-bottom: 16px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px var(--shadow-medium);
}

/* Responsive sidebar */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }

    .dashboard-content {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        width: 100%;
    }

    .dashboard-content {
        padding: 16px 12px;
    }
}

/* ========== SELECTION STYLES ========== */
::selection {
    background: rgba(107, 114, 128, 0.2);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(107, 114, 128, 0.2);
    color: var(--text-primary);
}

/* ========== RED SIGNATURE FEATURES SECTION ========== */
.red-features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.red-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.red-features-section .container {
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-main-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.red-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.features-main-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features-cards-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(244, 114, 182, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(251, 146, 60, 0.15),
        0 0 0 1px rgba(251, 146, 60, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc2626, #f97316);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #dc2626;
    transform: translateY(-2px);
}

.feature-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #4b5563;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .features-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .red-features-section {
        padding: 80px 0;
    }

    .features-header {
        margin-bottom: 60px;
    }

    .features-main-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .features-main-description {
        font-size: 1.125rem;
    }

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

    .feature-card {
        padding: 28px 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .red-features-section {
        padding: 60px 0;
    }

    .features-header {
        margin-bottom: 50px;
    }

    .features-main-title {
        font-size: 2.25rem;
    }

    .features-main-description {
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.8125rem;
    }
}

/* ========== ENHANCED FEATURES SECTION V2 ========== */
.red-features-section-v2 {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.red-features-section-v2 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.red-features-section-v2 .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Feature Filter Tabs */
.feature-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* ========== SPOTLIGHT LAYOUT ========== */
.feature-spotlight-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feature-spotlight-row {
    display: flex;
    align-items: center;
    gap: 80px;
    opacity: 1;
    /* Ensure visible */
}

.feature-spotlight-row.reverse {
    flex-direction: row-reverse;
}

/* Text Content */
.spotlight-text-content {
    flex: 1;
    max-width: 500px;
}

.spotlight-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.spotlight-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.spotlight-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.spotlight-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.check-icon {
    color: var(--accent-color);
    font-weight: 800;
}

/* Visual Content */
.spotlight-visual-content {
    flex: 1.2;
    position: relative;
}

.spotlight-visual-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    padding: 40px;
    height: 400px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spotlight-visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.1);
}

/* Large Demos */
.large-demo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Split Row */
.feature-spotlight-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.spotlight-mini-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.spotlight-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mini-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mini-card-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.mini-visual {
    width: 100%;
    height: 150px;
    background: #f9fafb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Responsive Spotlight */
@media (max-width: 1024px) {

    .feature-spotlight-row,
    .feature-spotlight-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .spotlight-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .spotlight-features-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .spotlight-visual-content {
        width: 100%;
    }

    .spotlight-visual-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .feature-spotlight-container {
        gap: 80px;
    }

    .feature-spotlight-split-row {
        grid-template-columns: 1fr;
    }

    .spotlight-title {
        font-size: 2rem;
    }
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.08) !important;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}

.feature-card-v2:hover .feature-icon-wrapper {
    transform: scale(1.05) rotate(3deg);
    background: rgba(220, 38, 38, 0.12) !important;
}

.feature-icon {
    /* stroke: var(--accent-color); */
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: none !important;
    /* Ensure SVG images display properly */
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.1));
}

.feature-card-v2:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.2));
}

/* Demo Preview Area */
.feature-demo-preview {
    margin-top: auto;
    padding-top: 24px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.feature-demo-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.feature-card-v2:hover .feature-demo-preview {
    transform: translateY(-2px);
}

.feature-card-v2:hover .feature-demo-preview img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Pulse Animation for Skeleton/Mock elements */
@keyframes pulse-glow {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.mock-element {
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Feature Content */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Demo Preview Container */
.feature-demo-preview {
    margin: 24px 0;
    min-height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Screen Capture Demo */
.screen-capture-demo {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Allow full width */
}

/* Pricing Feature Lists */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.check-icon-small {
    color: var(--accent-color);
    flex-shrink: 0;
}

.plan-header-card {
    display: flex;
    flex-direction: column;
    /* Ensure button stays at bottom if needed, though structure */
}

.pricing-cta-btn {
    margin-top: auto;
    width: 100%;
}

/* Screen Capture Demo */
.screen-capture-demo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-screen {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    width: 100%;
    min-height: 240px;
    /* Ensure substantial height */
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: screenFloat 6s ease-in-out infinite;
}

.window-header {
    height: 32px;
    background: #f3f4f6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    flex-shrink: 0;
}

.window-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #10b981;
}

.demo-content-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    flex-grow: 1;
}

.content-line {
    height: 10px;
    background: var(--border-light);
    border-radius: 6px;
    width: 100%;
    opacity: 0.6;
}

.content-line.short {
    width: 60%;
}

/* Capture Overlay & Selection */
.capture-overlay {
    position: absolute;
    top: 32px;
    /* Below header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: overlayFade 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 5;
}

.capture-selection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 2px dashed white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.2);
    /* Cutout effect */
    opacity: 0;
    animation: selectionExpand 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 6;
}

.selection-dimensions {
    position: absolute;
    bottom: -28px;
    right: 0;
    background: var(--accent-color);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0;
    animation: dimensionsFade 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes overlayFade {

    0%,
    10% {
        opacity: 0;
    }

    15%,
    85% {
        opacity: 1;
    }

    90%,
    100% {
        opacity: 0;
    }
}

@keyframes selectionExpand {

    0%,
    15% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    45%,
    80% {
        width: 80%;
        height: 60%;
        opacity: 1;
    }

    /* Relative size */
    90%,
    100% {
        width: 80%;
        height: 60%;
        opacity: 0;
    }
}

@keyframes dimensionsFade {

    0%,
    40% {
        opacity: 0;
    }

    45%,
    80% {
        opacity: 1;
    }

    90%,
    100% {
        opacity: 0;
    }
}

.demo-cursor {
    position: absolute;
    top: 60px;
    left: 40px;
    width: 20px;
    height: 26px;
    background: white;
    /* White cursor for visibility on dark overlay */
    border: 1px solid rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 0 100%, 28% 74%, 48% 100%, 62% 88%, 42% 62%, 100% 28%);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: cursorDrag 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 10;
}

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

    /* Start away */
    15% {
        transform: translate(0, 0) scale(1);
    }

    /* Move to start */
    20% {
        transform: translate(0, 0) scale(0.9);
    }

    /* Click */
    45% {
        transform: translate(160px, 100px) scale(0.9);
    }

    /* Drag */
    50% {
        transform: translate(160px, 100px) scale(1);
    }

    /* Release */
    80% {
        transform: translate(160px, 100px);
        opacity: 1;
    }

    90%,
    100% {
        transform: translate(180px, 120px);
        opacity: 0;
    }

    /* Move away */
}

/* Coming Soon Badge (Card Position) */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.demo-question-bubble {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--accent-color);
    color: white;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    opacity: 0;
    animation: springPopup 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes springPopup {

    0%,
    35% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5) translateY(10px);
    }

    45% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05) translateY(0);
    }

    50% {
        transform: translateX(-50%) scale(1) translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }

    95% {
        opacity: 0;
        transform: translateX(-50%) scale(0.9) translateY(-10px);
    }

    100% {
        opacity: 0;
    }
}

/* Workflow Demo */
.workflow-demo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-nodes {
    display: flex;
    align-items: center;
    gap: 24px;
}

.workflow-node {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
    z-index: 2;
    transition: transform 0.3s ease;
}

.node-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border: 2px solid var(--accent-color);
    opacity: 0;
    animation: rippleEffect 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.workflow-node.node-2 .node-pulse {
    animation-delay: 0.5s;
}

.workflow-node.node-3 .node-pulse {
    animation-delay: 1.0s;
}

.workflow-node.node-4 .node-pulse {
    animation-delay: 1.5s;
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.workflow-connection {
    width: 40px;
    height: 3px;
    background: rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.workflow-connection::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-150%);
    animation: dataFlow 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    border-radius: 2px;
}

.connection-2::before {
    animation-delay: 0.5s;
}

.connection-3::before {
    animation-delay: 1.0s;
}

@keyframes dataFlow {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(250%);
    }
}

/* Waveform Demo */
.waveform-demo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.waveform-bars {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 60px;
}

.waveform-bar {
    width: 6px;
    background: var(--accent-color);
    border-radius: 3px;
    animation: voiceModulation 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) {
    animation-duration: 0.8s;
    height: 30%;
}

.waveform-bar:nth-child(2) {
    animation-duration: 1.1s;
    height: 50%;
}

.waveform-bar:nth-child(3) {
    animation-duration: 1.3s;
    height: 80%;
}

.waveform-bar:nth-child(4) {
    animation-duration: 0.9s;
    height: 40%;
}

.waveform-bar:nth-child(5) {
    animation-duration: 1.0s;
    height: 60%;
}

@keyframes voiceModulation {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

/* Activity Demo */
.activity-demo {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 20px;
}

.activity-timeline {
    display: flex;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.activity-dot {
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--border-dark);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    animation: dotPop 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.activity-dot.dot-2 {
    animation-delay: 0.2s;
}

.activity-dot.dot-3 {
    animation-delay: 0.4s;
}

.activity-dot.dot-4 {
    animation-delay: 0.6s;
}

.activity-dot.dot-5 {
    animation-delay: 0.8s;
}

@keyframes dotPop {

    0%,
    10% {
        transform: scale(0.8);
        border-color: var(--border-dark);
    }

    15% {
        transform: scale(1.4);
        border-color: var(--accent-color);
        background: var(--accent-color);
    }

    20%,
    100% {
        transform: scale(1);
        border-color: var(--accent-color);
        background: var(--accent-color);
    }
}

.pattern-connection {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    border-top: 2px dashed var(--accent-color);
    opacity: 0;
    z-index: 1;
    animation: pathDraw 4s ease-out infinite;
}

@keyframes pathDraw {

    0%,
    20% {
        clip-path: inset(0 100% 0 0);
        opacity: 1;
    }

    50%,
    80% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    90%,
    100% {
        opacity: 0;
    }
}

.insight-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    opacity: 0;
    animation: badgeSlideUp 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes badgeSlideUp {

    0%,
    50% {
        opacity: 0;
        transform: translateY(10px);
    }

    60%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-5px);
    }
}

/* MCP Server Stack */
.mcp-servers-demo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 200px;
}

.server-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    animation: stackFloat 4s ease-in-out infinite;
}

.server-item:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes stackFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.server-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.insight-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent-color);
    color: white;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    animation: insightAppear 4s infinite;
}

@keyframes insightAppear {

    0%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }

    50%,
    75% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MCP Servers Demo */
.mcp-servers-demo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 200px;
}

.server-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: serverPulse 3s ease-in-out infinite;
}

.server-item.server-2 {
    animation-delay: 0.5s;
}

.server-item.server-3 {
    animation-delay: 1s;
}

@keyframes serverPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(4px);
        opacity: 0.9;
    }
}

.server-indicator {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: indicatorBlink 2s infinite;
}

.server-item.server-2 .server-indicator {
    animation-delay: 0.3s;
}

.server-item.server-3 .server-indicator {
    animation-delay: 0.6s;
}

@keyframes indicatorBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

.server-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Marketplace Demo */
.marketplace-demo {
    width: 100%;
}

.workflow-cards {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mini-workflow-card {
    width: 80px;
    height: 90px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    animation: cardFloat 3s ease-in-out infinite;
}

.mini-workflow-card.card-2 {
    animation-delay: 0.5s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.mini-workflow-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-soft);
    border-radius: 6px;
}

.card-rating {
    font-size: 10px;
    color: #fbbf24;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-card-v2:hover .feature-tag {
    background: var(--accent-soft);
    border-color: var(--accent-light);
    color: var(--accent-color);
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-dark);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* ... existing responsive styles ... */
}



@media (max-width: 768px) {
    .red-features-section-v2 {
        padding: 80px 0;
    }

    .features-grid-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .feature-demo-preview {
        min-height: 120px;
    }

    .features-main-title {
        font-size: 2rem;
    }
}

/* Workflow Demo (MCP Cards) - Fixed */
.workflow-demo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcp-workflow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    position: relative;
    padding: 0 20px;
}

.workflow-beam-path {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-50%);
    z-index: 0;
}

.beam-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    filter: blur(1px);
    animation: beamTravel 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes beamTravel {

    0%,
    10% {
        left: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    90%,
    100% {
        left: 100%;
        opacity: 0;
    }
}

.mcp-tool-card {
    width: 64px;
    height: 80px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-linear {
    animation: cardPop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s;
}

.card-github {
    animation: cardPop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.3s;
}

.card-slack {
    animation: cardPop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 2.6s;
}

@keyframes cardPop {

    0%,
    10% {
        transform: scale(1);
        border-color: rgba(0, 0, 0, 0.08);
    }

    15%,
    35% {
        transform: scale(1.1) translateY(-5px);
        border-color: var(--accent-color);
        box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15);
    }

    40%,
    100% {
        transform: scale(1);
        border-color: rgba(0, 0, 0, 0.08);
    }
}

.tool-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.mcp-tool-card .tool-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
}

.action-badge {
    position: absolute;
    top: -12px;
    background: var(--accent-color);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
}

.card-linear .action-badge {
    animation: badgePop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.1s;
}

.card-github .action-badge {
    animation: badgePop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.4s;
}

.card-slack .action-badge {
    animation: badgePop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 2.7s;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }

    10%,
    30% {
        opacity: 1;
        transform: translateY(0);
    }

    40%,
    100% {
        opacity: 0;
        transform: translateY(-5px);
    }
}

/* Contact Section Redesign (Split Card) */
.contact-split-card {
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px;
}

/* Left Panel (Visual) */
.contact-left-panel {
    flex: 0 0 40%;
    background: #0a0a0a;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    color: white;
    overflow: hidden;
}

.contact-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1;
}

/* Abstract mesh effect */
.contact-visual-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('images/Fractal_20Maze_20-_2020.jpg') center/cover no-repeat;
    opacity: 0.2;
    mix-blend-mode: overlay;
    animation: bgPan 60s linear infinite;
}

@keyframes bgPan {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(5deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.contact-visual-content {
    position: relative;
    z-index: 2;
}

.contact-visual-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    /* Or fallback serif */
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: 8px;
}

.contact-visual-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Right Panel (Form) */
.contact-right-panel {
    flex: 1;
    padding: 60px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-badge {
    display: inline-block;
    background: #000;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-form-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modern-split-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-split {
    display: flex;
    gap: 20px;
}

.form-group-split {
    flex: 1;
}

.split-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.split-input:focus {
    outline: none;
    border-color: #000;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.split-textarea {
    min-height: 120px;
    resize: vertical;
}

.split-submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.split-submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.split-submit-btn svg {
    transition: transform 0.3s ease;
}

.split-submit-btn:hover svg {
    transform: translateX(4px) translateY(-4px);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-split-card {
        flex-direction: column;
        max-width: 600px;
    }

    .contact-left-panel {
        padding: 60px 40px;
        min-height: 300px;
    }

    .contact-right-panel {
        padding: 40px;
    }

    .form-row-split {
        flex-direction: column;
        gap: 20px;
    }
}

/* Contact Section Redesign (Dark Theme) */
/* Minimal Contact Section */
/* Minimal Contact Section */
.contact-minimal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 0;
    text-align: center;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 32px;
    font-weight: 500;
}

.contact-headline {
    font-size: 5rem;
    font-weight: 400;
    color: #111;
    line-height: 1.1;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-subheadline {
    display: block;
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    color: #dc2626;
    font-weight: 400;
}

.contact-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    color: #111;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(220, 38, 38, 0.02);
}

.contact-pill-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    background: white;
}

.contact-pill-btn svg {
    transition: transform 0.3s ease;
}

.contact-pill-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-headline {
        font-size: 3rem;
    }

    .contact-minimal-wrapper {
        padding: 100px 0;
    }
}

/* Footer Redesign */
.footer-cta-section {
    background: #000;
    color: white;
    padding: 120px 20px 160px;
    /* Extra bottom padding for overlap */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: white;
    color: black;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* ========== REDESIGNED FOOTER (DARK RED THEME) ========== */
.footer-red-theme {
    background-color: #050505;
    color: #ffffff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Ambient Red Glow */
.footer-red-theme::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Section */
.footer-top {
    margin-bottom: 120px;
}

.footer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-label-icon {
    color: #dc2626;
}

.footer-headline {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
}

/* Info Row */
.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.footer-contact-link {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #dc2626;
}

.footer-contact-arrow {
    transition: transform 0.3s ease;
}

.footer-contact-link:hover .footer-contact-arrow {
    transform: translate(4px, -4px);
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav-link:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

/* Brand Row */
.footer-brand-row {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-big-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-big-logo-wrapper:hover {
    transform: scale(1.02);
}

.footer-logo-icon {
    color: #ffffff;
    width: 160px;
    height: 160px;
    transition: filter 0.3s ease;
}

.footer-big-logo-wrapper:hover .footer-logo-icon {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4));
}

.footer-big-logo {
    font-size: 180px;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: #ffffff;
    display: flex;
    align-items: center;
    transition: text-shadow 0.3s ease;
}

.footer-big-logo-wrapper:hover .footer-big-logo {
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

/* Legal Row */
.footer-legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 12px;
}

.footer-social-links {
    display: flex;
    gap: 24px;
}

.footer-social-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-headline {
        font-size: 48px;
    }

    .footer-big-logo {
        font-size: 120px;
    }

    .footer-logo-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .footer-info-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-headline {
        font-size: 36px;
    }

    .footer-big-logo-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .footer-big-logo {
        font-size: 80px;
    }

    .footer-logo-icon {
        width: 80px;
        height: 80px;
    }

    .footer-legal-row {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

/* Footer Card Section */
/* Minimal Footer */
.minimal-footer {
    background: #fafafa;
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========== DOWNLOAD PAGE STYLES ========== */

.download-body {
    background-color: #fcfcfc;
    /* Lightest grey/white */
}

.download-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.04) 40%, transparent 70%);
    animation: heroPulse 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.download-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-header {
    margin-bottom: 64px;
}

.version-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 100px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.download-title {
    font-size: 56px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.red-accent {
    color: #dc2626;
}

.download-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.platform-cards-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.platform-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 32px;
    width: 280px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.platform-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.platform-card:hover .platform-icon-wrapper {
    background: rgba(220, 38, 38, 0.05);
    color: #dc2626;
}

.platform-icon {
    width: 24px;
    height: 24px;
    color: #111;
    transition: color 0.3s ease;
}

.platform-card:hover .platform-icon {
    color: #dc2626;
}

.platform-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.platform-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.download-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #111;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.platform-card:hover .download-action {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.1);
}

.download-footer {
    font-size: 13px;
    color: #999;
}

.download-footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.download-footer a:hover {
    color: #111;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .download-title {
        font-size: 40px;
    }

    .platform-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .platform-card {
        width: 100%;
        max-width: 320px;
    }
}

/* ========== DASHBOARD STYLES ========== */

.dashboard-body {
    background-color: #f9fafb;
    /* Light grey background */
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
    width: 280px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
}

.sidebar-header {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 18px;
}

.sidebar-nav {
    padding: 24px 16px;
    flex: 1;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: #f9fafb;
    color: #111;
}

.nav-link.active {
    background: #fef2f2;
    color: #dc2626;
}

.nav-link svg {
    width: 20px;
    height: 20px;
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid #f3f4f6;
}

.user-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.user-info-avatar {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #4b5563;
    font-size: 14px;
}

.user-info-details {
    flex: 1;
    overflow: hidden;
}

.user-info-name {
    font-weight: 600;
    color: #111;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info-email {
    color: #6b7280;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #f9fafb;
    color: #111;
    border-color: #d1d5db;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
    min-width: 0;
    /* Prevent flex overflow */
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.dashboard-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.metric-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(220, 38, 38, 0.1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.metric-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: #fef2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.metric-description {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.metric-progress {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.metric-progress-bar {
    height: 100%;
    background: #dc2626;
    border-radius: 3px;
    transition: width 1s ease;
}

.metric-percentage {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    text-align: right;
}

.metric-action {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.metric-action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.metric-action-btn:hover {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fee2e2;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

/* Chart Container */
.usage-chart-container {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.chart-timeframe {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
}

.timeframe-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeframe-btn.active {
    background: #fff;
    color: #111;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chart-placeholder {
    height: 300px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    border: 1px dashed #e5e7eb;
}

/* Account Info Container */
.account-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-info,
.billing-info {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #dc2626;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.user-avatar {
    width: 64px;
    height: 64px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 16px;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px 0;
}

.user-email {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.user-since {
    font-size: 13px;
    color: #9ca3af;
}

.plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.plan-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plan-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
}

.plan-details li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.next-billing {
    background: #f9fafb;
    padding: 12px;
    border-radius: 8px;
}

.next-billing-label {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.next-billing-date {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
        padding: 20px;
    }

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

/* Premium Blog Styles */

.blog-hero {
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-title-large {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 0.95;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 4rem;
    padding-bottom: 120px;
}

/* Premium Blog Card */
.blog-card-wrapper {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-wrapper:hover {
    transform: translateY(-8px);
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 3/2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.blog-card:hover .blog-card-img-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
    /* Or keep black for ultra-premium feel */
}

.blog-excerpt {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-card:hover .blog-link {
    opacity: 1;
    transform: translateX(4px);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 0 60px;
    }

    .blog-title-large {
        font-size: 3.5rem;
    }

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

/* ========== PREMIUM BLOG STYLES ========== */

/* Blog Hero Premium */
.blog-hero-premium {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-title-premium {
    font-size: 5rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #000;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.blog-subtitle-premium {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Blog Grid Premium */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 100px;
}

/* Blog Card Premium */
.blog-card-premium {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-premium:hover {
    transform: translateY(-8px);
}

.blog-card-img-wrapper-premium {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.blog-card-premium:hover .blog-card-img-wrapper-premium {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-premium:hover .blog-card-img-premium {
    transform: scale(1.05);
}

.blog-category-badge-premium {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-meta-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-title-card-premium {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-title-card-premium {
    color: #dc2626;
}

.blog-excerpt-premium {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link-premium {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card-premium:hover .blog-link-premium {
    gap: 10px;
    color: #dc2626;
}

@media (max-width: 768px) {
    .blog-title-premium {
        font-size: 3.5rem;
    }

    .blog-grid-premium {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =========================================
   Dashboard Redesign - Top Navigation
   ========================================= */

.dashboard-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-nav-links .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 0;
    position: relative;
}

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

.top-nav-links .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.user-profile-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 6px 6px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.user-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-plan-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(220, 38, 38, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 2px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #b91c1c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.logout-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn-icon:hover {
    background: #fee2e2;
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Dashboard Main Full Width */
.dashboard-main-full {
    padding-top: 100px;
    /* Space for fixed header */
    padding-bottom: 60px;
    min-height: 100vh;
    background: #fafafa;
    width: 100%;
}

.dashboard-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dashboard-top-nav {
        padding: 0 16px;
    }

    .nav-left {
        gap: 20px;
    }

    .top-nav-links {
        display: none;
        /* Hide links on mobile for now, or add a mobile menu */
    }

    .user-info {
        display: none;
        /* Hide name on mobile to save space */
    }

    .user-profile-menu {
        padding: 4px;
        background: transparent;
        border: none;
    }
}

/* ========== NEW MINIMAL DASHBOARD STYLES ========== */

.dashboard-minimal-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.card-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-header-minimal h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.btn-text {
    background: none;
    border: none;
    color: var(--red-primary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: var(--red-secondary);
    text-decoration: underline;
}

/* Subscription Card */
.subscription-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 8px;
}

.sub-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-value-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sub-value-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sub-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sub-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sub-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plan-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-method-display {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.payment-method-display svg {
    color: var(--text-secondary);
}

/* Bottom Section */
.dashboard-bottom-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

/* Invoices Table */
.invoices-list-container {
    overflow-x: auto;
}

.invoices-table {
    width: 100%;
    border-collapse: collapse;
}

.invoices-table th {
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.invoices-table td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.invoices-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.paid {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.open {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-badge.void,
.status-badge.uncollectible {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.invoice-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.invoice-link:hover {
    color: var(--red-primary);
}

/* Account Card Minimal */
.account-info-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.btn-icon {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.btn-icon:hover {
    color: var(--red-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .dashboard-bottom-section {
        grid-template-columns: 1fr;
    }

    .subscription-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .dashboard-card {
        padding: 24px;
    }

    .sub-value-large {
        font-size: 1.25rem;
    }
}

/* ========== UNIFIED MINIMAL PAGE STYLES ========== */

.minimal-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    min-height: 100vh;
}

.minimal-page-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.minimal-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.minimal-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== MINIMAL PAYMENT PAGE STYLES ========== */

.payment-minimal-container {
    /* Inherit from minimal-page-container but keep specific overrides if needed */
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    min-height: 100vh;
}

.payment-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

/* Billing Toggle (Minimal) */
.billing-toggle-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.billing-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.billing-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: .3s;
    border-radius: 34px;
}

.billing-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.billing-slider {
    background-color: var(--red-primary);
}

input:checked+.billing-slider:before {
    transform: translateX(24px);
}

.save-badge-pill {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red-primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Grid */
.pricing-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.plan-card-minimal {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.plan-card-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

.plan-card-minimal.selected {
    border-color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

.plan-card-minimal.selected::after {
    display: none;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.popular-badge {
    background: transparent;
    color: var(--red-primary);
    font-size: 0.7rem;
    padding: 0;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-price-wrapper {
    margin-bottom: 20px;
}

.plan-price-display {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.price-amount-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.original-price-display {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 4px;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-features-list li svg {
    color: var(--red-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.select-plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card-minimal:hover .select-plan-btn {
    border-color: var(--text-primary);
}

.plan-card-minimal.selected .select-plan-btn {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: white;
}

/* Payment Form Section (Minimal) */
.payment-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.secure-payment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.secure-payment-header svg {
    color: #10b981;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid-minimal {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}