:root {
    --navy: #2d5a8e;
    --blue: #2563eb;
    --blue-light: #60a5fa;
    --text: #1a1a1a;
    --text2: #7c8fa6;
    --bg: #ffffff;
    --surface: #f1f5f9;
    --border: #cbd5e1;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', Arial, sans-serif; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

header { position: fixed; width: 100%; top: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 1000; height: 70px; display: flex; align-items: center; transition: box-shadow 0.3s; }
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.nav-container { width: 100%; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-text { font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -1px; }
.logo-n { color: var(--blue); }
nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
nav a { text-decoration: none; font-weight: 500; color: var(--text2); font-size: 14px; padding: 8px 14px; border-radius: 8px; transition: 0.2s; }
nav a:hover { color: var(--navy); background: var(--surface); }
.nav-cta { background: var(--navy) !important; color: white !important; border-radius: 8px; }
.nav-cta:hover { background: var(--blue) !important; }

.hero { min-height: 100vh; background: #1e3a5f; display: flex; align-items: center; justify-content: space-between; padding: 100px 80px 60px; position: relative; overflow: hidden; gap: 60px; }
#matrix-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 520px; }
.hero-badge { display: inline-block; background: rgba(37,99,235,0.07); color: var(--blue); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(37,99,235,0.15); margin-bottom: 24px; font-family: 'JetBrains Mono', monospace; }
.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.05; color: white; margin-bottom: 20px; }
.hero h1 .line1 { color: var(--blue); display: block; }
.hero h1 .line2 { color: white; display: block; margin-top: 8px; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 36px; line-height: 1.7; max-width: 440px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--blue); color: white; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.2s; border: none; cursor: pointer; display: inline-block; }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-primary.full { width: 100%; text-align: center; }
.btn-secondary { background: #2563eb; color: white; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid var(--border); transition: 0.2s; }
.btn-secondary:hover { background: #1d4ed8; }

.hero-terminal { position: relative; z-index: 2; background: #0d1117; border-radius: 14px; border: 1px solid #30363d; width: 420px; flex-shrink: 0; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.12); }
.terminal-bar { background: #161b22; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #30363d; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-title { margin-left: 8px; font-size: 12px; color: rgba(255,255,255,0.35); font-family: 'JetBrains Mono', monospace; }
.terminal-body { padding: 20px; height: 280px; overflow: hidden; font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.terminal-line { color: #7ee787; line-height: 2; white-space: nowrap; }

.info-bar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.info-grid { display: flex; justify-content: center; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 16px; padding: 24px 48px; border-right: 1px solid var(--border); transition: background 0.2s; }
.info-item:last-child { border-right: none; }
.info-item:hover { background: var(--surface); }
.info-icon { font-size: 26px; flex-shrink: 0; }
.info-text { display: flex; flex-direction: column; }
.info-text strong { font-size: 14px; font-weight: 700; color: var(--navy); }
.info-text span { font-size: 12px; color: var(--text2); margin-top: 2px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.6); }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); background: rgba(37,99,235,0.08); padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.section-header.light .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--text2); font-size: 16px; max-width: 500px; margin: 0 auto; }

.services { padding: 100px 0; background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #2563eb; border-radius: 16px; padding: 32px; border: 1px solid var(--blue); transition: 0.25s; position: relative; }
.service-card:hover { background: #1d4ed8; border-color: white; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,99,235,0.3); }
.service-card.featured { border-color: var(--blue); background: var(--navy); }
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.6); }
.service-card.featured li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
.service-card.featured li::before { color: var(--blue-light); }
.service-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.service-card p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.service-card ul { list-style: none; }
.service-card li { font-size: 14px; color: rgba(255,255,255,0.8); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding-left: 16px; position: relative; }
.service-card li::before { content: "▸"; color: var(--blue); position: absolute; left: 0; font-size: 11px; top: 9px; }
.service-card li:last-child { border-bottom: none; }

.devops-stack { background: var(--navy); padding: 100px 0; }
.stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stack-group { background: rgba(255,255,255,0.04); border-radius: 14px; padding: 28px; border: 1px solid rgba(255,255,255,0.08); }
.stack-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-light); margin-bottom: 16px; }
.stack-items { display: flex; flex-direction: column; gap: 8px; }
.stack-items span { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; padding: 9px 14px; border-radius: 8px; font-family: 'JetBrains Mono', monospace; border: 1px solid rgba(255,255,255,0.06); transition: 0.2s; }
.stack-items span:hover { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.3); }

.why-us { padding: 100px 0; background: white; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { padding: 32px 24px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); transition: 0.2s; }
.why-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.why-num { font-size: 2.5rem; font-weight: 900; color: var(--border); font-family: 'JetBrains Mono', monospace; margin-bottom: 16px; line-height: 1; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }

.contact { background: var(--surface); padding: 100px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-left h2 { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin: 12px 0 16px; }
.contact-left p { color: var(--text2); font-size: 16px; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text2); }
.contact-icon { font-size: 18px; }
.contact-form { background: white; border-radius: 16px; padding: 36px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; background: var(--surface); color: var(--text); transition: 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.form-group textarea { resize: vertical; }

footer { background: var(--navy); color: white; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-inner .logo-img { height: 36px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-inner .logo-text { color: white; }
.footer-inner .logo-n { color: var(--blue-light); }
.footer-inner p { color: rgba(255,255,255,0.4); font-size: 14px; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stack-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 100px 40px 60px; }
    .hero-terminal { display: none; }
    .info-item { padding: 20px 28px; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: 1fr; }
    .stack-grid { grid-template-columns: 1fr 1fr; }
    .info-grid { flex-direction: column; }
    .info-item { border
