/* Home Page Styles - Peec.ai Inspired */

/* ===== CSS VARIABLES (Dark Theme) ===== */
:root {
    --primary: rgb(0, 100, 250);
    --primary-hover: rgb(0, 85, 220);
    --primary-light: rgba(0, 100, 250, 0.1);
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d0d14;
    --bg-tertiary: #15151f;
    --bg-card: #12121a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.05);
    --radius: 12px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ===== SHINE TEXT EFFECT ===== */
.shine-text {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: var(--primary);
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        var(--primary) 60%,
        var(--primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep-shine 4s linear infinite;
}

/* Simple shine text (without blue background) */
.shine-text-simple {
    position: relative;
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--text-primary) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        var(--text-primary) 60%,
        var(--text-primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep-shine 4s linear infinite;
}

@keyframes sweep-shine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== HERO ADVANTAGES - CYCLING DISPLAY ===== */
.hero-advantages-cycling {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 1.1s;
}

.advantage-cycling-container {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-cycling-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.advantage-cycling-item.active {
    opacity: 1;
    transform: translateY(0);
    animation: pulse-float 3s ease-in-out infinite;
}

.advantage-cycling-item.exit {
    opacity: 0;
    transform: translateY(-10px);
}

/* Пульсирующая анимация с движением вверх-влево-вправо */
@keyframes pulse-float {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(1.01) translateY(-3px) translateX(2px);
    }
    50% {
        transform: scale(1) translateY(0) translateX(-2px);
    }
    75% {
        transform: scale(0.99) translateY(2px) translateX(1px);
    }
}

.advantage-cycling-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 100, 250, 0.2), rgba(139, 92, 246, 0.15));
    color: var(--primary);
    flex-shrink: 0;
}

.advantage-cycling-icon svg {
    width: 18px;
    height: 18px;
}

.advantage-cycling-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.advantage-cycling-text strong {
    color: var(--primary);
}



/* Responsive */
@media (max-width: 768px) {
    .advantage-cycling-container {
        max-width: 90%;
        height: 60px;
    }
    
    .advantage-cycling-item {
        padding: 12px 20px;
        gap: 12px;
    }
    
    .advantage-cycling-icon {
        width: 32px;
        height: 32px;
    }
    
    .advantage-cycling-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .advantage-cycling-text {
        font-size: 0.775rem;
    }
}

/* Scroll animation for feature cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays for cards */
.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.5s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(7) { animation-delay: 0.7s; }

/* SVG icon styles */
svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-actions svg {
    width: 20px;
    height: 20px;
}

.creators-buttons svg {
    width: 18px;
    height: 18px;
}

.timeline-marker svg {
    width: 20px;
    height: 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 90px 0;
    background: var(--bg-primary);
    overflow: hidden;
    min-height: 600px;
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orb-float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
    top: 20%;
    right: -80px;
    animation-delay: -5s;
    animation-direction: reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 15s;
}

.hero-orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -7s;
    animation-duration: 18s;
}

.hero-orb-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: -3s;
    animation-duration: 12s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-rise 15s linear infinite;
}

@keyframes particle-rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Glow effect overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(0, 100, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-light);
    border: 1px solid rgba(0, 100, 250, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-title.shine-text {
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        var(--primary) 60%,
        var(--primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep-shine 4s linear infinite, fadeSlideUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 0.7s;
}

.hero-api-block {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards, glowPulse 3s ease-in-out infinite;
    animation-delay: 0.9s;
    position: relative;
    overflow: hidden;
}

.hero-api-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 100, 250, 0.05), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 100, 250, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 100, 250, 0.15);
    }
}

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

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 80px;
}

.hero-api-base {
    color: var(--primary);
    font-weight: 600;
}

.hero-api-path {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--text-secondary);
    padding: 4px 10px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.hero-api-path-text {
    animation: textPulse 2s ease-in-out infinite;
}

.hero-api-anim {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 20px;
    min-width: 180px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-api-anim {
        min-width: 100px;
        font-size:0.6rem;
    }
    .hero-copy-btn{
        width:24px;
        height:24px;

    }
}

.hero-api-anim-item {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.35s ease;
    white-space: nowrap;
}

.hero-api-anim-item.enter {
    opacity: 0;
    transform: translateY(-50%) translateY(15px);
}

.hero-api-anim-item.enter-active {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
}

.hero-api-anim-item.leave {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
}

.hero-api-anim-item.leave-active {
    opacity: 0;
    transform: translateY(-50%) translateY(-15px);
}

.hero-api-cursor {
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

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

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

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

.hero-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-copy-btn:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
    border-color: var(--primary);
}

.hero-copy-btn--copied {
    background: var(--success) !important;
    border-color: var(--success) !important;
    color: white !important;
}

@media (max-width: 768px) {
    .hero-api-anim {
        min-width: 100px;
        font-size:0.6rem;
    }
    .hero-copy-btn{
        width:24px;
        height:24px;

    }
}

.hero-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 800px;
    margin: 48px auto 40px;
    justify-content: center;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 1.1s;
}

/* Carousel Animation for Advantages */
.hero-advantages-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 48px auto 40px;
    overflow: hidden;
    padding: 10px 0;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 1.1s;
}

.hero-advantages-carousel::before,
.hero-advantages-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.hero-advantages-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.hero-advantages-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.hero-advantages-track {
    display: flex;
    gap: 16px;
    animation: carousel-scroll 20s linear infinite;
    width: max-content;
}

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

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

.hero-advantage {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 100, 250, 0.03) 100%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    animation: card-fade-in 0.5s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

/* Green accent stripe on left side */
.hero-advantage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(0, 100, 250, 0.4) 100%);
    border-radius: 0 3px 3px 0;
    transition: all 0.3s ease;
}

.hero-advantage:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(0, 100, 250, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-advantage:hover::before {
    height: 80%;
    box-shadow: 0 0 12px rgba(0, 100, 250, 0.5);
}

@keyframes card-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered animation for each card */
.hero-advantage:nth-child(1) { animation-delay: 0s; }
.hero-advantage:nth-child(2) { animation-delay: 0.1s; }
.hero-advantage:nth-child(3) { animation-delay: 0.2s; }
.hero-advantage:nth-child(4) { animation-delay: 0.3s; }
.hero-advantage:nth-child(5) { animation-delay: 0.4s; }

.hero-adv-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-advantage .hero-adv-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 100, 250, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 100, 250, 0.25);
    position: relative;
}

.hero-advantage .hero-adv-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 50%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-advantage .hero-adv-icon-wrapper svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.hero-advantage:hover .hero-adv-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #0052d4 100%);
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 100, 250, 0.4);
}

.hero-advantage:hover .hero-adv-icon-wrapper::after {
    opacity: 0.1;
}

.hero-advantage:hover .hero-adv-icon-wrapper svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-adv-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-adv-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-adv-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.9;
}

.hero-advantage:hover .hero-adv-title {
    color: var(--primary);
}


.hero-adv-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== MODELS SECTION - Compact & Unified ===== */
.models-section {
    padding: 0;
    background: var(--bg-primary);
}

.models-header {
    max-width: 100%;
    margin: 0;
    padding: 48px 24px;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.models-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 8px 0;
    text-align: center;
    line-height: 1.1;
}

.models-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 12px auto 0;
    line-height: 1.6;
}

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

.models-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Category blocks */
.models-category {
    max-width: 100%;
    margin: 0;
    padding: 40px 24px;
    background: var(--bg-primary);
    position: relative;
    transition: all 0.3s ease;
}

.models-category:last-child {
    border-bottom: none;
}

/* Remove hover effects */

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 100, 250, 0.1);
    border: 1px solid rgba(0, 100, 250, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.category-text {
    flex: 1;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.category-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Models row with mini cards */
.models-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 24px;
}

.model-mini-card {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

/* Image generation cards are visible immediately */
.models-row:first-of-type .model-mini-card {
    opacity: 1;
    transform: translateY(0);
}

.model-mini-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image generation cards - large images with text overlay */
.models-row:first-of-type .model-mini-card {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    max-width: none !important;
    min-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    min-height: 380px !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 0 0 auto !important;
}

.models-row:first-of-type .model-mini-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.models-row:first-of-type .model-mini-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.3) 65%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.models-row:first-of-type .model-mini-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 100, 250, 0.25) 0%,
        rgba(168, 85, 247, 0.15) 50%,
        rgba(34, 197, 94, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.models-row:first-of-type .model-mini-card:hover .model-mini-image::after {
    opacity: 1;
}

.models-row:first-of-type .model-mini-card:hover .model-mini-image {
    transform: scale(1.05);
}

.models-row:first-of-type .model-mini-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 20px !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
}

.models-row:first-of-type .model-mini-provider {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    z-index: 4 !important;
    margin-bottom: 0 !important;
}

.models-row:first-of-type .model-mini-name {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.25;
}

.models-row:first-of-type .model-mini-tagline {
    font-size: 0.875rem !important;
    margin-bottom: 12px !important;
    opacity: 0.85;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.models-row:first-of-type .model-mini-use-cases {
    font-size: 0.8125rem !important;
    margin-bottom: 10px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.models-row:first-of-type .model-mini-price {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    background: rgba(0, 100, 250, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    width: fit-content !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 100, 250, 0.3);
}

.models-row:first-of-type .model-mini-benefit {
    margin-top: 0 !important;
    background: rgba(34, 197, 94, 0.9) !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    width: fit-content !important;
    backdrop-filter: blur(10px);
}

/* Staggered animation for cards within each row */
.models-row:nth-of-type(2) .model-mini-card:nth-child(1) { transition-delay: 0s; }
.models-row:nth-of-type(2) .model-mini-card:nth-child(2) { transition-delay: 0.1s; }
.models-row:nth-of-type(2) .model-mini-card:nth-child(3) { transition-delay: 0.2s; }

.models-row:nth-of-type(3) .model-mini-card:nth-child(1) { transition-delay: 0s; }
.models-row:nth-of-type(3) .model-mini-card:nth-child(2) { transition-delay: 0.1s; }
.models-row:nth-of-type(3) .model-mini-card:nth-child(3) { transition-delay: 0.2s; }

.models-row:nth-of-type(4) .model-mini-card:nth-child(1) { transition-delay: 0s; }
.models-row:nth-of-type(4) .model-mini-card:nth-child(2) { transition-delay: 0.1s; }
.models-row:nth-of-type(4) .model-mini-card:nth-child(3) { transition-delay: 0.2s; }

.models-row:nth-of-type(5) .model-mini-card:nth-child(1) { transition-delay: 0s; }
.models-row:nth-of-type(5) .model-mini-card:nth-child(2) { transition-delay: 0.1s; }
.models-row:nth-of-type(5) .model-mini-card:nth-child(3) { transition-delay: 0.2s; }

.models-row:nth-of-type(6) .model-mini-card:nth-child(1) { transition-delay: 0s; }
.models-row:nth-of-type(6) .model-mini-card:nth-child(2) { transition-delay: 0.1s; }
.models-row:nth-of-type(6) .model-mini-card:nth-child(3) { transition-delay: 0.2s; }

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

.model-mini-card:hover::before {
    left: 100%;
}

.model-mini-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 100, 250, 0.15);
}

.model-mini-card:hover .model-mini-name {
    color: var(--primary);
}

.model-mini-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.model-mini-provider {
    margin-bottom: 8px;
}

.model-mini-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    transition: color 0.2s ease;
}

.model-mini-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 4px 0 8px 0;
    line-height: 1.4;
}

.model-mini-use-cases {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 8px 0;
    line-height: 1.5;
    padding: 8px 12px;
    background: rgba(0, 100, 250, 0.08);
    border: 1px solid rgba(0, 100, 250, 0.2);
    border-radius: 8px;
}

.model-mini-use-cases strong {
    color: var(--primary);
    font-weight: 600;
}

.model-mini-benefit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #166534;
    margin-top: 8px;
    font-weight: 600;
    padding: 6px 10px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.06) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
}

.model-mini-benefit::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    margin-right: 0;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.model-mini-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.model-mini-price .price-unit {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.model-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.mini-feature {
    font-size: 0.6875rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
}

.category-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .models-header {
        padding: 32px 16px;
    }
    
    .models-category {
        padding: 32px 16px;
    }
    
    .category-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .models-row {
        flex-direction: column;
    }
    
    .model-mini-card {
        max-width: none;
    }
    
    .category-actions {
        flex-direction: column;
    }
}

.model-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 100, 250, 0.3);
}

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

.model-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.model-card:hover .model-image {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.model-card--embeddings {
    background: var(--bg-card);
}

.model-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.model-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
}

.model-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.55;
}

.model-use-cases {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.model-use-cases strong {
    color: var(--text-primary);
    font-weight: 600;
}

.model-pricing {
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-top: auto;
}

.price-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.price-unit {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-benefit {
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-benefit::before {
    content: '✓';
    font-size: 0.6875rem;
}

.modality-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 32px 24px 0;
}

.model-card--audio {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card--audio:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 100, 250, 0.3);
}

.audio-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.audio-card-header .model-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.audio-card-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 14px 0;
}

.audio-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.audio-feature svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.audio-card-features .model-use-cases {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 12px 0 16px;
    line-height: 1.55;
}

.audio-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.capability-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgb(0, 100, 250);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0, 100, 250, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 100, 250, 0.5), 0 4px 14px rgba(0, 100, 250, 0.3);
    color: white;
    text-decoration: none;
}

.primary-button:hover::before {
    opacity: 1;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: var(--border);
    border-color: var(--text-muted);
}

.hero-actions .primary-button,
.hero-actions .secondary-button,
.hero-actions .tertiary-button {
    min-width: 240px;
    width: 240px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.tertiary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    text-decoration: none;
}

.tertiary-button:hover {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

/* Home Button Styles */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    text-decoration: none;
}

.home-btn--primary {
    background: rgb(0, 100, 250);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 100, 250, 0.4);
}

.home-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 250, 0.5);
    color: white;
    text-decoration: none;
}

.home-btn--secondary,
a.home-btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.home-btn--secondary:hover,
a.home-btn--secondary:hover {
    background: var(--border);
    border-color: var(--text-muted);
    color: var(--text-primary);
    text-decoration: none;
}

/* ===== FEATURES SECTION (Aave Style) ===== */
.features-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Decorative floating circles - Aave style */
.features-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.features-bg-orb--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.08) 0%, transparent 70%);
    animation: float-orb 8s ease-in-out infinite;
}

.features-bg-orb--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.05) 0%, transparent 70%);
    animation: float-orb 10s ease-in-out infinite reverse;
}

.features-bg-orb--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 100, 250, 0.03) 0%, transparent 70%);
    animation: pulse-orb 4s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

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

/* Glowing pulse circles */
.features-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.features-glow--1 {
    top: -200px;
    right: 10%;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.06) 0%, transparent 50%);
    animation: glow-pulse 6s ease-in-out infinite;
}

.features-glow--2 {
    bottom: -300px;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.04) 0%, transparent 50%);
    animation: glow-pulse 8s ease-in-out infinite 1s;
}

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

/* Small floating particles */
.features-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.features-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 100, 250, 0.3);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

.features-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.features-particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.features-particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; }
.features-particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; }
.features-particle:nth-child(5) { left: 50%; top: 50%; animation-delay: 8s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin: 0 auto 40px;
    padding: 0;
    position: relative;
}

.features-header::after {
    display: none;
}

.features-title {
    display: inline-block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary) 40%,
        rgba(255, 255, 255, 0.9) 50%,
        var(--primary) 60%,
        var(--primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep-shine 4s linear infinite;
}

.features-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* n8n card - full width with blue background */
div.features-grid .feature-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0064fa 0%, #0052d4 100%);
    border: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* White line passing through from left to right */
div.features-grid .feature-card--wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 40%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.15) 60%, 
        transparent 100%);
    animation: white-line-scan 3s ease-in-out infinite;
    opacity: 1;
    z-index: 1;
}

@keyframes white-line-scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes white-line-pass {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        left: 0%;
        opacity: 1;
    }
}

@keyframes beam-pass {
    0% {
        transform: skewX(-15deg) translateX(-50%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: skewX(-15deg) translateX(50%);
        opacity: 0;
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

div.features-grid .feature-card--wide:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 100, 250, 0.3);
}

div.features-grid .feature-card--wide .feature-image {
    margin: 0;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

div.features-grid .feature-card--wide .feature-content {
    flex: 1;
}

div.features-grid .feature-card--wide .feature-title {
    font-size: 1.125rem;
    margin-bottom: 6px;
    color: #ffffff;
}

div.features-grid .feature-card--wide .feature-desc {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

div.features-grid .feature-card--wide .home-btn {
    margin: 0;
    white-space: nowrap;
}

.features-grid .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    
    /* Scroll animation initial state */
    opacity: 0;
    transform: translateY(30px);
}

/* When card becomes visible */
.features-grid .feature-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays for cards */
.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.5s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.6s; }
.features-grid .feature-card:nth-child(7) { animation-delay: 0.7s; }

.features-grid .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(0, 100, 250), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-grid .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 100, 250, 0.4);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

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

.features-grid .feature-card .feature-icon {
    width: 32px;
    height: 32px;
    margin: 0 0 10px 0;
    background: rgba(0, 100, 250, 0.1);
    border: 1px solid rgba(0, 100, 250, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.features-grid .feature-card .feature-icon svg {
    width: 18px;
    height: 18px;
    color: rgb(0, 100, 250);
    transition: all 0.3s ease;
}

.features-grid .feature-card:hover .feature-icon {
    background: rgb(0, 100, 250);
    border-color: rgb(0, 100, 250);
}

.features-grid .feature-card:hover .feature-icon svg {
    color: white;
}

.features-grid .feature-card .feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.features-grid .feature-card .feature-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.features-grid .feature-card .home-btn {
    margin-top: auto;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
    background: rgb(0, 100, 250);
    color: white;
    border: 1px solid rgb(0, 100, 250);
    box-shadow: 0 4px 12px rgba(0, 100, 250, 0.3);
    transition: all 0.2s ease;
}

.features-grid .feature-card .home-btn:hover {
    background: rgb(0, 100, 250);
    border-color: rgb(0, 100, 250);
    box-shadow: 0 6px 20px rgba(0, 100, 250, 0.4);
    color: white !important;
    transform: translateX(4px);
}

.features-grid .feature-card .home-btn--primary {
    background: rgb(0, 100, 250);
    color: white;
    border: 1px solid rgb(0, 100, 250);
    box-shadow: 0 4px 12px rgba(0, 100, 250, 0.3);
}

.features-grid .feature-card .home-btn--primary:hover {
    background: rgb(0, 100, 250);
    border-color: rgb(0, 100, 250);
    box-shadow: 0 6px 20px rgba(0, 100, 250, 0.4);
    color: white !important;
}

/* Stats bar for key metrics */
.features-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.feature-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.feature-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-header {
        margin-bottom: 36px;
        padding-bottom: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-grid .feature-card {
        padding: 24px;
    }
    
    .features-stats {
        gap: 24px;
        margin-top: 40px;
    }
    
    .feature-stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid .feature-card {
        padding: 20px;
    }
    
    .features-grid .feature-card .feature-title {
        font-size: 1rem;
    }
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card--highlight {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-card--highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-card--highlight .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-card--highlight:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* Feature card buttons */
.feature-card .card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.feature-card .card-btn--primary {
    background: white;
    color: rgb(0, 100, 250);
    border: 2px solid white;
}

.feature-card .card-btn--primary:hover {
    background: transparent;
    color: white;
}

.feature-card .card-btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-card .card-btn--secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.feature-card--highlight {
    background: linear-gradient(135deg, rgba(0, 100, 250, 0.08) 0%, rgba(0, 100, 250, 0.03) 100%);
    border-color: rgba(0, 100, 250, 0.25);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--primary);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card--highlight .feature-title {
    color: rgb(0, 100, 250);
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.feature-desc code {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(0, 100, 250, 0.1);
    border-radius: 4px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    color: var(--primary);
}

/* ===== GETTING STARTED SECTION ===== */
.getting-started-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.getting-started-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.getting-started-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: rgb(0, 100, 250);
    text-align: center;
    margin-bottom: 48px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 100, 250, 0.1) 0%,
        rgba(0, 100, 250, 0.3) 50%,
        rgba(0, 100, 250, 0.1) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

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

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

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 100, 250, 0.3);
    z-index: 1;
}

.timeline-item--warning .timeline-marker {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0, 100, 250, 0.3);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.timeline-item--warning:hover .timeline-content {
    border-color: rgba(245, 158, 11, 0.3);
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-new-style {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-new-style:hover {
    border-color: var(--primary);
}

.faq-new-style[open] {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    transition: all 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-new-style[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: #0064fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #22c57e;
    text-decoration: underline;
}

.faq-answer .demo-link-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #0064fa !important;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-answer .demo-link-btn:hover {
    color: #22c57e !important;
    text-decoration: underline;
}

/* ===== DEMO MODAL ===== */
.demo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.demo-modal.active {
    display: flex;
}

.demo-modal.active {
    display: flex;
}

.demo-modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.demo-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.demo-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(0, 100, 250);
    margin-bottom: 24px;
}

.demo-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.demo-form textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.demo-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 100, 250, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .models-grid--embeddings {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-api-block {
        padding: 8px 14px;
        gap: 8px;
        font-size: 11px;
        border-radius: var(--radius);
        white-space: nowrap;
        overflow: hidden;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-advantage {
        flex-direction: column;
        text-align: center;
    }
    
    .models-section,
    .features-section,
    .getting-started-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .timeline {
        padding-left: 32px;
    }
    
    .timeline::before {
        left: 11px;
    }
    
    .timeline-marker {
        left: -32px;
        width: 32px;
        height: 32px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .models-grid--embeddings {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .creators-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .model-card {
        padding: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER STYLES ===== */
.footer-clean {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 24px 16px;
    text-align: center;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer-separator {
    color: var(--border);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .footer-links-row {
        gap: 8px;
    }
    
    .footer-link {
        font-size: 0.8125rem;
    }
}

/* ===== NEW FOOTER STYLES ===== */
.footer-new {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 48px 24px 24px;
}

.footer-new-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-new-brand {
    flex-shrink: 0;
}

.footer-new-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-new-logo svg {
    display: block;
}

.footer-new-logo img {
    display: block;
    height: 32px;
    width: auto;
}

.footer-new-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-new-columns {
    display: flex;
    gap: 64px;
}

.footer-new-col {
    min-width: 140px;
}

.footer-new-col-title {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-new-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-new-list li {
    margin-bottom: 8px;
}

.footer-new-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-new-link:hover {
    color: var(--primary);
}

.footer-new-link--disabled {
    color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-new-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-new-copyright {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-new {
        padding: 32px 16px 24px;
    }
    
    .footer-new-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .footer-new-brand {
        text-align: center;
    }
    
    .footer-new-columns {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }
    
    .footer-new-col {
        text-align: center;
    }
    
    .footer-new-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
/* DEBUG: Force image card styling */
.models-row:first-of-type .model-mini-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Image cards - larger square images */
.models-row:first-of-type .model-mini-card.image-card-style {
    display: flex;
    flex-direction: column;
}

.models-row:first-of-type .model-mini-card.image-card-style .model-mini-image.image-square {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.models-row:first-of-type .model-mini-card.image-card-style:hover .model-mini-image.image-square {
    transform: scale(1.03);
}

/* ===== HERO ADVANTAGES DECORATIVE ELEMENTS ===== */
.hero-advantages-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 800px;
}

.hero-advantages-decor-right {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.3;
}

.hero-advantages-decor-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 100, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: decor-pulse 4s ease-in-out infinite;
}

.hero-advantages-decor-right::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: decor-pulse 4s ease-in-out infinite 1s;
}

.hero-advantages-decor-right .decor-line {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 100, 250, 0.3));
}

.hero-advantages-decor-right .decor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: dot-float 3s ease-in-out infinite;
}

.hero-advantages-decor-right .decor-dot:nth-child(1) {
    top: 30px;
    right: 20px;
    animation-delay: 0s;
}

.hero-advantages-decor-right .decor-dot:nth-child(2) {
    bottom: 50px;
    right: 50px;
    animation-delay: 1s;
}

.hero-advantages-decor-right .decor-dot:nth-child(3) {
    bottom: 20px;
    right: 10px;
    animation-delay: 2s;
}

@keyframes decor-pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes dot-float {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Floating particles for advantages */
.hero-advantages-particles {
    position: absolute;
    right: -150px;
    top: 0;
    width: 150px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-advantages-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 4s ease-in-out infinite;
}

.hero-advantages-particles .particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.hero-advantages-particles .particle:nth-child(2) {
    left: 40%;
    animation-delay: 0.8s;
}

.hero-advantages-particles .particle:nth-child(3) {
    left: 60%;
    animation-delay: 1.6s;
}

.hero-advantages-particles .particle:nth-child(4) {
    left: 80%;
    animation-delay: 2.4s;
}

.hero-advantages-particles .particle:nth-child(5) {
    left: 30%;
    animation-delay: 3.2s;
}

@keyframes particle-rise {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    20% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1);
    }
}

/* Glowing ring decoration */
.hero-advantages-glow {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    border: 1px solid rgba(0, 100, 250, 0.1);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.hero-advantages-glow::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

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

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-advantages-decor-right,
    .hero-advantages-particles,
    .hero-advantages-glow,
    .hero-advantages-side {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
