.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-highlight {
    color: #0066ff;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
    max-width: 95%;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 8px 16px;
    border-radius: 50px;
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.05);
}

.btn-custom-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px; 
    padding: 0 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap; 
    box-sizing: border-box;
}

.btn-primary-custom {
    background: #0066ff;
    color: #ffffff !important;
    border: 2px solid #0066ff;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
}

.btn-primary-custom:hover {
    background: #0052cc;
    border-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: #334155 !important;
    border: 2px solid #cbd5e1;
}

.btn-secondary-custom:hover {
    border-color: #0066ff;
    color: #0066ff !important;
    background: #ffffff;
}

/* Crypto Container */
.crypto-container {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.crypto-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.crypto-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Image Hover Float */
.floating-img {
    transition: transform 0.3s ease;
}
.floating-img:hover {
    transform: translateY(-5px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .btn-custom-group { justify-content: center; }
    .crypto-container { justify-content: center; flex-direction: column; gap: 12px; }
    .banner__img-wrap-three { margin-bottom: 40px; }
    .banner__content-three { text-align: center; }
}

.terminal-container {
    background: #0d1117; 
    border-radius: 12px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
    font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
            
.terminal-container:hover {
    transform: translateY(-4px); 
    box-shadow: 0 35px 65px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.1);
}
            
.terminal-header {
    background: #161b22;
    padding: 16px 24px; 
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #30363d;
}
            
.term-dot { width: 14px; height: 14px; border-radius: 50%; }
.term-dot.red { background: #ff5f56; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green { background: #27c93f; }
                    
.term-title {
    color: #8b949e;
    font-size: 13px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    padding-right: 50px; 
}
            
.terminal-body {
    padding: 32px 40px; 
    font-size: 16px; 
    color: #c9d1d9;
    min-height: 420px; 
    line-height: 1.8;
}

.term-prompt { color: #58a6ff; font-weight: bold; } 
.term-command { color: #f0f6fc; font-weight: 500; } 
.term-success { color: #3fb950; font-weight: bold; } 
.term-warning { color: #d29922; font-weight: bold; } 
.term-system { color: #8b949e; } 
.term-muted { color: #6e7681; font-size: 0.9em; } /* Added for hex codes */
.term-highlight { color: #e6edf3; font-weight: bold; font-size: 1.05em; }

.term-options {
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px; 
}

.term-option-btn {
    display: inline-flex;
    align-items: center;
    color: #bc8cff; 
    cursor: pointer;
    padding: 10px 16px; 
    margin-left: -16px; 
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
}

.term-option-btn:hover {
    color: #d2a8ff;
    transform: translateX(8px); 
    background: rgba(210, 168, 255, 0.08); 
    box-shadow: inset 3px 0 0 #d2a8ff; 
}

.term-option-btn:active {
    transform: translateX(8px) scale(0.97); 
    background: rgba(210, 168, 255, 0.15);
}
            
@keyframes bracketPulse {
    0%, 100% { color: #6e7681; }
    50% { color: #bc8cff; text-shadow: 0 0 10px rgba(188, 140, 255, 0.4); }
}
            
.term-option-btn::before {
    content: "[ ]";
    color: #6e7681;
    transition: all 0.2s;
    margin-right: 12px;
    font-weight: normal;
    animation: bracketPulse 2s infinite; 
}
            
.term-option-btn:hover::before {
    content: "[✓]"; 
    color: #d2a8ff;
    animation: none; 
}
            
.blinking-cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #c9d1d9;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
    margin-left: 6px;
}
            
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.redivix-features {
    /* Reduced padding from 120px to 80px to stop it from swallowing the screen */
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    /* Reduced bottom margin from 70px to 50px */
    margin-bottom: 50px;
}

.section-header h2 {
    /* Reduced size from 3rem to 2.25rem for a more sophisticated look */
    font-size: 2.25rem;
    font-weight: 800; 
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.section-header p {
    /* Reduced font size and max-width for better readability */
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* 3. Floating Premium Cards */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px; /* Slightly tighter corners */
    /* Reduced internal padding from 45px 35px to 32px 28px */
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Hover Lift - Adjusted from 12px to 8px for a smoother feel */
.feature-card:hover {
    transform: translateY(-8px);
}

/* Color Themes on Hover */
.card-blue:hover {
    border-color: #0066ff !important;
    box-shadow: 0 25px 50px -20px rgba(0, 102, 255, 0.15);
}
.card-purple:hover {
    border-color: #8b5cf6 !important;
    box-shadow: 0 25px 50px -20px rgba(139, 92, 246, 0.15);
}
.card-green:hover {
    border-color: #10b981 !important;
    box-shadow: 0 25px 50px -20px rgba(16, 185, 129, 0.15);
}
.card-orange:hover {
    border-color: #f97316 !important;
    box-shadow: 0 25px 50px -20px rgba(249, 115, 22, 0.15);
}

/* Colorful Icon Pods - Resized from 70px to 56px */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px; /* Scaled down icon */
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.05) rotate(-3deg);
}

.bg-blue { background: #eff6ff; color: #0066ff; }
.bg-purple { background: #f5f3ff; color: #8b5cf6; }
.bg-green { background: #ecfdf5; color: #10b981; }
.bg-orange { background: #fff7ed; color: #f97316; }

.feature-card h4 {
    /* Reduced from 1.4rem to 1.15rem to look "cleaner" */
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-card p {
    /* Refined font size for the description */
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modern Arrow Link */
.feature-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    /* Pull colors from parent on hover */
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateX(5px);
}

/* Target specific link colors based on parent hover */
.card-blue:hover .feature-link { color: #0066ff; }
.card-purple:hover .feature-link { color: #8b5cf6; }
.card-green:hover .feature-link { color: #10b981; }
.card-orange:hover .feature-link { color: #f97316; }

@media (max-width: 991px) {
    .section-header h2 { font-size: 1.8rem; }
    .redivix-features { padding: 60px 0; }
    .feature-card { padding: 25px; }
}
.redivix-offerings-pro {
    background-color: #f1f5f9; 
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 100px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fixed Grid: Clean 3-column layout with equal heights */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px; /* Increased top gap to account for overlapping icons */
    position: relative;
    z-index: 1;
}

.offering-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    height: 100%; /* Ensures all cards in a row match height */
    box-sizing: border-box;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(0, 102, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 102, 255, 0.2);
}

/* Icon Badge - Standardized */
.icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: absolute;
    top: -30px; /* Perfectly halfway off the top edge */
    left: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.icon-blue { background: #eff6ff; color: #0066ff; border: 1px solid #dbeafe;}
.icon-purple { background: #f5f3ff; color: #8b5cf6; border: 1px solid #e9d5ff;}
.icon-green { background: #ecfdf5; color: #10b981; border: 1px solid #bbf7d0;}

.offering-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 15px; 
    margin-bottom: 15px;
}

.offering-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background-color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    gap: 8px;
    transition: all 0.3s ease;
    width: fit-content;
}

/* Color accents on hover */
.card-blue:hover .cta-button { background-color: #0066ff; }
.card-purple:hover .cta-button { background-color: #8b5cf6; }
.card-green:hover .cta-button { background-color: #10b981; }

/* Rating Footer */
.redivix-rating-footer {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.rating-stars { color: #fbbf24; font-size: 18px; margin-bottom: 10px; }

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

@media (max-width: 600px) {
    .mosaic-grid { grid-template-columns: 1fr; gap: 50px; }
    .section-header h2 { font-size: 2.2rem; }
}
.redivix-performance {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Abstract background glow */
.redivix-performance::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.perf-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 1. The Console (Left Side) */
.perf-console {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 40px 100px -30px rgba(0, 48, 120, 0.12);
    position: relative;
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    height: 8px;
    width: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.speed-display {
    text-align: center;
    padding: 40px 0;
}

.speed-number {
    font-size: 5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -3px;
}

.speed-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066ff;
    margin-top: 5px;
}

/* Latency Bars Visualization */
.latency-viz {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: 30px;
    justify-content: center;
}

.l-bar {
    width: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.l-bar.active { background: #0066ff; }

/* 2. Content (Right Side) */
.perf-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.perf-text p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Technical Specification Chips */
.tech-chips {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.chip:hover {
    border-color: #0066ff;
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.05);
}

.chip-icon {
    color: #0066ff;
    font-size: 22px;
    display: flex;
}

.chip-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}

.chip-val {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

.btn-prime {
    background: #0f172a;
    color: #ffffff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-prime:hover {
    background: #0066ff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

@media (max-width: 1024px) {
    .perf-container { grid-template-columns: 1fr; }
    .perf-text { order: -1; text-align: center; }
    .tech-chips { align-items: center; }
    .chip { width: 100%; max-width: 450px; }
}
/* Apply to specific words inside any heading */
h1 span, h2 span, h3 span, .text-gradient {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 2px 10px rgba(16, 185, 129, 0.1));
}
.protocol-path {
    background-color: #fcfdfe; /* New off-white base */
    background-image: 
        radial-gradient(circle at 15% 45%, rgba(14, 165, 233, 0.08) 0%, rgba(252, 253, 254, 0) 60%), /* Blue pod */
        radial-gradient(circle at 50% 55%, rgba(16, 185, 129, 0.08) 0%, rgba(252, 253, 254, 0) 60%), /* Green pod */
        radial-gradient(circle at 85% 45%, rgba(168, 85, 247, 0.08) 0%, rgba(252, 253, 254, 0) 60%); /* Purple pod */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

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

.protocol-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
}

/* 1. The Interactive Path System */
.path-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr; /* Cards + Connectors */
    align-items: center;
    gap: 0;
    position: relative;
}

.path-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    z-index: 2;
    overflow: hidden;
}

.path-card:hover {
    transform: translateY(-10px);
    border-color: #0066ff;
    box-shadow: 0 30px 60px -20px rgba(0, 102, 255, 0.1);
}

/* Oversized Background Number */
.card-num-bg {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 110px;
    font-weight: 800;
    color: #f1f5f9;
    z-index: -1;
    line-height: 1;
}

.path-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.path-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Protocol Tag */
.protocol-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    background: #f1f5f9;
    color: #94a3b8;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 700;
}

.path-card:hover .protocol-tag {
    background: #eff6ff;
    color: #0066ff;
}

/* 2. The Animated Connectors */
.path-connector {
    width: 60px;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    z-index: 1;
}

.path-connector::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: #0066ff;
    box-shadow: 0 0 10px #0066ff;
    animation: pulse-flow 2s infinite linear;
}

@keyframes pulse-flow {
    0% { left: -20px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.support__inner-wrap-four {
    border-radius: 32px; /* Smooth corners for the background container */
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1); /* Adds depth */
}

/* Ensures the text is perfectly legible over the background */
.support__content-four {
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px !important;
    border-radius: 24px;
    max-width: 580px;
}

.support__area-four .title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
}

.support__list-item-four .title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.support__list-item-four p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Matches your primary button style */
.tg-btn-five {
    background: #0066ff;
    color: #fff !important;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tg-btn-five:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.performance-security-dual-improved {
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 80px 0; /* Reduced from 120px for a more compact section */
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.performance-security-dual-improved::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
}
.performance-security-dual-improved::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.dual-card-pro {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 45px 40px; /* Reduced from 60px 50px for a tighter layout */
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.05);
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dual-card-pro:hover {
    transform: translateY(-8px); /* Slightly less dramatic hover lift */
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.1);
}

.dual-card-pro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 0%;
    width: 6px;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    border-radius: 0 4px 4px 0;
}
.card-perf-pro:hover::before { background: #0066ff; height: 40%; }
.card-sec-pro:hover::before { background: #8b5cf6; height: 40%; }

.card-watermark-pro {
    position: absolute;
    top: 15px;
    right: -10px; /* Adjusted to fit the nowrap text better */
    font-size: 80px; /* Scaled down slightly */
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03); 
    user-select: none;
    z-index: -1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -4px;
    text-transform: uppercase;
    white-space: nowrap; /* Added to prevent wrapping */
}

.card-perf-pro:hover .card-watermark-pro { color: rgba(0, 102, 255, 0.05); }
.card-sec-pro:hover .card-watermark-pro { color: rgba(139, 92, 246, 0.05); }

.dual-icon-pro {
    width: 60px; /* Reduced from 70px */
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* Reduced icon size */
    margin-bottom: 25px; /* Reduced margin */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    color: #94a3b8;
}

.card-perf-pro:hover .dual-icon-pro { color: #0066ff; border-color: #0066ff; background: #eff6ff; transform: rotate(-5deg); }
.card-sec-pro:hover .dual-icon-pro { color: #8b5cf6; border-color: #8b5cf6; background: #f5f3ff; transform: rotate(5deg); }

.dual-card-pro h2 {
    font-size: 1.6rem; /* Scaled down to prevent text crowding */
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px; /* Reduced margin */
    line-height: 1.3;
    letter-spacing: -1px;
}

.feature-list-pro {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.feature-list-pro li {
    display: flex;
    align-items: flex-start;
    gap: 12px; /* Tighter gap */
    margin-bottom: 18px; /* Tighter list spacing */
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.feature-list-pro li iconify-icon {
    margin-top: 4px;
    flex-shrink: 0;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.card-perf-pro:hover .feature-list-pro li iconify-icon { color: #0066ff; }
.card-sec-pro:hover .feature-list-pro li iconify-icon { color: #8b5cf6; }

.status-light-detail {
    height: 6px; /* Slightly thinner */
    width: 80px;
    border-radius: 4px;
    background: rgba(148, 163, 184, 0.2); 
    margin-top: 25px; /* Tighter margin */
    align-self: flex-start;
}

.card-perf-pro:hover .status-light-detail { background: linear-gradient(90deg, #0066ff, #00d2ff); }
.card-sec-pro:hover .status-light-detail { background: linear-gradient(90deg, #8b5cf6, #ec4899); }

.tech-chip {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #ffffff;
    font-size: 11px; /* Slightly smaller text inside chips */
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-perf-pro .tech-chip { background: linear-gradient(90deg, #0284c7, #0ea5e9); }
.card-sec-pro .tech-chip { background: linear-gradient(90deg, #7c3aed, #a855f7); }

@media (max-width: 991px) {
    .dual-card-pro { padding: 35px 25px; }
    .card-watermark-pro { font-size: 60px; right: -20px; top: 10px; }
    .dual-card-pro h2 { font-size: 1.4rem; }
}

.pro-architecture-cta {
    /* Sophisticated off-white with engineering grid */
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.pro-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover states for the whole panel */
.pro-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
}
.panel-wp:hover { border-color: #0066ff; }
.panel-cloud:hover { border-color: #8b5cf6; }

/* The "Server Window" Header */
.panel-header {
    background: #fcfdfe;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.node-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.header-icon {
    font-size: 24px;
    color: #cbd5e1;
    transition: color 0.3s ease;
}
.panel-wp:hover .header-icon { color: #0066ff; }
.panel-cloud:hover .header-icon { color: #8b5cf6; }

/* Panel Body Content */
.panel-body {
    padding: 40px;
    flex-grow: 1;
    position: relative;
}

/* Faint abstract mesh inside the card */
.panel-body::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 50%;
    background-image: repeating-linear-gradient(45deg, rgba(226,232,240,0.2) 0, rgba(226,232,240,0.2) 1px, transparent 1px, transparent 10px);
    mask-image: linear-gradient(to left, rgba(0,0,0,1), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), transparent);
    z-index: -1;
    opacity: 0.5;
}

.panel-body h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.panel-wp h3 span {
    background: linear-gradient(90deg, #0066ff 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-cloud h3 span {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-body p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Technical Metric Chips */
.tech-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-metric {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tech-metric iconify-icon {
    font-size: 14px;
}

.panel-wp .tech-metric iconify-icon { color: #0066ff; }
.panel-cloud .tech-metric iconify-icon { color: #8b5cf6; }

/* Professional Action Footer */
.panel-footer {
    padding: 0 40px 40px;
    margin-top: auto;
}

.btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px; /* Harder, professional corners */
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* WP Button */
.btn-wp {
    background: #ffffff;
    color: #0066ff;
    border: 2px solid rgba(0, 102, 255, 0.2);
}
.btn-wp:hover, .panel-wp:hover .btn-wp {
    background: #0066ff;
    color: #ffffff;
    border-color: #0066ff;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Cloud Button */
.btn-cloud {
    background: #ffffff;
    color: #8b5cf6;
    border: 2px solid rgba(139, 92, 246, 0.2);
}
.btn-cloud:hover, .panel-cloud:hover .btn-cloud {
    background: #8b5cf6;
    color: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

@media (max-width: 991px) {
    .panel-body { padding: 30px; }
    .panel-footer { padding: 0 30px 30px; }
    .panel-body h3 { font-size: 1.75rem; }
}

.redivix-faq-area {
    /* 1. NEW: Cool Gray and Subtle Pattern Background */
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

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

.faq-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.faq-header h2 span {
    background: linear-gradient(90deg, #0066ff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.col-lg-3 {
    position: relative; 
    height: 100%; 
}

.faq-sidebar {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 20px 15px;
    
    /* ULTIMATE STICKY FIXES */
    position: -webkit-sticky !important; /* Safari support */
    position: sticky !important;
    top: 140px !important; /* Clears your site header */
    
    /* These properties stop the sidebar from stretching vertically 
       to match the FAQ list height, which breaks sticky. */
    align-self: flex-start;
    height: max-content; 
    
    /* Keeps it below your dropdown menus but above the page bg */
    z-index: 5; 
}

.faq-nav-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.faq-nav-btn iconify-icon {
    font-size: 20px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.faq-nav-btn:hover {
    background: rgba(241, 245, 249, 0.8);
    color: #0f172a;
}

/* Active Tab State */
.faq-nav-btn.active {
    background: #ffffff;
    color: #0066ff;
    border-left-color: #0066ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 0 12px 12px 0; /* Flat left edge against border */
}

.faq-nav-btn.active iconify-icon {
    color: #0066ff;
}

/* 3. Accordion Container (Right) */
.faq-content-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Customizing Bootstrap Accordion redivix-accordion */
.redivix-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    margin-bottom: 0;
}

.redivix-accordion .accordion-item:last-child {
    border-bottom: none;
}

.redivix-accordion .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 24px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    gap: 15px;
}

.redivix-accordion .accordion-button:not(.collapsed) {
    color: #0066ff;
}

/* Monospaced numbering for questions */
.redivix-accordion .question-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 600;
}
.accordion-button:not(.collapsed) .question-num {
    color: #0066ff;
}

/* Custom Animated Plus/Minus Icon */
.redivix-accordion .accordion-button::after {
    display: none; /* Hide default bootstrap arrow */
}

.faq-icon-toggle {
    margin-left: auto;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon-toggle::before, .faq-icon-toggle::after {
    content: '';
    position: absolute;
    background: #94a3b8;
    transition: all 0.3s ease;
}

.faq-icon-toggle::before { top: 11px; left: 0; width: 24px; height: 2px; }
.faq-icon-toggle::after { top: 0; left: 11px; width: 2px; height: 24px; }

/* Rotate to Minus when open */
.accordion-button:not(.collapsed) .faq-icon-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}
.accordion-button:not(.collapsed) .faq-icon-toggle::before {
    background: #0066ff;
}

.redivix-accordion .accordion-body {
    padding: 0 0 30px 0;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Footer */
.faq-footer {
    margin-top: 60px;
    text-align: center;
    font-size: 1.05rem;
    color: #64748b;
}

.faq-footer a {
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #0066ff;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.faq-footer a:hover {
    color: #0066ff;
}

@media (max-width: 991px) {
    .faq-sidebar { margin-bottom: 30px; display: flex; overflow-x: auto; padding: 10px; }
    .faq-nav-btn { white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; border-radius: 12px 12px 0 0; }
    .faq-nav-btn.active { border-left: none; border-bottom-color: #0066ff; }
    .faq-content-wrapper { padding: 30px 25px; }
    
    .path-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    
    .path-card {
        width: 100% !important;
        max-width: 400px; /* Keeps it from looking too stretched on tablets */
        margin: 0 auto;
    }

    .path-connector {
        /* Rotates the horizontal line to point downwards on mobile */
        transform: rotate(90deg);
        margin: 10px 0;    
    }
}



