/* =================================================================
   SKYCORE LICENCE — Premium Light Theme
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Vars ───────────────────────────────────────────────────── */
:root {
  --sky-bg:      #f0f4fa;
  --sky-surface: #ffffff;
  --sky-card:    #ffffff;
  --sky-border:  #dce7f5;
  --sky-blue:    #0060fe;
  --sky-blue-dk: #004fd4;
  --sky-blue-lt: #e8f0ff;
  --sky-cyan:    #38bdf8;
  --sky-grad:    linear-gradient(120deg, #0060fe 0%, #38bdf8 100%);
  --sky-text:    #0c1326;
  --sky-text2:   #52637e;
  --sky-text3:   #98aabe;
  --sky-r:       12px;
  --sky-shadow:  0 2px 16px rgba(0,50,120,0.08);
  --sky-shadow-hover: 0 10px 36px rgba(0,50,120,0.14);
}

/* ── Page Base ──────────────────────────────────────────────────── */
body.sky-page {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif !important;
  background: var(--sky-bg) !important;
  color: var(--sky-text) !important;
  -webkit-font-smoothing: antialiased;
}
.sky-page a { color: inherit; }
.sky-page *, .sky-page *::before, .sky-page *::after { box-sizing: border-box; }

/* ── Shared Utilities ───────────────────────────────────────────── */
.sky-container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.sky-section   { padding: 88px 0; position: relative; }
.sky-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky-blue); margin-bottom: 14px;
}
.sky-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--sky-blue); border-radius: 2px; }
.sky-section-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800;
  line-height: 1.18; letter-spacing: -0.02em; color: var(--sky-text); margin: 0 0 16px;
}
.sky-section-sub { font-size: 1rem; color: var(--sky-text2); line-height: 1.72; max-width: 520px; }
.sky-grad-text {
  background: var(--sky-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sky-divider { width: 100%; height: 1px; background: var(--sky-border); }

/* ================================================================
   1. HERO — Clean, professional, no gimmicks
   ================================================================ */
.n-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 80px; overflow: hidden;
  background: #ffffff;
}
/* Right-side blue accent shape — like Hostinger */
.n-hero::after {
  content: ''; position: absolute; right: -80px; top: 0; bottom: 0;
  width: 52%; pointer-events: none; z-index: 0;
  background: linear-gradient(160deg, #f0f6ff 0%, #e4efff 60%, #dce8ff 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#n-particles { display: none; }
.n-hero__glow-1, .n-hero__glow-2 { display: none; }
.n-hero .sky-container { position: relative; z-index: 2; }

/* Hero left content */
.n-hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.n-hero__stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.n-hero__rating-text { font-size: 13px; font-weight: 600; color: var(--sky-text2); }
.n-hero__rating-text strong { color: var(--sky-text); }

/* Big price highlight in headline */
.n-hero__price-mark {
  color: var(--sky-blue); font-weight: 900;
}

.n-hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -0.02em; /* Poppins needs less negative spacing */
  color: var(--sky-text); margin-bottom: 18px;
}
.n-hero__sub {
  font-size: 1.05rem; color: var(--sky-text2); line-height: 1.72;
  max-width: 460px; margin-bottom: 30px; font-weight: 400;
}
.n-hero__ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Buttons */
.n-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 8px; font-size: 14.5px; font-weight: 600;
  text-decoration: none !important; transition: all 0.22s ease;
  cursor: pointer; border: none; font-family: inherit; white-space: nowrap;
}
.n-btn svg { flex-shrink: 0; transition: transform 0.2s ease; }
.n-btn:hover svg { transform: translateX(3px); }
.n-btn--primary {
  background: var(--sky-blue); color: #fff !important;
  box-shadow: 0 3px 16px rgba(0,96,254,0.32);
}
.n-btn--primary:hover { background: var(--sky-blue-dk); box-shadow: 0 5px 24px rgba(0,96,254,0.48); transform: translateY(-1px); }
.n-btn--ghost {
  background: #fff; color: var(--sky-text) !important;
  border: 1.5px solid var(--sky-border);
}
.n-btn--ghost:hover { border-color: rgba(0,96,254,0.35); color: var(--sky-blue) !important; transform: translateY(-1px); }
.n-btn--outline-blue {
  background: transparent; color: var(--sky-blue) !important;
  border: 1.5px solid rgba(0,96,254,0.3); border-radius: 8px;
}
.n-btn--outline-blue:hover { background: var(--sky-blue-lt); border-color: var(--sky-blue); }

/* Feature checklist */
.n-hero__checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px;
  margin-bottom: 32px;
}
.n-hero__check-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--sky-text2); font-weight: 500;
}
.n-hero__check-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,96,254,0.1); border: 1.5px solid rgba(0,96,254,0.2);
  display: flex; align-items: center; justify-content: center;
}
.n-hero__check-icon svg { stroke: var(--sky-blue); }

/* Hero stats (kept as fallback, used in stats section) */
.n-hero__stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--sky-border); }

/* Trust badges row */
.n-hero__trust {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--sky-border);
}
.n-trust__label { font-size: 11px; color: var(--sky-text3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.n-trust__badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.n-trust-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; padding: 0 10px;
  background: #f8faff; border: 1px solid #e8eef8;
  border-radius: 6px; opacity: 0.72; transition: opacity 0.2s;
}
.n-trust-badge:hover { opacity: 1; }
.n-trust-badge--ssl {
  gap: 5px; font-size: 10px; font-weight: 800; color: #00a852;
  background: rgba(0,200,100,0.06); border-color: rgba(0,200,100,0.2);
}
.n-stat { display: flex; flex-direction: column; gap: 2px; }
.n-stat__num { font-size: 1.45rem; font-weight: 800; color: var(--sky-text); letter-spacing: -0.02em; }
.n-stat__label { font-size: 11px; color: var(--sky-text2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.n-stat__sep { width: 1px; height: 36px; background: var(--sky-border); }

/* ── DASHBOARD WIDGET ──────────────────────────────────────────── */
.n-dashboard {
  background: #fff; border: 1px solid var(--sky-border);
  border-radius: 18px; overflow: hidden; position: relative;
  box-shadow: 0 24px 72px rgba(0,60,140,0.13), 0 4px 16px rgba(0,60,140,0.06);
}

/* Header — clean app header, no macOS dots */
.n-dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: linear-gradient(to right, #f5f8ff, #fafcff);
  border-bottom: 1px solid var(--sky-border);
}
.n-dash-head__brand { display: flex; align-items: center; gap: 10px; }
.n-dash-head__icon {
  width: 28px; height: 28px; background: var(--sky-blue-lt);
  border: 1px solid rgba(0,96,254,0.15); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.n-dash-head__title { font-size: 13px; font-weight: 700; color: var(--sky-text); line-height: 1.2; }
.n-dash-head__summary { font-size: 10px; color: var(--sky-text3); font-family: 'SF Mono','Fira Code',monospace; margin-top: 2px; }

.n-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.25);
  color: #00a852; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 3px 9px; border-radius: 100px;
}
.n-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #00c864;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{ box-shadow:0 0 0 2px rgba(0,200,100,0.3); } 50%{ box-shadow:0 0 0 5px rgba(0,200,100,0.05); } }

/* Column labels */
.n-dash-cols {
  display: flex; align-items: center; padding: 5px 16px 5px 19px;
  background: #f4f7fc; border-bottom: 1px solid #edf2fa; gap: 8px;
}
.n-dash-cols span { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky-text3); }
.n-dash-cols span:first-child { flex: 1; }
.n-dash-cols span:nth-child(2) { width: 60px; text-align: right; }
.n-dash-cols span:nth-child(3) { width: 70px; text-align: center; }

/* Row list — no gap, flat list */
.n-dashboard__body { padding: 0; display: flex; flex-direction: column; }

/* Individual row */
.n-dash-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 0;
  border-bottom: 1px solid #f2f5fb;
  position: relative;
  transition: background 0.16s ease, opacity 0.35s ease, transform 0.35s ease;
  opacity: 0; transform: translateX(18px);
  cursor: default;
}
.n-dash-row:last-child { border-bottom: none; }
.n-dash-row.n-in { opacity: 1; transform: translateX(0); }
.n-dash-row:hover { background: #f8faff; }
.n-dash-row.n-new-row { animation: rowPop 2.5s ease; }
@keyframes rowPop { 0%,100%{ background:transparent; } 25%{ background:rgba(0,96,254,0.06); } }

/* 3px left accent — product colour via CSS var */
.n-dash-accent {
  width: 3px; align-self: stretch;
  background: var(--row-accent, #0060fe);
  border-radius: 0 2px 2px 0; flex-shrink: 0;
  opacity: 0.55; transition: opacity 0.16s;
}
.n-dash-row:hover .n-dash-accent { opacity: 1; }

/* Icon — bare SVG, no bg box */
.n-dash-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Text stack */
.n-dash-info { flex: 1; min-width: 0; }
.n-dash-product { font-size: 12.5px; font-weight: 700; color: var(--sky-text); display: block; line-height: 1.3; }
.n-dash-server  { font-size: 10px; color: var(--sky-text3); font-family: 'SF Mono','Fira Code',monospace; display: block; }
.n-dash-meta {
  display: block; font-size: 9.5px; color: var(--sky-text3);
  font-family: 'SF Mono','Fira Code',monospace; margin-top: 3px;
  transition: color 0.4s ease;
}
.n-dash-meta strong { font-weight: 700; color: var(--sky-text2); }
.n-dash-meta--shield { color: #00a852; }
.n-dash-meta--shield strong { color: #00a852; }
.n-dash-meta--blue { color: var(--sky-blue); }

/* Price column */
.n-dash-price {
  font-size: 12.5px; font-weight: 700; color: var(--sky-text);
  white-space: nowrap; width: 60px; text-align: right; flex-shrink: 0;
}
.n-dash-price small { font-size: 9px; font-weight: 400; color: var(--sky-text3); }

/* Status badges — fixed width for column alignment */
.n-dash-status {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 10px; font-weight: 700; padding: 3px 0;
  border-radius: 100px; white-space: nowrap; flex-shrink: 0;
  width: 70px;
}
.n-dash-status--active    { background: rgba(0,200,100,0.1); color: #00a852; border: 1px solid rgba(0,200,100,0.2); }
.n-dash-status--activating{ background: rgba(0,96,254,0.08); color: #0050d0; border: 1px solid rgba(0,96,254,0.2); }
.n-dash-status--warn      { background: rgba(245,158,11,0.1); color: #d97706; border: 1px solid rgba(245,158,11,0.25); }
.n-dash-status--dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.n-dash-status--active .n-dash-status--dot { animation: statusPulse 1.8s infinite; }
@keyframes statusPulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* Progress bar (activating row — replaces status) */
.n-dash-progress { display: flex; flex-direction: column; gap: 3px; width: 70px; flex-shrink: 0; }
.n-dash-progress-bar { width: 100%; height: 3px; background: #e4ecf8; border-radius: 2px; overflow: hidden; }
.n-dash-progress-fill { height: 100%; background: var(--sky-grad); border-radius: 2px; width: 0%; transition: width 0.4s ease; }
.n-dash-progress-label { font-size: 9px; font-weight: 700; color: var(--sky-blue); text-align: right; font-family: 'SF Mono','Fira Code',monospace; }

/* Footer bar */
.n-dashboard__footer {
  padding: 9px 14px; border-top: 1px solid #f0f4fa;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fafcff;
}
.n-dashboard__footer-text {
  font-size: 10.5px; color: var(--sky-text3);
  font-family: 'SF Mono','Fira Code',monospace;
  display: flex; align-items: center; gap: 5px;
}
.n-dashboard__footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: #00a852;
  background: rgba(0,200,100,0.08); border-radius: 100px;
  padding: 3px 10px; border: 1px solid rgba(0,200,100,0.15);
}
.n-api-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #00c864; flex-shrink: 0;
  animation: apiPulse 2s ease-in-out infinite;
}
@keyframes apiPulse { 0%,100%{ box-shadow:0 0 0 2px rgba(0,200,100,0.25); } 50%{ box-shadow:0 0 0 4px rgba(0,200,100,0.06); } }

/* Toast — compact floating card, bottom-right, slides in from right */
.n-dash-toast {
  position: absolute; bottom: 44px; right: 10px;
  background: #fff;
  border: 1px solid rgba(0,168,82,0.22);
  border-left: 3px solid #00a852;
  border-radius: 10px; padding: 9px 12px 9px 10px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 28px rgba(0,60,140,0.16), 0 1px 6px rgba(0,60,140,0.07);
  max-width: 210px; z-index: 10;
  opacity: 0; transform: translateX(20px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.n-dash-toast.show { opacity: 1; transform: translateX(0) scale(1); }
.n-dash-toast__icon {
  width: 24px; height: 24px; border-radius: 6px; background: rgba(0,200,100,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.n-dash-toast__body { flex: 1; min-width: 0; }
.n-dash-toast__title { font-size: 11px; font-weight: 700; color: var(--sky-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.n-dash-toast__sub   { font-size: 10px; color: var(--sky-text2); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.n-dash-toast__time  { font-size: 9px; color: var(--sky-text3); white-space: nowrap; flex-shrink: 0; }

/* ================================================================
   TERMINAL WIDGET
   ================================================================ */
.n-term {
  background: #0d1117;
  border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.07);
  font-family: 'SF Mono','Fira Code','Cascadia Code',ui-monospace,monospace;
}

/* Title bar */
.n-term-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: #161b22;
  border-bottom: 1px solid #21262d;
}
.n-term-dots { display: flex; gap: 6px; align-items: center; }
.n-term-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.n-term-dot--r { background: #ff5f57; }
.n-term-dot--y { background: #febc2e; }
.n-term-dot--g { background: #28c840; }
.n-term-title { flex: 1; text-align: center; font-size: 11px; color: #484f58; font-family: inherit; }

/* Override live badge for dark bg */
.n-term .n-live-badge { background: rgba(63,185,80,0.12); border-color: rgba(63,185,80,0.25); color: #3fb950; }
.n-term .n-live-dot   { background: #3fb950; }

/* Body */
.n-term-body { padding: 14px 16px 12px; }

/* Prompt lines */
.n-term-line { font-size: 12px; line-height: 1.6; font-family: inherit; }
.n-term-ps   { color: #3fb950; font-weight: 700; user-select: none; }
.n-term-cmd  { color: #e6edf3; }
.n-term-gap  { height: 9px; }

/* Colour tokens */
.n-term-dim   { color: #484f58; }
.n-term-ok    { color: #3fb950; }
.n-term-blue  { color: #58a6ff; }
.n-term-cyan  { color: #39c5cf; }
.n-term-amber { color: #d29922; }
.n-term-warn  { color: #f85149; }
.n-term-active  { color: #3fb950; }

/* Column header row */
.n-term-thead { display: flex; align-items: center; padding: 4px 0 5px; border-bottom: 1px solid #21262d; margin-bottom: 2px; }
.n-term-thead > span { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: #30363d; font-family: inherit; text-transform: uppercase; }

/* Column widths — shared by thead + rows */
.n-tc-ind   { width: 22px;  flex-shrink: 0; }
.n-tc-prod  { width: 125px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.n-tc-ip    { width: 105px; flex-shrink: 0; }
.n-tc-price { width: 42px;  flex-shrink: 0; text-align: right; }
.n-tc-stat  { width: 68px;  flex-shrink: 0; text-align: center; }

/* License rows */
.n-term-row {
  display: flex; align-items: center;
  font-size: 11.5px; color: #e6edf3; padding: 5px 0;
  border-bottom: 1px solid #21262d;
  font-family: inherit;
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.15s;
}
.n-term-row:last-child { border-bottom: none; }
.n-term-row.n-in { opacity: 1; transform: translateX(0); }
.n-term-row:hover { background: rgba(255,255,255,0.03); }
.n-term-row.n-new-row { animation: termFlash 2s ease; }
@keyframes termFlash { 0%,100%{background:transparent} 25%{background:rgba(63,185,80,0.09)} }

.n-term-row .n-tc-ip    { color: #484f58; font-size: 10.5px; }
.n-term-row .n-tc-price { color: #c9d1d9; }
.n-term-meta { flex: 1; color: #484f58; font-size: 10.5px; padding-left: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Progress bar overrides inside terminal */
.n-term .n-dash-progress { width: 68px; flex-shrink: 0; gap: 2px; }
.n-term .n-dash-progress-bar { background: #21262d; height: 4px; border-radius: 2px; }
.n-term .n-dash-progress-fill { background: #58a6ff; }
.n-term .n-dash-progress-label { color: #58a6ff; }

/* Status badge written by JS after progress — render as plain terminal text */
.n-term .n-dash-status { background: transparent !important; border: none !important; padding: 0; width: 68px; font-family: inherit; font-size: 11.5px; }
.n-term .n-dash-status--active { color: #3fb950; }
.n-term .n-dash-status--dot { display: none; }

/* Meta class reset by JS */
.n-term .n-dash-meta { color: #484f58; font-family: inherit; font-size: 10.5px; padding-left: 8px; }
.n-term .n-dash-meta--shield { color: #3fb950; }

/* Footer summary line */
.n-term-footer {
  font-size: 11px; font-family: inherit;
  padding: 7px 0 4px; border-top: 1px solid #21262d; margin-top: 2px;
}
.n-term-sep { margin: 0 5px; color: #30363d; }

/* Blinking cursor line */
.n-term-prompt-line { display: flex; align-items: center; gap: 3px; font-size: 12px; margin-top: 6px; }
.n-term-cursor { color: #3fb950; animation: termBlink 1s step-end infinite; }
@keyframes termBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Toast overrides for dark bg */
.n-term .n-dash-toast { background: #161b22; border-color: rgba(63,185,80,0.25); border-left-color: #3fb950; box-shadow: 0 4px 28px rgba(0,0,0,0.5); }
.n-term .n-dash-toast__icon  { background: rgba(63,185,80,0.12); }
.n-term .n-dash-toast__title { color: #e6edf3; }
.n-term .n-dash-toast__sub   { color: #8b949e; }
.n-term .n-dash-toast__time  { color: #484f58; }

/* ================================================================
   2. TICKER
   ================================================================ */
.n-ticker {
  padding: 18px 0; border-top: 1px solid var(--sky-border);
  border-bottom: 1px solid var(--sky-border);
  background: #fff; overflow: hidden; position: relative;
}
.n-ticker::before,.n-ticker::after {
  content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.n-ticker::before { left: 0; background: linear-gradient(90deg,#fff,transparent); }
.n-ticker::after  { right: 0; background: linear-gradient(-90deg,#fff,transparent); }
.n-ticker__track {
  display: flex; gap: 52px; white-space: nowrap;
  animation: tickerScroll 28s linear infinite; width: max-content;
}
.n-ticker__track:hover { animation-play-state: paused; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.n-ticker__label {
  font-size: 11px; font-weight: 700; color: var(--sky-text3);
  text-transform: uppercase; letter-spacing: 0.1em; padding-right: 52px;
}
.n-ticker__item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--sky-text2);
  transition: color 0.2s;
}
.n-ticker__item:hover { color: var(--sky-blue); }
.n-ticker__item svg { color: var(--sky-text3); flex-shrink: 0; }
.n-ticker__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--sky-border); }

/* ================================================================
   3. STATS
   ================================================================ */
.n-stats-section {
  padding: 52px 0; background: #fff;
  border-top: 1px solid var(--sky-border); border-bottom: 1px solid var(--sky-border);
}
.n-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.n-stats-item {
  padding: 32px 28px; text-align: center;
  border-right: 1px solid var(--sky-border); transition: background 0.3s;
}
.n-stats-item:last-child { border-right: none; }
.n-stats-item:hover { background: #f4f7ff; }
.n-stats-num {
  font-size: 2.6rem; font-weight: 900; letter-spacing: -0.05em;
  color: var(--sky-blue);
  display: block; margin-bottom: 6px;
}
.n-stats-label { font-size: 13px; color: var(--sky-text2); font-weight: 500; }

/* ================================================================
   4. PRODUCTS
   ================================================================ */
.n-products-section { padding: 96px 0; background: var(--sky-bg); }
.n-products-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px;
}
.n-product-card {
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-radius: var(--sky-r); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--sky-shadow);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
/* Subtle colored top line per card */
.n-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pc-accent, var(--sky-blue)); opacity: 0.55;
  transition: opacity 0.3s;
}
.n-product-card:hover::before { opacity: 1; }
.n-product-card:hover {
  border-color: rgba(0,96,254,0.28);
  box-shadow: var(--sky-shadow-hover);
  transform: translateY(-4px);
}
.n-pc-top { display: flex; align-items: flex-start; justify-content: space-between; }
.n-pc-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.n-pc-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 9px; border-radius: 100px;
}
.n-pc-badge--hot   { background: rgba(255,108,0,0.1);  color: #c95000; }
.n-pc-badge--blue  { background: rgba(0,96,254,0.1);   color: #0050d0; }
.n-pc-badge--green { background: rgba(0,180,70,0.1);   color: #00853a; }
.n-pc-badge--purple{ background: rgba(130,60,200,0.1); color: #7020a8; }
.n-pc-badge--red   { background: rgba(210,40,40,0.1);  color: #b51414; }
.n-pc-badge--teal  { background: rgba(0,160,180,0.1);  color: #007585; }
.n-pc-name { font-size: 17px; font-weight: 800; color: var(--sky-text); }
.n-pc-desc { font-size: 13.5px; color: var(--sky-text2); line-height: 1.65; flex: 1; }
.n-pc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.n-pc-price  { display: flex; flex-direction: column; }
.n-pc-from   { font-size: 10px; color: var(--sky-text3); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.n-pc-amount { font-size: 1.3rem; font-weight: 900; color: var(--sky-text); letter-spacing: -0.03em; }
.n-pc-amount em { font-size: 12px; font-weight: 500; font-style: normal; color: var(--sky-text2); }
.n-pc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,96,254,0.08); color: #0050d0 !important;
  border: 1px solid rgba(0,96,254,0.18); border-radius: 9px;
  padding: 9px 16px; font-size: 13px; font-weight: 700;
  text-decoration: none !important; transition: all 0.2s ease; position: relative; z-index: 1;
}
.n-pc-cta:hover { background: var(--sky-blue); color: #fff !important; border-color: var(--sky-blue); }

/* ================================================================
   5. PRICING — Individual license grid
   ================================================================ */
.n-pricing-section { padding: 96px 0; background: #fff; }

.n-price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px;
}

.n-price-card {
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-top: 3px solid var(--pc-accent, var(--sky-border));
  border-radius: 16px; padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  box-shadow: var(--sky-shadow); position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.n-price-card:hover {
  border-color: var(--pc-accent, rgba(0,96,254,0.28));
  border-top-color: var(--pc-accent, rgba(0,96,254,0.28));
  box-shadow: var(--sky-shadow-hover); transform: translateY(-4px);
}
.n-price-card--popular {
  border-color: rgba(0,96,254,0.3);
  border-top: 4px solid var(--sky-blue);
  box-shadow: 0 0 0 1px rgba(0,96,254,0.08), 0 16px 48px rgba(0,96,254,0.1);
}
.n-price-card--popular::before { display: none; }
.n-price-card--popular:hover {
  border-color: rgba(0,96,254,0.45);
  box-shadow: 0 0 0 3px rgba(0,96,254,0.1), 0 24px 64px rgba(0,96,254,0.18);
  transform: translateY(-6px);
}
.n-price-card__badge {
  position: absolute; top: -1px; right: 16px;
  background: var(--sky-blue); color: #fff;
  font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em;
  padding: 4px 11px; border-radius: 0 0 8px 8px;
}
.n-price-card__icon {
  width: 46px; height: 46px; border-radius: 13px; border: 1px solid;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  flex-shrink: 0;
}
.n-price-card__name { font-size: 15px; font-weight: 800; color: var(--sky-text); margin-bottom: 6px; }
.n-price-card__price {
  display: flex; align-items: baseline; gap: 1px; margin-bottom: 14px;
}
.n-price-card__dollar { font-size: 1.1rem; font-weight: 800; color: var(--sky-text); }
.n-price-card__price > :not(.n-price-card__dollar):not(.n-price-card__mo) {
  font-size: 2.4rem; font-weight: 900; color: var(--sky-text); letter-spacing: -0.04em; line-height: 1;
}
.n-price-card__mo { font-size: 13px; color: var(--sky-text2); margin-left: 2px; }

.n-price-card__features {
  list-style: none; padding: 0; margin: 0 0 18px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--sky-border); padding-top: 14px;
}
.n-price-card__features li {
  font-size: 12.5px; color: var(--sky-text2); line-height: 1.45;
  display: flex; align-items: flex-start; gap: 8px;
}
.n-price-card__features li::before {
  content: '✓'; font-size: 11px; font-weight: 800;
  color: var(--pc-accent, #00a852);
  flex-shrink: 0; line-height: 1.6;
}
.n-price-card__cta {
  display: block; text-align: center; padding: 11px 16px;
  border: 1.5px solid var(--pc-accent, var(--sky-border));
  border-radius: 9px;
  font-size: 13px; font-weight: 700;
  color: var(--pc-accent, var(--sky-text)) !important;
  text-decoration: none !important; transition: all 0.2s ease;
  background: transparent;
}
.n-price-card__cta:hover {
  background: var(--pc-accent, var(--sky-blue));
  color: #fff !important;
  border-color: var(--pc-accent, var(--sky-blue));
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.n-price-card__cta--blue {
  background: var(--sky-blue) !important; color: #fff !important; border-color: var(--sky-blue) !important;
  box-shadow: 0 4px 18px rgba(0,96,254,0.3);
}
.n-price-card__cta--blue:hover {
  background: var(--sky-blue-dk) !important; box-shadow: 0 6px 26px rgba(0,96,254,0.42) !important; color: #fff !important;
}

/* Bundle callout */
.n-price-bundle {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(0,96,254,0.04); border: 1.5px solid rgba(0,96,254,0.15);
  border-radius: 14px; padding: 18px 22px; margin-top: 24px;
}
.n-price-bundle__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,96,254,0.1); display: flex; align-items: center; justify-content: center;
}
.n-price-bundle__text { flex: 1; font-size: 14px; color: var(--sky-text2); line-height: 1.5; }
.n-price-bundle__text strong { color: var(--sky-text); }
.n-price-bundle__link {
  font-size: 13.5px; font-weight: 700; color: var(--sky-blue) !important;
  text-decoration: none !important; white-space: nowrap;
  transition: opacity 0.2s;
}
.n-price-bundle__link:hover { opacity: 0.75; }

/* ================================================================
   6. FEATURES
   ================================================================ */
.n-features-section { padding: 96px 0; background: var(--sky-bg); }
.n-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.n-feat-card {
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-radius: var(--sky-r); padding: 28px 26px;
  box-shadow: var(--sky-shadow);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.n-feat-card:hover { border-color: rgba(0,96,254,0.3); transform: translateY(-3px); box-shadow: var(--sky-shadow-hover); }
.n-feat-icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--fi-bg, rgba(0,96,254,0.08));
  border: 1px solid var(--fi-border, rgba(0,96,254,0.15));
}
.n-feat-name { font-size: 17px; font-weight: 800; color: var(--sky-text); margin-bottom: 9px; }
.n-feat-desc { font-size: 13.5px; color: var(--sky-text2); line-height: 1.7; }

/* ================================================================
   7. TABLE
   ================================================================ */
.n-table-section { padding: 96px 0; background: #fff; }
.n-tab-pills {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin: 36px 0;
}
.n-tab-pill {
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--sky-text2); cursor: pointer;
  border: 1.5px solid var(--sky-border); background: transparent;
  transition: all 0.2s ease; font-family: inherit;
}
.n-tab-pill.active { background: var(--sky-blue); color: #fff !important; border-color: var(--sky-blue); }
.n-tab-pill:not(.active):hover { color: var(--sky-text); border-color: rgba(0,96,254,0.3); background: rgba(0,96,254,0.04); }
.n-table-wrap { overflow-x: auto; border-radius: var(--sky-r); border: 1px solid var(--sky-border); box-shadow: var(--sky-shadow); }
.n-compare-table { width: 100%; border-collapse: collapse; }
.n-compare-table th,.n-compare-table td { padding: 14px 18px; font-size: 13.5px; text-align: left; border-bottom: 1px solid var(--sky-border); }
.n-compare-table thead th { background: #f4f7ff; font-weight: 700; color: var(--sky-text); font-size: 14px; }
.n-compare-table thead th:nth-child(3) { background: #e8f0ff; }
.n-compare-table thead th:first-child { color: var(--sky-text2); font-weight: 500; font-size: 12.5px; }
.n-compare-table td { color: var(--sky-text2); background: #fff; }
.n-compare-table td:first-child { color: var(--sky-text); font-weight: 500; background: #fafbff; }
.n-compare-table tr:last-child td,.n-compare-table tr:last-child th { border-bottom: none; }
.n-compare-table tr:hover td { background: #f8faff; }
.n-compare-table tr:hover td:first-child { background: #f4f7ff; }
.n-check-svg { color: var(--sky-blue); vertical-align: middle; }
.n-tr-hide { display: none; }

/* ================================================================
   8. CTA
   ================================================================ */
.n-cta-section {
  padding: 100px 0; text-align: center;
  background: var(--sky-blue);
  position: relative; overflow: hidden;
}
.n-cta-section::before {
  content: ''; position: absolute;
  width: 900px; height: 600px; border-radius: 50%; top: -250px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.n-cta-section::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.n-cta-section .sky-container { position: relative; z-index: 1; }
.n-cta-section .sky-eyebrow { color: rgba(255,255,255,0.6); }
.n-cta-section .sky-eyebrow::before { background: rgba(255,255,255,0.35); }
.n-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  letter-spacing: -0.04em; color: #ffffff; margin-bottom: 18px;
}
.n-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 36px; line-height: 1.72; }
.n-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.n-cta-section .n-btn--primary {
  background: #fff !important; color: var(--sky-blue) !important;
  box-shadow: 0 4px 28px rgba(0,0,0,0.18) !important;
}
.n-cta-section .n-btn--primary:hover {
  background: #f0f4ff !important; box-shadow: 0 8px 36px rgba(0,0,0,0.22) !important; transform: translateY(-2px);
}
.n-cta-section .n-btn--ghost {
  background: rgba(255,255,255,0.1) !important; color: #fff !important;
  border-color: rgba(255,255,255,0.28) !important;
}
.n-cta-section .n-btn--ghost:hover {
  background: rgba(255,255,255,0.18) !important; border-color: rgba(255,255,255,0.5) !important; color: #fff !important;
}

/* ================================================================
   9. FAQ ACCORDION
   ================================================================ */
.n-faq-section {
  padding: 96px 0; background: var(--sky-bg);
  border-top: 1px solid var(--sky-border);
}
.n-faq-header { margin-bottom: 52px; }

.n-faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.n-faq-item {
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-radius: var(--sky-r); margin-bottom: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.n-faq-item:hover { border-color: rgba(0,96,254,0.22); }
.n-faq-item.open {
  border-color: rgba(0,96,254,0.3);
  box-shadow: 0 4px 24px rgba(0,96,254,0.07);
}

.n-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: var(--sky-text); line-height: 1.4;
  transition: color 0.2s;
}
.n-faq-q:hover { color: var(--sky-blue); }
.n-faq-item.open .n-faq-q { color: var(--sky-blue); }

.n-faq-chevron {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--sky-bg); border: 1px solid var(--sky-border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.3s ease;
  color: var(--sky-text2);
}
.n-faq-item.open .n-faq-chevron {
  background: var(--sky-blue-lt); border-color: rgba(0,96,254,0.25);
  transform: rotate(180deg); color: var(--sky-blue);
}

.n-faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
}
.n-faq-a {
  font-size: 14px; color: var(--sky-text2); line-height: 1.78;
  padding: 0 24px 20px; margin: 0;
  border-top: 1px solid var(--sky-border);
  padding-top: 16px;
}

/* ================================================================
   10. SUPPORT BAND
   ================================================================ */
.n-support-band {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid var(--sky-border);
  border-bottom: 1px solid var(--sky-border);
}
.n-support-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.n-support-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--sky-bg); border: 1px solid var(--sky-border);
  border-radius: 14px; padding: 20px 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.n-support-card:hover {
  border-color: rgba(0,96,254,0.25);
  box-shadow: 0 4px 20px rgba(0,96,254,0.06);
}
.n-support-icon {
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.n-support-text { flex: 1; min-width: 0; }
.n-support-title { font-size: 14px; font-weight: 700; color: var(--sky-text); margin-bottom: 3px; }
.n-support-sub   { font-size: 12.5px; color: var(--sky-text2); line-height: 1.5; }
.n-support-link {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-size: 12.5px; font-weight: 700; color: var(--sky-blue) !important;
  text-decoration: none !important; flex-shrink: 0;
  transition: gap 0.2s;
}
.n-support-link:hover { gap: 8px; }

/* ================================================================
   11. FOOTER
   ================================================================ */
.n-footer {
  background: #0c1326;
  padding: 64px 0 0;
}

/* Top grid: brand + 4 columns */
.n-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}

/* Brand column */
.n-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.n-footer__logo img { height: 32px; width: auto; }
.n-footer__logo-text {
  font-size: 20px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}
.n-footer__logo-text strong { color: #60a5fa; }
.n-footer__tagline {
  font-size: 13px; color: rgba(255,255,255,0.48);
  line-height: 1.7; max-width: 280px; margin: 0;
}
.n-footer__social { display: flex; gap: 8px; margin-top: 4px; }
.n-footer__social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.n-footer__social-link:hover {
  background: rgba(96,165,250,0.15); border-color: rgba(96,165,250,0.3);
  color: #60a5fa !important;
}

/* Link columns */
.n-footer__col-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.n-footer__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.n-footer__links li a {
  font-size: 13px; color: rgba(255,255,255,0.48) !important;
  text-decoration: none !important; transition: color 0.2s;
  line-height: 1.4;
}
.n-footer__links li a:hover { color: #60a5fa !important; }

/* Divider */
.n-footer__divider {
  width: 100%; height: 1px; background: rgba(255,255,255,0.07);
}

/* Bottom bar */
.n-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 22px 0;
}
.n-footer__copy {
  font-size: 12px; color: rgba(255,255,255,0.32); margin: 0; line-height: 1.6;
}
.n-footer__legal {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.n-footer__legal li a {
  font-size: 12px; color: rgba(255,255,255,0.32) !important;
  text-decoration: none !important; transition: color 0.2s;
}
.n-footer__legal li a:hover { color: rgba(255,255,255,0.7) !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width:1024px) {
  .n-products-grid { grid-template-columns: repeat(2,1fr); }
  .n-price-grid    { grid-template-columns: repeat(2,1fr); }
  .n-features-grid { grid-template-columns: repeat(2,1fr); }
  .n-stats-grid    { grid-template-columns: repeat(2,1fr); }
  .n-footer__top   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .n-footer__brand { grid-column: 1 / -1; }
  .n-support-grid  { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  .n-hero { padding: 120px 0 60px; min-height: auto; }
  .n-hero__title { font-size: 2.3rem; }
  .n-hero__sub { max-width: 100%; }
  .n-hero__ctas { flex-direction: column; align-items: stretch; }
  .n-btn { justify-content: center; }
  .n-products-grid,.n-features-grid,.n-price-grid { grid-template-columns: 1fr; }
  .n-stats-grid { grid-template-columns: repeat(2,1fr); }
  .sky-section { padding: 64px 0; }
  .n-footer__top { grid-template-columns: 1fr 1fr; }
  .n-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .n-support-card { flex-wrap: wrap; }
}
@media (max-width:480px) {
  .n-stats-grid { grid-template-columns: 1fr; }
  .n-stats-item { border-right: none; border-bottom: 1px solid var(--sky-border); }
  .n-footer__top { grid-template-columns: 1fr; }
  .n-footer__legal { gap: 12px; }
}

/* =================================================================
   12. ABOUT PAGE
   ================================================================= */

/* Hero */
.n-about-hero {
  background: #ffffff;
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--sky-border);
}
.n-about-hero__inner { max-width: 720px; }
.n-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--sky-text3);
  margin-bottom: 28px;
}
.n-breadcrumb a { color: var(--sky-blue); text-decoration: none !important; }
.n-breadcrumb a:hover { text-decoration: underline !important; }
.n-about-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--sky-text);
  margin: 0 0 20px;
}
.n-about-hero__sub {
  font-size: 1.05rem;
  color: var(--sky-text2);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 32px;
}
.n-about-hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Stats bar */
.n-about-stats {
  background: var(--sky-bg);
  border-bottom: 1px solid var(--sky-border);
  padding: 0;
}
.n-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.n-about-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--sky-border);
}
.n-about-stat:last-child { border-right: none; }
.n-about-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.n-about-stat__label {
  font-size: 12px;
  color: var(--sky-text3);
  font-weight: 500;
}

/* Story two-col */
.n-about-story {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.n-about-story__text p {
  font-size: 15px;
  color: var(--sky-text2);
  line-height: 1.8;
  margin: 0 0 18px;
}
.n-about-story__text .sky-section-title { margin-bottom: 24px; }

/* At a glance card */
.n-about-glance {
  background: var(--sky-bg);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 110px;
}
.n-about-glance__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-text3);
  margin-bottom: 20px;
}
.n-about-glance__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.n-about-glance__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.n-about-glance__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.n-about-glance__item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-text);
}
.n-about-glance__item-sub {
  font-size: 11.5px;
  color: var(--sky-text3);
  margin-top: 2px;
}

/* Catalog grid */
.n-about-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.n-about-cat-card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.n-about-cat-card:hover {
  border-color: rgba(0,96,254,0.2);
  box-shadow: 0 8px 32px rgba(0,50,120,0.09);
  transform: translateY(-3px);
}
.n-about-cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.n-about-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--sky-text);
}
.n-about-cat-desc {
  font-size: 13px;
  color: var(--sky-text2);
  line-height: 1.7;
  flex: 1;
}
.n-about-cat-price {
  font-size: 13px;
  color: var(--sky-text3);
  margin-top: 4px;
}
.n-about-cat-price strong { color: var(--sky-text); font-size: 15px; }
.n-about-cat-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-blue) !important;
  text-decoration: none !important;
}
.n-about-cat-link:hover { text-decoration: underline !important; }

/* How it works steps */
.n-about-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.n-about-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.n-about-step__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sky-blue);
  margin-bottom: 14px;
}
.n-about-step__icon {
  width: 56px;
  height: 56px;
  background: var(--sky-blue-lt);
  border: 1px solid rgba(0,96,254,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.n-about-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sky-text);
  margin: 0 0 10px;
}
.n-about-step__desc {
  font-size: 13px;
  color: var(--sky-text2);
  line-height: 1.72;
  margin: 0;
}
.n-about-step__connector {
  flex-shrink: 0;
  padding-top: 42px;
  opacity: 0.5;
}

/* Values grid */
.n-about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.n-about-value-card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-r);
  padding: 28px 24px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.n-about-value-card:hover {
  border-color: rgba(0,96,254,0.2);
  box-shadow: 0 8px 32px rgba(0,50,120,0.09);
  transform: translateY(-3px);
}
.n-about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.n-about-value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sky-text);
  margin: 0 0 10px;
}
.n-about-value-desc {
  font-size: 13px;
  color: var(--sky-text2);
  line-height: 1.72;
  margin: 0;
}

/* Who we serve */
.n-about-serve {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.n-about-serve__text .sky-section-title { margin-bottom: 20px; }
.n-about-serve__text > p {
  font-size: 15px;
  color: var(--sky-text2);
  line-height: 1.8;
  margin: 0 0 28px;
}
.n-about-serve__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.n-about-serve__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--sky-text2);
  line-height: 1.6;
}
.n-about-serve__item svg { flex-shrink: 0; margin-top: 3px; }
.n-about-serve__item strong { color: var(--sky-text); }

/* Provider chips */
.n-about-providers {
  background: var(--sky-bg);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 110px;
}
.n-about-providers__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-text3);
  margin-bottom: 16px;
}
.n-about-providers__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.n-about-provider-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sky-text2);
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: 20px;
  padding: 5px 12px;
}
.n-about-providers__note {
  font-size: 12px;
  color: var(--sky-text3);
  line-height: 1.6;
  margin: 0;
}

/* About page responsive */
@media (max-width:1024px) {
  .n-about-story,
  .n-about-serve { grid-template-columns: 1fr; gap: 40px; }
  .n-about-glance,
  .n-about-providers { position: static; }
  .n-about-values { grid-template-columns: repeat(2, 1fr); }
  .n-about-catalog { grid-template-columns: repeat(2, 1fr); }
  .n-about-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .n-about-stat:nth-child(3) { border-right: none; }
}
@media (max-width:768px) {
  .n-about-hero { padding: 60px 0 52px; }
  .n-about-steps { flex-direction: column; align-items: center; gap: 8px; }
  .n-about-step { max-width: 340px; width: 100%; }
  .n-about-step__connector { display: none; }
  .n-about-catalog { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
  .n-about-values { grid-template-columns: 1fr; }
  .n-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .n-about-stat:nth-child(3) { border-right: 1px solid var(--sky-border); }
  .n-about-stat:nth-child(2),
  .n-about-stat:nth-child(4) { border-right: none; }
}

/* =================================================================
   LEGAL / TERMS PAGE
   ================================================================= */

/* Hero */
.n-legal-hero {
  background: #fff;
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--sky-border);
}
.n-legal-hero__inner { max-width: 680px; }
.n-legal-hero__title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.2;
  color: var(--sky-text); margin: 0 0 14px;
}
.n-legal-hero__sub {
  font-size: 15.5px; color: var(--sky-text2); line-height: 1.7; margin-bottom: 22px;
}
.n-legal-hero__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.n-legal-meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--sky-text2);
  background: #f4f7fc; border: 1px solid var(--sky-border);
  border-radius: 100px; padding: 5px 12px;
}

/* Layout */
.n-legal-wrap { padding: 72px 0 100px; }
.n-legal-layout {
  display: grid; grid-template-columns: 210px 1fr; gap: 52px; align-items: start;
}

/* Sidebar nav */
.n-legal-nav { position: sticky; top: 90px; }
.n-legal-nav__label {
  font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--sky-text3); padding: 0 10px; margin-bottom: 8px;
}
.n-legal-nav__links { list-style: none; padding: 0; margin: 0 0 4px; display: flex; flex-direction: column; }
.n-legal-nav__links a {
  display: block; padding: 6px 10px; font-size: 13px; color: var(--sky-text2);
  text-decoration: none !important; border-radius: 7px;
  border-left: 2px solid transparent; transition: all 0.15s ease;
}
.n-legal-nav__links a:hover { color: var(--sky-blue); background: rgba(0,96,254,0.05); border-left-color: rgba(0,96,254,0.3); }
.n-legal-nav__links a.active { color: var(--sky-blue); background: rgba(0,96,254,0.07); border-left-color: var(--sky-blue); font-weight: 600; }
.n-legal-nav__sep { height: 1px; background: var(--sky-border); margin: 12px 10px 14px; }

/* Content */
.n-legal-body { max-width: 720px; }
.n-legal-section { margin-bottom: 56px; scroll-margin-top: 96px; }
.n-legal-section:last-child { margin-bottom: 0; }
.n-legal-section-header { margin-bottom: 32px; }
.n-legal-tag {
  display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sky-blue); background: rgba(0,96,254,0.08);
  border-radius: 100px; padding: 4px 11px; margin-bottom: 10px;
}
.n-legal-section__title {
  font-size: 21px; font-weight: 800; color: var(--sky-text); margin: 0 0 16px; line-height: 1.3;
}
.n-legal-section__intro { font-size: 14.5px; color: var(--sky-text2); line-height: 1.75; margin: 0; }
.n-legal-section p {
  font-size: 14.5px; color: var(--sky-text2); line-height: 1.8; margin-bottom: 12px;
}
.n-legal-h3 {
  font-size: 14.5px; font-weight: 700; color: var(--sky-text); margin: 22px 0 10px;
}
.n-legal-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 8px; }
.n-legal-list li {
  font-size: 14px; color: var(--sky-text2); line-height: 1.65;
  display: flex; gap: 10px; align-items: flex-start;
}
.n-legal-list li::before {
  content: '—'; color: var(--sky-text3); flex-shrink: 0; font-weight: 300; margin-top: 1px;
}
.n-legal-link { color: var(--sky-blue) !important; text-decoration: none !important; font-weight: 600; }
.n-legal-link:hover { text-decoration: underline !important; }
.n-legal-divider { border: none; border-top: 1px solid var(--sky-border); margin: 52px 0; }

/* Contact cards */
.n-legal-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.n-legal-contact-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f7f9fd; border: 1px solid var(--sky-border);
  border-radius: 12px; padding: 16px;
}
.n-legal-contact-card__icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(0,96,254,0.08); display: flex; align-items: center; justify-content: center;
}
.n-legal-contact-card__label { font-size: 11px; font-weight: 700; color: var(--sky-text3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.n-legal-contact-card__val { font-size: 13px; color: var(--sky-text2); }

/* Responsive */
@media (max-width: 900px) {
  .n-legal-layout { grid-template-columns: 1fr; }
  .n-legal-nav { position: static; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
  .n-legal-nav__label { display: none; }
  .n-legal-nav__sep { display: none; }
  .n-legal-nav__links { flex-direction: row; flex-wrap: wrap; }
  .n-legal-nav__links a { font-size: 12px; padding: 5px 10px; border-left: none; border-bottom: 2px solid transparent; border-radius: 6px; }
  .n-legal-nav__links a.active { border-bottom-color: var(--sky-blue); }
  .n-legal-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .n-legal-hero { padding: 52px 0 44px; }
  .n-legal-wrap { padding: 48px 0 72px; }
  .n-legal-section__title { font-size: 18px; }
}

/* =================================================================
   13. SKYLICENCE PAGE
   ================================================================= */

/* Individual license cards */
.n-sl-license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.n-sl-lic-card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.n-sl-lic-card:hover {
  border-color: rgba(0,96,254,0.2);
  box-shadow: 0 10px 40px rgba(0,50,120,0.1);
  transform: translateY(-3px);
}
.n-sl-lic-card--popular {
  border-color: rgba(0,96,254,0.3);
  box-shadow: 0 4px 24px rgba(0,96,254,0.1);
}
.n-sl-lic-card--popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sky-grad);
  border-radius: 16px 16px 0 0;
}
.n-sl-lic-popular-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sky-blue-lt);
  color: var(--sky-blue);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0,96,254,0.2);
}
.n-sl-lic-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.n-sl-lic-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.n-sl-lic-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--sky-text);
  line-height: 1.2;
}
.n-sl-lic-tag {
  font-size: 11px;
  color: var(--sky-text3);
  font-weight: 500;
  margin-top: 2px;
}
.n-sl-lic-desc {
  font-size: 13.5px;
  color: var(--sky-text2);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}
.n-sl-lic-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--sky-border);
  padding-top: 14px;
}
.n-sl-lic-features li {
  font-size: 12.5px;
  color: var(--sky-text2);
  padding-left: 18px;
  position: relative;
}
.n-sl-lic-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-blue);
  opacity: 0.5;
}
.n-sl-lic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--sky-border);
  padding-top: 16px;
  margin-top: auto;
}
.n-sl-lic-price {
  font-size: 13px;
  color: var(--sky-text3);
}
.n-sl-lic-price strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--sky-text);
}
.n-sl-lic-price span { font-size: 12px; }

/* Bundle cards */
.n-sl-bundles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.n-sl-bundle-card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.n-sl-bundle-card:hover {
  border-color: rgba(0,96,254,0.2);
  box-shadow: 0 10px 40px rgba(0,50,120,0.1);
  transform: translateY(-3px);
}
.n-sl-bundle-card--featured {
  border-color: rgba(0,96,254,0.3);
  background: linear-gradient(160deg, #f6f9ff 0%, #fff 100%);
}
.n-sl-bundle-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sky-blue);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
}
.n-sl-bundle-products {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.n-sl-bundle-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.n-sl-bundle-plus {
  font-size: 14px;
  font-weight: 700;
  color: var(--sky-text3);
}
.n-sl-bundle-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sky-text);
  margin: 0;
}
.n-sl-bundle-desc {
  font-size: 13.5px;
  color: var(--sky-text2);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}
.n-sl-bundle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.n-sl-bundle-tags span {
  font-size: 11.5px;
  color: var(--sky-text3);
  background: var(--sky-bg);
  border: 1px solid var(--sky-border);
  border-radius: 6px;
  padding: 3px 9px;
  font-weight: 500;
}

/* Why grid */
.n-sl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.n-sl-why-card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-r);
  padding: 26px 24px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.n-sl-why-card:hover {
  border-color: rgba(0,96,254,0.2);
  box-shadow: 0 8px 32px rgba(0,50,120,0.09);
  transform: translateY(-3px);
}
.n-sl-why-icon {
  width: 46px;
  height: 46px;
  background: var(--sky-blue-lt);
  border: 1px solid rgba(0,96,254,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.n-sl-why-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sky-text);
  margin: 0 0 10px;
}
.n-sl-why-desc {
  font-size: 13px;
  color: var(--sky-text2);
  line-height: 1.72;
  margin: 0;
}

/* Comparison table */
.n-sl-compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--sky-border);
  box-shadow: var(--sky-shadow);
}
.n-sl-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sky-card);
  font-size: 13.5px;
}
.n-sl-compare-table thead tr {
  border-bottom: 2px solid var(--sky-border);
}
.n-sl-compare-table th {
  padding: 20px 20px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--sky-text);
  vertical-align: bottom;
}
.n-sl-compare-feature-col { width: 28%; color: var(--sky-text3) !important; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.n-sl-compare-us-col { background: #f0f6ff; }
.n-sl-compare-brand { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.n-sl-compare-brand-sub { font-size: 11px; color: var(--sky-text3); font-weight: 500; }
.n-sl-compare-table tbody tr {
  border-bottom: 1px solid var(--sky-border);
}
.n-sl-compare-table tbody tr:last-child { border-bottom: none; }
.n-sl-compare-table td {
  padding: 14px 20px;
  color: var(--sky-text2);
  vertical-align: middle;
}
.n-sl-compare-row-label { font-weight: 600; color: var(--sky-text); font-size: 13px; }
.n-sl-check { color: #00a852; font-weight: 600; }
.n-sl-cross { color: #e04040; }
.n-sl-partial { color: var(--sky-text3); font-style: italic; }
.n-sl-yes { color: var(--sky-blue); font-weight: 600; }

/* Skylicence responsive */
@media (max-width:1024px) {
  .n-sl-license-grid { grid-template-columns: repeat(2, 1fr); }
  .n-sl-bundles { grid-template-columns: repeat(2, 1fr); }
  .n-sl-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:640px) {
  .n-sl-license-grid,
  .n-sl-bundles,
  .n-sl-why-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   14. REVIEWS
   ================================================================= */

.n-reviews-section {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid var(--sky-border);
}

/* Header */
.n-reviews-header { margin-bottom: 52px; }
.n-reviews-header .sky-section-title { margin-bottom: 20px; }

/* Trustpilot aggregate row */
.n-reviews-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-bg);
  border: 1px solid var(--sky-border);
  border-radius: 40px;
  padding: 8px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.n-agg-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--sky-text);
  line-height: 1;
}
.n-agg-stars { display: flex; align-items: center; gap: 2px; }
.n-agg-label {
  font-size: 13px;
  color: var(--sky-text2);
}
.n-agg-label strong { color: var(--sky-text); }
.n-tp-wordmark {
  font-size: 14px;
  font-weight: 800;
  color: #00b67a;
  letter-spacing: -0.01em;
}

/* Card grid */
.n-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Individual card */
.n-review-card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.n-review-card:hover {
  border-color: rgba(0,96,254,0.2);
  box-shadow: 0 8px 32px rgba(0,50,120,0.09);
  transform: translateY(-3px);
}

.n-review-stars { display: flex; align-items: center; gap: 3px; }

.n-review-text {
  font-size: 14px;
  color: var(--sky-text2);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.n-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--sky-border);
  margin-top: auto;
}
.n-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.n-review-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sky-text);
  line-height: 1.3;
}
.n-review-job {
  font-size: 11.5px;
  color: var(--sky-text3);
  margin-top: 2px;
}

/* Responsive */
@media (max-width:900px) {
  .n-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:600px) {
  .n-reviews-grid { grid-template-columns: 1fr; }
  .n-reviews-section { padding: 64px 0; }
}

/* =================================================================
   14. NAVBAR
   ================================================================= */

/* ── Topbar ──────────────────────────────────────────────────────── */
.n-topbar {
  background: #e8f0ff;
  border-bottom: 1px solid rgba(0,96,254,0.12);
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
.n-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 38px;
}
.n-topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
.n-topbar__badge {
  flex-shrink: 0;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sky-blue);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
}
.n-topbar__msg {
  font-size: 12.5px;
  color: var(--sky-text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
}
.n-topbar__msg:hover { color: var(--sky-blue); }
.n-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.n-topbar__link {
  font-size: 11.5px;
  color: var(--sky-text2);
  font-weight: 500;
  text-decoration: none !important;
}
.n-topbar__link:hover { color: var(--sky-blue); }
.n-topbar__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--sky-text3);
  display: flex;
  align-items: center;
  line-height: 1;
}
.n-topbar__close:hover { color: var(--sky-text); }

/* ── Navbar shell ────────────────────────────────────────────────── */
.n-navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.n-navbar--scrolled {
  border-color: var(--sky-border);
  box-shadow: 0 2px 24px rgba(0,50,120,0.08);
  background: rgba(255,255,255,0.99);
}
.n-navbar__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 60px;
}

/* ── Logo ────────────────────────────────────────────────────────── */
.n-navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
  margin-right: 16px;
}
.n-navbar__logo-fallback {
  font-size: 16px;
  font-weight: 700;
  color: var(--sky-text);
  letter-spacing: -0.03em;
}
.n-navbar__logo-fallback strong { color: var(--sky-blue); }

/* ── Desktop nav list ────────────────────────────────────────────── */
.n-navbar__nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  flex: 1;
}
.n-nav-item { position: relative; }
.n-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sky-text) !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
}
.n-nav-link:hover,
.n-nav-item--drop:hover > .n-nav-link { background: var(--sky-blue-lt); color: var(--sky-blue) !important; }
.n-nav-link--active { color: var(--sky-blue) !important; }
.n-nav-chevron {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  color: var(--sky-text3);
}
.n-nav-item--drop:hover .n-nav-chevron { transform: rotate(180deg); color: var(--sky-blue); }

/* Invisible bridge so mouse can travel from nav link into dropdown without losing hover */
.n-nav-item--drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 12px;
}

/* ── Dropdown panel ──────────────────────────────────────────────── */
.n-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: translateY(8px);
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(0,50,120,0.13);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 8px;
  min-width: 640px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.n-dropdown--bundles {
  grid-template-columns: repeat(2, 224px);
  min-width: 488px;
}
.n-nav-item--drop:hover .n-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.n-dropdown__col { display: flex; flex-direction: column; gap: 3px; }
.n-dropdown__group-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-text3);
  padding: 0 8px 8px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--sky-border);
}
.n-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  text-decoration: none !important;
  transition: background 0.16s;
}
.n-dropdown__item:hover { background: var(--sky-blue-lt); }
.n-dropdown__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.n-dropdown__item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-text);
  line-height: 1.3;
}
.n-dropdown__item-sub {
  font-size: 11px;
  color: var(--sky-text3);
  margin-top: 2px;
}

/* ── Navbar right actions ────────────────────────────────────────── */
.n-navbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language selector */
.n-lang { position: relative; }
.n-lang__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--sky-border);
  border-radius: 8px;
  padding: 6px 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--sky-text);
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s;
}
.n-lang__btn:hover { border-color: var(--sky-blue); background: var(--sky-blue-lt); }
.n-lang__flag { border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.n-lang__code { font-size: 12px; font-weight: 600; }
.n-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,50,120,0.12);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 300;
}
.n-lang__menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.n-lang__menu .lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.n-lang__menu .lang-item:hover { background: var(--sky-blue-lt); }
.n-lang__menu .lang-item.active { background: var(--sky-blue-lt); }
.n-lang__menu .lang-item .icon { border-radius: 2px; flex-shrink: 0; }
.n-lang__menu .lang-item .lang-name {
  font-size: 12.5px;
  color: var(--sky-text);
  text-decoration: none !important;
}

/* Sign in link */
.n-nav-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-text) !important;
  text-decoration: none !important;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.n-nav-login:hover { background: var(--sky-blue-lt); color: var(--sky-blue) !important; }

/* Get started button */
.n-nav-register {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--sky-blue);
  color: #fff !important;
  text-decoration: none !important;
  padding: 8px 16px;
  border-radius: 9px;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.n-nav-register:hover { background: var(--sky-blue-dk); transform: translateY(-1px); }

/* Cart icon button */
.n-nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--sky-text2) !important;
  text-decoration: none !important;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.n-nav-cart:hover { background: var(--sky-blue-lt); color: var(--sky-blue) !important; }

/* Hamburger toggle */
.n-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--sky-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.18s;
}
.n-nav-toggle:hover { border-color: var(--sky-blue); }
.n-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sky-text);
  border-radius: 2px;
}

/* ── Mobile drawer ───────────────────────────────────────────────── */
.n-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 92vw;
  background: var(--sky-card);
  box-shadow: -8px 0 48px rgba(0,50,120,0.14);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.n-nav-drawer.open { transform: translateX(0); }
.n-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--sky-border);
  flex-shrink: 0;
}
.n-nav-drawer__logo { display: flex; text-decoration: none !important; }
.n-nav-drawer__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-bg);
  border: 1px solid var(--sky-border);
  border-radius: 7px;
  cursor: pointer;
  color: var(--sky-text2);
  transition: background 0.18s, color 0.18s;
}
.n-nav-drawer__close:hover { background: var(--sky-blue-lt); color: var(--sky-blue); }
.n-nav-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 0;
  -webkit-overflow-scrolling: touch;
}
.n-nav-drawer__section {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-text3);
  padding: 16px 10px 6px;
}
.n-nav-drawer__link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky-text) !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.n-nav-drawer__link:hover { background: var(--sky-blue-lt); color: var(--sky-blue) !important; }
.n-nav-drawer__link--sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--sky-text2) !important;
  padding-left: 20px;
}
.n-nav-drawer__foot {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--sky-border);
  flex-shrink: 0;
}

/* ── Backdrop ────────────────────────────────────────────────────── */
.n-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12,19,38,0.42);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.n-nav-backdrop.show { opacity: 1; pointer-events: auto; }

/* ── Navbar responsive ───────────────────────────────────────────── */
@media (max-width:1024px) {
  .n-navbar__nav { gap: 0; }
  .n-nav-link { padding: 8px 9px; font-size: 13px; }
  .n-nav-login { display: none; }
}
@media (max-width:860px) {
  .n-navbar__nav { display: none; }
  .n-nav-toggle { display: flex; }
  .n-topbar__link { display: none; }
  .n-topbar__msg { font-size: 11.5px; }
}
@media (max-width:480px) {
  .n-nav-register { display: none; }
  .n-nav-cart { display: none; }
  .n-topbar__right { display: none; }
}
