/* ============================================
   ZENITH MODELS — TECH-FORWARD TERMINAL
   Background: #0A192F  Surface: #112240
   Accent: #64FFDA  Secondary: #8892B0
   Text: #CCD6F6  Highlight: #E6F1FF
   Fonts: Space Mono (display) + IBM Plex Sans (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #CCD6F6;
    background: #0A192F;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .25s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Mono', monospace; line-height: 1.3; font-weight: 700; }

/* --- Scanline Overlay --- */
.scanline-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(100,255,218,.015) 2px,
        rgba(100,255,218,.015) 4px
    );
    animation: scanlineScroll 8s linear infinite;
}
@keyframes scanlineScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100vh; }
}

/* --- Matrix Rain Canvas --- */
.matrix-rain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .04;
}

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.accent { color: #64FFDA; }

/* Code-style text helpers */
.code-comment { color: #546e7a; font-family: 'Space Mono', monospace; font-size: .85em; }
.code-keyword { color: #c792ea; font-family: 'Space Mono', monospace; }
.code-var { color: #82aaff; font-family: 'Space Mono', monospace; }
.code-string { color: #c3e88d; }
.terminal-prompt { color: #64FFDA; font-family: 'Space Mono', monospace; font-weight: 700; }

/* --- Terminal Window Component --- */
.terminal-window {
    background: #112240;
    border: 1px solid rgba(100,255,218,.15);
    border-radius: 8px;
    overflow: hidden;
}
.terminal-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(100,255,218,.05);
    border-bottom: 1px solid rgba(100,255,218,.1);
}
.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.terminal-titlebar-text {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
    margin-left: 8px;
}
.terminal-body {
    padding: 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: .85rem;
    transition: all .3s;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    letter-spacing: .5px;
}
.btn-accent { background: #64FFDA; color: #0A192F; border-color: #64FFDA; }
.btn-accent:hover { background: transparent; color: #64FFDA; box-shadow: 0 0 20px rgba(100,255,218,.15); }
.btn-outline { background: transparent; color: #64FFDA; border-color: #64FFDA; }
.btn-outline:hover { background: #64FFDA; color: #0A192F; }
.btn-outline-light { background: transparent; color: #64FFDA; border-color: #64FFDA; }
.btn-outline-light:hover { background: #64FFDA; color: #0A192F; }
.btn-full { width: 100%; }

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: all .35s;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10,25,47,.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(100,255,218,.08);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    color: #64FFDA;
    animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.brand-text {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    color: #CCD6F6;
    letter-spacing: 1px;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px;
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    font-weight: 400;
    color: #8892B0;
    border-radius: 4px;
    transition: all .25s;
    letter-spacing: .5px;
}
.nav-link:hover, .nav-link.active { color: #64FFDA; }
.nav-link.active { background: rgba(100,255,218,.08); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger .bar {
    display: block;
    width: 26px; height: 2px;
    margin: 6px 0;
    background: #64FFDA;
    transition: all .3s;
    border-radius: 2px;
}
.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0A192F;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(100,255,218,.04) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(100,255,218,.03) 0%, transparent 50%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.terminal-hero {
    max-width: 780px;
    margin-bottom: 48px;
}
.terminal-hero .terminal-body { padding: 32px; }

.hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    font-weight: 400;
    color: #8892B0;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #CCD6F6;
    margin-bottom: 8px;
    max-width: 700px;
    display: inline;
}
.typing-cursor {
    display: inline;
    font-family: 'Space Mono', monospace;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #64FFDA;
    animation: cursorBlink 1s step-end infinite;
    font-weight: 700;
}
.hero-desc {
    font-size: 1rem;
    color: #8892B0;
    max-width: 560px;
    margin: 20px 0 32px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap;
    margin-top: 48px;
    padding: 24px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.1);
    border-radius: 8px;
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
}
.hero-stat { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: #64FFDA;
}
.hero-stat-label {
    display: block;
    font-size: .75rem;
    color: #546e7a;
    width: 100%;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    color: #64FFDA;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- Page Hero --- */
.page-hero {
    background: #0A192F;
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(100,255,218,.08);
}
.page-hero .hero-tag {
    font-size: .8rem;
    color: #8892B0;
    margin-bottom: 16px;
}
.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #CCD6F6;
    margin-bottom: 16px;
}
.page-hero-desc {
    font-size: 1rem;
    color: #8892B0;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Sections --- */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-dark { background: #0A192F; color: #CCD6F6; }
.section:not(.section-dark):not(.section-cta-banner) {
    background: #112240;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    font-weight: 400;
    color: #546e7a;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; color: #CCD6F6; }
.section-desc { font-size: .95rem; color: #8892B0; max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* --- Models Grid (IDE Tab Style) --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.model-card {
    border-radius: 8px;
    overflow: hidden;
    background: #0A192F;
    border: 1px solid rgba(100,255,218,.1);
    transition: all .35s;
}
.model-card:hover {
    border-color: #64FFDA;
    box-shadow: 0 0 30px rgba(100,255,218,.08);
    transform: translateY(-4px);
}
.model-img { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.model-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: grayscale(20%); }
.model-card:hover .model-img img { transform: scale(1.05); filter: grayscale(0); }
.model-overlay {
    position: absolute; bottom: 12px; left: 12px;
}
.model-cat {
    background: #64FFDA;
    color: #0A192F;
    padding: 4px 14px;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.model-info { padding: 0; }
.model-tab-bar {
    display: flex;
    background: rgba(100,255,218,.05);
    border-bottom: 1px solid rgba(100,255,218,.1);
    border-top: 1px solid rgba(100,255,218,.1);
}
.model-tab {
    padding: 8px 16px;
    font-family: 'Space Mono', monospace;
    font-size: .7rem;
    color: #8892B0;
    border-right: 1px solid rgba(100,255,218,.1);
}
.model-tab.active { color: #CCD6F6; background: #0A192F; }
.model-info h3 {
    font-size: .95rem;
    margin: 12px 16px 4px;
    color: #E6F1FF;
}
.model-meta {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
    padding: 0 16px 14px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 32px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.08);
    transition: all .3s;
}
.service-card:hover {
    border-color: #64FFDA;
    box-shadow: 0 0 24px rgba(100,255,218,.06);
    transform: translateY(-4px);
}
.service-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    background: rgba(100,255,218,.08);
    color: #64FFDA;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border: 1px solid rgba(100,255,218,.15);
}
.service-card h3 { font-size: 1rem; margin-bottom: 12px; color: #E6F1FF; }
.service-card p { font-size: .9rem; color: #8892B0; line-height: 1.7; }

/* --- Services Detail (JSON Display) --- */
.json-display {
    margin-bottom: 60px;
}
.json-body {
    overflow-x: auto;
}
.json-pre {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    line-height: 1.8;
    color: #CCD6F6;
    white-space: pre;
}
.json-key { color: #82aaff; }
.json-string { color: #c3e88d; }
.json-number { color: #f78c6c; }
.json-boolean { color: #c792ea; }
.json-brace { color: #89ddff; }

.services-detail-grid { display: flex; flex-direction: column; gap: 24px; }
.service-detail-card {
    display: flex;
    gap: 32px;
    padding: 32px;
    border-radius: 8px;
    background: #0A192F;
    border: 1px solid rgba(100,255,218,.1);
    transition: all .3s;
}
.service-detail-card:hover { border-color: #64FFDA; box-shadow: 0 0 24px rgba(100,255,218,.06); }
.service-detail-icon {
    width: 64px; height: 64px; min-width: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(100,255,218,.08);
    border: 1px solid rgba(100,255,218,.15);
    color: #64FFDA;
    font-size: 1.4rem;
}
.service-detail-content h2 {
    font-size: 1.2rem; margin-bottom: 12px; color: #E6F1FF;
}
.service-detail-content h2 .code-comment { color: #546e7a; }
.service-detail-content p { color: #8892B0; margin-bottom: 16px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-features li {
    font-size: .85rem;
    color: #CCD6F6;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li i { color: #64FFDA; font-size: .7rem; }

/* --- Process --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
    text-align: center; padding: 28px 16px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.08);
    border-radius: 8px;
    transition: all .3s;
}
.process-step:hover { border-color: #64FFDA; }
.process-num {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #64FFDA;
    opacity: .5;
    margin-bottom: 16px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 12px; color: #E6F1FF; }
.process-step p { font-size: .85rem; color: #8892B0; }

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 32px;
    border-radius: 8px;
    background: #0A192F;
    border: 1px solid rgba(100,255,218,.1);
    transition: all .3s;
}
.testimonial-card:hover { border-color: #64FFDA; box-shadow: 0 0 24px rgba(100,255,218,.06); }
.testimonial-stars { color: #64FFDA; margin-bottom: 16px; font-size: .8rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: #8892B0; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 4px; object-fit: cover; border: 1px solid rgba(100,255,218,.2); }
.testimonial-author strong { display: block; font-size: .85rem; color: #E6F1FF; font-family: 'Space Mono', monospace; }
.testimonial-author span { font-size: .75rem; color: #8892B0; }

/* --- CTA Banner --- */
.section-cta-banner { background: #0A192F; padding: 80px 0; }
.cta-banner {
    text-align: center;
    padding: 48px 40px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.12);
}
.cta-banner .terminal-titlebar { margin: -48px -40px 32px; border-radius: 8px 8px 0 0; }
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #CCD6F6; margin-bottom: 16px; }
.cta-banner p { color: #8892B0; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; font-size: .95rem; }

/* --- About Story --- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story-img img { border-radius: 8px; border: 1px solid rgba(100,255,218,.1); }
.about-story-content h2 { font-size: 1.6rem; margin-bottom: 20px; color: #E6F1FF; }
.about-story-content p { color: #8892B0; margin-bottom: 16px; }

/* --- Stats (Circular Gauges) --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.08);
    transition: all .3s;
}
.stat-card:hover { border-color: #64FFDA; }
.stat-gauge {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}
.stat-gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.gauge-bg {
    fill: none;
    stroke: rgba(100,255,218,.08);
    stroke-width: 6;
}
.gauge-fill {
    fill: none;
    stroke: #64FFDA;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease-out;
}
.stat-gauge .stat-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #64FFDA;
}
.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    color: #8892B0;
    margin-top: 8px;
}

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    border-radius: 8px;
    overflow: hidden;
    background: #0A192F;
    border: 1px solid rgba(100,255,218,.1);
    transition: all .35s;
}
.team-card:hover { border-color: #64FFDA; transform: translateY(-4px); }
.team-img { aspect-ratio: 4/5; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .5s; }
.team-card:hover .team-img img { filter: grayscale(0); }
.team-info { padding: 20px; }
.team-info h3 { font-size: .95rem; margin-bottom: 4px; color: #E6F1FF; }
.team-role { color: #64FFDA; font-size: .8rem; font-weight: 700; margin-bottom: 8px; font-family: 'Space Mono', monospace; }
.team-bio { font-size: .8rem; color: #546e7a; font-family: 'Space Mono', monospace; }

/* --- Values --- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.08);
    transition: all .3s;
}
.value-card:hover { border-color: #64FFDA; transform: translateY(-4px); }
.value-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    background: rgba(100,255,218,.08);
    border: 1px solid rgba(100,255,218,.15);
    color: #64FFDA;
    font-size: 1.3rem;
    margin: 0 auto 20px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 12px; color: #E6F1FF; }
.value-card p { font-size: .85rem; color: #8892B0; }

/* --- Pricing (Terminal Windows) --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
    position: relative;
    transition: all .3s;
}
.pricing-card:hover { box-shadow: 0 0 30px rgba(100,255,218,.08); }
.pricing-card .terminal-body { padding: 32px; }
.pricing-featured {
    border-color: #64FFDA !important;
    transform: scale(1.03);
}
.pricing-badge {
    position: absolute;
    top: 44px;
    right: 16px;
    background: #64FFDA;
    color: #0A192F;
    padding: 4px 14px;
    border-radius: 2px;
    font-size: .7rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.pricing-header { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(100,255,218,.1); }
.pricing-header h3 { font-size: 1.1rem; margin-bottom: 8px; color: #E6F1FF; }
.pricing-desc { font-size: .85rem; color: #8892B0; margin-bottom: 20px; font-family: 'IBM Plex Sans', sans-serif; }
.pricing-currency { font-size: .85rem; color: #8892B0; vertical-align: super; font-family: 'Space Mono', monospace; }
.pricing-amount {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #CCD6F6;
}
.pricing-featured .pricing-amount { color: #64FFDA; }
.pricing-period { font-size: .8rem; color: #8892B0; margin-top: 4px; font-family: 'Space Mono', monospace; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
    padding: 10px 0;
    font-size: .85rem;
    color: #CCD6F6;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(100,255,218,.06);
    font-family: 'Space Mono', monospace;
}
.pricing-features li .code-comment { color: #64FFDA; font-size: .8rem; }

/* --- Custom Pricing --- */
.custom-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.custom-item {
    padding: 28px;
    border-radius: 8px;
    background: #112240;
    border: 1px solid rgba(100,255,218,.08);
    transition: all .3s;
}
.custom-item:hover { border-color: #64FFDA; }
.custom-item h3 { font-size: .95rem; margin-bottom: 12px; color: #E6F1FF; }
.custom-item p { font-size: .85rem; color: #8892B0; }

/* --- Events --- */
.events-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.events-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 18px;
    border: 1px solid rgba(100,255,218,.15);
    background: #112240;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    font-weight: 400;
    cursor: pointer;
    transition: all .25s;
    color: #8892B0;
}
.filter-btn:hover, .filter-btn.active {
    background: rgba(100,255,218,.08);
    color: #64FFDA;
    border-color: #64FFDA;
}
.events-month-nav { display: flex; align-items: center; gap: 16px; }
.month-nav-btn {
    width: 36px; height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(100,255,218,.15);
    background: #112240;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    color: #CCD6F6;
}
.month-nav-btn:hover { background: rgba(100,255,218,.08); color: #64FFDA; border-color: #64FFDA; }
.month-nav-label { font-family: 'Space Mono', monospace; font-weight: 700; font-size: .9rem; min-width: 160px; text-align: center; color: #CCD6F6; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
    border-radius: 8px;
    overflow: hidden;
    background: #112240;
    border: 1px solid rgba(100,255,218,.08);
    cursor: pointer;
    transition: all .35s;
}
.event-card:hover { border-color: #64FFDA; transform: translateY(-4px); box-shadow: 0 0 24px rgba(100,255,218,.06); }
.event-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: grayscale(20%); }
.event-card:hover .event-img img { transform: scale(1.05); filter: grayscale(0); }
.event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0A192F;
    color: #64FFDA;
    padding: 8px 14px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Space Mono', monospace;
    line-height: 1.2;
    border: 1px solid rgba(100,255,218,.15);
}
.event-date-badge .day { display: block; font-size: 1.3rem; font-weight: 700; }
.event-date-badge .month { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; color: #CCD6F6; }
.event-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #64FFDA;
    color: #0A192F;
    padding: 4px 12px;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.event-info { padding: 18px; }
.event-info h3 { font-size: .95rem; margin-bottom: 8px; color: #E6F1FF; }
.event-meta { display: flex; flex-wrap: wrap; gap: 14px; font-family: 'Space Mono', monospace; font-size: .75rem; color: #8892B0; }
.event-meta span { display: flex; align-items: center; gap: 4px; }
.events-loading { grid-column: 1 / -1; text-align: center; padding: 60px; color: #8892B0; font-size: .9rem; font-family: 'Space Mono', monospace; }
.events-empty { text-align: center; padding: 60px 20px; color: #8892B0; }
.events-empty i { font-size: 2.5rem; margin-bottom: 16px; display: block; color: #546e7a; }

/* --- Modal --- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(10,25,47,.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; }
.modal {
    background: #112240;
    border-radius: 8px;
    border: 1px solid rgba(100,255,218,.15);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px; height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(100,255,218,.15);
    background: #0A192F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #CCD6F6;
    z-index: 10;
    transition: all .25s;
}
.modal-close:hover { border-color: #64FFDA; color: #64FFDA; }
.modal-body img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px 8px 0 0; }
.modal-content { padding: 28px; }
.modal-content h2 { font-size: 1.3rem; margin-bottom: 16px; color: #E6F1FF; }
.modal-content .event-meta { margin-bottom: 20px; }
.modal-content p { color: #8892B0; line-height: 1.8; margin-bottom: 16px; font-size: .9rem; }
.modal-content .modal-talent { color: #64FFDA; font-weight: 700; font-size: .85rem; font-family: 'Space Mono', monospace; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    border: 1px solid rgba(100,255,218,.08);
    border-radius: 8px;
    overflow: hidden;
    background: #0A192F;
    transition: all .3s;
}
.faq-item.active { border-color: #64FFDA; }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    font-weight: 400;
    color: #CCD6F6;
    text-align: left;
    gap: 16px;
    transition: all .25s;
}
.faq-question:hover { color: #64FFDA; background: rgba(100,255,218,.03); }
.faq-icon { color: #64FFDA; transition: transform .3s; font-size: .8rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer p { padding: 0 24px 20px; color: #8892B0; line-height: 1.8; font-size: .9rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.contact-form-wrap .terminal-window { margin-bottom: 0; }
.contact-form-wrap h2 { font-size: 1.2rem; margin-bottom: 28px; color: #E6F1FF; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: .8rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: #CCD6F6;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(100,255,218,.15);
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .9rem;
    color: #CCD6F6;
    background: #0A192F;
    transition: all .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64FFDA;
    box-shadow: 0 0 0 3px rgba(100,255,218,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #546e7a; }
.form-group select { appearance: auto; }
.form-group select option { background: #0A192F; color: #CCD6F6; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 4px; accent-color: #64FFDA; }
.form-check label { font-size: .8rem; color: #8892B0; font-weight: 400; font-family: 'IBM Plex Sans', sans-serif; }
.form-check label a { color: #64FFDA; font-weight: 600; }
.form-success {
    text-align: center;
    padding: 60px 20px;
}
.form-success i { font-size: 3rem; color: #64FFDA; margin-bottom: 16px; }
.form-success h3 { font-size: 1.2rem; margin-bottom: 8px; color: #E6F1FF; }
.form-success p { color: #8892B0; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { overflow: hidden; }
.contact-info-card .terminal-body h3 { font-size: .95rem; margin-bottom: 20px; color: #E6F1FF; }
.contact-info-card .terminal-body ul { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card .terminal-body li { display: flex; gap: 14px; }
.contact-info-card .terminal-body li i { color: #64FFDA; font-size: .9rem; margin-top: 4px; }
.contact-info-card .terminal-body li strong { display: block; font-size: .8rem; margin-bottom: 2px; color: #CCD6F6; font-family: 'Space Mono', monospace; }
.contact-info-card .terminal-body li p { font-size: .85rem; color: #8892B0; }
.contact-info-card .terminal-body li a { color: #8892B0; transition: color .25s; }
.contact-info-card .terminal-body li a:hover { color: #64FFDA; }
.contact-social { display: flex; gap: 10px; }
.contact-social a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    background: #0A192F;
    border: 1px solid rgba(100,255,218,.15);
    color: #64FFDA;
    font-size: .95rem;
    transition: all .25s;
}
.contact-social a:hover { background: #64FFDA; color: #0A192F; }
.contact-map { border-radius: 8px; overflow: hidden; border: 1px solid rgba(100,255,218,.1); }

/* --- Legal Content --- */
.legal-content h2 { font-size: 1.2rem; margin-top: 40px; margin-bottom: 16px; color: #E6F1FF; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; margin-top: 24px; margin-bottom: 12px; color: #CCD6F6; }
.legal-content p { color: #8892B0; margin-bottom: 12px; line-height: 1.8; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content ul li { color: #8892B0; margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.legal-content a { color: #64FFDA; font-weight: 500; }
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: .85rem;
    font-family: 'Space Mono', monospace;
}
.legal-table th, .legal-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(100,255,218,.08);
}
.legal-table th { background: rgba(100,255,218,.05); font-weight: 700; color: #CCD6F6; }
.legal-table td { color: #8892B0; }

/* --- 404 --- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A192F;
    text-align: center;
    position: relative;
    z-index: 1;
}
.terminal-404 { max-width: 560px; width: 100%; }
.terminal-404 .terminal-body { padding: 48px 40px; }
.error-code {
    font-family: 'Space Mono', monospace;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: #CCD6F6;
    line-height: 1;
    margin-bottom: 16px;
}
.error-content h1 { font-size: 1.4rem; color: #E6F1FF; margin-bottom: 16px; }
.error-content .code-comment { display: block; font-size: .85rem; color: #546e7a; margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.error-btns { display: flex; gap: 16px; justify-content: center; }

/* --- Footer --- */
.footer {
    background: #0A192F;
    color: #8892B0;
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(100,255,218,.08);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(100,255,218,.06); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-about { font-size: .85rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(100,255,218,.15);
    color: #8892B0;
    font-size: .85rem;
    transition: all .25s;
}
.footer-social a:hover { border-color: #64FFDA; color: #64FFDA; background: rgba(100,255,218,.05); }
.footer h4 {
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    color: #CCD6F6;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .85rem; }
.footer-col li a { transition: color .25s; }
.footer-col li a:hover { color: #64FFDA; }
.footer-contact li { display: flex; gap: 10px; font-size: .8rem; line-height: 1.6; }
.footer-contact li i { color: #64FFDA; margin-top: 4px; font-size: .75rem; }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    font-family: 'Space Mono', monospace;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .models-grid, .services-grid, .testimonials-grid, .pricing-grid, .events-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid, .team-grid, .values-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story { grid-template-columns: 1fr; gap: 40px; }
    .custom-pricing { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0A192F;
        border-left: 1px solid rgba(100,255,218,.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px;
        gap: 4px;
        transition: right .35s;
    }
    .nav-menu.active { right: 0; }
    .nav-link { width: 100%; padding: 12px 16px; font-size: .85rem; }

    .models-grid, .services-grid, .testimonials-grid, .pricing-grid, .events-grid { grid-template-columns: 1fr; }
    .stats-grid, .team-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-detail-card { flex-direction: column; gap: 20px; }
    .service-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-stats { gap: 24px; flex-direction: column; }
    .events-controls { flex-direction: column; align-items: flex-start; }
    .cta-banner .terminal-titlebar { margin: -48px -40px 24px; }
    .terminal-hero .terminal-body { padding: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .hero-content { padding: 100px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .stats-grid, .values-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .error-btns { flex-direction: column; }
    .cta-banner { padding: 48px 20px; }
    .cta-banner .terminal-titlebar { margin: -48px -20px 24px; }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Particle --- */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #64FFDA;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: .5; }
    90% { opacity: .05; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* --- Progress bar stat variant --- */
.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(100,255,218,.08);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}
.stat-progress-fill {
    height: 100%;
    background: #64FFDA;
    border-radius: 2px;
    transition: width 2s ease-out;
    width: 0;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: #112240;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: #8892B0;
}

.cookie-content p a {
    color: #64FFDA;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Breadcrumbs */
.breadcrumbs { padding: 80px 0 12px 0; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
