/* ========================================
   FEATURES PAGE 2100 - ULTRA PREMIUM DESIGN
   Modern, futuristic styling for features page
======================================== */

/* ===== HERO SECTION 2100 ===== */
.features-hero-2100 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

/* Background Effects */
.hero-bg-2100 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

.hero-particles span:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 15%; top: 60%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 25%; top: 30%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 35%; top: 70%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { left: 45%; top: 25%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 55%; top: 65%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { left: 65%; top: 35%; animation-delay: 6s; }
.hero-particles span:nth-child(8) { left: 75%; top: 55%; animation-delay: 7s; }
.hero-particles span:nth-child(9) { left: 85%; top: 40%; animation-delay: 8s; }
.hero-particles span:nth-child(10) { left: 90%; top: 75%; animation-delay: 9s; }
.hero-particles span:nth-child(11) { left: 10%; top: 80%; animation-delay: 0.5s; }
.hero-particles span:nth-child(12) { left: 20%; top: 15%; animation-delay: 1.5s; }
.hero-particles span:nth-child(13) { left: 30%; top: 85%; animation-delay: 2.5s; }
.hero-particles span:nth-child(14) { left: 40%; top: 10%; animation-delay: 3.5s; }
.hero-particles span:nth-child(15) { left: 50%; top: 90%; animation-delay: 4.5s; }
.hero-particles span:nth-child(16) { left: 60%; top: 5%; animation-delay: 5.5s; }
.hero-particles span:nth-child(17) { left: 70%; top: 80%; animation-delay: 6.5s; }
.hero-particles span:nth-child(18) { left: 80%; top: 20%; animation-delay: 7.5s; }
.hero-particles span:nth-child(19) { left: 92%; top: 50%; animation-delay: 8.5s; }
.hero-particles span:nth-child(20) { left: 3%; top: 45%; animation-delay: 9.5s; }
.hero-particles span:nth-child(n+21) { display: none; }

@keyframes particle-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Hero Container */
.hero-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.breadcrumb-2100 a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-2100 a:hover {
    color: #3b82f6;
}

.breadcrumb-2100 .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.breadcrumb-2100 .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Content */
.hero-content-2100 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-badge-2100 .badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.hero-title-2100 {
    margin-bottom: 28px;
}

.hero-title-2100 .title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.1;
}

.hero-title-2100 .title-gradient {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc-2100 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-desc-2100 strong {
    color: #fff;
    font-weight: 600;
}

/* Hero Stats */
.hero-stats-2100 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Hero Actions */
.hero-actions-2100 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.btn-hero-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover .btn-glow {
    left: 100%;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* Floating Icons */
.hero-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.5rem;
    animation: icon-float 6s ease-in-out infinite;
}

.floating-icon.fi-1 {
    top: 20%;
    left: 5%;
    color: #3b82f6;
    animation-delay: 0s;
}

.floating-icon.fi-2 {
    top: 30%;
    right: 8%;
    color: #8b5cf6;
    animation-delay: 1s;
}

.floating-icon.fi-3 {
    bottom: 30%;
    left: 10%;
    color: #10b981;
    animation-delay: 2s;
}

.floating-icon.fi-4 {
    bottom: 20%;
    right: 12%;
    color: #f59e0b;
    animation-delay: 3s;
}

.floating-icon.fi-5 {
    top: 50%;
    right: 3%;
    color: #ec4899;
    animation-delay: 4s;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== FEATURES SHOWCASE SECTION ===== */
.features-showcase-2100 {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    position: relative;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.section-header-2100 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title-2100 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-2100 .gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-2100 {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Bento Grid */
.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1400px) {
    .features-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    min-height: 280px;
}

.bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 1;
    padding: 40px;
    min-height: 320px;
}

.bento-card.bento-medium {
    grid-column: span 2;
    min-height: 280px;
}

.bento-card.bento-small {
    grid-column: span 1;
    min-height: 260px;
}

@media (max-width: 1024px) {
    .bento-card.bento-large,
    .bento-card.bento-medium {
        grid-column: span 2;
    }
    .bento-card.bento-small {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .bento-card.bento-large,
    .bento-card.bento-medium,
    .bento-card.bento-small {
        grid-column: span 1;
        min-height: auto;
    }
}

/* Bento Background */
.bento-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bento-gradient {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--card-bg, rgba(59, 130, 246, 0.1)) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-gradient {
    opacity: 1;
}

.bento-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-pattern {
    opacity: 1;
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg, rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.bento-icon i {
    font-size: 1.5rem;
    color: var(--card-primary, #3b82f6);
    transition: all 0.4s ease;
}

.bento-icon .icon-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--card-primary, #3b82f6);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.bento-card:hover .bento-icon {
    background: linear-gradient(135deg, var(--card-primary, #3b82f6), var(--card-secondary, #60a5fa));
    transform: scale(1.1) rotate(5deg);
}

.bento-card:hover .bento-icon i {
    color: #fff;
}

.bento-card:hover .icon-ring {
    opacity: 0.5;
    transform: scale(1);
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.bento-card.bento-large .bento-title {
    font-size: 1.5rem;
}

.bento-card:hover .bento-title {
    color: var(--card-secondary, #60a5fa);
}

.bento-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    flex: 1;
}

.bento-card.bento-large .bento-desc {
    font-size: 1.05rem;
}

/* Mini Features */
.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 20px;
}

.mini-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.mini-feature i {
    color: #10b981;
    font-size: 0.75rem;
}

/* Bento Link */
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--card-primary, #3b82f6);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bento-link i {
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-link {
    color: var(--card-secondary, #60a5fa);
}

.bento-card:hover .bento-link i {
    transform: translateX(4px);
}

/* Bento Shine Effect */
.bento-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.bento-card:hover .bento-shine {
    left: 150%;
}

/* Card Hover Border */
.bento-card:hover {
    border-color: rgba(var(--card-primary-rgb, 59, 130, 246), 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--card-bg, rgba(59, 130, 246, 0.1));
}

/* ===== FEATURE CATEGORIES SECTION ===== */
.feature-categories-2100 {
    padding: 100px 0;
    background: #020617;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-block {
    margin-bottom: 80px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    font-size: 1.5rem;
    color: #60a5fa;
}

.category-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 4px;
}

.category-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-feature-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-feature-card:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--card-primary, #3b82f6);
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cfc-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-primary, #3b82f6), var(--card-secondary, #60a5fa));
    border-radius: 14px;
    font-size: 1.25rem;
    color: #fff;
    transition: transform 0.4s ease;
}

.category-feature-card:hover .cfc-icon {
    transform: scale(1.1) rotate(5deg);
}

.cfc-content {
    flex: 1;
}

.cfc-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 6px;
}

.cfc-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.cfc-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.category-feature-card:hover .cfc-arrow {
    background: var(--card-primary, #3b82f6);
    color: #fff;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section-2100 {
    padding: 120px 0;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table-2100 {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-2100 th,
.comparison-table-2100 td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table-2100 th {
    background: rgba(59, 130, 246, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table-2100 th.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: #fff;
}

.comparison-table-2100 th:first-child {
    text-align: left;
}

.brand-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.brand-cell img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.comparison-table-2100 td {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.comparison-table-2100 td:first-child {
    text-align: left;
    font-weight: 500;
    color: #f8fafc;
}

.comparison-table-2100 td.highlight {
    background: rgba(59, 130, 246, 0.05);
}

.comparison-table-2100 td i.fa-check-circle {
    color: #10b981;
    font-size: 1.25rem;
}

.comparison-table-2100 td i.fa-times-circle {
    color: #ef4444;
    font-size: 1.25rem;
}

.comparison-table-2100 td .partial {
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 6px;
    color: #fbbf24;
    font-size: 0.85rem;
}

.comparison-table-2100 tr.price-row td {
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table-2100 tr.price-row td.highlight {
    color: #10b981;
}

.comparison-table-2100 tr.price-row td.highlight strong {
    font-size: 1.25rem;
}

.comparison-table-2100 tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* ===== TESTIMONIAL SECTION ===== */
.features-testimonial-2100 {
    padding: 100px 0;
    background: #0f172a;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card-2100 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.testimonial-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.quote-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    margin-bottom: 32px;
    font-size: 1.5rem;
    color: #fff;
}

.testimonial-card-2100 blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    color: #f8fafc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(59, 130, 246, 0.3);
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: #f8fafc;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.t-stat {
    text-align: center;
}

.t-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.t-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* ===== FINAL CTA SECTION ===== */
.features-cta-2100 {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #2563eb 100%);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.4);
    top: -200px;
    left: -200px;
    animation: cta-orb-float 15s ease-in-out infinite;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.3);
    bottom: -200px;
    right: -100px;
    animation: cta-orb-float 12s ease-in-out infinite reverse;
}

@keyframes cta-orb-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-container-2100 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.cta-content-wrapper {
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.cta-title-2100 {
    margin-bottom: 24px;
}

.cta-title-2100 span {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.cta-title-2100 .gradient {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-features i {
    color: #10b981;
}

.cta-actions-2100 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #fff;
    border: none;
    border-radius: 16px;
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-left: -12px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.cta-trust > span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .features-hero-2100 {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-stats-2100 {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-floating-icons {
        display: none;
    }
    
    .category-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .category-feature-card:hover {
        transform: translateY(-5px);
    }
    
    .cfc-arrow {
        display: none;
    }
    
    .comparison-table-2100 th,
    .comparison-table-2100 td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .testimonial-card-2100 {
        padding: 40px 24px;
    }
    
    .testimonial-card-2100 blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .cta-actions-2100 {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] .features-hero-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #c7d2fe 100%);
}

[data-theme="light"] .features-hero-2100 .hero-bg-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #c7d2fe 100%);
}

[data-theme="light"] .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-3 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .hero-particles span {
    background: rgba(59, 130, 246, 0.3);
}

[data-theme="light"] .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .breadcrumb-2100 .separator {
    color: #94a3b8;
}

[data-theme="light"] .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .hero-badge-2100 {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

[data-theme="light"] .hero-title-2100 .title-line {
    color: #1e293b;
}

[data-theme="light"] .hero-desc-2100 {
    color: #64748b;
}

[data-theme="light"] .hero-desc-2100 strong {
    color: #1e293b;
}

[data-theme="light"] .stat-number {
    color: #1e293b;
}

[data-theme="light"] .stat-suffix {
    color: #3b82f6;
}

[data-theme="light"] .stat-label {
    color: #64748b;
}

[data-theme="light"] .stat-divider {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

[data-theme="light"] .btn-hero-secondary {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

[data-theme="light"] .btn-hero-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .floating-icon {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .features-showcase-2100 {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

[data-theme="light"] .section-badge-2100 {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

[data-theme="light"] .section-title-2100 {
    color: #1e293b;
}

[data-theme="light"] .section-desc-2100 {
    color: #64748b;
}

[data-theme="light"] .bento-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .bento-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .bento-pattern {
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .bento-title {
    color: #1e293b;
}

[data-theme="light"] .bento-desc {
    color: #64748b;
}

[data-theme="light"] .mini-feature {
    background: rgba(0, 0, 0, 0.05);
    color: #475569;
}

[data-theme="light"] .bento-shine {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

[data-theme="light"] .feature-categories-2100 {
    background: #f8fafc;
}

[data-theme="light"] .category-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
}

[data-theme="light"] .category-info h2 {
    color: #1e293b;
}

[data-theme="light"] .category-info p {
    color: #64748b;
}

[data-theme="light"] .category-feature-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .category-feature-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cfc-content h4 {
    color: #1e293b;
}

[data-theme="light"] .cfc-content p {
    color: #64748b;
}

[data-theme="light"] .cfc-arrow {
    background: rgba(0, 0, 0, 0.05);
    color: #94a3b8;
}

[data-theme="light"] .comparison-section-2100 {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="light"] .comparison-table-wrapper {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .comparison-table-2100 th {
    background: rgba(59, 130, 246, 0.05);
    color: #475569;
}

[data-theme="light"] .comparison-table-2100 th.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    color: #1e293b;
}

[data-theme="light"] .comparison-table-2100 td {
    color: #64748b;
    border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .comparison-table-2100 td:first-child {
    color: #1e293b;
}

[data-theme="light"] .comparison-table-2100 td.highlight {
    background: rgba(59, 130, 246, 0.03);
}

[data-theme="light"] .comparison-table-2100 tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

[data-theme="light"] .features-testimonial-2100 {
    background: #f1f5f9;
}

[data-theme="light"] .testimonial-card-2100 {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .testimonial-card-2100 blockquote {
    color: #1e293b;
}

[data-theme="light"] .author-info strong {
    color: #1e293b;
}

[data-theme="light"] .author-info span {
    color: #64748b;
}

[data-theme="light"] .t-stat-label {
    color: #64748b;
}
