/* Reset & Base - GitHub Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Futuristic blue/violet palette */
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #818cf8;
    --secondary: #764ba2;
    --accent: #a78bfa;
    --accent-pink: #f472b6;
    
    /* Gradient definitions */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-gradient: linear-gradient(135deg, #fff 40%, #a78bfa 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Neutrals */
    --gray-50: #F6F8FA;
    --gray-100: #EAF0F6;
    --gray-200: #D8DEE4;
    --gray-300: #B1BAC4;
    --gray-400: #8C959F;
    --gray-500: #6E7781;
    --gray-600: #57606A;
    --gray-700: #424A53;
    --gray-800: #32383F;
    --gray-900: #24292F;
    
    /* Dark theme - deeper for contrast */
    --bg-dark: #0f0f23;
    --bg-darker: #080810;
    --border-subtle: rgba(167, 139, 250, 0.15);
    
    /* Typography - Modern */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
    
    /* Spacing */
    --container-width: 1280px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-darker);
    color: #E6EDF3;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Starfield Background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navigation - GitHub Style */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: #E6EDF3;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn-nav-cta):hover {
    color: var(--primary-light);
}

.btn-nav-cta {
    background: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    color: white !important;
    font-weight: 600;
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
}

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

/* Global Background - Consistent across all sections */
body {
    /* Gradient fallback while image loads, then show image */
    background: 
        url('images/hero-bg.jpg') center center / cover no-repeat fixed,
        linear-gradient(135deg, #0c0f1c 0%, #1a1d2e 50%, #0f1318 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(12, 15, 30, 0.50) 0%, 
        rgba(15, 18, 40, 0.55) 25%,
        rgba(12, 15, 35, 0.60) 50%,
        rgba(10, 12, 30, 0.65) 75%,
        rgba(8, 10, 25, 0.70) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Grain overlay - stronger for texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 80px 0 30px;
    position: relative;
    overflow: visible;
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: auto;
    padding-bottom: 40px;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title-new {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-gradient {
    background: linear-gradient(135deg, #fff 0%, #a78bfa 60%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.tagline-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.hero-tagline p {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-light);
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-description strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-cta-new {
    display: flex;
    gap: 12px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--primary-gradient);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    color: #E6EDF3;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.5);
}

/* Hero Visual with Orbiting Logos */
.hero-visual-new {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.logo-orbit-system {
    position: relative;
    width: 600px;
    height: 600px;
}

.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.4);
    z-index: 10;
}

.central-logo img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
}

.ring-1 {
    width: 280px;
    height: 280px;
}

.ring-2 {
    width: 420px;
    height: 420px;
}

.ring-3 {
    width: 560px;
    height: 560px;
}

/* New Synchronized Orbit System */
.orbit-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
}

.orbit-wrapper.orbit-ring-1 {
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -140px;
    animation: orbit-spin 20s linear infinite;
}

.orbit-wrapper.orbit-ring-2 {
    width: 420px;
    height: 420px;
    margin-left: -210px;
    margin-top: -210px;
    animation: orbit-spin 30s linear infinite reverse;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-icon-new {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(22, 27, 34, 0.95);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-icon-new:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.3);
}

.orbit-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
}

.orbit-icon-new img.logo-gcp {
    transform: scale(1.8);
}

/* Ring 1 - 3 icons positioned at 0°, 120°, 240° */
.orbit-ring-1 .orbit-icon-new:nth-child(1) {
    top: -26px;
    left: 50%;
    margin-left: -26px;
    animation: counter-spin 20s linear infinite;
}

.orbit-ring-1 .orbit-icon-new:nth-child(2) {
    bottom: 20%;
    right: -8px;
    animation: counter-spin 20s linear infinite;
}

.orbit-ring-1 .orbit-icon-new:nth-child(3) {
    bottom: 20%;
    left: -8px;
    animation: counter-spin 20s linear infinite;
}

/* Ring 2 - 4 icons positioned at 0°, 90°, 180°, 270° */
.orbit-ring-2 .orbit-icon-new:nth-child(1) {
    top: -26px;
    left: 50%;
    margin-left: -26px;
    animation: counter-spin-reverse 30s linear infinite;
}

.orbit-ring-2 .orbit-icon-new:nth-child(2) {
    top: 50%;
    right: -26px;
    margin-top: -26px;
    animation: counter-spin-reverse 30s linear infinite;
}

.orbit-ring-2 .orbit-icon-new:nth-child(3) {
    bottom: -26px;
    left: 50%;
    margin-left: -26px;
    animation: counter-spin-reverse 30s linear infinite;
}

.orbit-ring-2 .orbit-icon-new:nth-child(4) {
    top: 50%;
    left: -26px;
    margin-top: -26px;
    animation: counter-spin-reverse 30s linear infinite;
}

@keyframes counter-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes counter-spin-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Ring 1 - 4th icon */
.orbit-ring-1 .orbit-icon-new:nth-child(4) {
    top: 50%;
    right: -8px;
    margin-top: -26px;
    animation: counter-spin 20s linear infinite;
}

/* Ring 2 - 5th icon */
.orbit-ring-2 .orbit-icon-new:nth-child(5) {
    bottom: 15%;
    left: 10%;
    animation: counter-spin-reverse 30s linear infinite;
}

/* Ring 3 - outer ring with 6 icons */
.orbit-wrapper.orbit-ring-3 {
    width: 540px;
    height: 540px;
    margin-left: -270px;
    margin-top: -270px;
    animation: orbit-spin 40s linear infinite;
}

.orbit-ring-3 .orbit-icon-new:nth-child(1) {
    top: -26px;
    left: 50%;
    margin-left: -26px;
    animation: counter-spin 40s linear infinite;
}

.orbit-ring-3 .orbit-icon-new:nth-child(2) {
    top: 15%;
    right: 5%;
    animation: counter-spin 40s linear infinite;
}

.orbit-ring-3 .orbit-icon-new:nth-child(3) {
    bottom: 15%;
    right: 5%;
    animation: counter-spin 40s linear infinite;
}

.orbit-ring-3 .orbit-icon-new:nth-child(4) {
    bottom: -26px;
    left: 50%;
    margin-left: -26px;
    animation: counter-spin 40s linear infinite;
}

.orbit-ring-3 .orbit-icon-new:nth-child(5) {
    bottom: 15%;
    left: 5%;
    animation: counter-spin 40s linear infinite;
}

.orbit-ring-3 .orbit-icon-new:nth-child(6) {
    top: 15%;
    left: 5%;
    animation: counter-spin 40s linear infinite;
}

/* Hide old orbit icons */
.orbit-icon {
    display: none;
}

/* Integrations Showcase */
.integrations-showcase {
    padding: 40px 0 60px;
    position: relative;
}

.integrations-showcase::before,
.integrations-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.integrations-showcase::before {
    left: 0;
    background: linear-gradient(90deg, #0d1117 0%, transparent 100%);
}

.integrations-showcase::after {
    right: 0;
    background: linear-gradient(270deg, #0d1117 0%, transparent 100%);
}

.integrations-label {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.integrations-label .highlight {
    color: var(--accent);
    font-weight: 600;
}

.integrations-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    overflow: hidden;
    animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10%); }
}

.integration-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

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

.integration-logo:hover img {
    filter: none;
}

.integration-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    flex-shrink: 0;
}

.integration-more span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

.integration-more .more-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pain Points Section - ORIGINAL */
.pain-points-new {
    padding: 120px 0;
    position: relative;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.pain-title-new {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient-red {
    background: linear-gradient(135deg, #F87171, #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pain-subtitle-new {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-300);
}

.pain-mockup {
    position: relative;
}

.email-window {
    background: #161B22;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 16px 56px rgba(0, 0, 0, 0.3);
}

.window-header {
    background: #21262D;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(48, 54, 61, 0.8);
}

.window-dots {
    display: flex;
    gap: 6px;
}

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

.dot-red { background: #F87171; }
.dot-yellow { background: #FBBF24; }
.dot-green { background: #10B981; }

.window-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #8B949E;
    font-weight: 500;
    font-family: var(--font-sans);
}

.email-container {
    padding: 20px 24px;
    background: #0D1117;
}

.email-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}

.sender-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sender-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.sender-details {
    display: flex;
    flex-direction: column;
}

.sender-details strong {
    color: #F0F6FC;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
}

.sender-details span {
    color: #8B949E;
    font-size: 12px;
    font-family: var(--font-sans);
}

.email-date {
    color: #8B949E;
    font-size: 12px;
    font-family: var(--font-sans);
}

.email-message p {
    color: #C9D1D9;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    font-family: var(--font-sans);
}

.stat-cards {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.stat-card {
    flex: 1;
    background: #161B22;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon-warning,
.stat-icon-alert {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.stat-icon-warning {
    background: rgba(245, 158, 11, 0.2);
}

.stat-icon-alert {
    background: rgba(239, 68, 68, 0.2);
}

.stat-icon-warning::before {
    content: '⏱';
}

.stat-icon-alert::before {
    content: '⚠';
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 16px;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 2px;
    font-family: var(--font-sans);
}

.stat-label {
    font-size: 12px;
    color: #8B949E;
    font-family: var(--font-sans);
}

/* Features Section */
.features-new {
    padding: 100px 0;
}

.section-header-new {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-new {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 680px;
    margin: 0 auto;
}

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

.feature-card-new {
    background: rgba(240, 246, 252, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
}

.feature-card-new:hover {
    background: rgba(240, 246, 252, 0.04);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.feature-icon-new {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-card-new h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.feature-card-new p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* How It Works - CORREGIDO */
.how-it-works-new {
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle);
}

.steps-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.step-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.3), transparent);
}

.step-details h3 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.step-details > p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.step-preview {
    background: #161B22;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    padding: 20px;
}

/* Preview Styles */
.preview-integrations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.preview-card {
    background: #0D1117;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.preview-card:hover {
    border-color: #58A6FF;
    background: rgba(88, 166, 255, 0.05);
}

.preview-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    margin-bottom: 12px;
}

.status-connected {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-scan {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scan-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #0D1117;
    border-left: 3px solid transparent;
    border-radius: 6px;
    font-family: var(--font-sans);
}

.scan-line-item.passed {
    border-left-color: var(--secondary);
}

.scan-line-item.warning {
    border-left-color: #F59E0B;
}

.scan-line-item.scanning {
    border-left-color: var(--primary);
    animation: pulse-line 1.5s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.scan-line-item span {
    flex: 1;
    font-size: 13px;
    color: #C9D1D9;
    font-family: var(--font-sans);
}

.spinner-icon {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.scan-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-sans);
}

.badge-passed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
}

.badge-scanning {
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary-light);
}

/* Alert Preview */
.preview-alert {
    background: #0D1117;
    border: 1px solid rgba(248, 81, 73, 0.4);
    border-radius: 6px;
    padding: 16px;
}

.alert-header {
    margin-bottom: 16px;
}

.alert-severity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #F87171;
    text-transform: uppercase;
}

.preview-alert h4 {
    font-size: 14px;
    font-weight: 600;
    color: #F0F6FC;
    margin: 10px 0 6px;
    font-family: var(--font-sans);
}

.preview-alert p {
    font-size: 13px;
    color: #8B949E;
    margin-bottom: 14px;
    font-family: var(--font-sans);
}

.remediation-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.remediation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #161B22;
    border-radius: 6px;
    border: 1px solid rgba(48, 54, 61, 0.5);
}

.rem-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.remediation-item span {
    font-size: 12px;
    color: #C9D1D9;
    font-family: var(--font-sans);
}

/* Export Preview */
.preview-export {
    background: #0D1117;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 6px;
    overflow: hidden;
}

.export-title {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(48, 54, 61, 0.8);
    display: flex;
    align-items: center;
    gap: 14px;
    color: #58A6FF;
    background: #161B22;
}

.export-title h5 {
    font-size: 14px;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 2px;
    font-family: var(--font-sans);
}

.export-title span {
    font-size: 12px;
    color: #8B949E;
    font-family: var(--font-sans);
}

.export-files-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.export-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #161B22;
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.export-file-item:hover {
    background: rgba(88, 166, 255, 0.08);
    border-color: #58A6FF;
}

.export-file-item svg {
    color: #8B949E;
    flex-shrink: 0;
}

.export-file-item span:nth-child(2) {
    flex: 1;
    font-size: 13px;
    color: #F0F6FC;
    font-weight: 500;
    font-family: var(--font-sans);
}

.file-size {
    font-size: 11px;
    color: #8B949E;
    font-family: var(--font-mono);
}

/* Frameworks Section */
.frameworks-new {
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle);
}

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

.framework-card-new {
    background: rgba(240, 246, 252, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s ease;
}

.framework-card-new:hover {
    background: rgba(240, 246, 252, 0.04);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.framework-logo-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.framework-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.framework-card-new h3 {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.framework-card-new p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* About Section */
.about-new {
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.about-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual-new {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.central-shield {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.3);
    z-index: 2;
}

.central-shield img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.integration-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.orbit-item {
    position: absolute;
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    padding: 8px;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    animation: orbit-bob 3s ease-in-out infinite;
}

.item-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.item-2 {
    top: 40%;
    right: -30px;
    animation-delay: 0.5s;
}

.item-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.item-4 {
    top: 40%;
    left: -30px;
    animation-delay: 1.5s;
}

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

.about-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.about-desc strong {
    color: var(--primary-light);
    font-weight: 600;
}

.about-values-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(240, 246, 252, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.value-card:hover {
    background: rgba(240, 246, 252, 0.04);
    border-color: var(--primary);
}

.value-card svg {
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-400);
}

/* Demo Section */
.demo-new {
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle);
}

.demo-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.demo-benefits-new {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.benefit-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 15px;
    color: var(--gray-300);
}

.demo-form-wrapper {
    position: relative;
}

.demo-form-new {
    background: rgba(240, 246, 252, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 40px;
}

.form-group-new {
    margin-bottom: 20px;
}

.form-group-new label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(13, 17, 23, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 14px;
    color: white;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(13, 17, 23, 0.6);
}

.form-group-new textarea {
    resize: vertical;
}

.btn-form-submit {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-form-submit:hover {
    background: var(--primary-dark);
}

.form-privacy {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

.form-success-new {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success-new.active {
    display: block;
}

.success-check {
    margin-bottom: 24px;
    color: var(--secondary);
}

.form-success-new h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.form-success-new p {
    font-size: 15px;
    color: var(--gray-400);
}

/* Footer */
.footer-new {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content-new {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo-new {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand-new p {
    font-size: 14px;
    color: var(--gray-400);
    max-width: 300px;
}

.footer-links-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

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

.footer-bottom-new {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-new p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .pain-grid,
    .about-grid,
    .demo-content-new {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title-new {
        font-size: 56px;
    }
    
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-visual-new {
        height: 450px;
    }
    
    .logo-orbit-system {
        width: 450px;
        height: 450px;
    }
    
    .orbit-wrapper.orbit-ring-1 {
        width: 220px;
        height: 220px;
    }
    
    .orbit-wrapper.orbit-ring-2 {
        width: 340px;
        height: 340px;
    }
    
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 340px; height: 340px; }
    .ring-3 { width: 420px; height: 420px; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title-new {
        font-size: 40px;
    }
    
    .hero-tagline p {
        font-size: 18px;
    }
    
    .hero-cta-new {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid-new,
    .frameworks-grid-new {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        grid-template-columns: 70px 1fr;
        gap: 24px;
    }
    
    .step-num {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .preview-integrations {
        grid-template-columns: 1fr;
    }
    
    .pain-title-new,
    .section-title-new {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 32px;
    }
    
    .section-title-new {
        font-size: 28px;
    }
}

/* ============================================
   NEW STYLES - ENHANCED VERSION
   ============================================ */

/* Enhanced Navigation - Professional Blur */
.nav {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(6, 182, 212, 0.5) 25%, rgba(139, 92, 246, 0.5) 50%, rgba(6, 182, 212, 0.5) 75%, transparent 95%);
    opacity: 0.7;
    animation: nav-shimmer 8s ease-in-out infinite;
}

@keyframes nav-shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

.nav.scrolled {
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 60px rgba(6, 182, 212, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.scrolled::before {
    opacity: 1;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a:not(.btn-nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav-cta):hover::after,
.nav-links a:not(.btn-nav-cta).active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-light);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
    padding: 10px 20px !important;
    margin-left: 8px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding: 20px 32px;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.metric-number {
    font-size: 28px;
    font-weight: 700;
    color: #58A6FF;
    font-family: var(--font-sans);
}

.metric-label {
    font-size: 12px;
    color: #8B949E;
    font-weight: 500;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(48, 54, 61, 0.8);
}

/* Orbiting Animation for Hero */
.logo-orbit-system {
    position: relative;
}

/* Ring rotation animations */
.ring-1 {
    animation: ring-rotate 30s linear infinite;
}

.ring-2 {
    animation: ring-rotate 45s linear infinite reverse;
}

.ring-3 {
    animation: ring-rotate 60s linear infinite;
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit icon positions - now using CSS transform-origin for orbit */
.orbit-icon {
    transform-origin: center center;
    animation: orbit-float 4s ease-in-out infinite;
}

/* Create orbiting wrapper for each icon */
.orbit-icon.icon-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateY(-120px) rotate(0deg);
    animation: orbit-1 20s linear infinite, float-vertical 3s ease-in-out infinite;
}

.orbit-icon.icon-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg) translateY(-180px) rotate(-60deg);
    animation: orbit-2 25s linear infinite reverse, float-vertical 3.5s ease-in-out infinite 0.5s;
}

.orbit-icon.icon-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(120deg) translateY(-240px) rotate(-120deg);
    animation: orbit-3 30s linear infinite, float-vertical 4s ease-in-out infinite 1s;
}

.orbit-icon.icon-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg) translateY(-120px) rotate(-180deg);
    animation: orbit-1 20s linear infinite reverse, float-vertical 3s ease-in-out infinite 1.5s;
}

.orbit-icon.icon-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(240deg) translateY(-180px) rotate(-240deg);
    animation: orbit-2 25s linear infinite, float-vertical 3.5s ease-in-out infinite 2s;
}

.orbit-icon.icon-6 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(300deg) translateY(-240px) rotate(-300deg);
    animation: orbit-3 30s linear infinite reverse, float-vertical 4s ease-in-out infinite 2.5s;
}

@keyframes orbit-1 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateY(-120px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateY(-120px) rotate(-360deg); }
}

@keyframes orbit-2 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateY(-180px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateY(-180px) rotate(-360deg); }
}

@keyframes orbit-3 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateY(-240px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateY(-240px) rotate(-360deg); }
}

@keyframes float-vertical {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -8px; }
}

.central-logo {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 60px rgba(6, 182, 212, 0.4); }
    50% { box-shadow: 0 0 80px rgba(6, 182, 212, 0.6), 0 0 120px rgba(139, 92, 246, 0.3); }
}

/* Integration Showcase Enhancements */
.integration-logo.logo-aws img {
    transform: scale(1.3);
}

.integration-logo.logo-bigger-showcase img {
    transform: scale(1.4);
}

.integration-logo.logo-gcp-showcase img {
    transform: scale(2);
}

/* Orbit Logo Sizing */
.orbit-icon-new.logo-bigger {
    width: 56px;
    height: 56px;
}

.orbit-icon-new.logo-bigger img {
    transform: scale(1.2);
}

.integration-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px dashed rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.integration-more span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
}

.integration-more .more-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-more:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Trusto Solution Badge in Pain Points */
.trusto-solution {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    animation: fadeInUp 0.6s ease-out;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.solution-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.solution-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
}

.solution-text {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.6;
}

.solution-text .text-strike {
    text-decoration: line-through;
    color: var(--gray-500);
}

.solution-text strong {
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

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

/* Section Gradient Glows - GitHub Style */
.section-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    pointer-events: none;
    filter: blur(100px);
    z-index: -1;
}

.section-glow-purple {
    background: radial-gradient(ellipse at center, 
        rgba(139, 92, 246, 0.12) 0%, 
        rgba(88, 28, 135, 0.08) 30%,
        transparent 70%);
}

.section-glow-blue {
    background: radial-gradient(ellipse at center, 
        rgba(6, 182, 212, 0.12) 0%, 
        rgba(14, 116, 144, 0.08) 30%,
        transparent 70%);
}

.section-glow-mixed {
    background: radial-gradient(ellipse at 30% 50%, 
        rgba(139, 92, 246, 0.1) 0%, 
        transparent 50%),
    radial-gradient(ellipse at 70% 50%, 
        rgba(6, 182, 212, 0.1) 0%, 
        transparent 50%);
}

.section-glow-cyan {
    background: radial-gradient(ellipse at center, 
        rgba(6, 182, 212, 0.15) 0%, 
        rgba(139, 92, 246, 0.08) 40%,
        transparent 70%);
}

.pain-points-new,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.ai-agent-section {
    position: relative;
    overflow: hidden;
}

/* ============================================
   GITHUB-STYLE BOXES & NEW SECTIONS
   ============================================ */

/* GitHub-Style Box Container */
.github-box {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.github-box:hover {
    border-color: rgba(88, 166, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* AI Agent Section */
.ai-agent-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle);
}

.box-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.box-content-split.reverse {
    grid-template-columns: 1.2fr 0.8fr;
}

.box-text .section-label {
    margin-bottom: 16px;
}

.box-text .section-title-new {
    text-align: left;
    margin-bottom: 20px;
}

.box-text .section-description {
    text-align: left;
    max-width: none;
    margin: 0 0 24px 0;
}

.ai-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.capability-tag {
    padding: 6px 14px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: #58A6FF;
    font-weight: 500;
}

/* AI Chat Mockup */
.ai-chat-mockup {
    background: #161B22;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #21262D;
    border-bottom: 1px solid rgba(48, 54, 61, 0.8);
}

.chat-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.chat-header span {
    font-size: 14px;
    font-weight: 600;
    color: #F0F6FC;
}

.status-online {
    width: 8px;
    height: 8px;
    background: #3FB950;
    border-radius: 50%;
    margin-left: auto;
    animation: pulse-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    padding: 16px;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.chat-message.user {
    align-self: flex-end;
    background: #238636;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    align-self: flex-start;
    background: #30363D;
    color: #C9D1D9;
    border-bottom-left-radius: 4px;
}

.chat-message.typing {
    padding: 14px 18px;
}

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

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #8B949E;
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

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

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid rgba(48, 54, 61, 0.8);
    background: #0D1117;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    background: #21262D;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    font-size: 13px;
    color: #8B949E;
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: #238636;
    border: none;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* GitHub-Style Features Section */
.feature-box-large {
    margin-bottom: 24px;
}

.feature-box-large .box-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 16px;
}

.feature-desc-large {
    font-size: 16px;
    color: #8B949E;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #58A6FF;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.feature-link:hover {
    gap: 10px;
}

.integrations-visual {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.integration-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(48, 54, 61, 0.5);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.integration-icon-large:hover {
    background: rgba(88, 166, 255, 0.1);
    border-color: #58A6FF;
    transform: translateY(-2px);
}

.integration-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
}

.features-grid-github {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box-small {
    padding: 28px;
}

.feature-icon-github {
    width: 48px;
    height: 48px;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58A6FF;
    margin-bottom: 16px;
}

.feature-icon-github.slack-support {
    background: rgba(224, 30, 90, 0.1);
}

.feature-icon-github.slack-support img {
    width: 24px;
    height: 24px;
    filter: none;
}

.feature-box-small h4 {
    font-size: 16px;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 10px;
}

.feature-box-small p {
    font-size: 14px;
    color: #8B949E;
    line-height: 1.6;
}

/* Why Trusto Grid */
.why-trusto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58A6FF;
    margin-bottom: 20px;
}

.why-icon.slack-icon {
    background: rgba(224, 30, 90, 0.1);
}

.why-icon.slack-icon img {
    width: 28px;
    height: 28px;
    filter: none;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #8B949E;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(48, 54, 61, 0.5);
}

.stat-big {
    font-size: 32px;
    font-weight: 700;
    color: #58A6FF;
}

.why-stat span:last-child {
    font-size: 14px;
    color: #8B949E;
}

.support-card {
    background: linear-gradient(135deg, rgba(224, 30, 90, 0.05), rgba(139, 92, 246, 0.05));
    border-color: rgba(224, 30, 90, 0.2);
}

.support-card:hover {
    border-color: rgba(224, 30, 90, 0.4);
}

/* Compliance Ready Box */
.compliance-ready-box {
    background: #0D1117;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.compliance-status {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(63, 185, 80, 0.1), rgba(63, 185, 80, 0.05));
    border-bottom: 1px solid rgba(48, 54, 61, 0.8);
}

.status-icon-success {
    flex-shrink: 0;
}

.compliance-status div:nth-child(2) {
    flex: 1;
}

.compliance-status h5 {
    font-size: 14px;
    font-weight: 600;
    color: #3FB950;
    margin-bottom: 2px;
}

.compliance-status span {
    font-size: 12px;
    color: #8B949E;
}

.export-btn {
    padding: 8px 16px;
    background: #238636;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* ============================================
   ALERTS FEATURE SECTION
   ============================================ */

.alerts-feature-box {
    margin-top: 24px;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.03), rgba(251, 191, 36, 0.03));
    border-color: rgba(248, 113, 113, 0.2);
}

.alerts-feature-box:hover {
    border-color: rgba(248, 113, 113, 0.4);
}

.alerts-feature-box .box-text {
    padding-right: 20px;
}

.alerts-feature-box .feature-icon-github.alert-icon {
    background: rgba(248, 113, 113, 0.15);
    color: #F87171;
    margin-bottom: 20px;
}

.alerts-feature-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 12px;
}

.alert-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.alert-channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(48, 54, 61, 0.5);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    font-size: 13px;
    color: #C9D1D9;
    font-weight: 500;
    transition: all 0.2s ease;
}

.alert-channel:hover {
    background: rgba(88, 166, 255, 0.1);
    border-color: #58A6FF;
}

.alert-channel img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1) opacity(0.8);
}

.alert-channel svg {
    color: #8B949E;
}

/* Alerts Mockup */
.alerts-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #161B22;
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alert-notification.animate-in {
    animation: slideInRight 0.5s ease-out forwards;
    opacity: 0;
}

.alert-notification.delay-1 {
    animation-delay: 0.2s;
}

.alert-notification.delay-2 {
    animation-delay: 0.4s;
}

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

.alert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.alert-dot.critical {
    background: #F87171;
    box-shadow: 0 0 8px rgba(248, 113, 113, 0.5);
    animation: pulse-alert 2s ease-in-out infinite;
}

.alert-dot.warning {
    background: #FBBF24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.alert-dot.info {
    background: #58A6FF;
    box-shadow: 0 0 8px rgba(88, 166, 255, 0.5);
}

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

.alert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert-content strong {
    font-size: 13px;
    font-weight: 600;
    color: #F0F6FC;
}

.alert-content span {
    font-size: 12px;
    color: #8B949E;
}

.alert-time {
    font-size: 11px;
    color: #6E7681;
    flex-shrink: 0;
}

/* Enhanced About Section with Orbit Animation */
.about-orbit-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.about-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
}

.about-orbit-ring.ring-a {
    width: 220px;
    height: 220px;
    animation: orbit-ring-pulse 4s ease-in-out infinite;
}

.about-orbit-ring.ring-b {
    width: 320px;
    height: 320px;
    animation: orbit-ring-pulse 4s ease-in-out infinite 1s;
}

@keyframes orbit-ring-pulse {
    0%, 100% { border-color: rgba(240, 246, 252, 0.1); }
    50% { border-color: rgba(6, 182, 212, 0.3); }
}

.about-orbit-container .central-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-item-wrapper {
    position: absolute;
    animation: orbit-around 20s linear infinite;
}

.orbit-item-wrapper.item-a1 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

.orbit-item-wrapper.item-a2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
    animation-delay: -7.5s;
}

.orbit-item-wrapper.item-b1 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

.orbit-item-wrapper.item-b2 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-delay: -12.5s;
}

@keyframes orbit-around {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    animation: counter-orbit 15s linear infinite;
}

.orbit-item-wrapper.item-b1 .orbit-item-box,
.orbit-item-wrapper.item-b2 .orbit-item-box {
    animation-duration: 25s;
}

.orbit-item-wrapper.item-a2 .orbit-item-box {
    animation-delay: 7.5s;
}

.orbit-item-wrapper.item-b2 .orbit-item-box {
    animation-delay: 12.5s;
}

@keyframes counter-orbit {
    from { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    to { transform: translateX(-50%) translateY(-50%) rotate(-360deg); }
}

.orbit-item-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
}

/* Enhanced Feature Cards with Animation */
.feature-card-new {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card-new:nth-child(1) { animation-delay: 0.1s; }
.feature-card-new:nth-child(2) { animation-delay: 0.2s; }
.feature-card-new:nth-child(3) { animation-delay: 0.3s; }
.feature-card-new:nth-child(4) { animation-delay: 0.4s; }
.feature-card-new:nth-child(5) { animation-delay: 0.5s; }
.feature-card-new:nth-child(6) { animation-delay: 0.6s; }

.feature-card-new:hover {
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
}

.feature-icon-new {
    transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    transform: scale(1.1);
}

/* Enhanced Framework Cards */
.framework-card-new {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.framework-card-new:nth-child(1) { animation-delay: 0.1s; }
.framework-card-new:nth-child(2) { animation-delay: 0.15s; }
.framework-card-new:nth-child(3) { animation-delay: 0.2s; }
.framework-card-new:nth-child(4) { animation-delay: 0.25s; }
.framework-card-new:nth-child(5) { animation-delay: 0.3s; }
.framework-card-new:nth-child(6) { animation-delay: 0.35s; }

.framework-card-new:hover {
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

/* Enhanced Steps Timeline */
.step-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-num {
    transition: all 0.3s ease;
}

.step-item:hover .step-num {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

/* Value Cards Animation */
.value-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.value-card:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.1);
    transform: translateX(4px);
}

/* Email Window Animation */
.email-window {
    animation: floatUp 0.8s ease-out;
}

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

.stat-cards {
    animation: floatUp 0.8s ease-out 0.3s backwards;
}

/* Demo Form Enhancement */
.demo-form-new {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-form-new:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(6, 182, 212, 0.1);
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-form-submit:hover::before {
    left: 100%;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

/* Smooth Scroll Reveal for All Elements */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Enhancement */
.footer-new {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(13, 17, 23, 1) 100%);
}

.footer-logo-new {
    transition: all 0.3s ease;
}

.footer-logo-new:hover {
    transform: scale(1.02);
}

.footer-col a {
    position: relative;
    display: inline-block;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

/* Responsive Adjustments for New Styles */
@media (max-width: 1024px) {
    .box-content-split,
    .box-content-split.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid-github {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-trusto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-metrics {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .metric-divider {
        width: 80%;
        height: 1px;
    }
    
    .features-grid-github {
        grid-template-columns: 1fr;
    }
    
    .ai-chat-mockup {
        margin: 0 -16px;
        border-radius: 0;
    }
    
    .feature-box-large .box-text h3 {
        font-size: 22px;
    }
    
    .why-card {
        padding: 24px;
    }
    
    .why-card h3 {
        font-size: 18px;
    }
    
    .stat-big {
        font-size: 24px;
    }
    
    .trusto-solution {
        padding: 16px;
    }
    
    .solution-text {
        font-size: 16px;
    }
    
    .github-box {
        padding: 20px;
    }
}


/* ===== MOCK CHAT INTERFACE ===== */
.hero-chat-mock {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-chat-mock:hover {
    transform: translateY(-4px);
}

.chat-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.chat-window {
    position: relative;
    z-index: 1;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    max-width: 420px;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: white;
}

.chat-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.chat-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 11px;
    color: #10B981;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.user p {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 16px;
    border-radius: 16px 16px 4px 16px;
    font-size: 14px;
    max-width: 280px;
    line-height: 1.5;
}

.chat-message.assistant {
    align-items: flex-start;
}

.assistant-avatar {
    width: 32px;
    height: 32px;
    background: rgba(167, 139, 250, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.assistant-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 4px 16px 16px 16px;
    max-width: 280px;
}

.assistant-content p {
    font-size: 14px;
    color: white;
    line-height: 1.5;
}

.assistant-content strong {
    color: #10B981;
}

.assistant-detail {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
}

.chat-input-area {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    transition: border-color 0.2s;
}

.chat-input-wrapper:hover {
    border-color: rgba(167, 139, 250, 0.4);
}

.chat-input-wrapper input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
}

.chat-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, opacity 0.2s;
}

.chat-send-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Typing Animation */
#typing-text {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(60) infinite;
}

@keyframes typing {
    0%, 100% { width: 100%; }
    50% { width: 100%; }
}

/* ===== MINI INTEGRATIONS ===== */
.hero-integrations-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.integrations-label-mini {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.integrations-logos-mini {
    display: flex;
    align-items: center;
    gap: 16px;
}

.integrations-logos-mini img {
    height: 24px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.integrations-logos-mini img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* ===== DEMO MODAL (GLASSMORPHISM) ===== */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.demo-modal {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    animation: modal-slide-up 0.4s ease forwards;
    box-shadow: 
        0 25px 80px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

@keyframes modal-slide-up {
    to {
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

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

.modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-input-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.modal-input-group input,
.modal-input-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.modal-input-group input:focus,
.modal-input-group select:focus {
    border-color: var(--accent);
    background: rgba(167, 139, 250, 0.05);
}

.modal-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.modal-input-group select {
    cursor: pointer;
}

.modal-input-group select option {
    background: var(--bg-dark);
    color: white;
}

.modal-submit {
    margin-top: 8px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE FOR NEW ELEMENTS ===== */
@media (max-width: 1024px) {
    .hero-chat-mock {
        margin-top: 40px;
    }
    
    .chat-window {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-integrations-mini {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .integrations-logos-mini {
        flex-wrap: wrap;
    }
    
    .demo-modal {
        padding: 24px;
        margin: 16px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
}

/* ===== GITHUB STYLE CHAT ===== */
.github-chat {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.github-chat:hover {
    transform: translateY(-4px);
}

.github-chat-glow {
    position: absolute;
    inset: -80px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.25) 0%, rgba(88, 101, 242, 0.15) 30%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.github-chat-window {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 0 100px rgba(139, 92, 246, 0.15);
    max-width: 420px;
}

.github-chat-tab {
    display: inline-block;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #8b5cf6;
}

.github-chat-content {
    padding: 40px 30px 30px;
    text-align: center;
}

.github-chat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #1f2937;
}

.github-chat-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.github-chat-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.github-chat-hints {
    margin-top: 24px;
}

.hint-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.hint-icon {
    font-size: 14px;
}

.github-chat-input {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.input-prefix {
    color: #9ca3af;
    font-size: 14px;
}

.typing-text {
    font-size: 14px;
    color: #374151;
}

.typing-cursor {
    color: #8b5cf6;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.input-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
    color: #6b7280;
}

.action-label {
    font-weight: 500;
}



/* ===== RESPONSIVE FOR NEW HERO ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .github-chat {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .hero-cta-new {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-title-new {
        font-size: 32px;
    }
    
    .github-chat-window {
        max-width: 100%;
    }
    
    .github-chat-content {
        padding: 30px 20px 20px;
    }
    
    .integration-logo {
        width: 40px;
        height: 40px;
    }
}

/* ===== STARS ===== */
.stars-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star.small {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    animation-duration: 4s;
}

.star:nth-child(odd) {
    animation-delay: 1s;
}

.star:nth-child(3n) {
    animation-delay: 2s;
}

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

/* ===== TRANSPARENT SECTIONS ===== */
.integrations-showcase,
.pain-points-new,
.features,
.ai-agent,
.frameworks,
.how-it-works,
.about,
.demo-section {
    background: transparent;
}

/* Update fade edges for transparent bg */
.integrations-showcase::before {
    background: linear-gradient(90deg, rgba(10, 10, 20, 0.9) 0%, transparent 100%);
}

.integrations-showcase::after {
    background: linear-gradient(270deg, rgba(10, 10, 20, 0.9) 0%, transparent 100%);
}

/* ===== FUTURISTIC AGENT CHAT ===== */
.agent-chat-container {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-chat-container:hover {
    transform: translateY(-4px);
}

.agent-chat-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

.agent-chat-glow-secondary {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at 70% 30%, rgba(167, 139, 250, 0.3) 0%, transparent 60%);
    filter: blur(30px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.agent-chat-window {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,255,0.98) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(102, 126, 234, 0.25),
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 450px;
}

.agent-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: white;
    padding: 3px;
}

.agent-brand {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.agent-chat-body {
    padding: 32px 24px 24px;
    text-align: center;
}

.agent-headline {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.3;
}

.agent-subline {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.5;
}

.agent-prompt-area {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    min-height: 56px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.agent-prompt-area:hover {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.prompt-icon {
    color: #667eea;
    flex-shrink: 0;
}

.prompt-text-container {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
}

.typing-text {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: #667eea;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.agent-chat-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-hint {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

/* ===== INTEGRATIONS MARQUEE ===== */
.integrations-showcase {
    padding: 60px 0 80px;
    position: relative;
    background: transparent;
}

.integrations-label {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.integrations-label .highlight {
    color: #a78bfa;
    font-weight: 700;
}

.integrations-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, rgba(15, 15, 35, 0.95) 0%, transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(270deg, rgba(15, 15, 35, 0.95) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 24px;
}

.integration-logo {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(167, 139, 250, 0.4);
    transform: scale(1.1);
}

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

.integrations-more-badge {
    text-align: center;
    margin-top: 24px;
}

.integrations-more-badge span {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    color: #a78bfa;
    font-size: 13px;
    font-weight: 600;
}

/* ===== SECTION TRANSITIONS ===== */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new {
    position: relative;
}

.pain-points-new::before,
.ai-agent-section::before,
.features-new::before,
.how-it-works-new::before,
.frameworks-new::before,
.about-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===== STRONGER GLASSMORPHISM FOR CARDS ===== */
.github-box,
.framework-card-new,
.feature-box-small,
.feature-box-large,
.alerts-feature-box,
.why-card {
    background: rgba(15, 20, 35, 0.75) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Remove section transition lines */
.pain-points-new::before,
.ai-agent-section::before,
.features-new::before,
.how-it-works-new::before,
.frameworks-new::before,
.about-new::before {
    display: none !important;
}

/* All sections transparent with no borders */
section {
    background: transparent !important;
    border: none !important;
}

/* Smooth section transitions with gradient overlays */
.pain-points-new,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new {
    position: relative;
}

/* Very subtle gradient for section separation */
.pain-points-new::after,
.features-new::after,
.frameworks-new::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(167, 139, 250, 0.15) 50%, transparent 100%);
    pointer-events: none;
}

/* Integrations section - smaller padding to show on main page */
.integrations-showcase {
    padding: 30px 0 50px !important;
}

/* Integration logos - stronger background */
.integration-logo {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* ===== FIX BACKGROUND CONSISTENCY - NO VISIBLE LINES ===== */
/* Remove ALL section backgrounds and borders */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new,
.integrations-showcase {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any pseudo-element separators */
section::before,
section::after,
.pain-points-new::before,
.pain-points-new::after,
.ai-agent-section::before,
.ai-agent-section::after,
.features-new::before,
.features-new::after,
.how-it-works-new::before,
.how-it-works-new::after,
.frameworks-new::before,
.frameworks-new::after,
.about-new::before,
.about-new::after {
    display: none !important;
    background: none !important;
    border: none !important;
}

/* Ensure section glows don't create lines */
.section-glow {
    display: none !important;
}

/* Hero - compact and centered */
.hero {
    padding: 90px 0 20px !important;
}

/* Integrations - compact */
.integrations-showcase {
    padding: 20px 0 40px !important;
}

.integrations-label {
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.integrations-more-badge {
    margin-top: 16px !important;
}

.integrations-more-badge span {
    font-size: 12px !important;
    padding: 6px 16px !important;
}

/* ===== FINAL BACKGROUND FIX - NO VISIBLE LINES ===== */

/* Override all section backgrounds to be completely transparent */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new,
.integrations-showcase,
section {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Kill all pseudo-element separators */
section::before,
section::after,
.section-glow,
.pain-points-new::before,
.pain-points-new::after,
.features-new::before,
.features-new::after,
.how-it-works-new::before,
.how-it-works-new::after,
.frameworks-new::before,
.frameworks-new::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Make body background smoother with extra gradient layer */
body {
    background: 
        url('images/hero-bg.jpg') center top / cover no-repeat fixed,
        linear-gradient(135deg, #0c0f1c 0%, #1a1d2e 50%, #0f1318 100%) !important;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 12, 25, 0.40) 0%, 
        rgba(12, 15, 30, 0.45) 20%,
        rgba(10, 14, 28, 0.50) 40%,
        rgba(8, 12, 25, 0.55) 60%,
        rgba(6, 10, 22, 0.60) 80%,
        rgba(5, 8, 20, 0.70) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Stronger grain for texture (hides any imperfections) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* ===== STRONGER GLASSMORPHISM ===== */
.framework-card-new,
.feature-box-small,
.feature-box-large,
.feature-grid-item,
.github-box,
.alerts-feature-box,
.why-card,
.step-card {
    background: rgba(12, 18, 35, 0.80) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Hover state for cards */
.framework-card-new:hover,
.feature-box-small:hover,
.feature-box-large:hover,
.feature-grid-item:hover,
.why-card:hover {
    background: rgba(15, 22, 40, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

/* ===== HERO HEIGHT - Ensure integrations visible ===== */
.hero {
    padding: 80px 0 25px !important;
    min-height: auto !important;
}

.hero-container {
    padding-bottom: 30px !important;
    min-height: auto !important;
}

/* Integrations section - compact */
.integrations-showcase {
    padding: 15px 0 35px !important;
    margin-top: 0 !important;
}

.integrations-label {
    font-size: 13px !important;
    letter-spacing: 0.03em !important;
    margin-bottom: 18px !important;
}

.integrations-marquee {
    height: 64px !important;
}

.integrations-more-badge {
    margin-top: 14px !important;
}

.integrations-more-badge span {
    font-size: 11px !important;
    padding: 5px 14px !important;
}

/* Stronger fade edges on marquee */
.marquee-fade-left,
.marquee-fade-right,
.integrations-marquee::before,
.integrations-marquee::after {
    width: 120px !important;
    background: linear-gradient(90deg, rgba(10, 12, 25, 0.95) 0%, rgba(10, 12, 25, 0.7) 30%, transparent 100%) !important;
}

.marquee-fade-right,
.integrations-marquee::after {
    background: linear-gradient(270deg, rgba(10, 12, 25, 0.95) 0%, rgba(10, 12, 25, 0.7) 30%, transparent 100%) !important;
}

/* ===== HERO CENTERING & COMPLIANCE TAGLINE ===== */
.hero-compliance-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-compliance-tagline .highlight {
    color: #a78bfa;
    font-weight: 600;
}

/* ===== INTEGRATIONS SECTION - CENTERED SUBTITLE STYLE ===== */
.integrations-container {
    text-align: center;
}

.integrations-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.integrations-title .highlight {
    color: #a78bfa;
}

.integrations-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

/* Remove old integrations-label */
.integrations-label {
    display: none !important;
}

/* ===== FIX MARQUEE EDGES - SMOOTH GRADIENT, NO HARD BLACK ===== */
.integrations-marquee {
    position: relative;
    overflow: hidden;
    height: 72px;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(15, 18, 35, 1) 0%, 
        rgba(15, 18, 35, 0.9) 20%,
        rgba(15, 18, 35, 0.6) 50%,
        rgba(15, 18, 35, 0.3) 70%,
        transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(15, 18, 35, 1) 0%, 
        rgba(15, 18, 35, 0.9) 20%,
        rgba(15, 18, 35, 0.6) 50%,
        rgba(15, 18, 35, 0.3) 70%,
        transparent 100%);
}

/* Remove old pseudo-element fades if any */
.integrations-marquee::before,
.integrations-marquee::after {
    display: none !important;
}

/* ===== SECTION TRANSITIONS ON SCROLL ===== */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pain-points-new.in-view,
.ai-agent-section.in-view,
.features-new.in-view,
.how-it-works-new.in-view,
.frameworks-new.in-view,
.about-new.in-view,
.demo-new.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.in-view .framework-card-new,
.in-view .feature-box-small,
.in-view .feature-box-large,
.in-view .step-card,
.in-view .why-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.in-view .framework-card-new:nth-child(1),
.in-view .feature-box-small:nth-child(1),
.in-view .step-card:nth-child(1) { animation-delay: 0.1s; }

.in-view .framework-card-new:nth-child(2),
.in-view .feature-box-small:nth-child(2),
.in-view .step-card:nth-child(2) { animation-delay: 0.2s; }

.in-view .framework-card-new:nth-child(3),
.in-view .feature-box-small:nth-child(3),
.in-view .step-card:nth-child(3) { animation-delay: 0.3s; }

.in-view .framework-card-new:nth-child(4),
.in-view .step-card:nth-child(4) { animation-delay: 0.4s; }

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

/* ===== INTEGRATION LOGOS - NO HARD EDGES ===== */
.integration-logo {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(167, 139, 250, 0.3) !important;
}

/* ===== TYPING CURSOR ANIMATION ===== */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: #667eea;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===== GCP LOGO FIX - MAKE IT BIGGER ===== */
.integration-logo.logo-gcp img {
    transform: scale(1.8);
}

/* ===== FIX MARQUEE FADE COLORS TO MATCH BACKGROUND ===== */
/* Override with correct background-matching gradient */
.marquee-fade-left {
    left: 0;
    width: 120px;
    background: linear-gradient(to right, 
        rgba(12, 15, 28, 1) 0%, 
        rgba(12, 15, 28, 0.85) 25%,
        rgba(12, 15, 28, 0.5) 60%,
        transparent 100%) !important;
}

.marquee-fade-right {
    right: 0;
    width: 120px;
    background: linear-gradient(to left, 
        rgba(12, 15, 28, 1) 0%, 
        rgba(12, 15, 28, 0.85) 25%,
        rgba(12, 15, 28, 0.5) 60%,
        transparent 100%) !important;
}

/* Rounded corners for fade edges */
.integrations-marquee {
    border-radius: 16px;
}

/* ===== FIX: MAKE SECTIONS VISIBLE BY DEFAULT ===== */
/* Override the opacity: 0 - sections should be visible */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new {
    opacity: 1 !important;
    transform: none !important;
}

/* Optional: subtle fade-in animation when scrolling into view */
.pain-points-new.animate-in,
.ai-agent-section.animate-in,
.features-new.animate-in,
.how-it-works-new.animate-in,
.frameworks-new.animate-in,
.about-new.animate-in,
.demo-new.animate-in {
    animation: sectionFadeIn 0.6s ease-out;
}

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

/* ===== CRITICAL FIX: ALL CONTENT VISIBLE ===== */
/* Cards and items should be visible */
.feature-card-new,
.framework-card-new,
.step-item,
.value-card,
.reveal-on-scroll,
.alert-notification,
.feature-box-small,
.feature-box-large,
.step-card,
.why-card,
.github-box {
    opacity: 1 !important;
    transform: none !important;
}

/* All sections must be visible */
section,
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new,
.integrations-showcase {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
}

/* Container content visible */
.container,
.container > * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== SCROLL TRANSITION EFFECTS ===== */
/* Sections start slightly faded and slide up on scroll */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new {
    opacity: 0.3 !important;
    transform: translateY(50px) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
}

/* When section enters viewport */
.pain-points-new.visible,
.ai-agent-section.visible,
.features-new.visible,
.how-it-works-new.visible,
.frameworks-new.visible,
.about-new.visible,
.demo-new.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Cards inside sections animate with stagger */
.visible .framework-card-new,
.visible .feature-box-small,
.visible .feature-box-large,
.visible .step-card,
.visible .why-card,
.visible .github-box {
    animation: cardFadeIn 0.5s ease-out forwards;
}

.visible .framework-card-new:nth-child(1) { animation-delay: 0s; }
.visible .framework-card-new:nth-child(2) { animation-delay: 0.1s; }
.visible .framework-card-new:nth-child(3) { animation-delay: 0.2s; }
.visible .framework-card-new:nth-child(4) { animation-delay: 0.3s; }
.visible .framework-card-new:nth-child(5) { animation-delay: 0.4s; }
.visible .framework-card-new:nth-child(6) { animation-delay: 0.5s; }

.visible .step-card:nth-child(1) { animation-delay: 0s; }
.visible .step-card:nth-child(2) { animation-delay: 0.15s; }
.visible .step-card:nth-child(3) { animation-delay: 0.3s; }
.visible .step-card:nth-child(4) { animation-delay: 0.45s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero and integrations always visible */
.hero,
.integrations-showcase {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== FIX: REMOVE ALL FADING - FULL VISIBILITY ===== */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new,
section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* All cards fully visible */
.framework-card-new,
.feature-box-small,
.feature-box-large,
.step-card,
.why-card,
.github-box,
.feature-card-new,
.step-item,
.value-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* ===== SUBTLE SCROLL TRANSITIONS (doesn't hide content) ===== */
/* Cards animate when scrolling into view */
.framework-card-new,
.feature-box-small,
.feature-box-large,
.step-card,
.why-card,
.github-box {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out !important;
}

.framework-card-new:hover,
.feature-box-small:hover,
.feature-box-large:hover,
.step-card:hover,
.why-card:hover,
.github-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Section headers animate */
.section-badge,
.section-title,
.section-subtitle {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* ===== REDUCE SPACING BETWEEN SECTIONS ===== */
section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new {
    padding: 50px 0 !important;
}

.demo-new {
    padding: 60px 0 80px !important;
}

/* Hero section */
.hero {
    padding: 80px 0 30px !important;
}

/* Integrations - compact */
.integrations-showcase {
    padding: 20px 0 40px !important;
}

/* Remove any extra margins */
.container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Section headers tighter */
.section-badge {
    margin-bottom: 12px !important;
}

.section-title {
    margin-bottom: 16px !important;
}

.section-subtitle {
    margin-bottom: 40px !important;
}

/* Grid gaps */
.frameworks-grid,
.features-grid,
.steps-grid {
    gap: 24px !important;
}

/* ===== ALLOW JS SCROLL REVEAL TO WORK ===== */
/* Remove forced opacity on sections - let JS control it */
.pain-points-new,
.ai-agent-section,
.features-new,
.how-it-works-new,
.frameworks-new,
.about-new,
.demo-new {
    /* JS will set initial opacity to 0 and animate to 1 */
    /* Don't force opacity:1 here */
}

/* But keep cards always visible */
.framework-card-new,
.feature-box-small,
.feature-box-large,
.step-card,
.why-card,
.github-box {
    opacity: 1 !important;
}

/* Hero and integrations always fully visible */
.hero,
.integrations-showcase {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== FIX: ENSURE TWO-COLUMN HERO ON DESKTOP ===== */
@media (min-width: 1024px) {
    .hero-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 50px !important;
        align-items: center !important;
    }
    
    .hero-content-main {
        text-align: left !important;
    }
    
    .agent-chat-container {
        display: block !important;
        width: 100% !important;
        max-width: 520px !important;
    }
}

/* Ensure chat is visible */
.agent-chat-container {
    opacity: 1 !important;
    visibility: visible !important;
}

.agent-chat-window {
    opacity: 1 !important;
}

/* ===== FORCE TWO-COLUMN HERO LAYOUT ON LARGE SCREENS ===== */
@media screen and (min-width: 900px) {
    .hero-container {
        display: grid !important;
        grid-template-columns: 1fr 480px !important;
        gap: 40px !important;
        align-items: center !important;
    }
    
    .hero-content-main {
        text-align: left !important;
    }
    
    .hero-title-new {
        text-align: left !important;
    }
    
    .hero-description {
        text-align: left !important;
    }
    
    .hero-compliance-tagline {
        text-align: left !important;
    }
    
    .hero-cta-new {
        justify-content: flex-start !important;
    }
    
    .agent-chat-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* ===== ABSOLUTE FINAL OVERRIDES ===== */
.hero .hero-container {
    display: grid !important;
    grid-template-columns: 1fr 480px !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.hero .hero-container .agent-chat-container {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero .hero-container .agent-chat-window {
    display: block !important;
    opacity: 1 !important;
}

/* ===== FIX CHAT WIDTH AND POSITION ===== */
.hero .hero-container {
    grid-template-columns: 1fr 420px !important;
    padding-right: 30px !important;
}

.agent-chat-window {
    max-width: 400px !important;
    width: 100% !important;
}

/* Typing area styling */
.agent-prompt-area {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}

.typing-text {
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: #667eea;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

/* ===== 1. BETTER ANCHOR NAVIGATION ===== */
section[id] {
    scroll-margin-top: 80px;
}

/* Reduce section top padding for tighter anchoring */
.about-new,
.features-new,
.how-it-works-new,
.frameworks-new,
.demo-new {
    padding-top: 40px !important;
}

/* ===== 2. CENTER HERO CONTENT ===== */
.hero {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
}

.hero .hero-container {
    display: grid !important;
    grid-template-columns: 1fr 420px !important;
    gap: 50px !important;
    align-items: center !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.hero-content-main {
    text-align: left !important;
}

/* Integrations closer to hero */
.integrations-showcase {
    padding-top: 30px !important;
    padding-bottom: 50px !important;
}

/* ===== FIX HERO PADDING AND LAYOUT ===== */
.hero .container.hero-container {
    padding-left: 40px !important;
    padding-right: 40px !important;
    max-width: 1200px !important;
}

/* Smaller chat to fit better */
.agent-chat-window {
    max-width: 380px !important;
}

/* Ensure left content doesn't overflow */
.hero-content-main {
    max-width: 600px !important;
}

.hero-title-new {
    font-size: 52px !important;
    line-height: 1.1 !important;
}

.hero-description {
    font-size: 17px !important;
    line-height: 1.6 !important;
}

.hero-compliance-tagline {
    font-size: 16px !important;
}

/* ===== BIGGER TEXT & MOVE UP ===== */
.hero {
    padding-top: 80px !important;
    padding-bottom: 20px !important;
    min-height: auto !important;
}

.hero-title-new {
    font-size: 58px !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
}

.hero-description {
    font-size: 19px !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
}

.hero-compliance-tagline {
    font-size: 18px !important;
    margin-bottom: 24px !important;
}

/* Move integrations up */
.integrations-showcase {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
    margin-top: -10px !important;
}

/* ===== FINAL ADJUSTMENTS ===== */
/* Move hero down a bit */
.hero {
    padding-top: 100px !important;
    padding-bottom: 30px !important;
}

/* Taller typing area - fixed height to prevent resizing */
.agent-prompt-area {
    min-height: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.prompt-text-container {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.typing-text {
    display: inline !important;
    white-space: nowrap !important;
}

/* Fixed chat window height */
.agent-chat-window {
    min-height: 320px !important;
}

.agent-chat-body {
    min-height: 180px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* ===== FIX OVERFLOW ===== */
.hero .container.hero-container {
    padding-left: 60px !important;
    padding-right: 30px !important;
    overflow: visible !important;
}

body {
    overflow-x: hidden !important;
}

/* ===== REALLY FIX THE LAYOUT ===== */
.hero .hero-container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 80px !important;
    box-sizing: border-box !important;
}

/* Responsive grid */
@media (min-width: 1200px) {
    .hero .hero-container {
        grid-template-columns: 1fr 450px !important;
        gap: 60px !important;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .hero .hero-container {
        grid-template-columns: 1fr 380px !important;
        gap: 40px !important;
        padding: 0 50px !important;
    }
    
    .hero-title-new {
        font-size: 48px !important;
    }
}

/* ===== SIMPLE: MOVE HERO DOWN ===== */
.hero {
    padding-top: 140px !important;
}

/* ===== INTEGRATIONS SECTION ADJUSTMENTS ===== */
.integrations-showcase {
    padding-top: 50px !important;
}

.integrations-title {
    font-size: 26px !important;
    font-weight: 700 !important;
}

.integrations-subtitle {
    font-size: 17px !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
}

/* ===== CHAT TYPING AREA - 2 LINES ===== */
.agent-prompt-area {
    min-height: 64px !important;
    height: auto !important;
    padding: 14px 16px !important;
}

.prompt-text-container {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.4 !important;
}

.typing-text {
    white-space: normal !important;
    word-wrap: break-word !important;
    display: inline !important;
}

/* ===== FIX CHAT HEIGHT - NO RESIZE ===== */
.agent-chat-window {
    height: 380px !important;
    max-height: 380px !important;
    min-height: 380px !important;
}

.agent-chat-body {
    flex: 1 !important;
    overflow: hidden !important;
}

.agent-prompt-area {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
}

/* ===== FINAL INTEGRATIONS TWEAKS ===== */
.integrations-showcase {
    padding-top: 70px !important;
}

.integrations-title {
    font-size: 22px !important;
}

/* ===== MORE PADDING FOR INTEGRATIONS ===== */
.integrations-showcase {
    padding-top: 100px !important;
}

/* ===== CHAT CLICKABLE STYLE ===== */
.agent-chat-container {
    cursor: pointer !important;
}

.agent-chat-container:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3) !important;
}

/* ===== FIX CHAT HOVER - Remove square shadow ===== */
.agent-chat-container:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ===== SCROLL OFFSET FOR DEMO SECTION ===== */
#demo {
    scroll-margin-top: 100px;
}

/* ===== FIX SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -50px !important;
}

/* ===== MORE SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -150px !important;
}

/* ===== EVEN MORE SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -300px !important;
}

/* ===== FINAL SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -500px !important;
}

/* ===== CORRECT SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -250px !important;
}

/* ===== ADJUSTED SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -175px !important;
}

/* ===== FINAL ADJUSTED SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -60px !important;
}

/* ===== PERFECT SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -40px !important;
}

/* ===== DOUBLE SCROLL OFFSET FOR DEMO ===== */
#demo {
    scroll-margin-top: -80px !important;
}

/* ===== CORRECT SCROLL POSITION FOR DEMO ===== */
#demo {
    scroll-margin-top: 20px !important;
}

/* ===== SLIGHTLY MORE UP FOR DEMO ===== */
#demo {
    scroll-margin-top: 50px !important;
}

/* ===== NUEVO LOGO ===== */
.logo-img {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
}

.agent-logo {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    object-fit: contain !important;
}
