:root {
    --cyber-cyan: #00ffff;
    --cyber-cyan-glow: rgba(0, 255, 255, 0.8);
    --cyber-dark: #0a0a0a;
    --cyber-darker: #000000;
    --cyber-steel: #8b9da9;
    --cyber-steel-light: #b8c5cf;
    --cyber-teal: #0d3d3d;
    --cyber-accent: #00cccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--cyber-darker);
    color: var(--cyber-steel-light);
    overflow-x: hidden;
    position: relative;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--cyber-cyan-glow) 0%, transparent 70%);
    opacity: 0.08;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.05); }
}

.shield-logo-hero {
    width: 400px;
    height: 400px;
    margin-bottom: 2rem;
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px var(--cyber-cyan-glow)) drop-shadow(0 0 80px rgba(0, 255, 255, 0.4));
}

.shield-logo-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--cyber-steel-light);
    text-shadow: 0 0 20px var(--cyber-cyan), 0 0 40px var(--cyber-cyan-glow);
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan-glow);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.cta-button {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--cyber-accent) 100%);
    color: var(--cyber-darker);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px var(--cyber-cyan-glow), 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--cyber-cyan), 0 8px 30px rgba(0, 0, 0, 0.6);
}

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

.shield-transition {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shield-logo-secondary {
    width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--cyber-cyan-glow));
    animation: circuitPulse 4s ease-in-out infinite;
}

.shield-logo-secondary img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes circuitPulse {
    0%, 100% { filter: drop-shadow(0 0 30px var(--cyber-cyan-glow)); }
    50% { filter: drop-shadow(0 0 50px var(--cyber-cyan)); }
}

.intro-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-container {
    background: linear-gradient(135deg, rgba(13, 61, 61, 0.2), rgba(10, 10, 10, 0.7));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-left: 5px solid var(--cyber-cyan);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15), inset 0 0 30px rgba(0, 255, 255, 0.03);
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    animation: slideRight 3s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.intro-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--cyber-steel-light);
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-text::first-letter {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyber-cyan);
}

.different-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--cyber-steel-light);
    text-shadow: 0 0 20px var(--cyber-cyan-glow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--cyber-cyan);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(13, 61, 61, 0.3), rgba(10, 10, 10, 0.8));
    border: 2px solid rgba(0, 255, 255, 0.2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 30px var(--cyber-cyan-glow), inset 0 0 30px rgba(0, 255, 255, 0.05);
    transform: translateY(-5px);
}

.value-card:hover::before {
    left: 100%;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--cyber-cyan);
    box-shadow: 0 0 10px var(--cyber-cyan);
    transition: height 0.4s ease;
}

.value-card:hover::after {
    height: 100%;
}

.value-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cyber-steel-light);
}

.ai-security-section {
    padding: 6rem 2rem;
    position: relative;
}

.ai-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.08), rgba(13, 61, 61, 0.25));
    border: 2px solid var(--cyber-cyan);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3), inset 0 0 40px rgba(0, 255, 255, 0.05);
}

.ai-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-accent), var(--cyber-cyan));
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    z-index: -1;
    opacity: 0.5;
}

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

.ai-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    text-shadow: 0 0 30px var(--cyber-cyan-glow);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ai-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cyber-steel-light);
}

.services-section {
    padding: 6rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.service-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(13, 61, 61, 0.4));
    border: 1px solid rgba(0, 255, 255, 0.15);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-cyan), var(--cyber-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px var(--cyber-cyan);
}

.service-card:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.05);
    transform: translateY(-3px);
}

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

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--cyber-cyan);
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cyber-steel-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--cyber-steel);
}

.subscribe-section {
    padding: 6rem 2rem;
    position: relative;
}

.subscribe-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-content {
    background: linear-gradient(145deg, rgba(13, 61, 61, 0.3), rgba(10, 10, 10, 0.8));
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2), inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.subscribe-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.subscribe-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    text-shadow: 0 0 20px var(--cyber-cyan-glow);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.subscribe-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--cyber-steel-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.subscribe-form {
    position: relative;
    z-index: 2;
}

.input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.email-input {
    flex: 1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: var(--cyber-steel-light);
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(10, 10, 10, 0.95);
}

.email-input::placeholder {
    color: var(--cyber-steel);
    opacity: 0.6;
}

.subscribe-button {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--cyber-accent) 100%);
    color: var(--cyber-darker);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--cyber-cyan-glow);
    white-space: nowrap;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--cyber-cyan), 0 5px 20px rgba(0, 0, 0, 0.5);
}

.subscribe-note {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--cyber-steel);
    opacity: 0.7;
}

.subscribe-success {
    display: none;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 204, 204, 0.1));
    border: 2px solid var(--cyber-cyan);
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.subscribe-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    font-size: 2rem;
    color: var(--cyber-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.subscribe-success p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--cyber-cyan);
    margin: 0;
}

.contact-section {
    padding: 6rem 2rem;
    position: relative;
}

.contact-panel {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(13, 61, 61, 0.5));
    border: 2px solid var(--cyber-cyan);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px var(--cyber-cyan-glow), inset 0 0 50px rgba(0, 255, 255, 0.05);
}

.contact-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.contact-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-image: url('images/logo-shield.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
}

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

.contact-content {
    position: relative;
    z-index: 2;
}

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

.contact-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-label {
    color: var(--cyber-cyan);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: var(--cyber-steel-light);
}

.contact-value a {
    color: var(--cyber-steel-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan-glow);
}

.emergency-callout {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 204, 0.05));
    border-left: 4px solid var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.emergency-callout p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cyber-steel-light);
    margin-bottom: 0.5rem;
}

.emergency-callout strong {
    color: var(--cyber-cyan);
}

.emergency-callout a {
    color: var(--cyber-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-callout a:hover {
    text-shadow: 0 0 10px var(--cyber-cyan-glow);
}

.footer {
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--cyber-steel);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--cyber-cyan-glow));
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .shield-logo-hero {
        width: 280px;
        height: 280px;
    }

    .shield-logo-secondary {
        width: 100%;
        max-width: 400px;
    }

    .intro-container {
        padding: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

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

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

    .ai-container {
        padding: 2rem;
    }

    .ai-title {
        font-size: 1.8rem;
    }

    .ai-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }

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

    .input-group {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .subscribe-title {
        font-size: 1.8rem;
    }

    .subscribe-description {
        font-size: 1rem;
    }

    .subscribe-content {
        padding: 2rem;
    }

    .footer-logo img {
        max-width: 200px;
    }
}
