@font-face {
  font-family: 'Greta';
  src: url('/fonts/GretaLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Greta';
  src: url('/fonts/GretaNormal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Greta';
  src: url('/fonts/GretaMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Greta';
  src: url('/fonts/GretaBold.ttf') format('truetype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: oklch(24% 0.055 232);
  --primary-light: oklch(33% 0.055 232);
  --accent: oklch(69% 0.12 203);
  --accent-hover: oklch(61% 0.12 203);
  --success: oklch(66% 0.16 153);
  --warning: oklch(76% 0.15 74);
  --danger: oklch(62% 0.18 24);
  --bg-main: oklch(97% 0.008 220);
  --bg-surface: oklch(99% 0.006 220);
  --text-dark: oklch(24% 0.055 232);
  --text-muted: oklch(51% 0.035 230);
  --border-color: oklch(90% 0.014 222);
  --glass-bg: color-mix(in oklch, var(--bg-surface) 86%, transparent);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 10px 30px rgba(8, 16, 31, 0.07);
  --shadow-md: 0 18px 45px rgba(8, 16, 31, 0.11);
  --shadow-lg: 0 35px 90px rgba(8, 16, 31, 0.22);
  --radius-md: 14px;
  --radius-lg: 28px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: color 0.3s var(--ease-out-expo), background-color 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), opacity 0.3s var(--ease-out-expo), filter 0.3s var(--ease-out-expo);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Greta', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Custom Navbar */
.n-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(10, 20, 36, 0.18);
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.n-navbar.scrolled {
  background: rgba(10, 20, 36, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.1), 0 18px 50px rgba(0, 0, 0, 0.16);
}

.n-navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.n-logo img {
  height: 48px;
  object-fit: contain;
}

.n-nav-links {
  display: flex;
  gap: 12px;
  list-style: none;
  align-items: center;
}

.n-nav-links a {
  font-weight: 600;
  color: oklch(90% 0.02 224);
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  padding: 10px 4px;
}

.n-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.n-nav-links a:hover {
  color: oklch(99% 0.006 220);
}

.n-nav-links a:hover::after {
  width: 100%;
}

.n-mobile-nav,
.n-mobile-menu {
  display: none;
}

.n-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.n-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 0.95em;
  line-height: 1;
}

.n-btn:active {
  transform: scale(0.96);
}

.n-navbar .n-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.n-btn--primary {
  background: var(--accent);
  color: oklch(99% 0.006 220);
  box-shadow: 0 14px 34px color-mix(in oklch, var(--accent) 36%, transparent);
}

.n-btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px color-mix(in oklch, var(--accent) 44%, transparent);
}

.n-btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: oklch(99% 0.006 220);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.n-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* Hero Section */
.n-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(132px, 14vw, 190px) 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
  background: oklch(18% 0.04 232);
}

.n-hero__media,
.n-hero__overlay,
.n-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.n-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease-out-expo), transform 7s var(--ease-out-expo);
}

.n-hero__media img.is-active {
  opacity: 1;
  transform: scale(1.01);
}

.n-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 30, 0.92) 0%, rgba(7, 16, 30, 0.72) 42%, rgba(7, 16, 30, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 16, 30, 0.78) 0%, rgba(7, 16, 30, 0.08) 46%, rgba(7, 16, 30, 0.34) 100%);
}

.n-hero__pattern {
  z-index: 1;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(29, 169, 183, 0.5) 1px, transparent 1.5px);
  background-size: 26px 26px, 42px 42px;
  background-position: 0 0, 14px 18px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, transparent 24%, transparent 76%, rgba(0, 0, 0, 0.9) 100%);
}

.n-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(30px, 6vw, 86px);
  width: 100%;
}

.n-hero__content {
  max-width: min(880px, 100%);
}

[data-scroll-blur] {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out-expo), filter 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-scroll-blur].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.n-hero__panel[data-scroll-blur] {
  transition-delay: 0.12s;
}

.n-hero__kicker {
  display: inline-flex;
  color: oklch(87% 0.12 202);
  font-weight: 800;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(29, 169, 183, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.n-hero__content h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  color: oklch(99% 0.006 220);
  margin-bottom: 26px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.n-hero__content h1 span {
  color: oklch(82% 0.12 204);
}

.n-hero__title-line {
  display: block;
  white-space: nowrap;
}

.n-hero__title-line:first-child {
  color: oklch(99% 0.006 220);
}

.n-hero__title-line {
  font-size: 0.72em;
  letter-spacing: -0.02em;
}

.n-hero__content p {
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  color: oklch(88% 0.024 224);
  margin-bottom: 38px;
  max-width: 54ch;
  line-height: 1.9;
}

.n-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.n-hero__panel {
  align-self: end;
  padding: 22px;
  border-radius: 34px;
  background: oklch(99% 0.006 220);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 32px 80px rgba(0, 0, 0, 0.32);
}

.n-hero__panel-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-hover);
  font-weight: 900;
}

.n-hero__panel p {
  margin-top: 14px;
  color: var(--text-muted);
  font-weight: 700;
}

/* Live Prices Widget */
.n-prices-widget {
  color: var(--text-dark);
}

.n-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.n-price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.n-price-item dt {
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.n-price-item dt::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.n-price-91::before { background-color: var(--success); }
.n-price-95::before { background-color: var(--danger); }
.n-price-98::before { background-color: #3b82f6; }
.n-price-diesel::before { background-color: var(--warning); }

.n-price-item dd {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-variant-numeric: tabular-nums;
}

/* Section Common */
.n-section {
  padding: 100px 0;
}

.n-section__head {
  text-align: center;
  margin-bottom: 60px;
}

.n-section__kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(29, 169, 183, 0.1);
  border-radius: 30px;
}

.n-section__kicker--inverse {
  background: rgba(255, 255, 255, 0.1);
  color: oklch(99% 0.006 220);
}

.n-section__title {
  font-size: 2.5rem;
  color: var(--primary);
}

/* Goals Grid */
.n-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.n-goal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.n-goal-card::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 16%, transparent);
  transform: scale(0.2);
  opacity: 0;
  transition: var(--transition);
}

.n-goal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.n-goal-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

.n-goal-icon {
  width: 64px;
  height: 64px;
  background: rgba(29, 169, 183, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 24px;
  transition: var(--transition);
}

.n-goal-card:hover .n-goal-icon {
  background: var(--accent);
  color: oklch(99% 0.006 220);
}

.n-goal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.n-goal-card p {
  color: var(--text-muted);
}

/* Investment / Partners */
.n-invest {
  background: var(--primary);
  color: oklch(99% 0.006 220);
}

.n-invest .n-section__title {
  color: oklch(99% 0.006 220);
}

.n-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.n-invest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  display: block;
}

.n-invest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transition: transform 0.7s var(--ease-out-expo);
}

.n-invest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.n-invest-card:hover img {
  transform: scale(1.1);
}

.n-invest-card__content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 30px;
  z-index: 10;
  width: 100%;
}

.n-invest-card__content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: oklch(99% 0.006 220);
}

.n-invest-card__content span {
  color: var(--accent);
  font-weight: 700;
}

/* Certifications */
.n-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(29, 169, 183, 0.09), transparent 42%),
    var(--bg-surface);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), var(--shadow-md);
}

.n-cert {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 22px;
  border-radius: 24px;
  background: color-mix(in oklch, var(--bg-main) 68%, var(--bg-surface));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.n-cert:hover {
  transform: translateY(-6px);
  background: var(--bg-surface);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--accent) 28%, transparent), var(--shadow-md);
}

.n-cert img {
  height: 88px;
  margin-bottom: 22px;
  filter: grayscale(100%) contrast(0.95);
  opacity: 0.72;
  transition: var(--transition);
}

.n-cert:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}

.n-cert strong {
  display: block;
  max-width: 13ch;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--primary-light);
}

/* Footer */
.n-footer {
  background: #080f1e;
  color: oklch(99% 0.006 220);
  padding: 80px 0 40px;
}

.n-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.n-footer-logo {
  height: 60px;
  margin-bottom: 24px;
}

.n-footer p {
  color: #94a3b8;
  max-width: 300px;
  margin-bottom: 24px;
}

.n-socials {
  display: flex;
  gap: 16px;
}

.n-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.n-socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.n-footer h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.n-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.n-footer ul {
  list-style: none;
}

.n-footer ul li {
  margin-bottom: 12px;
}

.n-footer ul li a {
  color: #94a3b8;
  transition: var(--transition);
}

.n-footer ul li a:hover {
  color: var(--accent);
  padding-right: 8px;
}

.n-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #94a3b8;
}

/* Inner Pages */
.n-page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: end;
  padding: clamp(132px, 13vw, 176px) 0 clamp(58px, 7vw, 86px);
  overflow: hidden;
  isolation: isolate;
  background: oklch(18% 0.04 232);
}

.n-page-hero__media,
.n-page-hero__overlay,
.n-page-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.n-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.n-page-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 30, 0.94) 0%, rgba(7, 16, 30, 0.72) 48%, rgba(7, 16, 30, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 16, 30, 0.88) 0%, rgba(7, 16, 30, 0.16) 60%);
}

.n-page-hero__pattern {
  z-index: 1;
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.72) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.9));
}

.n-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  padding-block: 10px;
}

.n-page-hero__content h1,
.n-page-hero__content p {
  max-width: 760px;
}

.n-page-hero__content h1 {
  color: oklch(99% 0.006 220);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.12;
  margin: 16px 0 18px;
}

.n-page-hero__content p {
  color: oklch(88% 0.024 224);
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.9;
}

.n-page-section {
  padding: clamp(70px, 8vw, 110px) 0;
}

.n-page-section--dark {
  background: var(--primary);
  color: oklch(99% 0.006 220);
}

.n-page-section--dark .n-section__title,
.n-page-section--dark .n-page-card h3,
.n-page-section--dark .n-split__content h2 {
  color: oklch(99% 0.006 220);
}

.n-page-section--dark .n-page-card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.n-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.n-page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.n-page-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055), var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.n-page-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--accent) 26%, transparent), var(--shadow-md);
}

.n-page-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--accent);
  background: color-mix(in oklch, var(--accent) 12%, transparent);
  font-size: 1.35rem;
}

.n-page-card h3 {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.n-page-card p,
.n-page-card li,
.n-split__content p,
.n-split__content li,
.n-media-item p,
.n-app-card p {
  color: var(--text-muted);
  line-height: 1.9;
}

.n-page-section--dark .n-page-card p,
.n-page-section--dark .n-page-card li,
.n-page-section--dark .n-split__content p,
.n-page-section--dark .n-split__content li {
  color: oklch(86% 0.024 224);
}

.n-page-card ul,
.n-page-card ol,
.n-split__content ul,
.n-split__content ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-top: 18px;
  list-style: none;
  counter-reset: page-list;
}

.n-page-card li,
.n-split__content li {
  position: relative;
  padding: 12px 44px 12px 14px;
  border-radius: 16px;
  background: rgba(29, 169, 183, 0.07);
}

.n-page-card li::before,
.n-split__content li::before {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(99% 0.006 220);
  font-size: 0.72rem;
  font-weight: 900;
}

.n-page-card ul li::before,
.n-split__content ul li::before {
  content: '';
  box-shadow: inset 0 0 0 6px oklch(99% 0.006 220);
}

.n-page-card ol li,
.n-split__content ol li {
  counter-increment: page-list;
}

.n-page-card ol li::before,
.n-split__content ol li::before {
  content: counter(page-list);
}

.n-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.n-split + .n-split {
  margin-top: 70px;
}

.n-split--reverse {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
}

.n-split--reverse .n-split__content {
  order: 2;
}

.n-split--reverse .n-split__media {
  order: 1;
}

.n-split__content h2 {
  color: var(--primary);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin-bottom: 20px;
}

.n-split__content p + p,
.n-split__content p + ul,
.n-split__content p + ol,
.n-split__content ul + p,
.n-split__content ol + p {
  margin-top: 18px;
}

.n-split__media {
  position: relative;
  min-height: 390px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.n-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.n-feature-list,
.n-media-list {
  display: grid;
  gap: 18px;
}

.n-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.n-feature-item,
.n-media-item,
.n-app-card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055), var(--shadow-sm);
  transition: var(--transition);
}

.n-feature-item {
  padding: 24px;
}

.n-feature-item:hover,
.n-media-item:hover,
.n-app-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--accent) 24%, transparent), var(--shadow-md);
}

.n-feature-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.n-media-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.n-media-item {
  padding: 30px;
}

.n-media-item h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.n-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.n-app-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.n-app-card__head {
  min-height: 112px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.07);
}

.n-app-card__head img {
  width: 82px;
  height: 72px;
  object-fit: contain;
  padding: 12px;
  border-radius: 20px;
  background: var(--bg-main);
  outline: 1px solid rgba(0, 0, 0, 0.08);
}

.n-app-card__head strong {
  color: var(--primary);
  font-size: 1.18rem;
  line-height: 1.45;
}

.n-app-card p + p {
  margin-top: 12px;
}

.n-store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.n-store-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--primary);
  font-weight: 800;
  background: var(--bg-main);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.n-store-links a:hover {
  color: oklch(99% 0.006 220);
  background: var(--accent);
  transform: translateY(-2px);
}

.n-store-links i {
  color: var(--accent);
}

.n-store-links a:hover i {
  color: oklch(99% 0.006 220);
}

.n-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.n-contact-card,
.n-contact-form {
  padding: 32px;
  border-radius: 34px;
  background: var(--bg-surface);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055), var(--shadow-md);
}

.n-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.n-contact-list a,
.n-contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-muted);
}

.n-contact-list i {
  color: var(--accent);
}

.n-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.n-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.n-field--full {
  grid-column: 1 / -1;
}

.n-field label {
  color: var(--primary);
  font-weight: 800;
}

.n-field input,
.n-field textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 15px 16px;
  background: var(--bg-main);
  color: var(--text-dark);
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.n-field input:focus,
.n-field textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--accent), 0 12px 30px rgba(29, 169, 183, 0.12);
}

.msg.hidden {
  display: none;
}

.msg {
  margin-bottom: 14px;
  font-weight: 800;
}

.msg.ok {
  color: var(--success);
}

.msg.err {
  color: var(--danger);
}

.n-auth-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
  isolation: isolate;
  background: oklch(18% 0.04 232);
}

.n-auth-media,
.n-auth-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.n-auth-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.n-auth-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 30, 0.94) 0%, rgba(7, 16, 30, 0.76) 48%, rgba(7, 16, 30, 0.36) 100%),
    linear-gradient(0deg, rgba(7, 16, 30, 0.86), rgba(7, 16, 30, 0.16));
}

.n-auth-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
}

.n-auth-copy {
  max-width: 720px;
}

.n-auth-copy h1 {
  color: oklch(99% 0.006 220);
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1.1;
  margin: 18px 0;
}

.n-auth-copy p {
  max-width: 55ch;
  color: oklch(88% 0.024 224);
  font-size: 1.18rem;
  line-height: 1.9;
}

.n-auth-form {
  padding: 32px;
  border-radius: 34px;
  background: rgba(252, 254, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 32px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.n-auth-form h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 24px;
}

.n-password-field {
  position: relative;
}

.n-password-field input {
  padding-left: 74px;
}

.show-password {
  position: absolute;
  left: 14px;
  bottom: 13px;
  color: var(--accent-hover);
  font-weight: 900;
  cursor: pointer;
}

.resetPassword,
.confirm-box {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.confirm-box {
  display: none;
}

.resetPassword a,
.confirm-box a {
  color: var(--accent-hover);
  font-weight: 900;
}

.n-auth-form .n-btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .n-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .n-hero__content {
    margin: 0 auto;
  }
  .n-hero__content p {
    margin: 0 auto 32px;
  }
  .n-hero__actions {
    justify-content: center;
  }
  .n-hero__panel {
    width: min(100%, 430px);
    margin: 0 auto;
  }
  .n-goals-grid, .n-invest-grid, .n-cert-grid, .n-page-grid, .n-app-grid, .n-media-list, .n-feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .n-split,
  .n-split--reverse,
  .n-contact-layout,
  .n-auth-layout {
    grid-template-columns: 1fr;
  }
  .n-split--reverse .n-split__content,
  .n-split--reverse .n-split__media {
    order: initial;
  }
  .n-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 82px;
  }
  .n-nav-links {
    display: none;
  }
  .n-navbar {
    height: 70px;
  }
  .n-navbar .n-btn {
    display: none;
  }
  .n-logo img {
    height: 42px;
  }
  .n-mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-radius: 14px 14px 0 0;
    background: rgba(252, 254, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), 0 -14px 44px rgba(8, 16, 31, 0.14);
  }
  .n-mobile-nav a,
  .n-mobile-more {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    color: var(--text-muted);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    background: transparent;
    transition: var(--transition);
  }
  .n-mobile-nav i,
  .n-mobile-more i {
    color: var(--accent-hover);
    font-size: 1rem;
  }
  .n-mobile-nav a:active,
  .n-mobile-nav a:hover,
  .n-mobile-more:active,
  .n-mobile-more:hover,
  .n-mobile-more[aria-expanded="true"] {
    color: var(--primary);
    background: color-mix(in oklch, var(--accent) 11%, transparent);
    transform: scale(0.96);
  }
  .n-mobile-menu {
    position: fixed;
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 1000;
    display: grid;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(252, 254, 255, 0.98);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07), 0 18px 54px rgba(8, 16, 31, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
  }
  .n-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .n-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--primary);
    font-weight: 800;
    background: var(--bg-main);
  }
  .n-mobile-menu i {
    color: var(--accent-hover);
  }
  .n-hero {
    min-height: auto;
    padding: 118px 0 70px;
  }
  .n-hero__inner {
    text-align: right;
  }
  .n-goals-grid, .n-invest-grid, .n-cert-grid, .n-page-grid, .n-app-grid, .n-media-list, .n-feature-list, .n-form-grid {
    grid-template-columns: 1fr;
  }
  .n-page-hero {
    min-height: auto;
    padding: 112px 0 56px;
  }
  .n-page-hero__content h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 1.08;
  }
  .n-hero__content h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }
  .n-hero__title-line + .n-hero__title-line {
    margin-top: 8px;
  }
  .n-page-hero__content p {
    font-size: 1rem;
  }
  .n-app-card__head {
    grid-template-columns: 72px 1fr;
    min-height: auto;
  }
  .n-app-card__head img {
    width: 68px;
    height: 60px;
  }
  .n-store-links {
    grid-template-columns: 1fr;
  }
  .n-split__media {
    min-height: 280px;
  }
  .n-contact-card,
  .n-contact-form,
  .n-auth-form {
    padding: 24px;
  }
  .n-auth-page {
    min-height: auto;
    padding: 112px 0 56px;
  }
  .n-hero__actions {
    align-items: stretch;
  }
  .n-hero__actions .n-btn {
    flex: 1 1 100%;
  }
  .n-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Public rating pages */
.n-rating-body {
  background: var(--primary);
}

.n-rating-page {
  position: relative;
  min-height: 100vh;
  padding: 132px 0 92px;
  overflow: hidden;
  isolation: isolate;
  background: oklch(18% 0.04 232);
}

.n-rating-media,
.n-rating-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.n-rating-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.n-rating-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 30, 0.96) 0%, rgba(7, 16, 30, 0.8) 48%, rgba(7, 16, 30, 0.48) 100%),
    linear-gradient(0deg, rgba(7, 16, 30, 0.92), rgba(7, 16, 30, 0.2));
}

.n-rating-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
}

.n-rating-intro {
  max-width: 600px;
}

.n-rating-intro h1 {
  margin: 18px 0;
  color: oklch(99% 0.006 220);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 1.08;
}

.n-rating-intro p {
  max-width: 50ch;
  color: oklch(88% 0.024 224);
  font-size: 1.15rem;
  line-height: 1.9;
}

.n-rating-branch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: oklch(96% 0.012 222);
  background: rgba(7, 16, 30, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.n-rating-branch i {
  color: var(--accent);
}

.n-rating-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: rgba(252, 254, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 35px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.n-rating-card__head {
  margin-bottom: 24px;
}

.n-rating-card__head > span {
  color: var(--accent-hover);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.n-rating-card__head h2 {
  margin-top: 6px;
  color: var(--primary);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.n-rating-card__head p {
  margin-top: 8px;
  color: var(--text-muted);
}

.n-rating-question,
.n-rating-satisfaction {
  border: 0;
  padding: 0;
  margin: 0;
}

.n-rating-question + .n-rating-question,
.n-rating-satisfaction + .n-rating-fields-grid {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}

.n-rating-card label,
.n-rating-card legend {
  color: var(--primary);
  font-weight: 800;
}

.required {
  color: var(--danger);
}

.optional {
  color: var(--text-muted);
  font-size: 0.82em;
  font-weight: 500;
}

.n-rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.n-rating-stars button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 0;
  color: var(--border-color);
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.n-rating-stars button.is-active,
.n-rating-stars button:hover {
  color: var(--warning);
  transform: translateY(-2px);
}

.n-rating-stars button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.n-rating-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.n-rating-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.n-rating-fields-grid .n-rating-field {
  margin-top: 0;
}

.n-rating-field input,
.n-rating-field textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text-dark);
  background: var(--bg-main);
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.n-rating-field textarea {
  min-height: 112px;
  resize: vertical;
}

.n-rating-field input:focus,
.n-rating-field textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--accent), 0 12px 30px rgba(29, 169, 183, 0.12);
}

.n-rating-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.n-rating-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--text-dark);
  background: var(--bg-main);
  cursor: pointer;
  transition: var(--transition);
}

.n-rating-option:hover,
.n-rating-option:focus-within {
  border-color: var(--accent);
  background: var(--bg-surface);
  transform: translateY(-1px);
}

.n-rating-option input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--accent-hover);
}

.n-rating-card .msg {
  margin-top: 18px;
  margin-bottom: 0;
}

.n-rating-card .n-btn {
  width: 100%;
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .n-rating-shell {
    grid-template-columns: 1fr;
  }

  .n-rating-intro {
    max-width: 720px;
  }

  .n-rating-card {
    width: min(100%, 680px);
  }
}

@media (max-width: 640px) {
  .n-rating-page {
    padding: 112px 0 56px;
  }

  .n-rating-intro h1 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .n-rating-intro p {
    font-size: 1rem;
  }

  .n-rating-fields-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .n-rating-card {
    border-radius: 24px;
    padding: 22px;
  }
}
