/* GEM Enterprise - Modern 2025 Website Patterns */

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: auto;
}

/* Modern Hero Section - Full Page Pattern */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(145deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-card) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

/* Animated Background Effects */
.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(6, 102, 204, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    animation: float-particles 20s ease-in-out infinite;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-orbs::before,
.gradient-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-orbs 15s ease-in-out infinite;
}

.gradient-orbs::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: -5s;
}

.gradient-orbs::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--success-color) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-delay: -10s;
}

/* Modern Hero Content */
.hero-content-modern {
    position: relative;
    z-index: 2;
    padding: 2rem 3rem;
    max-width: 100%;
}

.hero-badge-container {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(6, 102, 204, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(6, 102, 204, 0.3);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title-modern .title-line-1,
.hero-title-modern .title-line-2,
.hero-title-modern .title-line-3 {
    display: block;
    animation: slide-up 0.8s ease-out;
}

.hero-title-modern .title-line-1 {
    color: var(--text-primary);
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-title-modern .title-line-2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.hero-title-modern .title-line-3 {
    color: var(--text-secondary);
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.hero-description-modern {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
    animation: slide-up 0.8s ease-out 0.8s both;
}

/* Interactive Metrics Grid */
.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slide-up 0.8s ease-out 1s both;
}

.metric-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--success-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-light);
    box-shadow: 0 8px 32px rgba(6, 102, 204, 0.2);
}

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

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.metric-symbol {
    font-size: 1.25rem;
    color: var(--text-accent);
    font-weight: 600;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Strategic CTAs */
.hero-cta-section {
    animation: slide-up 0.8s ease-out 1.2s both;
}

.primary-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(6, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(6, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cta-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cta-text small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-1px);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--success-color);
}

/* Hero Visual - Interactive Dashboard */
.hero-visual-modern {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    max-width: 600px;
    width: 100%;
    animation: slide-in-right 1s ease-out 0.5s both;
}

.dashboard-header-modern {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left h6 {
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.active,
.control-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.dashboard-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.6) 0%, rgba(55, 65, 81, 0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.dashboard-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dashboard-card .card-header h6 {
    margin: 0;
    font-weight: 600;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.secure {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.monitoring {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Threat Detection Visualizations */
.threat-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--danger-color) 0%, #f87171 100%);
    border-radius: 2px;
    animation: grow-bar 1s ease-out;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.chart-bar:hover {
    opacity: 1;
}

.chart-bar[data-value="85"] { height: 85%; animation-delay: 0.1s; }
.chart-bar[data-value="72"] { height: 72%; animation-delay: 0.2s; }
.chart-bar[data-value="94"] { height: 94%; animation-delay: 0.3s; }
.chart-bar[data-value="68"] { height: 68%; animation-delay: 0.4s; }

.threat-stats {
    display: flex;
    gap: 2rem;
}

.threat-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.threat-stats .stat strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.threat-stats .stat small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Network Topology */
.network-topology {
    position: relative;
    height: 80px;
    margin-bottom: 1rem;
}

.node {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-node {
    background: var(--success-color);
    color: white;
    font-size: 0.8rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.client-node {
    background: var(--info-color);
    border: 2px solid var(--bg-card);
    width: 12px;
    height: 12px;
}

.node-1 { top: 10%; left: 20%; animation: pulse-node 2s ease-in-out infinite; }
.node-2 { top: 70%; left: 25%; animation: pulse-node 2s ease-in-out infinite 0.5s; }
.node-3 { top: 30%; right: 15%; animation: pulse-node 2s ease-in-out infinite 1s; }

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--success-color), var(--info-color));
    opacity: 0.6;
    animation: pulse-connection 3s ease-in-out infinite;
}

.con-1 {
    width: 30%;
    top: 35%;
    left: 32%;
    transform: rotate(-20deg);
    animation-delay: 0s;
}

.con-2 {
    width: 25%;
    top: 65%;
    left: 37%;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.con-3 {
    width: 28%;
    top: 42%;
    right: 27%;
    transform: rotate(15deg);
    animation-delay: 2s;
}

.network-stats {
    display: flex;
    justify-content: space-between;
}

.stat-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stat-row strong {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Asset Protection Progress Circle */
.asset-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 80px;
}

.circle-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 2;
}

.circle {
    fill: none;
    stroke-width: 2;
    stroke: var(--warning-color);
    stroke-linecap: round;
    animation: progress-fill 2s ease-out;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.asset-details {
    display: flex;
    justify-content: space-between;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: fade-in 2s ease-out 2s both;
}

.scroll-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

/* Modern Services Section */
.modern-services-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    position: relative;
}

.modern-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(6, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-modern {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(6, 102, 204, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(6, 102, 204, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title-modern {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
}

.header-cta {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-modern-outline:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(6, 102, 204, 0.2);
}

/* Dynamic Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card-modern {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.primary-card {
    grid-row: 1 / 3;
    position: relative;
}

.primary-card .card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    transition: opacity 0.3s ease;
}

.primary-card:hover .card-background {
    opacity: 0.1;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, var(--primary-color) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--success-color) 0%, transparent 50%);
}

.service-card-modern .card-content {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.secondary-card .card-content {
    padding: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 32px rgba(6, 102, 204, 0.3);
}

.service-icon-modern.telegram-icon {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.service-icon-modern.realestate-icon {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--info-color) 100%);
}

.service-icon-modern.recovery-icon {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--danger-color) 100%);
}

.service-meta {
    text-align: right;
}

.service-category {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--warning-color);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.secondary-card .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary-card .service-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(6, 102, 204, 0.1);
    border: 1px solid rgba(6, 102, 204, 0.3);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-stats .stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.service-stats .stat .unit {
    font-size: 1rem;
    color: var(--text-accent);
}

.service-stats .stat small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(6, 102, 204, 0.3);
    margin-top: auto;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(6, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.highlight i {
    color: var(--success-color);
    width: 16px;
}

.btn-service-minimal {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service-minimal:hover {
    color: var(--primary-light);
    text-decoration: none;
    transform: translateX(4px);
}

/* Animations */
@keyframes float-particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

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

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(6, 102, 204, 0.3); }
    50% { box-shadow: 0 0 30px rgba(6, 102, 204, 0.5); }
}

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes grow-bar {
    from { height: 0; }
}

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

@keyframes pulse-connection {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes progress-fill {
    0% { stroke-dasharray: 0 100; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Counter Animation */
@keyframes counter-animate {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design - Mobile First */
@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .primary-card {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content-modern {
        padding: 1rem 1.5rem;
    }

    .hero-title-modern {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .hero-description-modern {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .primary-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary {
        justify-content: center;
        width: 100%;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-visual-modern {
        height: auto;
        padding: 1rem;
        margin-top: 2rem;
    }

    .dashboard-container {
        max-width: 100%;
    }

    .dashboard-header-modern {
        padding: 1rem 1.5rem;
    }

    .dashboard-controls {
        flex-wrap: wrap;
    }

    .dashboard-grid {
        padding: 1.5rem;
    }

    .security-operations-preview {
        margin-bottom: 2rem;
    }

    .operations-image-container {
        height: 200px;
    }

    .real-time-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .primary-card {
        grid-column: 1;
        grid-row: auto;
    }

    .section-header-modern {
        margin-bottom: 3rem;
    }

    .header-cta {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* Enterprise Stats Section */
.enterprise-stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    position: relative;
}

.enterprise-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.primary-stat {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-visual {
    flex-shrink: 0;
}

.chart-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.ring-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: var(--success-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--percent)) / 100);
    animation: ring-fill 2s ease-out;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.chart-unit {
    font-size: 1.2rem;
    color: var(--text-accent);
}

.chart-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stat-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-point i {
    color: var(--success-color);
    width: 16px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.stat-trend.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.stat-value {
    margin-bottom: 0.5rem;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.value-unit {
    font-size: 1.5rem;
    color: var(--text-accent);
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Modern Testimonials Section */
.modern-testimonials-section {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description-centered {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(6, 102, 204, 0.1) 0%, rgba(17, 24, 39, 0.9) 100%);
    border-color: rgba(6, 102, 204, 0.3);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.client-info h5,
.client-info h6 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.client-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: var(--warning-color);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.testimonial-metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.testimonial-metrics .metric {
    text-align: center;
    flex: 1;
}

.testimonial-metrics .metric strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-metrics .metric span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Modern CTA Section */
.modern-cta-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.cta-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(6, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.cta-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0.1;
    animation: float-icons 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-feature i {
    color: var(--success-color);
    font-size: 1.1rem;
    width: 20px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.primary-cta-container {
    margin-bottom: 1rem;
}

.cta-primary-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(6, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.cta-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.cta-primary-large:hover::before {
    left: 100%;
}

.cta-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(6, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.cta-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-text-large {
    flex: 1;
}

.cta-text-large strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.cta-text-large small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-arrow-large {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-primary-large:hover .cta-arrow-large {
    transform: translateX(6px);
}

.secondary-cta-container {
    display: flex;
    gap: 1rem;
}

.cta-secondary-large,
.cta-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary-large {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.cta-secondary-large:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-tertiary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.cta-tertiary:hover {
    border-color: var(--success-color);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-icon-small {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Additional Animations */
@keyframes ring-fill {
    0% { stroke-dashoffset: 283; }
}

@keyframes float-icons {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Security Operations Center Image Styles */
.security-operations-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.operations-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.operations-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.operations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(6, 102, 204, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.operations-image-container:hover .operations-image {
    transform: scale(1.05);
}

.operations-image-container:hover .operations-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.status-badge-overlay {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.pulse-dot-overlay {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.real-time-metrics {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.metric-overlay {
    text-align: center;
}

.metric-overlay strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-overlay small {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1200px) {
    .stats-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .primary-stat {
        grid-column: 1 / 3;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .testimonial-card.featured {
        grid-column: 1 / 3;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .enterprise-stats-section,
    .modern-testimonials-section,
    .modern-cta-section {
        padding: 4rem 0;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .primary-stat {
        grid-column: 1;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .stat-card-modern {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card.featured {
        grid-column: 1;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-features-grid {
        grid-template-columns: 1fr;
    }

    .secondary-cta-container {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-trust-signals {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content-modern {
        padding: 1rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .service-card-modern .card-content {
        padding: 1.5rem;
    }

    .secondary-card .card-content {
        padding: 1.5rem;
    }

    .cta-primary-large {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-text-large strong {
        font-size: 1.1rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Service Media Gallery Styles */
.service-media-gallery {
    margin: 1.5rem 0;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.service-media-gallery.compact {
    padding: 1rem;
}

/* Media Tabs */
.media-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 8px;
    padding: 0.25rem;
}

.media-tab {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-tab.active,
.media-tab:hover {
    background: var(--primary-color);
    color: white;
}

/* Media Content */
.media-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fade-in-up 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

.media-frame {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

/* Dashboard Preview */
.dashboard-preview .dashboard-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.threat-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--success-color);
}

.threat-indicator.active .indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.threat-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
    padding: 1rem;
    background: rgba(6, 102, 204, 0.05);
    border-radius: 6px;
}

.chart-bar {
    flex: 1;
    background: var(--border-color);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.chart-bar[data-threat="low"] {
    height: 30%;
    background: var(--success-color);
}

.chart-bar[data-threat="medium"] {
    height: 60%;
    background: var(--warning-color);
}

.chart-bar[data-threat="critical"] {
    height: 20%;
    background: var(--danger-color);
}

.threat-stats {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Video Placeholder */
.video-placeholder {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.7) 100%);
    border-radius: 8px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(6, 102, 204, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-overlay {
    text-align: center;
    color: var(--text-primary);
    z-index: 2;
    position: relative;
}

.video-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-overlay i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.video-overlay span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-overlay small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Bot Interface Preview */
.bot-interface-preview {
    background: linear-gradient(145deg, rgba(0, 136, 204, 0.1) 0%, rgba(17, 24, 39, 0.8) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 136, 204, 0.3);
    overflow: hidden;
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 136, 204, 0.2);
    border-bottom: 1px solid rgba(0, 136, 204, 0.3);
}

.bot-header i {
    color: #0088cc;
    font-size: 1.2rem;
}

.bot-header span {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.bot-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s infinite;
}

.bot-conversation {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bot-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.8rem;
}

.bot-message span {
    color: var(--text-secondary);
}

.bot-message small {
    color: var(--success-color);
    font-weight: 600;
}

/* Property Showcase */
.property-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-image-placeholder {
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(17, 24, 39, 0.8) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.image-overlay {
    text-align: center;
    color: var(--text-primary);
}

.image-overlay i {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.image-overlay span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.property-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Forensics Showcase */
.forensics-showcase {
    padding: 1rem;
}

.forensics-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recovery-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.recovery-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--success-color) 100%);
    z-index: 1;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.flow-step.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.flow-step i {
    font-size: 1.2rem;
}

.flow-step span {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    white-space: nowrap;
    color: var(--text-muted);
}

.recovery-stats {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Media Actions */
.media-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.media-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(6, 102, 204, 0.1);
    border: 1px solid rgba(6, 102, 204, 0.3);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-action-btn:hover {
    background: rgba(6, 102, 204, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-light);
}

/* Enhanced Service Cards */
.service-card.multimedia-enhanced {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.service-card.multimedia-enhanced:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-media-preview {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.media-preview-actions {
    margin-top: 1rem;
    text-align: center;
}

.preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 102, 204, 0.1);
    border: 1px solid rgba(6, 102, 204, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Legal Document Preview */
.legal-document-preview {
    padding: 1rem;
}

.document-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.document-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

/* Portfolio Chart Preview */
.portfolio-chart-preview {
    padding: 1rem;
    text-align: center;
}

.chart-visualization {
    position: relative;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 102, 204, 0.05) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.chart-line-animation {
    position: relative;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--success-color) 0%, var(--primary-color) 100%);
    border-radius: 1px;
}

.growth-indicator {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.growth-indicator::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--success-color);
}

/* Partnership Network */
.partnership-network {
    padding: 1rem;
}

.network-visualization {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.network-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.network-node.central {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.network-node.partner:hover {
    border-color: var(--success-color);
    color: var(--text-primary);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .service-media-gallery {
        padding: 1rem;
    }

    .media-tabs {
        flex-direction: column;
    }

    .media-actions {
        flex-direction: column;
    }

    .property-stats {
        grid-template-columns: 1fr;
    }

    .recovery-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .recovery-flow::before {
        display: none;
    }

    .network-visualization {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .service-card.multimedia-enhanced {
        padding: 1.5rem;
    }
}

/* Enhanced image styles */
.security-preview {
    position: relative;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.security-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.security-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.security-preview:hover .security-image {
    transform: scale(1.05);
}

.security-preview:hover .security-overlay {
    transform: translateY(0);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.executive-headshot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin: 0 auto;
    display: block;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

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