/* ========================================
   CSS Variables - Brand Colors
======================================== */
:root {
    /* Primary Brand Colors */
    --cyan-process: #00AEEF;
    --indigo-dye: #003952;
    --carrot-orange: #F49509;
    --upsdell-red: #AF062A;

    /* Extended Cyan Palette */
    --cyan-50: #e6f7fd;
    --cyan-100: #ccf0fc;
    --cyan-200: #99e1f9;
    --cyan-300: #66d2f5;
    --cyan-400: #33c3f2;
    --cyan-500: #00AEEF;
    --cyan-600: #008bbf;

    /* Extended Indigo Palette */
    --indigo-500: #005a7a;
    --indigo-600: #004a66;
    --indigo-700: #003952;
    --indigo-800: #002d42;
    --indigo-900: #001f2e;

    /* Neutral Colors */
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Semantic Colors */
    --primary: var(--upsdell-red);
    --primary-dark: #8f0523;
    --accent: var(--carrot-orange);
    --solution-managed: #14b8a6;
    --solution-cyber: #AF062A;
    --solution-ai: #84cc16;
    --solution-cloud: #3b82f6;
    --solution-assessments: #f59e0b;
    --solution-projects: #6366f1;
    --danger: var(--upsdell-red);
    --text-dark: var(--slate-800);
    --text-light: var(--slate-500);
    --text-muted: var(--slate-400);

    /* Typography */
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 6, 42, 0.3);
}

.btn-secondary {
    background: var(--slate-100);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--slate-200);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #8a0522;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 6, 42, 0.3);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--slate-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--solution-cyber);
    background: rgba(175, 6, 42, 0.1);
}

.nav-link.active {
    color: var(--solution-cyber);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-trigger svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    padding: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(175, 6, 42, 0.08);
}

.dropdown-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 10px;
    color: var(--cyan-600);
    transition: var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-icon {
    background: var(--cyan-process);
    color: white;
}

.dropdown-item-icon svg {
    width: 20px;
    height: 20px;
}

.dropdown-item-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.dropdown-item-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition-base);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(175, 6, 42, 0.08);
    color: var(--solution-cyber);
}

.mobile-nav-dropdown {
    display: none;
    padding-left: 16px;
}

.mobile-nav-dropdown.active {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-dropdown a {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-light);
    border-radius: 8px;
}

.mobile-nav-dropdown a:hover {
    background: var(--slate-50);
    color: var(--primary);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   Solution Hero Section - Security Theme
======================================== */
.solution-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 50%, #001a26 100%);
    overflow: hidden;
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(175, 6, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Shield/Security Network Mesh */
.solution-hero .hero-network {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.5;
}

.solution-hero .hero-network svg {
    width: 100%;
    height: 100%;
}

/* Shield path animation */
.shield-path {
    stroke: var(--cyan-400);
    stroke-width: 1;
    fill: none;
    opacity: 0.3;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawShield 3s ease-out forwards;
}

@keyframes drawShield {
    to { stroke-dashoffset: 0; }
}

.shield-fill {
    fill: rgba(0, 174, 239, 0.05);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scan-line {
    stroke: var(--cyan-400);
    stroke-width: 2;
    opacity: 0;
    animation: scanPulse 3s ease-in-out infinite;
}

@keyframes scanPulse {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 0.6; }
}

.threat-dot {
    fill: var(--upsdell-red);
    opacity: 0;
    animation: threatBlink 2s ease-in-out infinite;
}

.threat-dot:nth-child(1) { animation-delay: 0s; }
.threat-dot:nth-child(2) { animation-delay: 0.5s; }
.threat-dot:nth-child(3) { animation-delay: 1s; }

@keyframes threatBlink {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

.secure-dot {
    fill: #10b981;
    opacity: 0;
    animation: secureGlow 2s ease-in-out infinite;
}

@keyframes secureGlow {
    0%, 100% { opacity: 0.3; r: 3; }
    50% { opacity: 0.8; r: 5; }
}

/* Grid pattern */
.solution-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.solution-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-hero-content {
    max-width: 560px;
}

/* CyberWatch Badge */
.cyberwatch-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(175, 6, 42, 0.15);
    border: 1px solid rgba(175, 6, 42, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.cyberwatch-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cyberwatch-logo svg {
    width: 24px;
    height: 24px;
}

.cyberwatch-logo span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.cyberwatch-logo .cyber {
    color: var(--cyan-400);
}

.cyberwatch-logo .watch {
    color: white;
}

.cyberwatch-badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-300);
}

.solution-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.solution-hero h1 .highlight {
    color: var(--cyan-400);
}

.solution-hero h1 .highlight-danger {
    color: var(--upsdell-red);
}

.solution-hero-description {
    font-size: 18px;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 32px;
}

.solution-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Threat Stats Card */
.threat-stats-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.threat-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--upsdell-red), var(--cyan-process));
}

.threat-stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.threat-stats-header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.threat-stat-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.threat-stat-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.threat-stat-item.danger {
    border-color: rgba(175, 6, 42, 0.3);
    background: rgba(175, 6, 42, 0.1);
}

.threat-stat-item.success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

.threat-stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.threat-stat-item.danger .threat-stat-value {
    color: #f87171;
}

.threat-stat-item.success .threat-stat-value {
    color: #34d399;
}

.threat-stat-label {
    font-size: 13px;
    color: var(--slate-400);
}

/* ========================================
   Section Styles
======================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 100%);
    color: white;
}

.section-light {
    background: var(--slate-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cyan-50);
    color: var(--cyan-600);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-dark .section-label {
    background: rgba(0, 174, 239, 0.1);
    color: var(--cyan-400);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-dark .section-title {
    color: white;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.section-dark .section-description {
    color: var(--slate-300);
}

/* ========================================
   Threat Landscape Section
======================================== */
.threat-landscape-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.threat-landscape-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.threat-landscape-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.threat-list {
    list-style: none;
}

.threat-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--slate-200);
}

.threat-list li:last-child {
    border-bottom: none;
}

.threat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 10px;
    flex-shrink: 0;
}

.threat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--upsdell-red);
}

.threat-list h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.threat-list p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Solution visual */
.solution-visual {
    position: relative;
}

.solution-visual-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
}

.solution-visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-200);
}

.solution-visual-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan-process), var(--indigo-dye));
    border-radius: 14px;
}

.solution-visual-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.solution-visual-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.protection-layers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.protection-layer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--slate-50);
    border-radius: 12px;
    border-left: 4px solid var(--cyan-process);
    transition: var(--transition-base);
}

.protection-layer:hover {
    background: var(--cyan-50);
    border-left-color: var(--indigo-dye);
}

.protection-layer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.protection-layer-icon svg {
    width: 20px;
    height: 20px;
    color: var(--cyan-process);
}

.protection-layer span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ========================================
   CyberWatch Features Section
======================================== */
.cyberwatch-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Visual separator between feature groups */
.cyberwatch-features-grid .cyberwatch-feature-card:nth-child(4) {
    margin-bottom: 0;
}

.cyberwatch-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cyberwatch-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-process), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.cyberwatch-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 174, 239, 0.3);
    transform: translateY(-4px);
}

.cyberwatch-feature-card:hover::before {
    opacity: 1;
}

.cyberwatch-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.cyberwatch-feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--cyan-400);
}

.cyberwatch-feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.cyberwatch-feature-card p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 174, 239, 0.15);
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.feature-tag.included-flatfee {
    background: rgba(244, 149, 9, 0.15);
    color: var(--carrot-orange);
}

.feature-tag.add-on {
    background: rgba(148, 163, 184, 0.15);
    color: var(--slate-300);
}

/* ========================================
   Pricing Plans Section
======================================== */
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-plan {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid var(--slate-200);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    border-color: var(--cyan-300);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured {
    border-color: var(--cyan-process);
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 174, 239, 0.15);
}

.pricing-plan.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--cyan-process);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
}

.pricing-plan-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-200);
    margin-bottom: 24px;
}

.pricing-plan-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-plan-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-plan-features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.pricing-plan-features ul {
    list-style: none;
}

.pricing-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.pricing-plan-features li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-plan-features .feature-description {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

.pricing-plan-features .plus-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan-process);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plan-features .plus-divider::before,
.pricing-plan-features .plus-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-200);
}

.pricing-plan .btn {
    width: 100%;
}

/* ========================================
   Why External Security Section
======================================== */
.why-external-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-external-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.why-external-card:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.why-external-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-50);
    border-radius: 14px;
    margin-bottom: 20px;
}

.why-external-icon svg {
    width: 28px;
    height: 28px;
    color: var(--cyan-process);
}

.why-external-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-external-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Compliance Section
======================================== */
.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition-base);
}

.compliance-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 174, 239, 0.3);
}

.compliance-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 12px;
}

.compliance-badge-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cyan-400);
}

.compliance-badge span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* ========================================
   Related Solutions Section
======================================== */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    border-color: var(--cyan-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.related-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-50);
    border-radius: 12px;
    margin-bottom: 20px;
}

.related-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--cyan-process);
}

.related-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan-process);
}

.related-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.related-card:hover .related-card-link svg {
    transform: translateX(4px);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-dye) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(175, 6, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: var(--slate-300);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--indigo-900);
    color: var(--slate-400);
}

.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--indigo-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(160px, 1fr));
    gap: 48px;
}

.footer-brand {
    max-width: 280px;
    min-width: 0;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--indigo-800);
    border-radius: 10px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--cyan-600);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--cyan-400);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--cyan-process);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 15px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--slate-500);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--cyan-400);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1024px) {
    .solution-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .threat-stats-card {
        max-width: 500px;
    }

    .threat-landscape-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .why-external-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .nav-main,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .solution-hero {
        padding: 140px 0 80px;
    }

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

    .compliance-badges {
        gap: 16px;
    }

    .compliance-badge {
        padding: 16px 24px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 1;
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .solution-hero-actions {
        flex-direction: column;
    }

    .solution-hero-actions .btn {
        width: 100%;
    }

    .threat-stat-items {
        grid-template-columns: 1fr;
    }

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

    .cta-actions .btn {
        width: 100%;
    }

    .cyberwatch-badge {
        flex-direction: column;
        text-align: center;
    }
}



/* Solution dropdown colors */
.dropdown-item.managed .dropdown-item-icon {
    background: rgba(20, 184, 166, 0.18);
}

.dropdown-item.managed .dropdown-item-icon svg {
    color: var(--solution-managed);
}

.dropdown-item.managed:hover .dropdown-item-icon {
    background: var(--solution-managed);
}

.dropdown-item.managed:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.cyber .dropdown-item-icon {
    background: rgba(175, 6, 42, 0.18);
}

.dropdown-item.cyber .dropdown-item-icon svg {
    color: var(--solution-cyber);
}

.dropdown-item.cyber:hover .dropdown-item-icon {
    background: var(--solution-cyber);
}

.dropdown-item.cyber:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.ai .dropdown-item-icon {
    background: rgba(132, 204, 22, 0.18);
}

.dropdown-item.ai .dropdown-item-icon svg {
    color: var(--solution-ai);
}

.dropdown-item.ai:hover .dropdown-item-icon {
    background: var(--solution-ai);
}

.dropdown-item.ai:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.cloud .dropdown-item-icon {
    background: rgba(59, 130, 246, 0.18);
}

.dropdown-item.cloud .dropdown-item-icon svg {
    color: var(--solution-cloud);
}

.dropdown-item.cloud:hover .dropdown-item-icon {
    background: var(--solution-cloud);
}

.dropdown-item.cloud:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.assessments .dropdown-item-icon {
    background: rgba(245, 158, 11, 0.18);
}

.dropdown-item.assessments .dropdown-item-icon svg {
    color: var(--solution-assessments);
}

.dropdown-item.assessments:hover .dropdown-item-icon {
    background: var(--solution-assessments);
}

.dropdown-item.assessments:hover .dropdown-item-icon svg {
    color: white;
}

.dropdown-item.projects .dropdown-item-icon {
    background: rgba(99, 102, 241, 0.18);
}

.dropdown-item.projects .dropdown-item-icon svg {
    color: var(--solution-projects);
}

.dropdown-item.projects:hover .dropdown-item-icon {
    background: var(--solution-projects);
}

.dropdown-item.projects:hover .dropdown-item-icon svg {
    color: white;
}





