/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    color: #2D3748;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ COLOR VARS ============ */
:root {
    --cisco-blue: #1BA0D7;
    --webex-green: #00BCEB;
    --forest: #2D5016;
    --slate: #4A5568;
    --gold: #F4C430;
    --snow: #FFFFFF;
    --dark: #1A202C;
}

/* ============ HEADER ============ */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--webex-green);
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; color: white; font-size: 1.5rem; }
.ninja-icon { font-size: 2rem; }
.logo-text strong { color: var(--webex-green); }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { color: white; font-weight: 600; transition: color 0.3s; }
.nav a:hover { color: var(--webex-green); }
.nav-cta {
    background: var(--webex-green); color: var(--dark) !important;
    padding: 10px 20px; border-radius: 30px;
}
.nav-cta:hover { background: white; }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(180deg, #0a1628 0%, #1a3a5c 40%, #2D5016 80%, #4a7c2c 100%);
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 20%, white, transparent),
        radial-gradient(2px 2px at 80% 40%, #00BCEB, transparent),
        radial-gradient(1px 1px at 40% 60%, white, transparent),
        radial-gradient(2px 2px at 90% 70%, white, transparent);
    opacity: 0.6;
    animation: twinkle 8s infinite alternate;
}
@keyframes twinkle { from { opacity: 0.3; } to { opacity: 0.8; } }
.mountain-silhouette {
    position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
    clip-path: polygon(0 100%, 0 60%, 10% 40%, 20% 55%, 30% 30%, 40% 50%, 50% 25%, 60% 45%, 70% 35%, 80% 55%, 90% 40%, 100% 60%, 100% 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: white; }
.webex-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 188, 235, 0.2);
    border: 1px solid var(--webex-green);
    padding: 8px 20px; border-radius: 30px;
    margin-bottom: 30px; font-size: 0.9rem;
}
.webex-badge strong { color: var(--webex-green); font-size: 1.1rem; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.accent { color: var(--gold); }
.hero-sub { font-size: 1.3rem; max-width: 700px; margin: 0 auto 40px; opacity: 0.95; }
.hero-ctas { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.ninja-mascot {
    font-size: 6rem; margin-top: 50px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 30px;
    font-weight: 700; transition: all 0.3s; border: none; cursor: pointer;
    font-size: 1rem;
}
.btn-primary { background: var(--webex-green); color: var(--dark); }
.btn-primary:hover { background: white; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,188,235,0.4); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: var(--dark); }
.btn-large { padding: 18px 50px; font-size: 1.1rem; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 15px; color: var(--dark); }
.section-sub { text-align: center; font-size: 1.1rem; color: var(--slate); margin-bottom: 60px; }

/* ============ NINJAS GRID ============ */
.ninjas-section { background: #f7fafc; }
.ninja-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.ninja-card {
    background: white; padding: 40px 30px; border-radius: 16px;
    text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s; border-top: 4px solid var(--cisco-blue);
}
.ninja-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(27,160,215,0.25);
    border-top-color: var(--webex-green);
}
.ninja-emoji { font-size: 4rem; margin-bottom: 20px; }
.ninja-card h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--cisco-blue); }
.ninja-location { color: var(--gold); font-weight: 600; margin-bottom: 12px; font-size: 0.9rem; }

/* ============ WHY SECTION ============ */
.why-section { background: linear-gradient(135deg, var(--cisco-blue) 0%, var(--webex-green) 100%); color: white; }
.why-section .section-title { color: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.why-card {
    text-align: center; padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.why-icon { font-size: 4rem; margin-bottom: 20px; }
.why-card h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* ============ COVERAGE ============ */
.coverage-section { background: white; }
.coverage-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; max-width: 900px; margin: 0 auto;
}
.city-pin {
    background: #f7fafc; padding: 18px 20px; border-radius: 10px;
    text-align: center; font-weight: 600;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
}
.city-pin:hover { background: var(--gold); color: var(--dark); transform: translateX(5px); }

/* ============ INDUSTRIES ============ */
.industries-section { background: #f7fafc; }
.industries-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.industry-tile {
    background: white; padding: 30px 20px; border-radius: 12px;
    text-align: center; font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.industry-tile span { font-size: 1rem; font-weight: 600; color: var(--dark); }
.industry-tile:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.12); }

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 50%, var(--forest) 100%);
    color: white; text-align: center;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-section > .container > p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }
.contact-form { max-width: 700px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px 18px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1); color: white;
    font-family: inherit; font-size: 1rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.contact-form select { color: white; }
.contact-form select option { color: var(--dark); }
.contact-form textarea { margin-bottom: 20px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--webex-green);
    background: rgba(255,255,255,0.15);
}

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: white; padding: 60px 0 20px; }
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-brand p { opacity: 0.7; margin-top: 15px; }
.footer h4 { color: var(--webex-green); margin-bottom: 15px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a, .footer-social a {
    display: block; color: rgba(255,255,255,0.7);
    padding: 5px 0; transition: color 0.3s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--webex-green); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; text-align: center;
    font-size: 0.9rem; opacity: 0.7;
}
.disclaimer { font-size: 0.8rem; margin-top: 8px; opacity: 0.6; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.1rem; }
    .ninja-mascot { font-size: 4rem; }
    .section-title { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .cta-section h2 { font-size: 1.8rem; }
}
