/* ============================================
   BRITFORS PROEKT TOV — Deep Signal / Editorial Dark
   All classes prefixed: niko-
   ============================================ */

:root {
  --niko-bg: #0a0e17;
  --niko-bg-elevated: #111827;
  --niko-surface: #161f30;
  --niko-surface-hover: #1c2840;
  --niko-border: rgba(148, 163, 184, 0.12);
  --niko-border-strong: rgba(45, 212, 191, 0.25);
  --niko-text: #f1f5f9;
  --niko-text-muted: #94a3b8;
  --niko-text-dim: #64748b;
  --niko-accent: #2dd4bf;
  --niko-accent-dim: rgba(45, 212, 191, 0.15);
  --niko-warm: #fb923c;
  --niko-warm-dim: rgba(251, 146, 60, 0.15);
  --niko-glow: rgba(45, 212, 191, 0.35);
  --niko-font: "Space Grotesk", system-ui, sans-serif;
  --niko-mono: "JetBrains Mono", ui-monospace, monospace;
  --niko-shell: min(100% - 2.5rem, 1200px);
  --niko-radius: 14px;
  --niko-radius-lg: 22px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
}

.niko-body {
  font-family: var(--niko-font);
  background: var(--niko-bg);
  color: var(--niko-text);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

/* ----- Ambient background ----- */
.niko-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(45, 212, 191, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(251, 146, 60, 0.06), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(45, 212, 191, 0.04), transparent 40%);
}

.niko-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(var(--niko-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--niko-border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.niko-body > header,
.niko-body > main,
.niko-body > footer {
  position: relative;
  z-index: 1;
}

/* ----- Shell ----- */
.niko-shell {
  width: var(--niko-shell);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ----- Header ----- */
.niko-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding-block: 0.85rem;
  background: rgba(10, 14, 23, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--niko-border);
}

.niko-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.niko-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--niko-text);
  font-weight: 700;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  letter-spacing: -0.02em;
}

.niko-brand__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.niko-brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.niko-brand__tag {
  font-family: var(--niko-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--niko-accent);
}

.niko-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: 999px;
}

.niko-nav__link {
  color: var(--niko-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.niko-nav__link:hover {
  color: var(--niko-text);
  background: var(--niko-surface-hover);
}

.niko-nav__cta {
  margin-left: 0.5rem;
}

.niko-nav__toggle {
  display: none;
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  color: var(--niko-text);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
}

.niko-nav__list--mobile {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.25rem 1rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--niko-bg-elevated);
  border-bottom: 1px solid var(--niko-border);
}

.niko-nav__list--mobile:not([hidden]) {
  display: flex;
}

.niko-nav__list--mobile a {
  color: var(--niko-text-muted);
  text-decoration: none;
  padding: 0.65rem 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.niko-nav__list--mobile a:hover {
  color: var(--niko-accent);
  background: var(--niko-accent-dim);
}

/* ----- Buttons ----- */
.niko-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--niko-border);
  background: var(--niko-surface);
  color: var(--niko-text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.niko-btn:hover {
  background: var(--niko-surface-hover);
  border-color: var(--niko-border-strong);
}

.niko-btn--primary {
  background: var(--niko-accent);
  color: #042f2e;
  border-color: transparent;
}

.niko-btn--primary:hover {
  background: #5eead4;
  box-shadow: 0 0 32px var(--niko-glow);
  transform: translateY(-1px);
}

.niko-btn--ghost {
  background: transparent;
  border-color: var(--niko-border);
}

.niko-btn--ghost:hover {
  border-color: var(--niko-accent);
  color: var(--niko-accent);
}

/* ----- Hero ----- */
.niko-hero {
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
}

.niko-hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.niko-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--niko-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--niko-accent);
  background: var(--niko-accent-dim);
  border: 1px solid var(--niko-border-strong);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.niko-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--niko-accent);
  animation: niko-pulse 2s ease-in-out infinite;
}

@keyframes niko-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.niko-hero__title {
  font-size: clamp(2.25rem, 5vw + 0.5rem, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.niko-hero__accent {
  color: var(--niko-accent);
}

.niko-hero__lead {
  color: var(--niko-text-muted);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
  max-width: 48ch;
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.niko-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.niko-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--niko-border);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  overflow: hidden;
}

.niko-hero__stat {
  background: var(--niko-surface);
  padding: 1.1rem 1rem;
  text-align: center;
}

.niko-hero__stat-value {
  display: block;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--niko-accent);
  letter-spacing: -0.02em;
}

.niko-hero__stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--niko-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.niko-hero__panel {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.niko-hero__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--niko-accent), var(--niko-warm));
}

.niko-hero__panel-title {
  font-family: var(--niko-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--niko-warm);
  margin: 0 0 1rem;
}

.niko-hero__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.niko-hero__panel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--niko-text-muted);
  line-height: 1.5;
}

.niko-hero__panel-num {
  font-family: var(--niko-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--niko-accent);
  background: var(--niko-accent-dim);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ----- Reveal ----- */
.niko-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.22, 0.7, 0.2, 1);
}

.niko-reveal--in {
  opacity: 1;
  transform: translateY(0);
}

.niko-reveal[data-delay="0"] { transition-delay: 0ms; }
.niko-reveal[data-delay="60"] { transition-delay: 60ms; }
.niko-reveal[data-delay="80"] { transition-delay: 80ms; }
.niko-reveal[data-delay="100"] { transition-delay: 100ms; }
.niko-reveal[data-delay="120"] { transition-delay: 120ms; }
.niko-reveal[data-delay="140"] { transition-delay: 140ms; }
.niko-reveal[data-delay="160"] { transition-delay: 160ms; }
.niko-reveal[data-delay="180"] { transition-delay: 180ms; }
.niko-reveal[data-delay="200"] { transition-delay: 200ms; }
.niko-reveal[data-delay="240"] { transition-delay: 240ms; }
.niko-reveal[data-delay="280"] { transition-delay: 280ms; }

/* ----- Section ----- */
.niko-section {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.niko-section--alt {
  background: var(--niko-bg-elevated);
  border-block: 1px solid var(--niko-border);
}

.niko-section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.niko-section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.niko-section__index {
  font-family: var(--niko-mono);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--niko-surface-hover);
  -webkit-text-stroke: 1px var(--niko-border-strong);
  color: transparent;
  user-select: none;
}

.niko-section__head--center .niko-section__index {
  display: none;
}

.niko-section__title {
  font-size: clamp(1.65rem, 3vw + 0.5rem, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: -0.025em;
}

.niko-section__sub {
  color: var(--niko-text-muted);
  font-size: clamp(0.95rem, 0.8vw + 0.7rem, 1.05rem);
  line-height: 1.65;
  margin: 0;
  max-width: 58ch;
}

.niko-section__head--center .niko-section__sub {
  margin-inline: auto;
}

/* ----- Services ----- */
.niko-services {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--niko-border);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius-lg);
  overflow: hidden;
}

.niko-service {
  display: grid;
  grid-template-columns: 72px 1fr 280px;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  background: var(--niko-surface);
  transition: background 0.25s ease;
}

.niko-service:hover {
  background: var(--niko-surface-hover);
}

.niko-service__num {
  font-family: var(--niko-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--niko-accent);
  padding-top: 0.15rem;
}

.niko-service__title {
  font-size: clamp(1.05rem, 0.8vw + 0.75rem, 1.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.niko-service__desc {
  font-size: 0.92rem;
  color: var(--niko-text-muted);
  margin: 0 0 0.65rem;
  line-height: 1.6;
}

.niko-service__meta {
  font-size: 0.82rem;
  color: var(--niko-text-dim);
  line-height: 1.55;
}

.niko-service__meta strong {
  color: var(--niko-text-muted);
}

.niko-service__tech {
  font-family: var(--niko-mono);
  font-size: 0.72rem;
  color: var(--niko-warm);
  line-height: 1.6;
  padding-top: 0.15rem;
}

/* ----- Timeline (Methodology) ----- */
.niko-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 2rem;
}

.niko-timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--niko-accent), var(--niko-warm));
  border-radius: 2px;
}

.niko-timeline__item {
  position: relative;
  padding: 0 0 2rem 1.75rem;
}

.niko-timeline__item:last-child {
  padding-bottom: 0;
}

.niko-timeline__dot {
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--niko-bg);
  border: 2px solid var(--niko-accent);
  box-shadow: 0 0 12px var(--niko-glow);
}

.niko-timeline__step {
  font-family: var(--niko-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--niko-accent);
  margin-bottom: 0.35rem;
}

.niko-timeline__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.niko-timeline__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.niko-timeline__block {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  padding: 1rem 1.15rem;
}

.niko-timeline__block-label {
  font-family: var(--niko-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--niko-warm);
  margin-bottom: 0.4rem;
}

.niko-timeline__block-text {
  font-size: 0.88rem;
  color: var(--niko-text-muted);
  margin: 0;
  line-height: 1.6;
}

.niko-methodology__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

/* ----- Tech ----- */
.niko-tech {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.niko-tech__col {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  padding: 1.35rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.niko-tech__col:hover {
  border-color: var(--niko-border-strong);
  transform: translateY(-2px);
}

.niko-tech__label {
  font-family: var(--niko-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--niko-accent);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--niko-border);
}

.niko-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.niko-tech__tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  background: var(--niko-bg);
  border: 1px solid var(--niko-border);
  border-radius: 6px;
  color: var(--niko-text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.niko-tech__tag:hover {
  color: var(--niko-accent);
  border-color: var(--niko-border-strong);
}

/* ----- Compliance ----- */
.niko-compliance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.niko-compliance__card {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  padding: 1.5rem;
  transition: border-color 0.25s ease;
}

.niko-compliance__card:hover {
  border-color: var(--niko-border-strong);
}

.niko-compliance__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--niko-accent-dim);
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.niko-compliance__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--niko-accent);
}

.niko-compliance__text {
  font-size: 0.88rem;
  color: var(--niko-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ----- FAQ ----- */
.niko-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.niko-faq__item {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.niko-faq__item:hover,
.niko-faq__item[open] {
  border-color: var(--niko-border-strong);
}

.niko-faq__summary {
  padding: 1rem 2.5rem 1rem 1.15rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--niko-text);
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.niko-faq__summary::-webkit-details-marker {
  display: none;
}

.niko-faq__summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--niko-accent);
  transition: transform 0.25s ease;
}

.niko-faq__item[open] .niko-faq__summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.niko-faq__summary:hover {
  color: var(--niko-accent);
}

.niko-faq__content {
  padding: 0 1.15rem 1.15rem;
}

.niko-faq__content p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--niko-text-muted);
  line-height: 1.65;
}

/* ----- Contact ----- */
.niko-contact {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.25rem;
}

.niko-contact__form-box {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius-lg);
  padding: 2rem;
}

.niko-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.niko-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.niko-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.niko-contact__field--full {
  grid-column: 1 / -1;
}

.niko-contact__label {
  font-family: var(--niko-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--niko-text-dim);
}

.niko-contact__input,
.niko-contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--niko-text);
  background: var(--niko-bg);
  border: 1px solid var(--niko-border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.niko-contact__input::placeholder,
.niko-contact__textarea::placeholder {
  color: var(--niko-text-dim);
}

.niko-contact__input:focus,
.niko-contact__textarea:focus {
  outline: none;
  border-color: var(--niko-accent);
  box-shadow: 0 0 0 3px var(--niko-accent-dim);
}

.niko-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.niko-contact__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.niko-contact__card {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  padding: 1.35rem;
  flex: 1;
}

.niko-contact__card-title {
  font-family: var(--niko-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--niko-warm);
  margin: 0 0 0.85rem;
}

.niko-contact__address {
  font-style: normal;
}

.niko-contact__address p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--niko-text-muted);
  line-height: 1.6;
}

.niko-contact__link {
  color: var(--niko-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 212, 191, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.niko-contact__link:hover {
  color: var(--niko-warm);
  border-bottom-color: var(--niko-warm);
}

.niko-contact__hours {
  font-size: 0.82rem;
  color: var(--niko-text-dim);
  margin: 0.75rem 0 0;
}

/* ----- Page (About, Privacy) ----- */
.niko-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.niko-page-card {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  padding: 1.5rem;
}

.niko-page-card--wide {
  grid-column: span 2;
}

.niko-page-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--niko-accent);
}

.niko-page-card__text {
  font-size: 0.92rem;
  color: var(--niko-text-muted);
  line-height: 1.65;
  margin: 0 0 0.65rem;
}

.niko-page-card__meta {
  font-size: 0.82rem;
  color: var(--niko-text-dim);
  line-height: 1.55;
}

.niko-page-card__meta strong {
  color: var(--niko-text-muted);
}

.niko-prose {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius-lg);
  padding: 2rem;
  min-height: 200px;
}

.niko-privacy {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.niko-privacy-card {
  background: var(--niko-surface);
  border: 1px solid var(--niko-border);
  border-radius: var(--niko-radius);
  padding: 1.5rem 1.75rem;
  text-align: justify;
}

.niko-privacy-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--niko-accent);
  text-align: center;
}

.niko-privacy-card p {
  font-size: 0.92rem;
  color: var(--niko-text-muted);
  line-height: 1.65;
  margin: 0 0 0.85rem;
  text-align: justify;
}

.niko-privacy-card p:last-child {
  margin-bottom: 0;
}

.niko-privacy-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--niko-text-muted);
  line-height: 1.65;
  text-align: justify;
}

.niko-privacy-card ul:last-child {
  margin-bottom: 0;
}

.niko-privacy-card li {
  margin-bottom: 0.35rem;
}

.niko-privacy-card li:last-child {
  margin-bottom: 0;
}

.niko-privacy-card a {
  color: var(--niko-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.niko-privacy-card a:hover {
  color: var(--niko-warm);
}

.niko-section--privacy .niko-section__head {
  text-align: center;
  justify-items: center;
}

.niko-section--privacy .niko-section__title {
  text-align: center;
}

/* ----- Footer ----- */
.niko-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--niko-border);
  margin-top: 1rem;
}

.niko-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.niko-footer__brand {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.niko-footer__brand-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
}

.niko-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.niko-footer__nav a {
  color: var(--niko-text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.niko-footer__nav a:hover {
  color: var(--niko-accent);
}

.niko-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--niko-text-dim);
  text-align: right;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .niko-hero__layout {
    grid-template-columns: 1fr;
  }

  .niko-service {
    grid-template-columns: 56px 1fr;
  }

  .niko-service__tech {
    grid-column: 2;
  }

  .niko-methodology__layout {
    grid-template-columns: 1fr;
  }

  .niko-tech {
    grid-template-columns: repeat(2, 1fr);
  }

  .niko-compliance {
    grid-template-columns: 1fr;
  }

  .niko-faq {
    grid-template-columns: 1fr;
  }

  .niko-contact {
    grid-template-columns: 1fr;
  }

  .niko-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .niko-footer__copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .niko-nav {
    display: none;
  }

  .niko-nav__cta {
    display: none;
  }

  .niko-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .niko-hero__stats {
    grid-template-columns: 1fr;
  }

  .niko-section__head {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .niko-section__index {
    font-size: 2rem;
  }

  .niko-service {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .niko-service__num {
    margin-bottom: -0.5rem;
  }

  .niko-timeline__grid {
    grid-template-columns: 1fr;
  }

  .niko-tech {
    grid-template-columns: 1fr;
  }

  .niko-contact__row {
    grid-template-columns: 1fr;
  }

  .niko-page-grid {
    grid-template-columns: 1fr;
  }

  .niko-page-card--wide {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .niko-hero__badge-dot {
    animation: none;
  }

  .niko-reveal {
    transition-duration: 0.01ms;
  }
}
