/* ==========================================================================
   Axios-Inspired Advanced Features Design (V2 - High Polish)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand-primary: #7ebc12;
    /* Brand Lime Green */
    --brand-dark: #395e0e;
    /* Brand Deep Green */
    --brand-darker: #1a2e05;
    /* Brand Very Dark Green */
    --brand-gray: #f8fafc;
    --brand-soft: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background: #fff;
    color: var(--text-dark);
}

.features-modern-page {
    overflow-x: hidden;
}

/* --- Global Elements --- */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight-pill {
    background: var(--brand-primary);
    color: #000;
    padding: 3px 28px;
    border-radius: 100px;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9em;
    margin: 4px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.highlight-pill:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* --- 1. Advanced Hero (Axios Grid Style) --- */
.features-hero-advanced {
    background: var(--brand-darker) url('../images/hero-bg-2.png') center/cover no-repeat;
    color: #fff;
    padding: 140px 0 100px;
    position: relative;
    border-bottom: 2px solid var(--brand-dark);
}

.features-hero-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 46, 5, 0.9);
    /* Transparent dark overlay */
    z-index: 1;
}

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

.hero-layout h1 {
    font-size: 92px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 40px;
}

.hero-layout p {
    font-size: 22px;
    opacity: 0.7;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

/* --- 2. Scrolling Ticker --- */
.features-ticker {
    background: var(--brand-primary);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
}

.ticker-item i {
    font-size: 14px;
    color: var(--brand-darker);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- 3. Solutions Section (Asymmetric Layout) --- */
.solutions-section {
    padding: 80px 0;
    background: #fff;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 30px;
}

.header-inner-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--brand-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand-primary);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.header-inner-icon::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: var(--brand-primary);
    opacity: 0.1;
    transform: rotate(45deg);
}

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

.solution-visuals {
    position: relative;
    display: flex;
    gap: 30px;
}

.img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.img-box-lg {
    width: 65%;
}

.img-box-sm {
    width: 35%;
    margin-top: 120px;
}

.img-box img {
    width: 100%;
    height: auto;
    display: block;
}

.stamp-rotator {
    position: absolute;
    bottom: -30px;
    left: 45%;
    width: 140px;
    height: 140px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateSlow 10s linear infinite;
    z-index: 5;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- 4. Service Grid (Axios Cards) --- */
.service-grid-section {
    padding: 120px 0;
    background: var(--brand-gray);
}

.grid-title-area {
    margin-bottom: 80px;
}

.grid-title-area h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
}

.grid-title-area p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
}

.feature-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-axios-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-axios-card:hover {
    transform: translateY(-10px);
}

.feature-axios-card.black {
    background: #000;
    color: #fff;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(126, 188, 18, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--brand-primary);
    border: 1px solid rgba(126, 188, 18, 0.1);
    transition: 0.3s;
}

.feature-axios-card:hover .card-icon {
    background: var(--brand-primary);
    color: #000;
}

.feature-axios-card.black .card-icon {
    background: rgba(126, 188, 18, 0.1);
    color: var(--brand-primary);
    border: 1px solid rgba(126, 188, 18, 0.2);
}

.feature-axios-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

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

.axios-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
}

.feature-axios-card.black .axios-list li {
    color: rgba(255, 255, 255, 0.7);
}

.axios-list li i {
    color: var(--brand-primary);
}

.card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 18px;
    border-top-left-radius: 20px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-axios-card:hover .card-decoration {
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    color: #000;
}

.feature-axios-card.black .card-decoration {
    background: var(--brand-primary);
    color: #000;
}

.feature-axios-card.black:hover .card-decoration {
    background: #fff;
    color: #000;
}

/* --- Live Demo Performance Monitor --- */
.live-monitor-wrap {
    background: #0d1117;
    border-radius: 32px;
    padding: 40px;
    margin: 80px 0;
    border: 1px solid rgba(126, 188, 18, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-primary);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    box-shadow: 0 0 15px var(--brand-primary);
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

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

.server-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-terminal-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Performance Chart Visuals --- */
.performance-visual-wrap {
    background: var(--brand-gray);
    border-radius: 40px;
    padding: 60px;
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.chart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-bar-item {
    width: 100%;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

.chart-bar-bg {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: var(--brand-primary);
    border-radius: 100px;
    animation: fillBar 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.matrix-cell i.fa-check-circle {
    color: var(--brand-primary) !important;
    filter: drop-shadow(0 2px 4px rgba(126, 188, 18, 0.2));
}

.performance-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 5. Support Section --- */
.features-cta-split {
    padding: 100px 0;
    background: #fff;
}

.cta-box-advanced {
    background: var(--brand-darker) url('../images/hero-bg-1.png') center/cover no-repeat;
    border-radius: 60px;
    padding: 100px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--brand-dark);
}

.cta-box-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 5, 0.95) 0%, rgba(126, 188, 18, 0.1) 100%);
    z-index: 1;
}

.cta-text-l,
.cta-action-r {
    position: relative;
    z-index: 2;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-primary);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(126, 188, 18, 0.3);
    filter: brightness(1.1);
}

/* --- Performance Dashboard (Video-Style) --- */
.performance-dashboard {
    margin-top: 60px;
}

.perf-video-container {
    background: linear-gradient(135deg, #1a2e05 0%, #0d1a03 100%);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(126, 188, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.perf-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgba(126, 188, 18, 0.02) 50%, transparent 100%);
    background-size: 100% 200%;
    animation: scanLine 6s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes scanLine {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% -100%;
    }
}

.perf-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(126, 188, 18, 0.2);
}

.perf-status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.perf-live-dot {
    width: 12px;
    height: 12px;
    background: var(--brand-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--brand-primary);
    animation: perfPulse 2s infinite;
}

@keyframes perfPulse {

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

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

.perf-timestamp {
    font-family: 'Rajdhani', monospace;
    color: var(--brand-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.perf-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.perf-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(126, 188, 18, 0.15);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.perf-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(126, 188, 18, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.perf-metric-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: 0 20px 40px rgba(126, 188, 18, 0.2);
}

.perf-metric-card:hover::before {
    opacity: 1;
}

.perf-metric-icon {
    width: 60px;
    height: 60px;
    background: rgba(126, 188, 18, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--brand-primary);
    transition: all 0.4s;
}

.perf-metric-card:hover .perf-metric-icon {
    background: var(--brand-primary);
    color: #000;
    transform: rotate(360deg) scale(1.1);
}

.perf-metric-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: -1px;
}

.perf-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.perf-metric-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.perf-metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary) 0%, #9ed63a 100%);
    border-radius: 10px;
    animation: perfFillBar 2s ease-out forwards;
    box-shadow: 0 0 15px rgba(126, 188, 18, 0.5);
}

@keyframes perfFillBar {
    from {
        width: 0%;
    }
}

.perf-wave-container {
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: 30px;
}

.perf-wave {
    width: 100%;
    height: 100%;
}

.perf-wave-path {
    animation: perfWave 3s ease-in-out infinite;
}

@keyframes perfWave {

    0%,
    100% {
        d: path("M0,50 Q300,10 600,50 T1200,50 L1200,100 L0,100 Z");
    }

    50% {
        d: path("M0,50 Q300,90 600,50 T1200,50 L1200,100 L0,100 Z");
    }
}

/* ========== ESSENTIALS SECTION ========== */
.essentials-section {
    background: #fff;
    padding: 80px 0;
}

.essentials-title {
    text-align: center;
}

.essentials-tag {
    color: var(--brand-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.essentials-title h2 {
    font-size: 52px;
    font-weight: 800;
    margin-top: 0;
}

.text-brand {
    color: var(--brand-primary);
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.essential-card {
    padding: 40px;
    border: 1px solid var(--border-light);
    border-radius: 32px;
    transition: 0.4s;
    background: var(--brand-gray);
    position: relative;
    overflow: hidden;
}

.essential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.essential-icon {
    font-size: 40px;
    color: var(--brand-primary);
    margin-bottom: 25px;
    display: block;
}

.essential-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.essential-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

.essential-corner-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #000;
    border-top-left-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 14px;
}

/* ========== SOLUTION DETAILS ========== */
.solution-desc {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.stat-metrics {
    display: flex;
    gap: 60px;
}

.stat-item h3 {
    font-size: 52px;
    font-weight: 800;
    margin: 0;
}

.stat-item span {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-size: 13px;
}

/* ========== PERFORMANCE EXCELLENCE SECTION ========== */
.perf-excellence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.perf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.perf-badge-pill {
    background: var(--brand-primary);
    color: #000;
    font-weight: 800;
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 3px;
    display: inline-block;
    border-radius: 50px;
    text-transform: uppercase;
}

.perf-section-title {
    font-size: 58px;
    font-weight: 900;
    margin-top: 25px;
    line-height: 1.2;
}

.perf-section-desc {
    font-size: 20px;
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SPEC SECTION ========== */
.spec-section-wrap {
    margin-top: 30px;
}

.spec-section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Fix Icon Visibility */
.card-icon i,
.perf-metric-icon i,
.matrix-cell i {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-axios-card:hover .card-icon i {
    color: #000 !important;
}

.feature-axios-card.highlight .card-icon i,
.feature-axios-card.highlight-green .card-icon i {
    opacity: 1 !important;
}

/* Improved Spacing */
.service-grid-section {
    padding: 80px 0;
}

.grid-title-area {
    margin-bottom: 40px;
}

.feature-cards-wrap {
    gap: 40px;
}

.feature-axios-card {
    padding: 55px 45px;
}

.feature-axios-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.axios-list {
    margin-top: 30px;
}

.axios-list li {
    padding: 14px 0;
    font-size: 16px;
}

.axios-list li i {
    margin-right: 12px;
    font-size: 14px;
    opacity: 1 !important;
}

/* Enhanced CTA */
.cta-box-advanced {
    padding: 80px 70px;
    border-radius: 50px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-layout h1 {
        font-size: 72px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-cards-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .perf-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-layout h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .feature-cards-wrap {
        grid-template-columns: 1fr;
    }

    .perf-metrics-grid {
        grid-template-columns: 1fr;
    }

    .perf-video-container {
        padding: 30px 25px;
    }

    .perf-metric-value {
        font-size: 36px;
    }

    .cta-box-advanced {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 50px 30px;
    }

    .service-grid-section {
        padding: 80px 0;
    }

    .feature-axios-card {
        padding: 40px 30px;
    }
}

/* --- Advanced Spec Grid --- */
.advanced-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.spec-module {
    background: #fff;
    border: 1px solid rgba(126, 188, 18, 0.15);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.spec-module:hover {
    border-color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(126, 188, 18, 0.1);
}

.spec-module:hover .spec-icon-box {
    background: var(--brand-primary);
    color: #000;
}

.spec-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--brand-primary);
}

.spec-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-icon-box {
    width: 44px;
    height: 44px;
    background: var(--brand-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand-primary);
}

.spec-text h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: var(--brand-dark);
}

.spec-text span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--brand-primary);
    background: rgba(126, 188, 18, 0.05);
    padding: 5px 10px;
    border-radius: 50px;
}

.status-pulse {
    width: 5px;
    height: 5px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: simplePulse 1.5s infinite;
}

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

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

@media (max-width: 991px) {
    .advanced-spec-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Features Page - All Sections
   ========================================================================== */

/* ── TABLET (max-width: 991px) ─────────────────────────────────────────── */
@media (max-width: 991px) {

    /* Hero */
    .features-hero-advanced {
        padding: 100px 0 70px;
    }

    .hero-layout h1 {
        font-size: 60px;
        letter-spacing: -2px;
    }

    .hero-layout p {
        font-size: 18px;
    }

    /* Ticker */
    .ticker-item {
        font-size: 15px;
        padding: 0 30px;
    }

    /* Solution Section */
    .solutions-section {
        padding: 60px 0;
    }

    .solution-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .solution-header h2 {
        font-size: 28px;
    }

    .solution-visuals {
        max-width: 500px;
        margin: 0 auto;
    }

    .stamp-rotator {
        width: 100px;
        height: 100px;
        bottom: -20px;
    }

    .stamp-rotator i {
        font-size: 24px !important;
    }

    /* Stats */
    .stat-metrics {
        gap: 30px !important;
    }

    .stat-item h3 {
        font-size: 40px !important;
    }

    /* Live Monitor */
    .live-monitor-wrap {
        padding: 30px;
        border-radius: 24px;
        margin: 50px 0;
    }

    .monitor-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 25px;
    }

    /* Service Grid Section */
    .service-grid-section {
        padding: 60px 0;
    }

    .grid-title-area h2 {
        font-size: 38px;
    }

    /* Performance Dashboard */
    .perf-video-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 30px;
    }

    .perf-timestamp {
        font-size: 16px;
    }

    /* Essentials */
    .essentials-title h2 {
        font-size: 38px;
    }

    .essentials-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .essential-card {
        padding: 30px;
    }

    /* Solution Details */
    .solution-desc {
        font-size: 18px;
    }

    .stat-metrics {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 40px;
    }

    /* Perf Excellence */
    .perf-section-title {
        font-size: 42px;
    }

    .perf-section-desc {
        font-size: 17px;
    }

    .perf-badge-pill {
        padding: 10px 22px;
        font-size: 12px;
    }

    /* Spec Grid */
    .spec-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .spec-status {
        margin-left: 0;
    }
}

/* ── MOBILE (max-width: 768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Hero */
    .features-hero-advanced {
        padding: 80px 0 60px;
    }

    .hero-layout h1 {
        font-size: 42px;
        letter-spacing: -1px;
        line-height: 1.05;
    }

    .hero-layout p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .highlight-pill {
        padding: 2px 18px;
        font-size: 0.8em;
        margin: 2px;
    }

    /* Ticker */
    .features-ticker {
        padding: 16px 0;
    }

    .ticker-item {
        font-size: 13px;
        gap: 12px;
        padding: 0 20px;
    }

    /* Solutions */
    .solution-grid {
        gap: 40px;
    }

    .solution-visuals {
        gap: 15px;
    }

    .img-box-sm {
        margin-top: 60px;
    }

    .stamp-rotator {
        width: 80px;
        height: 80px;
        bottom: -15px;
        left: 35%;
    }

    .stamp-rotator i {
        font-size: 20px !important;
    }

    .stat-metrics {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .stat-item h3 {
        font-size: 36px !important;
    }

    .stat-item span {
        font-size: 12px !important;
    }

    /* Live Monitor */
    .live-monitor-wrap {
        padding: 20px;
        border-radius: 20px;
        margin: 40px 0;
    }

    .server-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-terminal-box {
        padding: 18px;
        border-radius: 14px;
    }

    .stat-terminal-box .stat-value {
        font-size: 28px;
    }

    .stat-terminal-box .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Feature Cards */
    .feature-axios-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .feature-axios-card h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .axios-list li {
        padding: 10px 0;
        font-size: 14px;
    }

    .card-decoration {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-top-left-radius: 15px;
    }

    /* Grid Title */
    .grid-title-area h2 {
        font-size: 30px;
    }

    .grid-title-area p {
        font-size: 15px;
    }

    /* Performance Dashboard */
    .perf-video-container {
        border-radius: 24px;
        padding: 20px 15px;
    }

    .perf-metric-card {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .perf-metric-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .perf-metric-value {
        font-size: 32px;
    }

    .perf-metric-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .perf-wave-container {
        height: 60px;
    }

    /* Spec Modules */
    .spec-module {
        padding: 18px;
        border-radius: 12px;
    }

    .spec-icon-box {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .spec-text h4 {
        font-size: 14px;
    }

    /* Performance Visual */
    .performance-visual-wrap {
        border-radius: 24px;
        padding: 25px;
        gap: 25px;
    }

    /* Essentials */
    .essentials-section {
        padding: 60px 0;
    }

    .essentials-title h2 {
        font-size: 28px;
    }

    .essentials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .essential-card {
        padding: 25px;
        border-radius: 20px;
    }

    .essential-icon {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .essential-title {
        font-size: 20px;
    }

    /* Solution Details */
    .solution-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .stat-metrics {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item span {
        font-size: 12px;
    }

    /* Perf Excellence */
    .perf-excellence-section {
        padding: 60px 0;
    }

    .perf-section-title {
        font-size: 32px;
    }

    .perf-section-desc {
        font-size: 15px;
    }

    .perf-badge-pill {
        padding: 8px 18px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .spec-section-title {
        font-size: 22px;
    }

    /* Section heading overrides */
    .service-grid-section .grid-title-area h2 {
        font-size: 30px !important;
    }

    /* CTA */
    .cta-box-advanced {
        border-radius: 30px;
        padding: 40px 20px;
    }

    .cta-text-l h2 {
        font-size: 28px;
    }

    .btn-modern {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ── SMALL MOBILE (max-width: 480px) ───────────────────────────────────── */
@media (max-width: 480px) {

    /* Hero */
    .features-hero-advanced {
        padding: 70px 0 50px;
    }

    .hero-layout h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-layout p {
        font-size: 14px;
    }

    .highlight-pill {
        padding: 2px 14px;
        font-size: 0.75em;
    }

    .btn-modern {
        padding: 12px 25px;
        font-size: 13px;
        border-radius: 40px;
    }

    /* Ticker */
    .ticker-item {
        font-size: 11px;
        padding: 0 15px;
        gap: 8px;
    }

    /* Solutions */
    .solution-visuals {
        flex-direction: column;
    }

    .img-box-lg,
    .img-box-sm {
        width: 100%;
        margin-top: 0;
    }

    .stamp-rotator {
        display: none;
    }

    .stat-item h3 {
        font-size: 30px !important;
    }

    /* Live Monitor */
    .server-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-terminal-box .stat-value {
        font-size: 24px;
    }

    /* Feature Cards */
    .feature-axios-card {
        padding: 25px 20px;
    }

    .feature-axios-card h3 {
        font-size: 20px;
    }

    .axios-list li {
        font-size: 13px;
    }

    /* Essentials */
    .essentials-title h2 {
        font-size: 24px;
    }

    .essential-card {
        padding: 20px;
    }

    .essential-title {
        font-size: 18px;
    }

    /* Perf Excellence */
    .perf-section-title {
        font-size: 26px;
    }

    .perf-section-desc {
        font-size: 14px;
    }

    .spec-section-title {
        font-size: 20px;
    }

    /* Grid Title */
    .grid-title-area h2 {
        font-size: 26px !important;
    }

    .grid-title-area p {
        font-size: 14px;
    }

    /* Performance Dashboard */
    .perf-video-container {
        padding: 15px 12px;
        border-radius: 18px;
    }

    .perf-metric-card {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .perf-metric-value {
        font-size: 28px;
    }

    .perf-metric-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .perf-wave-container {
        height: 40px;
        margin-top: 15px;
    }

    /* Spec Modules */
    .spec-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .spec-status {
        align-self: flex-start;
    }

    /* CTA */
    .cta-box-advanced {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .cta-text-l h2 {
        font-size: 24px;
    }

    .cta-text-l p {
        font-size: 14px;
    }
}