/* vCISO / Fractional CISO Page Styles - Shield Network Aesthetic */

/* Hero Section */
.vciso-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0d2e 50%, #0a0a0a 100%);
}

/* Shield Network Background */
.shield-network {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.shield-core {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shieldPulse 4s ease-in-out infinite;
}

.shield-core svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(81, 10, 148, 0.4));
}

@keyframes shieldPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(81, 10, 148, 0.4));
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(81, 10, 148, 0.7));
        transform: translate(-50%, -50%) scale(1.03);
    }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(81, 10, 148, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    animation-duration: 35s;
    animation-direction: reverse;
    border-color: rgba(81, 10, 148, 0.15);
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Network Nodes */
.network-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(81, 10, 148, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(81, 10, 148, 0.5);
    animation: nodeBlink 3s ease infinite;
}

.node-1 { top: 15%; left: 50%; animation-delay: 0s; }
.node-2 { top: 30%; left: 82%; animation-delay: 0.5s; }
.node-3 { top: 70%; left: 82%; animation-delay: 1s; }
.node-4 { top: 85%; left: 50%; animation-delay: 1.5s; }
.node-5 { top: 70%; left: 18%; animation-delay: 2s; }
.node-6 { top: 30%; left: 18%; animation-delay: 2.5s; }

@keyframes nodeBlink {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 16px rgba(81, 10, 148, 0.8); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.vciso-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 6px;
    text-shadow:
        0 0 10px rgba(81, 10, 148, 0.8),
        0 0 20px rgba(81, 10, 148, 0.5),
        0 0 40px rgba(81, 10, 148, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1;
}

@keyframes titleGlow {
    from {
        text-shadow:
            0 0 10px rgba(81, 10, 148, 0.8),
            0 0 20px rgba(81, 10, 148, 0.5),
            0 0 40px rgba(81, 10, 148, 0.3);
    }
    to {
        text-shadow:
            0 0 15px rgba(81, 10, 148, 1),
            0 0 30px rgba(81, 10, 148, 0.8),
            0 0 60px rgba(81, 10, 148, 0.5);
    }
}

.vciso-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(163, 116, 247, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #888888;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

/* Introduction */
.vciso-intro {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.vciso-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(81, 10, 148, 0.4), transparent);
}

.intro-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a374f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Challenge Section */
.vciso-challenge {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: linePulse 2s ease infinite;
}

@keyframes linePulse {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.challenge-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.25);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(81, 10, 148, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(81, 10, 148, 0.2);
}

.challenge-icon {
    width: 52px;
    height: 52px;
    background: rgba(81, 10, 148, 0.15);
    border: 1px solid rgba(81, 10, 148, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.challenge-card:hover .challenge-icon {
    background: rgba(81, 10, 148, 0.25);
    border-color: var(--accent);
}

.challenge-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.challenge-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0;
}

/* Differentiator Section */
.vciso-differentiator {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.diff-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.diff-visual {
    position: relative;
}

.diff-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.25);
}

.diff-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(81, 10, 148, 0.1);
    border: 1px solid rgba(81, 10, 148, 0.35);
    width: 100%;
    transition: all 0.3s ease;
}

.diff-node:hover {
    background: rgba(81, 10, 148, 0.2);
    border-color: var(--accent);
}

.diff-node svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    flex-shrink: 0;
}

.diff-node span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.diff-bridge {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
}

.bridge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(81, 10, 148, 0.3), rgba(81, 10, 148, 0.8));
}

.bridge-center {
    width: 50px;
    height: 50px;
    background: rgba(81, 10, 148, 0.25);
    border: 2px solid rgba(81, 10, 148, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: bridgePulse 2.5s ease infinite;
}

@keyframes bridgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(81, 10, 148, 0.5); }
    50% { box-shadow: 0 0 20px rgba(81, 10, 148, 0.6); }
}

.bridge-center svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.diff-text h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.diff-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.diff-points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
}

.diff-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-marker {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
    box-shadow: 0 0 8px rgba(81, 10, 148, 0.6);
}

.diff-point span {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Service Cards */
.vciso-services {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.vciso-service-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.25);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.vciso-service-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(81, 10, 148, 0.25);
}

.service-card-header {
    padding: 1.75rem;
    background: rgba(81, 10, 148, 0.1);
    border-bottom: 1px solid rgba(81, 10, 148, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.service-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: headerScan 4s linear infinite;
}

@keyframes headerScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vciso-service-card:hover .service-card-icon {
    background: rgba(81, 10, 148, 0.35);
    border-color: var(--accent);
}

.service-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.service-card-header h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.service-card-body {
    padding: 1.75rem;
}

.service-card-body p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card-body ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.service-card-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Engagement Model */
.vciso-engagement {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.engagement-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.25);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(81, 10, 148, 0.25);
}

.engagement-header {
    padding: 1.75rem 1.75rem 1.25rem;
    background: rgba(81, 10, 148, 0.1);
    border-bottom: 1px solid rgba(81, 10, 148, 0.25);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.engagement-icon {
    width: 48px;
    height: 48px;
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.engagement-card:hover .engagement-icon {
    background: rgba(81, 10, 148, 0.3);
    border-color: var(--accent);
}

.engagement-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.engagement-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    flex: 1;
    margin: 0;
}

.engagement-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
    background: rgba(81, 10, 148, 0.25);
    border: 1px solid rgba(81, 10, 148, 0.5);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.engagement-card p {
    padding: 1.5rem 1.75rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(81, 10, 148, 0.15);
}

.engagement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 1.75rem;
}

.eng-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    background: rgba(81, 10, 148, 0.1);
    border: 1px solid rgba(81, 10, 148, 0.3);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.engagement-card:hover .eng-tag {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(81, 10, 148, 0.2);
}

/* Value Section */
.vciso-value {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.value-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
}

.value-text-block h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.value-text-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-check {
    width: 24px;
    height: 24px;
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.value-check svg {
    width: 13px;
    height: 13px;
    color: var(--accent);
}

.value-item span {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.cost-comparison {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
}

.cost-comparison h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.cost-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cost-value {
    font-weight: 700;
    font-size: 1rem;
}

.cost-value.high {
    color: #888888;
}

.cost-value.low {
    color: var(--accent);
}

.cost-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(81, 10, 148, 0.4), transparent);
    margin: 0.25rem 0;
}

.cost-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 1rem;
    font-style: italic;
}

.industries-served {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.25);
    padding: 2rem;
}

.industries-served h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.ind-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    background: rgba(81, 10, 148, 0.1);
    border: 1px solid rgba(81, 10, 148, 0.35);
    color: var(--text-secondary);
    line-height: 1.3;
    transition: all 0.3s ease;
    cursor: default;
}

.ind-tag:hover {
    background: rgba(81, 10, 148, 0.2);
    border-color: var(--accent);
    color: var(--text-primary);
}

/* CTA Section */
.vciso-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0d2e 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.vciso-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(81, 10, 148, 0.08) 2px, transparent 3px),
        radial-gradient(circle at 80% 50%, rgba(81, 10, 148, 0.08) 2px, transparent 3px);
    background-size: 50px 50px;
    animation: ctaFloat 20s linear infinite;
}

@keyframes ctaFloat {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px -50px; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(81, 10, 148, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Navigation Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(81, 10, 148, 0.3);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(81, 10, 148, 0.2);
    color: var(--accent);
    padding-left: 1.5rem;
}

/* Logo Link Styles */
.logo a {
    color: inherit;
}

/* MSSP Section */
.vciso-mssp {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.vciso-mssp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(81, 10, 148, 0.4), transparent);
}

.mssp-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mssp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mssp-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.mssp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(81, 10, 148, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mssp-card:hover {
    border-color: rgba(81, 10, 148, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(81, 10, 148, 0.15);
}

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

.mssp-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(81, 10, 148, 0.1);
    border: 1px solid rgba(81, 10, 148, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.mssp-card:hover .mssp-card-icon {
    background: rgba(81, 10, 148, 0.2);
    border-color: var(--accent);
}

.mssp-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.mssp-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mssp-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .diff-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .vciso-hero {
        min-height: 55vh;
    }

    .vciso-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .vciso-subtitle {
        font-size: 1.2rem;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .mssp-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .shield-network {
        width: 300px;
        height: 300px;
    }

    .orbit-1 { width: 200px; height: 200px; }
    .orbit-2 { width: 280px; height: 280px; }

    .dropdown-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .vciso-title {
        font-size: 2.5rem;
    }

    .diff-diagram {
        padding: 1rem;
    }

    .cost-comparison,
    .industries-served {
        padding: 1.5rem;
    }
}
