:root {
  --bg: #06120d;
  --bg-2: #0a1a13;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --text: #eaf3ec;
  --muted: #9bb3a6;
  --cyan: #4fd089;          /* leaf green accent */
  --violet: #15834f;        /* deep green */
  --grad: linear-gradient(120deg, #4fd089, #137a48 75%);
  --grad-soft: linear-gradient(120deg, rgba(79,208,137,.16), rgba(19,122,72,.18));
  --radius: 18px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; letter-spacing: -.02em; font-weight: 600; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }

/* Background decor */
.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.bg-glow {
  position: fixed; z-index: -1; border-radius: 50%;
  filter: blur(110px); opacity: .5; pointer-events: none;
}
.glow-1 { width: 540px; height: 540px; background: #0d6b41; top: -180px; right: -120px; }
.glow-2 { width: 460px; height: 460px; background: #115c3a; bottom: 10%; left: -160px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6,18,13,.7);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.45rem; letter-spacing: .06em; color: var(--text); }
.brand-accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.orb-monogram { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 3.2rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 18px; border-radius: 999px; background: var(--grad-soft);
  border: 1px solid rgba(79,208,137,.3); color: var(--text) !important;
}
.nav-cta:hover { box-shadow: 0 0 24px rgba(79,208,137,.25); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .3s, background .3s;
}
.btn-primary { background: var(--grad); color: #04101e; box-shadow: 0 8px 30px rgba(20,140,80,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(20,140,80,.5); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn.full { width: 100%; }

/* Hero */
.hero { position: relative; padding: 150px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 22px; }
.hero-sub { color: var(--muted); font-size: 1.12rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats strong { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.hero-stats span { color: var(--muted); font-size: .88rem; }

/* Hero visual */
.hero-visual { display: grid; place-items: center; }
.orb-ring {
  position: relative; width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 40%, rgba(19,122,72,.16), transparent 60%);
  animation: float 6s ease-in-out infinite;
}
.orb-ring::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px dashed rgba(79,208,137,.25); animation: spin 22s linear infinite;
}
.orb-core {
  position: absolute; inset: 0; margin: auto; width: 110px; height: 110px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(8,22,16,.8); border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(79,208,137,.25), inset 0 0 30px rgba(19,122,72,.2);
}
.chip {
  position: absolute; padding: 7px 13px; border-radius: 999px; font-size: .8rem; font-weight: 600;
  background: rgba(9,24,17,.9); border: 1px solid var(--border); backdrop-filter: blur(6px);
  white-space: nowrap; animation: float 5s ease-in-out infinite;
}
.chip-1 { top: 6%; left: 50%; transform: translateX(-50%); color: var(--cyan); }
.chip-2 { top: 46%; right: -34px; color: #7fe3a6; animation-delay: .8s; }
.chip-3 { bottom: 4%; left: 50%; transform: translateX(-50%); color: #9be8bf; animation-delay: 1.6s; }
.chip-4 { top: 46%; left: -36px; color: var(--violet); animation-delay: 2.4s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Marquee */
.marquee { margin-top: 70px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 26px; white-space: nowrap; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--muted); letter-spacing: .1em; font-size: .9rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 100px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(19,122,72,.04), transparent); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
.card:hover { transform: translateY(-6px); background: var(--surface-2); }
.card:hover::after { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 20px; background: var(--grad-soft);
  border: 1px solid var(--border); color: var(--cyan); font-family: 'Space Grotesk', sans-serif;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }
.card-link { color: var(--cyan); font-weight: 600; white-space: nowrap; }
.card-link:hover { text-decoration: underline; }

/* Cybersecurity & ISO 27001 */
.cyber-grid { grid-template-columns: repeat(3, 1fr); }
.cyber-card .card-icon { background: var(--grad-soft); border-color: rgba(79,208,137,.3); }
.cyber-cta {
  margin-top: 44px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  padding: 26px 32px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(79,208,137,.08), rgba(19,122,72,.1));
  border: 1px solid var(--border); text-align: center;
}
.cyber-cta span { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-text { order: 2; }
.split-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.split-text > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.check-list { list-style: none; margin-bottom: 30px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 6px; background: var(--grad); color: #04101e; font-size: .72rem; font-weight: 700; display: grid; place-items: center; }

/* Code panel */
.panel { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.panel-top { display: flex; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.panel-top span { width: 11px; height: 11px; border-radius: 50%; background: #2a3350; }
.panel-top span:first-child { background: #ff5f57; }
.panel-top span:nth-child(2) { background: #febc2e; }
.panel-top span:nth-child(3) { background: #28c840; }
.code { padding: 22px; font-family: 'Space Grotesk', ui-monospace, monospace; font-size: .92rem; line-height: 1.9; color: #c5d0ea; }
.code .ln { color: var(--violet); } .code .cy { color: var(--cyan); } .code .cm { color: #5b6680; } .code .gn { color: #28c840; } .code .pl { color: #febc2e; }

/* Process */
.process-grid { grid-template-columns: repeat(4, 1fr); }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s var(--ease), border-color .3s; }
.step:hover { transform: translateY(-6px); border-color: rgba(79,208,137,.3); }
.step-no { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.why-grid > div { padding: 18px 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); }
.why-grid strong { display: block; margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.why-grid span { color: var(--muted); font-size: .9rem; }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { padding: 30px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: center; }
.stat-card strong { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.stat-card span { color: var(--muted); font-size: .9rem; }

/* CTA */
.cta-box { background: linear-gradient(135deg, rgba(79,208,137,.06), rgba(19,122,72,.08)); border: 1px solid var(--border); border-radius: 26px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.cta-box::before { content: ""; position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(79,208,137,.18), transparent 70%); top: -120px; right: -80px; }
.cta-text { position: relative; }
.cta-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-text > p { color: var(--muted); margin-bottom: 26px; }
.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: .95rem; }
.contact-list li span { color: var(--cyan); }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--cyan); }

/* Form */
.cta-form { position: relative; display: grid; gap: 16px; background: rgba(6,18,13,.55); padding: 28px; border-radius: 18px; border: 1px solid var(--border); }
.field { display: grid; gap: 6px; }
.field label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5d6a88; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(79,208,137,.14); }
.field textarea { resize: vertical; }
.field select option { background: var(--bg-2); }
.form-note { color: #28c840; font-size: .9rem; text-align: center; }
.form-note.error { color: #ff6b6b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
#submitBtn[disabled] { opacity: .6; cursor: progress; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 30px; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand p { color: var(--muted); margin-top: 10px; max-width: 320px; font-size: .94rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .94rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; color: #6b7799; font-size: .85rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cyber-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse .split-text, .cta-box { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
}
@media (max-width: 680px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: rgba(6,18,13,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 10px 24px 24px; transform: translateY(-150%); transition: transform .35s var(--ease); align-items: stretch; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .services-grid, .cyber-grid, .process-grid, .why-grid, .stat-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .cta-box { padding: 32px 22px; }
  .section { padding: 70px 0; }
}
