:root {
  --navy: #07182e;
  --navy-2: #0b2745;
  --blue: #35b7f3;
  --cyan: #8de7ff;
  --purple: #9b7cff;
  --gold: #d4af37;
  --white: #ffffff;
  --off: #f4f7fb;
  --text: #122033;
  --muted: #64748b;
  --border: rgba(255,255,255,.14);
  --shadow: 0 24px 60px rgba(6, 24, 46, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(4, 14, 28, .58);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .3s ease;
}
.site-header.scrolled { background: rgba(4, 14, 28, .94); }
.nav-wrap { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(141,231,255,.7);
  background: linear-gradient(135deg, rgba(53,183,243,.25), rgba(155,124,255,.25));
  clip-path: polygon(50% 0, 90% 24%, 90% 74%, 50% 100%, 10% 74%, 10% 24%);
  font-family: "Montserrat"; font-weight: 800;
}
.brand strong { display: block; font-family: "Montserrat"; letter-spacing: .08em; }
.brand small { display: block; font-size: .65rem; letter-spacing: .28em; opacity: .72; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.86); font-size: .92rem; }
.main-nav a:hover { color: var(--cyan); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display:block; width:26px; height:2px; background:#fff; margin:5px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border: 0; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-weight: 800; cursor: pointer;
  box-shadow: 0 12px 28px rgba(53,183,243,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(53,183,243,.28); }
.btn-small { min-height: 42px; padding: 0 18px; }
.btn-ghost { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.3); box-shadow:none; }
.btn-light { background: white; color: var(--navy); box-shadow:none; }

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #031328 0%, #082a4d 55%, #0b365d 100%);
  color: var(--white); overflow: hidden;
}
.hero::before {
  content:""; position:absolute; top:0; right:0; bottom:0; width:58%;
  background:url("assets/nornixep-hero-logo-clean.png") center right/cover no-repeat;
  z-index:0;
}
.hero::after {
  content:""; position:absolute; inset:auto -10% -35% auto;
  width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(155,124,255,.35), transparent 65%);
  filter: blur(20px);
}
.hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(3,12,25,.96) 0%, rgba(3,12,25,.82) 38%, rgba(3,12,25,.34) 58%, rgba(3,12,25,.06) 78%, rgba(3,12,25,.02) 100%),
    linear-gradient(0deg, rgba(3,12,25,.38), transparent 55%);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; max-width: 760px; margin-left: max(20px, calc((100vw - 1160px)/2)); margin-right:auto; }
.eyebrow { display:block; text-transform:uppercase; letter-spacing:.18em; font-size:.76rem; font-weight:800; color:var(--cyan); margin-bottom:16px; }
.hero h1, h2, h3 { font-family:"Montserrat", sans-serif; line-height:1.15; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); margin:0 0 22px; letter-spacing:-.04em; }
.hero h1 span { color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.7); }
.hero p { max-width:690px; font-size:1.15rem; color:rgba(255,255,255,.78); }
.hero-actions { display:flex; gap:14px; margin:34px 0 28px; flex-wrap:wrap; }
.trust-row { display:flex; gap:22px; flex-wrap:wrap; font-size:.9rem; color:rgba(255,255,255,.72); }
.scroll-indicator { position:absolute; left:50%; bottom:28px; z-index:3; width:28px; height:46px; border:1px solid rgba(255,255,255,.5); border-radius:20px; }
.scroll-indicator span { width:4px; height:8px; background:#fff; border-radius:4px; position:absolute; top:8px; left:11px; animation:scroll 1.8s infinite; }
@keyframes scroll { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 100%{opacity:0;transform:translateY(18px)} }

.section { padding: 110px 0; }
.intro-strip { padding: 30px 0; background: var(--navy); color:#fff; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stats-grid article { padding:18px 24px; border-right:1px solid var(--border); }
.stats-grid article:last-child { border:0; }
.stats-grid strong { display:block; color:var(--cyan); font-size:1.2rem; }
.stats-grid span { font-size:.88rem; color:rgba(255,255,255,.72); }

.two-col { display:grid; grid-template-columns:1.05fr .95fr; gap:80px; align-items:center; }
.section-copy h2, .section-heading h2 { font-size:clamp(2rem,4vw,3.5rem); margin:0 0 24px; letter-spacing:-.035em; }
.section-copy p, .section-heading p { color:var(--muted); font-size:1.04rem; }
.text-link { display:inline-block; margin-top:14px; font-weight:800; color:#137caf; }

.glass-card {
  position:relative; padding:46px; border-radius:24px;
  background: linear-gradient(145deg, #0b2745, #07182e);
  color:#fff; box-shadow:var(--shadow); overflow:hidden;
}
.glass-card::before { content:""; position:absolute; inset:-80px auto auto -80px; width:220px; height:220px; border-radius:50%; background:rgba(53,183,243,.2); filter:blur(20px); }
.icon-orbit { width:82px; height:82px; display:grid; place-items:center; border-radius:24px; background:linear-gradient(135deg, rgba(53,183,243,.18), rgba(155,124,255,.25)); border:1px solid rgba(255,255,255,.18); font-size:2rem; font-weight:800; }
.check-list { padding:0; list-style:none; }
.check-list li { padding:9px 0; color:rgba(255,255,255,.8); }
.check-list li::before { content:"✓"; color:var(--cyan); margin-right:10px; }

.section-dark { background:var(--navy); color:#fff; }
.section-dark .section-heading p, .section-dark .section-copy p { color:rgba(255,255,255,.64); }
.section-heading { max-width:760px; margin-bottom:50px; }
.section-heading.centered { text-align:center; margin-left:auto; margin-right:auto; }
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card {
  min-height:245px; padding:34px; border:1px solid var(--border); border-radius:18px;
  background:linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition:.25s ease;
}
.service-card:hover { transform:translateY(-6px); border-color:rgba(141,231,255,.5); }
.service-number { color:var(--cyan); font-weight:800; letter-spacing:.12em; }
.service-card h3 { font-size:1.25rem; margin:36px 0 12px; }
.service-card p { color:rgba(255,255,255,.64); margin:0; }

.benefits-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.benefit { padding:28px; border:1px solid #e5ebf3; border-radius:18px; background:#fff; box-shadow:0 14px 38px rgba(16,40,70,.06); }
.benefit-icon { width:46px; height:46px; display:grid; place-items:center; border-radius:12px; background:#edf8ff; color:#167daf; font-size:1.25rem; }
.benefit h3 { font-size:1.05rem; margin:22px 0 10px; }
.benefit p { color:var(--muted); margin:0; font-size:.94rem; }

.process-section { background:var(--off); }
.timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; position:relative; }
.timeline::before { content:""; position:absolute; top:28px; left:8%; right:8%; height:1px; background:#cbd7e6; }
.timeline-item { position:relative; }
.timeline-item > span { position:relative; z-index:2; width:56px; height:56px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:#fff; font-weight:800; box-shadow:0 0 0 8px var(--off); }
.timeline-item h3 { margin-top:28px; }
.timeline-item p { color:var(--muted); }

.sector-cloud { display:flex; flex-wrap:wrap; gap:14px; }
.sector-cloud span { padding:13px 18px; border:1px solid var(--border); border-radius:999px; background:rgba(255,255,255,.05); color:rgba(255,255,255,.82); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.values-grid article { padding:28px; border-left:3px solid #31b9f1; background:var(--off); border-radius:0 14px 14px 0; }
.values-grid strong { font-family:"Montserrat"; }
.values-grid p { color:var(--muted); margin-bottom:0; }

.quote-section { background:linear-gradient(135deg, #edf8ff, #f6f1ff); text-align:center; }
blockquote { max-width:920px; margin:0 auto 18px; font-family:"Montserrat"; font-size:clamp(1.6rem,3.5vw,3rem); line-height:1.3; letter-spacing:-.03em; }
cite { font-style:normal; color:var(--muted); }

.faq-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.faq-item { border-bottom:1px solid #dce5ef; }
.faq-item button { width:100%; padding:22px 0; background:none; border:0; display:flex; align-items:center; justify-content:space-between; text-align:left; font-weight:800; cursor:pointer; }
.faq-item button span { font-size:1.4rem; transition:.2s; }
.faq-item.active button span { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.active .faq-answer { max-height:180px; }
.faq-answer p { color:var(--muted); margin-top:0; padding-bottom:18px; }

.contact-section { background:#06172c; color:#fff; }
.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:start; }
.contact-copy h2 { font-size:clamp(2rem,4vw,3.4rem); margin:0 0 20px; }
.contact-copy > p, .contact-details { color:rgba(255,255,255,.66); }
.contact-details { margin-top:38px; }
.contact-details a { color:var(--cyan); }
.contact-form { padding:34px; border:1px solid var(--border); background:rgba(255,255,255,.045); border-radius:20px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
label { display:block; font-size:.86rem; font-weight:700; margin-bottom:15px; color:rgba(255,255,255,.83); }
input, select, textarea { width:100%; margin-top:8px; padding:14px 15px; border-radius:9px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.07); color:#fff; outline:none; }
input::placeholder, textarea::placeholder { color:rgba(255,255,255,.38); }
input:focus, select:focus, textarea:focus { border-color:var(--cyan); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline:3px solid var(--cyan); outline-offset:3px; }
select option { color:#111; }
.hp-field { position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.form-note, .form-status { font-size:.78rem; color:rgba(255,255,255,.5); }
.form-status { color:var(--cyan); }

.cta-band { padding:60px 0; background:linear-gradient(135deg, #20a9e8, #765ddd); color:#fff; }
.cta-band .container { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.cta-band h2 { margin:0; font-size:clamp(1.7rem,3vw,2.7rem); }
.cta-band .eyebrow { color:#fff; opacity:.8; }

.site-footer { padding:70px 0 24px; background:#030c18; color:rgba(255,255,255,.64); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; }
.footer-grid h4 { color:#fff; margin-top:0; }
.footer-grid a { display:block; margin:9px 0; }
.footer-grid a:hover { color:var(--cyan); }
.footer-brand { margin-bottom:18px; }
.footer-bottom { margin-top:50px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; font-size:.84rem; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

.legal-page { background:var(--off); color:var(--text); }
.legal-hero { padding:150px 0 70px; background:var(--navy); color:#fff; }
.legal-content { padding:70px 0; max-width:850px; }
.legal-content h2 { margin-top:42px; }

@media (max-width: 900px) {
  .menu-toggle { display:block; }
  .main-nav {
    position:absolute; top:80px; left:0; right:0; padding:22px;
    background:rgba(4,14,28,.98); flex-direction:column; align-items:flex-start;
    transform:translateY(-140%); transition:.3s; z-index:-1;
  }
  .main-nav.open { transform:translateY(0); }
  .two-col, .faq-layout, .contact-grid { grid-template-columns:1fr; gap:45px; }
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .benefits-grid { grid-template-columns:repeat(2,1fr); }
  .timeline { grid-template-columns:1fr 1fr; row-gap:40px; }
  .timeline::before { display:none; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:2fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width:min(100% - 28px, 1160px); }
  .section { padding:80px 0; }
  .hero { min-height:920px; }
  .hero::before { width:100%; opacity:.55; background-position:60% center; }
  .hero-overlay { background:linear-gradient(90deg, rgba(3,12,25,.95), rgba(3,12,25,.62)), linear-gradient(0deg, rgba(3,12,25,.55), transparent 55%); }
  .hero-content { margin:0 14px; padding-top:100px; }
  .hero h1 { font-size:2.75rem; }
  .trust-row { display:grid; gap:8px; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stats-grid article:nth-child(2) { border-right:0; }
  .cards-grid, .benefits-grid, .timeline, .values-grid, .field-row { grid-template-columns:1fr; }
  .cta-band .container, .footer-bottom { flex-direction:column; align-items:flex-start; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity:1; transform:none; }
}
