.elementor-14376 .elementor-element.elementor-element-a9a079d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-98f897c */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
            color: #e0e6ed;
            line-height: 1.7;
            min-height: 100vh;
        }

        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        
        /* Animated Background Particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 24s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 19s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 21s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 17s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 23s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 25s; }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .header {
            text-align: center;
            padding: 60px 20px;
            position: relative;
        }

        .header-badge {
            display: inline-block;
            background: linear-gradient(135deg, #d4af37, #f4cf67);
            color: #0a1628;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
        }

        .h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
        }

        .h1 span {
            color: #d4af37;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #8fa4c4;
            margin-bottom: 15px;
        }

        .threat-level {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid rgba(220, 53, 69, 0.5);
            padding: 10px 25px;
            border-radius: 30px;
            margin-top: 15px;
        }

        .threat-level::before {
            content: '';
            width: 12px;
            height: 12px;
            background: #dc3545;
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Navigation */
        .nav {
            background: rgba(26, 42, 74, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 30px;
            margin: 20px 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .nav a {
            color: #d4af37;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav a:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateY(-2px);
        }

        /* Section Cards */
        .section-card {
            background: linear-gradient(145deg, rgba(26, 42, 74, 0.9), rgba(10, 22, 40, 0.95));
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
        }

        h2 {
            color: #d4af37;
            font-size: 1.8rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        h2 .icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #d4af37, #f4cf67);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        h3 {
            color: #fff;
            font-size: 1.3rem;
            margin: 25px 0 15px;
        }

        /* Simulation Section */
        .simulation-container {
            background: linear-gradient(180deg, #050d18 0%, #0a1628 100%);
            border-radius: 15px;
            padding: 40px;
            position: relative;
            min-height: 500px;
            overflow: hidden;
        }

        .simulation-title {
            text-align: center;
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 30px;
            letter-spacing: 3px;
        }

        /* Supply Chain Visualization */
        .supply-chain {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            position: relative;
            flex-wrap: wrap;
            gap: 20px;
        }

        .chain-node {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .node-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            position: relative;
            animation: node-pulse 3s ease-in-out infinite;
        }

        .node-circle.supply-chain {
            background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
            border: 2px solid #4a6fa5;
        }

        .node-circle.trusted {
            background: linear-gradient(135deg, #2d5a3d, #3d6a4d);
            border: 2px solid #5a8f6a;
        }

        .node-circle.persistence {
            background: linear-gradient(135deg, #5a3d2d, #6a4d3d);
            border: 2px solid #8f6a5a;
        }

        .node-circle.espionage {
            background: linear-gradient(135deg, #5a1e1e, #6a2e2e);
            border: 2px solid #8f4a4a;
        }

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

        .node-label {
            font-size: 0.9rem;
            color: #8fa4c4;
            max-width: 120px;
        }

        /* Connection Lines */
        .connection-line {
            flex: 1;
            height: 3px;
            background: linear-gradient(90deg, #4a6fa5, #5a8f6a, #8f6a5a, #8f4a4a);
            position: relative;
            min-width: 50px;
        }

        .connection-line::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #d4af37;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: data-flow 2s ease-in-out infinite;
        }

        @keyframes data-flow {
            0% { left: 0%; opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { left: 100%; opacity: 0; }
        }

        /* Bear Silhouette */
        .bear-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 150px;
        }

        .bear {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .bear-body {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 60px;
            background: linear-gradient(135deg, #2a3a4a, #1a2a3a);
            border-radius: 40px 40px 30px 30px;
            animation: bear-breathe 4s ease-in-out infinite;
        }

        .bear-head {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 45px;
            background: linear-gradient(135deg, #3a4a5a, #2a3a4a);
            border-radius: 50% 50% 45% 45%;
        }

        .bear-ear {
            position: absolute;
            width: 18px;
            height: 18px;
            background: #3a4a5a;
            border-radius: 50%;
            top: -5px;
        }

        .bear-ear.left { left: 2px; }
        .bear-ear.right { right: 2px; }

        .bear-eye {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #d4af37;
            border-radius: 50%;
            top: 18px;
            animation: eye-glow 2s ease-in-out infinite;
        }

        .bear-eye.left { left: 12px; }
        .bear-eye.right { right: 12px; }

        @keyframes eye-glow {
            0%, 100% { box-shadow: 0 0 5px #d4af37; }
            50% { box-shadow: 0 0 15px #d4af37, 0 0 25px #d4af37; }
        }

        @keyframes bear-breathe {
            0%, 100% { transform: translateX(-50%) scaleY(1); }
            50% { transform: translateX(-50%) scaleY(1.05); }
        }

        /* Stealth Data Flow */
        .data-stream {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .data-packet {
            position: absolute;
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, transparent, #d4af37, transparent);
            opacity: 0;
            animation: stream 8s linear infinite;
        }

        .data-packet:nth-child(1) { left: 10%; animation-delay: 0s; }
        .data-packet:nth-child(2) { left: 25%; animation-delay: 2s; }
        .data-packet:nth-child(3) { left: 40%; animation-delay: 4s; }
        .data-packet:nth-child(4) { left: 55%; animation-delay: 1s; }
        .data-packet:nth-child(5) { left: 70%; animation-delay: 3s; }
        .data-packet:nth-child(6) { left: 85%; animation-delay: 5s; }

        @keyframes stream {
            0% { top: -20px; opacity: 0; }
            10% { opacity: 0.7; }
            90% { opacity: 0.7; }
            100% { top: 100%; opacity: 0; }
        }

        /* Attack Phase Labels */
        .phase-indicators {
            display: flex;
            justify-content: space-around;
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .phase {
            text-align: center;
            padding: 15px 20px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .phase:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
        }

        .phase-number {
            font-size: 1.5rem;
            color: #d4af37;
            font-weight: bold;
        }

        .phase-name {
            font-size: 0.85rem;
            color: #8fa4c4;
            margin-top: 5px;
        }

        /* SolarWinds Visualization */
        .solarwinds-viz {
            margin-top: 40px;
            padding: 30px;
            background: rgba(10, 22, 40, 0.8);
            border-radius: 15px;
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        .solarwinds-title {
            color: #dc3545;
            text-align: center;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .attack-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .attack-box {
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            font-size: 0.9rem;
            animation: box-appear 0.5s ease-out forwards;
            opacity: 0;
        }

        .attack-box:nth-child(1) { animation-delay: 0.2s; background: rgba(220, 53, 69, 0.2); border: 1px solid rgba(220, 53, 69, 0.5); }
        .attack-box:nth-child(3) { animation-delay: 0.4s; background: rgba(255, 193, 7, 0.2); border: 1px solid rgba(255, 193, 7, 0.5); }
        .attack-box:nth-child(5) { animation-delay: 0.6s; background: rgba(40, 167, 69, 0.2); border: 1px solid rgba(40, 167, 69, 0.5); }
        .attack-box:nth-child(7) { animation-delay: 0.8s; background: rgba(212, 175, 55, 0.2); border: 1px solid rgba(212, 175, 55, 0.5); }

        @keyframes box-appear {
            to { opacity: 1; }
        }

        .arrow {
            color: #d4af37;
            font-size: 1.5rem;
            animation: arrow-pulse 1s ease-in-out infinite;
        }

        @keyframes arrow-pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Why It Matters Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(26, 42, 74, 0.5));
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            color: #d4af37;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            color: #8fa4c4;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .link-list {
            list-style: none;
            margin: 20px 0;
        }

        .link-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .link-list a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .link-list a:hover {
            color: #f4cf67;
            text-decoration: underline;
        }

        /* Key Terms Section */
        .definition-box {
            background: linear-gradient(145deg, rgba(10, 22, 40, 0.8), rgba(26, 42, 74, 0.5));
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #d4af37;
            margin: 20px 0;
        }

        .definition-box p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .analogy-box {
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(26, 42, 74, 0.3));
            padding: 30px;
            border-radius: 15px;
            margin: 25px 0;
            position: relative;
        }

        .analogy-box::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(212, 175, 55, 0.2);
            font-family: Georgia, serif;
        }

        .analogy-title {
            color: #d4af37;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        /* Real-World Scenario */
        .scenario-container {
            position: relative;
        }

        .character-intro {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .character-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #2d4a6f, #1e3a5f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            border: 3px solid #d4af37;
            flex-shrink: 0;
        }

        .character-info h3 {
            margin: 0;
            color: #fff;
        }

        .character-info p {
            color: #8fa4c4;
            margin-top: 5px;
        }

        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #28a745, #ffc107, #dc3545);
        }

        .timeline-event {
            position: relative;
            padding: 20px 25px;
            background: rgba(26, 42, 74, 0.5);
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .timeline-event::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 25px;
            width: 12px;
            height: 12px;
            background: #d4af37;
            border-radius: 50%;
            border: 2px solid #0a1628;
        }

        .timeline-event.before { border-left: 3px solid #28a745; }
        .timeline-event.during { border-left: 3px solid #ffc107; }
        .timeline-event.after { border-left: 3px solid #dc3545; }

        .event-time {
            font-size: 0.85rem;
            color: #d4af37;
            margin-bottom: 10px;
        }

        /* Step-by-Step Guide */
        .steps-container {
            display: grid;
            gap: 20px;
        }

        .step {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(26, 42, 74, 0.5);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .step:hover {
            background: rgba(26, 42, 74, 0.8);
            transform: translateX(10px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4af37, #f4cf67);
            color: #0a1628;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .step-content ul {
            list-style: none;
            padding-left: 0;
        }

        .step-content li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
            color: #8fa4c4;
        }

        .step-content li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #d4af37;
        }

        /* Mistakes &amp; Best Practices */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 25px 0;
        }

        .comparison-card {
            padding: 25px;
            border-radius: 15px;
        }

        .comparison-card.mistakes {
            background: linear-gradient(145deg, rgba(220, 53, 69, 0.1), rgba(10, 22, 40, 0.8));
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        .comparison-card.best-practices {
            background: linear-gradient(145deg, rgba(40, 167, 69, 0.1), rgba(10, 22, 40, 0.8));
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .comparison-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comparison-card.mistakes h3 { color: #dc3545; }
        .comparison-card.best-practices h3 { color: #28a745; }

        .comparison-card ul {
            list-style: none;
            margin-top: 15px;
        }

        .comparison-card li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: 25px;
            position: relative;
        }

        .comparison-card.mistakes li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #dc3545;
        }

        .comparison-card.best-practices li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
        }

        /* Red Team vs Blue Team */
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .team-card {
            padding: 30px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .team-card.red-team {
            background: linear-gradient(145deg, rgba(220, 53, 69, 0.15), rgba(10, 22, 40, 0.9));
            border: 1px solid rgba(220, 53, 69, 0.4);
        }

        .team-card.blue-team {
            background: linear-gradient(145deg, rgba(0, 123, 255, 0.15), rgba(10, 22, 40, 0.9));
            border: 1px solid rgba(0, 123, 255, 0.4);
        }

        .team-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .team-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .team-card.red-team .team-icon { background: rgba(220, 53, 69, 0.3); }
        .team-card.blue-team .team-icon { background: rgba(0, 123, 255, 0.3); }

        .team-card.red-team h3 { color: #dc3545; }
        .team-card.blue-team h3 { color: #007bff; }

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

        .team-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-left: 20px;
            position: relative;
            color: #b8c5d6;
        }

        .team-list li::before {
            content: '•';
            position: absolute;
            left: 0;
        }

        .team-card.red-team .team-list li::before { color: #dc3545; }
        .team-card.blue-team .team-list li::before { color: #007bff; }

        /* Threat Hunter's Eye */
        .hunter-box {
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(10, 22, 40, 0.9));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 30px;
        }

        .hunter-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d4af37, #f4cf67);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .hunter-content {
            color: #b8c5d6;
        }

        .hunter-content ul {
            list-style: none;
            margin-top: 20px;
        }

        .hunter-content li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .hunter-content li::before {
            content: '👁';
            position: absolute;
            left: 0;
        }

        /* Call to Action */
        .cta-section {
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(10, 22, 40, 0.95));
            border-radius: 20px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate-bg 20s linear infinite;
        }

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

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

        .cta-title {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .cta-text {
            color: #b8c5d6;
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn.primary {
            background: linear-gradient(135deg, #d4af37, #f4cf67);
            color: #0a1628;
        }

        .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .cta-btn.secondary {
            background: transparent;
            border: 2px solid #d4af37;
            color: #d4af37;
        }

        .cta-btn.secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #8fa4c4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #d4af37;
        }

        .copyright {
            color: #5a6a7a;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .section-card { padding: 25px; }
            .supply-chain { flex-direction: column; }
            .connection-line { width: 3px; height: 50px; }
            .connection-line::after { animation: data-flow-v 2s ease-in-out infinite; }
            @keyframes data-flow-v {
                0% { top: 0; left: 50%; opacity: 0; }
                20% { opacity: 1; }
                80% { opacity: 1; }
                100% { top: 100%; left: 50%; opacity: 0; }
            }
            .step { flex-direction: column; text-align: center; }
            .step-number { margin: 0 auto; }
        }/* End custom CSS */