/* Custom styles for ARMCYBERSEC Managed IT Services Framework */

/* ============================================================
   NEON COLOR VARIABLES (defined here so they always resolve)
   ============================================================ */
:root {
    --neon-emerald:      #00ff9c;
    --neon-emerald-glow: rgba(0, 255, 156, 0.35);
    --neon-blue:         #00d2ff;
    --neon-blue-glow:    rgba(0, 210, 255, 0.35);
    --neon-purple:       #c700ff;
    --neon-purple-glow:  rgba(199, 0, 255, 0.35);
    --neon-red:          #ff3838;
    --neon-red-glow:     rgba(255, 56, 56, 0.35);
    --neon-cyan:         #00ffd2;
    --neon-cyan-glow:    rgba(0, 255, 210, 0.35);
    --neon-gold:         #ffb800;
    --neon-gold-glow:    rgba(255, 184, 0, 0.35);
}

.it-support-page {
    position: relative;
    padding-bottom: 100px;
}

/* Page Header Customization */
.it-support-page .page-header {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(11, 15, 20, 0.8) 0%, rgba(11, 15, 20, 0) 100%);
    text-align: left;
    position: relative;
}

.it-support-page .page-header h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-bright);
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 156, 0.15);
    line-height: 1.25;
}

.it-support-page .page-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0;
    line-height: 1.6;
}

/* Back Button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--accent-green);
    transform: translateX(-4px);
}

/* Section Common */
.it-support-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.it-support-section:last-of-type {
    border-bottom: none;
}

.it-support-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}

.it-support-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-green);
    margin: 15px 0 0;
    box-shadow: 0 0 8px var(--accent-green);
}

.section-subtitle {
    text-align: left;
    color: var(--text-muted);
    font-size: 16px;
    max-width: 800px;
    margin: 15px 0 40px;
    line-height: 1.6;
}

/* Interactive Team Configurator */
.toggle-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.team-toggle {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 6px;
    position: relative;
}

.team-toggle button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-toggle button.active {
    color: #000;
    background: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green-glow);
}

/* Structure Layouts */
.structure-container {
    position: relative;
    min-height: 380px;
}

.structure-panel {
    display: none;
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.structure-panel.active {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Theme Colors and Neon Glow Definitions */
.card-emerald {
    --theme-color: #00ff9c;
    --theme-glow: rgba(0, 255, 156, 0.15);
    --theme-glow-intense: rgba(0, 255, 156, 0.25);
}
.card-blue {
    --theme-color: #00d2ff;
    --theme-glow: rgba(0, 210, 255, 0.15);
    --theme-glow-intense: rgba(0, 210, 255, 0.25);
}
.card-purple {
    --theme-color: #c700ff;
    --theme-glow: rgba(199, 0, 255, 0.15);
    --theme-glow-intense: rgba(199, 0, 255, 0.25);
}
.card-red {
    --theme-color: #ff3838;
    --theme-glow: rgba(255, 56, 56, 0.15);
    --theme-glow-intense: rgba(255, 56, 56, 0.25);
}
.card-cyan {
    --theme-color: #00ffd2;
    --theme-glow: rgba(0, 255, 210, 0.15);
    --theme-glow-intense: rgba(0, 255, 210, 0.25);
}
.card-gold {
    --theme-color: #ffb800;
    --theme-glow: rgba(255, 184, 0, 0.15);
    --theme-glow-intense: rgba(255, 184, 0, 0.25);
}

/* Interactive Cards Grid Layout */
.cyber-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.interactive-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(18, 22, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    overflow: hidden;
    backdrop-filter: var(--glass);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Colored top accent stripe — sales signal */
.interactive-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme-color);
    box-shadow: 0 0 12px var(--theme-glow);
    opacity: 0.9;
    transition: all 0.4s ease;
    z-index: 5;
}

.interactive-service-card:hover::before {
    height: 4px;
    opacity: 1;
    box-shadow: 0 0 20px var(--theme-color);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--theme-glow), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.interactive-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--theme-color);
    box-shadow: 0 20px 50px var(--theme-glow), 0 0 0 1px var(--theme-color);
    background: rgba(18, 22, 30, 0.85);
}

.interactive-service-card:hover .card-glow {
    opacity: 0.5;
}

/* Card Header elements */
.card-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    z-index: 2;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--theme-glow);
    border: 1px solid var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 20px;
    box-shadow: 0 0 14px var(--theme-glow);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.interactive-service-card:hover .card-icon {
    box-shadow: 0 0 25px var(--theme-color);
    transform: scale(1.08);
    background: rgba(0,0,0,0.3);
}

.card-title-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title-block h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-bright);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.interactive-service-card:hover .card-title-block h3 {
    color: var(--theme-color);
}

.card-title-block .badge {
    align-self: flex-start;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    background: var(--theme-glow);
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}

.card-desc {
    font-size: 14px;
    color: #b0bcc9;
    line-height: 1.65;
    margin-bottom: 20px;
    min-height: 64px;
    z-index: 2;
    transition: color 0.3s ease;
}

.interactive-service-card:hover .card-desc {
    color: #d0dae4;
}

/* Compact Embedded Visualizer Container */
.card-visualizer-box {
    position: relative;
    width: 100%;
    height: 130px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.card-visualizer-box .visualizer-wrapper {
    position: absolute;
    width: 217%;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.46);
    transform-origin: center center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    pointer-events: none;
}

/* Card checklist items */
.card-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    z-index: 2;
}

.card-checklist li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.card-checklist li i {
    color: var(--theme-color);
    font-size: 12px;
    margin-top: 3px;
    filter: drop-shadow(0 0 4px var(--theme-color));
}

.card-checklist li span {
    color: var(--text-bright);
}

/* Card Action Footer */
.card-action-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: auto;
    z-index: 2;
    position: relative;
}

/* Color theme mappings — explicit hex values as fallback to ensure visibility */
.card-emerald {
    --theme-color: #00ff9c;
    --theme-glow: rgba(0, 255, 156, 0.35);
    --theme-text: #000000;
}
.card-blue {
    --theme-color: #00d2ff;
    --theme-glow: rgba(0, 210, 255, 0.35);
    --theme-text: #000000;
}
.card-purple {
    --theme-color: #c700ff;
    --theme-glow: rgba(199, 0, 255, 0.35);
    --theme-text: #ffffff;
}
.card-red {
    --theme-color: #ff3838;
    --theme-glow: rgba(255, 56, 56, 0.35);
    --theme-text: #ffffff;
}
.card-cyan {
    --theme-color: #00ffd2;
    --theme-glow: rgba(0, 255, 210, 0.35);
    --theme-text: #000000;
}
.card-gold {
    --theme-color: #ffb800;
    --theme-glow: rgba(255, 184, 0, 0.35);
    --theme-text: #000000;
}

.tech-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Visualizer 1: Service Desk */
.vis-sd {
    align-items: flex-end;
}
.ticket-stream {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    animation: scrollStream 25s linear infinite;
    padding-bottom: 20px;
}
.ticket-line {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: rgba(0, 255, 156, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    gap: 8px;
}
.ticket-line .time { color: #888; }
.ticket-line .tag { padding: 0 4px; border-radius: 3px; font-size: 9px; font-weight: 700; color: #000; }
.ticket-line .tag.info { background: #00ff9c; }
.ticket-line .tag.warn { background: #ffb800; }
.ticket-line .tag.danger { background: #ff3838; }
.ticket-line .status { font-weight: 700; }
.ticket-line .status.ok { color: #00ff9c; }
.ticket-line .status.fail { color: #ff3838; }

/* Visualizer 2: Server Support */
.vis-sys {
    flex-direction: column;
    gap: 20px;
}
.server-rack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80%;
}
.rack-unit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.rack-unit .unit-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: 700;
    color: #00d2ff;
}
.rack-unit .leds {
    display: flex;
    gap: 6px;
}
.rack-unit .led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
}
.rack-unit .led.green { background: #27c93f; box-shadow: 0 0 6px #27c93f; }
.rack-unit .led.blue { background: #00d2ff; box-shadow: 0 0 6px #00d2ff; }
.rack-unit .led.blinking { animation: ledBlink 0.6s infinite alternate; }

.load-bars {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.load-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-family: 'Courier New', Courier, monospace;
    color: #888;
}
.load-item span { width: 30px; }
.load-item .bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}
.load-item .bar-fill {
    height: 100%;
    background: #00d2ff;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    animation: barPulse 2.5s infinite ease-in-out;
}

/* Visualizer 3: Network Support */
.vis-net {
    position: relative;
}
.network-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}
.net-node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(199, 0, 255, 0.1);
    border: 1px solid #c700ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c700ff;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(199,0,255,0.2);
    animation: floatNode 4s infinite ease-in-out;
}
.net-node span { font-size: 7px; margin-top: 4px; font-weight: 700; color: #888; }
.net-node.router { top: 20%; left: 20%; }
.net-node.switch { top: 50%; left: 55%; animation-delay: 1s; }
.net-node.client { top: 15%; right: 15%; animation-delay: 2s; }
.net-node.cloud-node { bottom: 15%; left: 15%; animation-delay: 3s; }

.link-line {
    position: absolute;
    background: rgba(199, 0, 255, 0.25);
    height: 2px;
    transform-origin: 0 0;
    z-index: 1;
}
.link-line.line-1 {
    width: 130px;
    top: 35%;
    left: 30%;
    transform: rotate(20deg);
}
.link-line.line-2 {
    width: 110px;
    top: 55%;
    left: 28%;
    transform: rotate(-35deg);
}
.link-line.line-3 {
    width: 120px;
    top: 30%;
    left: 62%;
    transform: rotate(-100deg);
}

/* Visualizer 4: Cybersecurity */
.vis-sec {
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.radar-scan {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 56, 56, 0.15);
    top: 15%;
    background: conic-gradient(from 0deg, rgba(255, 56, 56, 0.08) 0deg, transparent 180deg);
    animation: radarRotation 4s linear infinite;
}
.security-shield {
    margin-top: 25px;
    font-size: 40px;
    color: #ff3838;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255,56,56,0.4));
    animation: shieldGlow 2s infinite alternate;
}
.sec-logs {
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sec-log-line .status.ok { color: #00ff9c; }
.sec-log-line .status.fail { color: #ff3838; font-weight: 700; animation: blinkAlert 1s infinite alternate; }

/* Visualizer 5: Cloud Platforms */
.vis-cloud {
    flex-direction: column;
    gap: 25px;
}
.cloud-cluster {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cloud-orb {
    position: absolute;
    border: 1px solid rgba(0, 255, 210, 0.15);
    border-radius: 50%;
    animation: rotateOrb 10s linear infinite;
}
.cloud-orb.outer {
    width: 100px;
    height: 100px;
    border-top-color: #00ffd2;
}
.cloud-orb.middle {
    width: 70px;
    height: 70px;
    border-bottom-color: #00ffd2;
    animation-duration: 6s;
    animation-direction: reverse;
}
.cloud-orb.inner {
    width: 40px;
    height: 40px;
    border-left-color: #00ffd2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffd2;
    font-size: 14px;
}
.cluster-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: #00ffd2;
}

/* Visualizer 6: Consulting & DRP */
.vis-arch {
    flex-direction: column;
    justify-content: center;
}
.failover-map {
    display: flex;
    align-items: center;
    gap: 30px;
}
.failover-node {
    padding: 12px 18px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}
.failover-node.active {
    background: rgba(0, 255, 156, 0.1);
    border: 1px solid #00ff9c;
    color: #00ff9c;
    box-shadow: 0 0 10px rgba(0,255,156,0.2);
}
.failover-node.standby {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid #ffb800;
    color: #ffb800;
}
.sync-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 9px;
    color: #ffb800;
}
.sync-status i.spinning {
    font-size: 14px;
    animation: rotateOrb 2s linear infinite;
}

/* Card Corners */
.card-corners span {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--theme-color);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.card-corners span:nth-child(1) { top: 15px; left: 15px; border-right: 0; border-bottom: 0; }
.card-corners span:nth-child(2) { top: 15px; right: 15px; border-left: 0; border-bottom: 0; }
.card-corners span:nth-child(3) { bottom: 15px; left: 15px; border-right: 0; border-top: 0; }
.card-corners span:nth-child(4) { bottom: 15px; right: 15px; border-left: 0; border-top: 0; }

.interactive-service-card:hover .card-corners span {
    opacity: 0.7;
}

/* Animation Keyframes */
@keyframes techPulse {
    0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 6px var(--accent-green); }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px var(--accent-green); }
    100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 6px var(--accent-green); }
}

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

@keyframes scrollStream {
    0% { transform: translateY(0); }
    100% { transform: translateY(-70%); }
}

@keyframes ledBlink {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

@keyframes barPulse {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

@keyframes floatNode {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@keyframes radarRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shieldGlow {
    from { filter: drop-shadow(0 0 10px rgba(255,56,56,0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255,56,56,0.6)); }
}

@keyframes blinkAlert {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

@keyframes rotateOrb {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@media (max-width: 768px) {
    .cyber-cards-grid {
        grid-template-columns: 1fr;
    }
    .it-support-section {
        padding: 40px 0;
    }
    .it-support-section h2 {
        font-size: 26px;
    }
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* Service Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .org-chart.starter, .org-chart.optimal {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass);
    transition: var(--transition);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: var(--transition);
}

.package-card:hover {
    border-color: rgba(0, 255, 156, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 255, 156, 0.08);
    transform: translateY(-8px);
}

.package-card.popular {
    border-color: rgba(0, 255, 156, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 156, 0.03);
}

.package-card.popular::before {
    background: linear-gradient(90deg, var(--accent-green), #00d2ff);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-green);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 255, 156, 0.2);
}

.package-header {
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.package-target {
    font-size: 13px;
    color: var(--text-muted);
}

.package-price {
    margin-bottom: 25px;
}

.package-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1;
}

.package-price .period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.package-sla {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-sla i {
    color: var(--accent-green);
    font-size: 18px;
}

.package-sla div {
    display: flex;
    flex-direction: column;
}

.package-sla .sla-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-sla .sla-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    flex: 1;
}

.package-features li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.package-features li i {
    color: var(--accent-green);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-features li.plus-item {
    font-weight: 600;
    color: var(--text-bright);
}

.package-features li.plus-item i {
    color: #00d2ff;
}

/* International Practices Section */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .practices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .practices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.practice-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: var(--glass);
}

.practice-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 5px 20px rgba(0, 255, 156, 0.05);
    transform: translateY(-5px);
}

.practice-icon {
    font-size: 24px;
    color: var(--accent-green);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.2);
}

.practice-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.practice-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* World-class Checklist Grid */
.world-class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 960px) {
    .world-class-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.world-class-item {
    background: rgba(22, 27, 34, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.world-class-item:hover {
    border-color: rgba(0, 255, 156, 0.3);
    background: rgba(22, 27, 34, 0.8);
    transform: translateX(5px);
}

.world-class-checkmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 255, 156, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--transition);
}

.world-class-item:hover .world-class-checkmark {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 0 10px var(--accent-green-glow);
}

.world-class-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

/* 2026 Support Hub Styling */
#support-hub-2026 {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.4) 0%, rgba(10, 12, 16, 0.6) 100%);
    border-top: 1px solid var(--border-color);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

/* Left: Visual Card */
.hub-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: var(--glass);
}

.hub-visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 156, 0.3);
    box-shadow: 0 15px 40px rgba(0, 255, 156, 0.08);
}

.visual-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.visual-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hub-visual-card:hover .visual-frame img {
    transform: scale(1.05);
}

.visual-meta {
    position: relative;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 156, 0.08);
    border: 1px solid rgba(0, 255, 156, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-green);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ping-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: ping 1.5s infinite ease-in-out;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 255, 156, 0.7);
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
        box-shadow: 0 0 0 6px rgba(0, 255, 156, 0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(0, 255, 156, 0);
    }
}

.visual-meta h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.visual-meta p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Right: Channels List */
.hub-channels-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass);
}

.channel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: var(--transition);
}

.channel-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Specific Channel colors and hover effects */
.tg-item:hover {
    border-color: rgba(0, 136, 204, 0.4);
}
.tg-item::before {
    background: #0088cc;
}
.tg-item:hover .channel-icon {
    color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.2);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}

.wa-item:hover {
    border-color: rgba(37, 211, 102, 0.4);
}
.wa-item::before {
    background: #25d366;
}
.wa-item:hover .channel-icon {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.slack-item:hover {
    border-color: rgba(74, 21, 75, 0.4);
}
.slack-item::before {
    background: #4a154b;
}
.slack-item:hover .channel-icon {
    color: #e01e5a;
    background: rgba(224, 30, 90, 0.1);
    border-color: rgba(224, 30, 90, 0.2);
    box-shadow: 0 0 15px rgba(224, 30, 90, 0.2);
}

.voice-item:hover {
    border-color: rgba(168, 85, 247, 0.4);
}
.voice-item::before {
    background: #a855f7;
}
.voice-item:hover .channel-icon {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.channel-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.channel-body {
    flex: 1;
}

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 10px;
}

.channel-header h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-bright);
}

.status-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-badge.green {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.status-badge.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.channel-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsiveness for Support Hub */
@media (max-width: 992px) {
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .channel-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .channel-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Console Panel Pricing & Purchase Row */
.panel-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-bright);
}

.price-val small {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-console-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Solid bright background — always visible */
    background: var(--theme-color);
    color: #000000 !important;
    border: none;
    box-shadow: 0 4px 20px var(--theme-glow), 0 0 0 0 var(--theme-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none !important;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    animation: btnPulseGlow 2.5s infinite ease-in-out;
}

/* Shimmer effect on button */
.btn-console-order::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    animation: btnShimmer 3s infinite;
}

@keyframes btnShimmer {
    0%   { left: -75%; }
    60%  { left: 125%; }
    100% { left: 125%; }
}

@keyframes btnPulseGlow {
    0%, 100% { box-shadow: 0 4px 20px var(--theme-glow); }
    50%       { box-shadow: 0 4px 30px var(--theme-color), 0 0 40px var(--theme-glow); }
}

.btn-console-order i {
    font-size: 14px;
    color: #000000 !important;
    filter: none !important;
    flex-shrink: 0;
}

.btn-console-order:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px var(--theme-color);
    background: #ffffff;
    color: #000000 !important;
    animation: none;
}

.btn-console-order:hover i {
    color: #000000 !important;
}

@media (max-width: 576px) {
    .panel-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-console-order {
        width: 100%;
        justify-content: center;
    }
    
    .audit-badge-container {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* Free Offer Badge — redesigned for visibility */
.audit-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--theme-color);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-color);
    letter-spacing: 0.3px;
    box-shadow: 0 0 8px var(--theme-glow);
}

.audit-badge-container i {
    font-size: 15px;
    color: var(--theme-color);
    filter: drop-shadow(0 0 5px var(--theme-color));
}

/* Colors matching the console panel theme */
.panel-action-row.card-emerald .audit-badge-container i {
    color: var(--neon-emerald);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}
.panel-action-row.card-blue .audit-badge-container i {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}
.panel-action-row.card-purple .audit-badge-container i {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}
.panel-action-row.card-red .audit-badge-container i {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}
.panel-action-row.card-cyan .audit-badge-container i {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}
.panel-action-row.card-gold .audit-badge-container i {
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

/* Custom Styled Buttons for Package Cards */
.package-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    margin-top: auto; /* Push to bottom */
}

/* Standard Card Button (Neon Green/Emerald) */
.packages-grid .package-card:nth-child(1) .btn {
    background: var(--neon-emerald) !important;
    color: #000000 !important;
    border: 1px solid var(--neon-emerald) !important;
    box-shadow: 0 0 15px var(--neon-emerald-glow) !important;
}
.packages-grid .package-card:nth-child(1) .btn:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Pro Card Button (Neon Cyan/Blue Gradient) */
.packages-grid .package-card:nth-child(2) .btn {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue)) !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: 0 0 18px var(--neon-cyan-glow) !important;
}
.packages-grid .package-card:nth-child(2) .btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Enterprise Card Button (Neon Gold/Orange) */
.packages-grid .package-card:nth-child(3) .btn {
    background: var(--neon-gold) !important;
    color: #000000 !important;
    border: 1px solid var(--neon-gold) !important;
    box-shadow: 0 0 15px var(--neon-gold-glow) !important;
}
.packages-grid .package-card:nth-child(3) .btn:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}


