:root {
  --blue: #1C46F5;
  --lime: #D2FF52;
  --black: #141414;
  --black-nav: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --gray: #666;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
  word-break: normal;
  hyphens: none;
}
a { color: inherit; text-decoration: none; }

/* CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.15s, width 0.2s, height 0.2s;
}
body:hover .cursor { opacity: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 56px;
  background: var(--black-nav);
  border-bottom: 2px solid var(--blue);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  letter-spacing: 0px; color: var(--white);
  line-height: 1; white-space: nowrap;
}
.nav-logo .dot { color: var(--lime); }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  padding: 0 16px; height: 56px; display: flex; align-items: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--lime); background: rgba(210,255,82,0.06); }
.nav-cta {
  background: var(--lime) !important;
  color: var(--black) !important;
  font-weight: 900 !important;
  border-left: none !important;
}
.nav-cta:hover { background: var(--white) !important; }

/* TICKER */
.ticker-wrap {
  background: var(--blue);
  overflow: hidden; padding: 10px 0;
  margin-top: 56px;
  border-bottom: 2px solid var(--black);
}
.ticker {
  display: flex; white-space: nowrap;
  animation: tick 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); padding: 0 24px;
}
.ticker-sep {
  color: var(--lime); font-size: 18px; line-height: 1;
}
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* HERO */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px);
  border-bottom: 2px solid var(--black);
}
.hero-left {
  background: #141414;
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 32px;
  border-right: 2px solid var(--blue);
  position: relative; overflow: visible;
}
.hero-left::before {
  content: 'N';
  position: absolute; bottom: -40px; left: -10px;
  font-family: var(--font-display);
  font-size: 320px; font-weight: 900;
  color: rgba(28,70,245,0.07);
  line-height: 1; pointer-events: none; letter-spacing: -10px;
  user-select: none; overflow: hidden;
  z-index: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(210,255,82,0.4);
  color: var(--lime);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px;
  width: fit-content; margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  position: relative; z-index: 1;
  word-break: normal; hyphens: none;
}
.hero-h1 .hl { color: var(--lime); }
.hero-h1 .bl {
  color: var(--blue);
  -webkit-text-stroke: 0;
}
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 440px;
  font-weight: 400; margin-top: 0;
  position: relative; z-index: 1;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-lime {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--black);
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--lime);
  transition: all 0.15s;
}
.btn-lime:hover { background: var(--white); border-color: var(--white); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.15s;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.hero-right {
  background: var(--off-white);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  flex: 1;
}
.hero-stat {
  padding: 40px 32px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.hero-stat:hover { background: var(--blue); }
.hero-stat:hover .stat-n,
.hero-stat:hover .stat-l { color: var(--white); }
.hero-stat:hover .stat-u { color: var(--lime); }
.hero-stat:nth-child(2) { border-right: none; }
.hero-stat:nth-child(3) { border-bottom: none; border-right: 2px solid var(--black); }
.hero-stat:nth-child(4) { border-bottom: none; border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  line-height: 1; letter-spacing: -1px;
  color: var(--black); display: flex; align-items: flex-start; gap: 4px;
  transition: color 0.2s;
}
.stat-u { font-size: 28px; color: var(--blue); transition: color 0.2s; padding-top: 6px; }
.stat-l {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #666; margin-top: 8px;
  transition: color 0.2s;
}
.hero-market-tag {
  border-top: 2px solid var(--black);
  background: var(--blue);
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-market-tag span {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--white);
  line-height: 1.4;
}
.market-flags { display: flex; gap: 12px; font-size: 28px; }

/* SECTION UTILS */
.s-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; display: inline-block; margin-bottom: 16px;
  word-break: normal; hyphens: none;
}
.s-tag-blue { color: var(--blue); }
.s-tag-lime { color: var(--lime); }
.s-tag-white { color: rgba(255,255,255,0.6); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  word-break: normal;
  hyphens: none;
}
h2 .hl { color: var(--lime); }
h2 .bl { color: var(--blue); }
h2 .inv {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
}
.s-body {
  font-size: 16px; color: var(--gray);
  line-height: 1.75; font-weight: 400;
  max-width: 540px; margin-top: 20px;
}
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* SECTION: FOR WHOM */
#for {
  background: var(--white);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.for-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
}
.for-intro {
  background: var(--blue);
  padding: 60px 48px;
  border-right: 2px solid var(--black);
  display: flex; flex-direction: column; gap: 24px; justify-content: flex-start;
}
.for-intro h2 { color: var(--white); }
.for-intro h2 .inv { -webkit-text-stroke: 2px var(--lime); }
.for-intro .s-body { color: rgba(255,255,255,0.8); max-width: 100%; }
.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.for-card {
  padding: 36px 28px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.for-card:nth-child(3n) { border-right: none; }
.for-card:nth-child(4),
.for-card:nth-child(5),
.for-card:nth-child(6) { border-bottom: none; }
.for-card:hover { background: var(--lime); }
.for-card:hover .fc-icon { background: var(--black); color: var(--lime); }
.fc-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 16px;
  transition: all 0.2s;
}
.fc-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.fc-desc { font-size: 13px; color: #555; line-height: 1.65; }

/* SECTION: SERVICES */
#services {
  background: #141414;
  border-bottom: 2px solid #141414;
}
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding: 60px 32px 48px;
  max-width: 1240px; margin: 0 auto;
  gap: 40px; align-items: end;
}
.services-header h2 { color: var(--white); }
.services-header .s-body { margin-top: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: none;
  max-width: 1240px; margin: 0 auto;
}
.svc {
  padding: 40px 32px;
  border-right: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.svc:nth-child(3n) { border-right: none; }
.svc:nth-child(4),.svc:nth-child(5),.svc:nth-child(6) { border-bottom: none; }
.svc:hover { background: var(--blue); }
.svc:hover .svc-num { color: var(--lime); }
.svc:hover .svc-title { color: var(--white); }
.svc:hover .svc-desc { color: rgba(255,255,255,0.7); }
.svc:hover .svc-tag { background: rgba(0,0,0,0.2); color: var(--lime); border-color: rgba(210,255,82,0.3); }
.svc-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--blue);
  margin-bottom: 20px; transition: color 0.2s;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  line-height: 1.2; color: var(--white);
  text-transform: uppercase; margin-bottom: 14px;
  transition: color 0.2s;
  letter-spacing: 0px;
  word-break: normal; hyphens: none;
}
.svc-desc { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 20px; transition: color 0.2s; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

/* SECTION: ROUTES */
#routes { border-bottom: 2px solid var(--black); }
.routes-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
}
.route {
  padding: 64px 56px;
  position: relative; overflow: hidden;
}
.route-ua { background: var(--off-white); border-right: 2px solid var(--black); }
.route-eu { background: var(--blue); }
.route-flag-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px); font-weight: 900;
  line-height: 1; letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  word-break: normal; hyphens: none;
}
.route-ua .route-flag-big { color: var(--blue); }
.route-eu .route-flag-big { color: var(--lime); }
.route-sub {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 36px;
}
.route-ua .route-sub { color: #666; }
.route-eu .route-sub { color: rgba(255,255,255,0.78); }
.route-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.route-list li {
  padding: 14px 0;
  border-top: 1px solid;
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; line-height: 1.55;
}
.route-ua .route-list li { border-color: rgba(0,0,0,0.1); color: #1a1a1a; }
.route-eu .route-list li { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.92); }
.route-list li:last-child { border-bottom: 1px solid; }
.route-ua .route-list li:last-child { border-color: rgba(0,0,0,0.1); }
.route-eu .route-list li:last-child { border-color: rgba(255,255,255,0.15); }
.ri {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 900;
  flex-shrink: 0; margin-top: -1px;
}
.route-ua .ri { color: var(--blue); }
.route-eu .ri { color: var(--lime); }
.route-badge-wrap { margin-top: 36px; }
.r-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.r-badge-ua { background: var(--blue); color: var(--white); }
.r-badge-eu { background: var(--lime); color: var(--black); }

/* SECTION: PROCESS */
#process {
  background: var(--off-white);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.process-head { padding: 60px 32px 0; max-width: 1240px; margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: 56px;
  border-top: 2px solid var(--black);
  max-width: 1240px; margin: 56px auto 0;
}
.step {
  padding: 36px 28px;
  border-right: 2px solid var(--black);
  position: relative; overflow: hidden;
  transition: background 0.15s;
}
.step:last-child { border-right: none; }
.step:hover { background: #141414; }
.step:hover .step-n { color: var(--lime); }
.step:hover .step-title { color: var(--white); }
.step:hover .step-desc { color: rgba(255,255,255,0.65); }
.step-n {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 900;
  line-height: 1; letter-spacing: -2px;
  color: rgba(0,0,0,0.07);
  margin-bottom: 16px; transition: color 0.15s;
}
.step:hover .step-n { color: var(--blue); opacity: 1; }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; transition: color 0.15s; }
.step-desc { font-size: 13px; color: #555; line-height: 1.65; transition: color 0.15s; }

/* SECTION: PRICING */
#pricing {
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.pricing-head { padding: 60px 32px 0; max-width: 1240px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--black);
  margin-top: 48px;
  max-width: 1240px; margin: 48px auto 0;
}
.price-card {
  padding: 40px 28px;
  border-right: 2px solid var(--black);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.price-card:last-child { border-right: none; }
.price-card.feat {
  background: var(--blue);
  border-right-color: var(--black);
}
.price-card.feat .price-name,
.price-card.feat .price-h,
.price-card.feat .price-who { color: var(--white); }
.price-card.feat .price-who { color: rgba(255,255,255,0.78); }
.price-card.feat .price-div { background: rgba(255,255,255,0.15); }
.price-card.feat .price-item { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.18); }
.price-card.feat .price-item::before { color: var(--lime); }
.price-name {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #888;
  margin-bottom: 10px;
}
.feat-pill {
  display: inline-block;
  background: var(--lime); color: var(--black);
  font-size: 10px; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 4px 10px;
  margin-bottom: 10px; width: fit-content;
}
.price-h {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  line-height: 1.1; letter-spacing: -0.5px;
  text-transform: uppercase; margin-bottom: 10px;
  word-break: normal; hyphens: none;
}
.price-who {
  font-size: 13px; color: #666;
  line-height: 1.6; margin-bottom: 24px;
}
.price-div { height: 2px; background: rgba(0,0,0,0.1); margin-bottom: 24px; }
.price-items { list-style: none; flex: 1; margin-bottom: 28px; }
.price-item {
  font-size: 13px; color: #1a1a1a;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative; line-height: 1.5;
}
.price-item::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--blue); font-weight: 900; font-size: 12px;
}
.price-btn {
  display: block; text-align: center; padding: 14px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--black);
  transition: all 0.15s;
  background: transparent; color: var(--black);
}
.price-btn:hover { background: var(--black); color: var(--white); }
.price-btn-lime {
  background: var(--lime); color: var(--black); border-color: var(--lime);
}
.price-btn-lime:hover { background: var(--white); border-color: var(--white); }
.pricing-note {
  max-width: 1240px; margin: 0 auto;
  padding: 24px 32px;
  border-top: 2px solid var(--black);
  background: rgba(28,70,245,0.04);
  display: flex; gap: 16px; align-items: flex-start;
}
.pn-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 12px; font-weight: 900; margin-top: 1px;
}
.pricing-note p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.pricing-note strong { color: var(--black); }

/* SECTION: WHY */
#why {
  background: #141414;
  border-bottom: 2px solid var(--lime);
}
.why-head { padding: 64px 32px 0; max-width: 1240px; margin: 0 auto; }
.why-head h2 { color: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 2px solid rgba(255,255,255,0.1);
  max-width: 1240px; margin: 48px auto 0;
}
.why-card {
  padding: 40px 32px;
  border-right: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(4),.why-card:nth-child(5),.why-card:nth-child(6) { border-bottom: none; }
.why-card:hover { background: rgba(28,70,245,0.12); }
.why-card:hover .wc-num { color: var(--lime); }
.wc-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,0.1);
  margin-bottom: 12px; letter-spacing: -1px;
  transition: color 0.15s;
}
.wc-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.wc-desc { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.75; }

/* SECTION: FAQ */
#faq {
  background: var(--off-white);
  border-bottom: 2px solid var(--black);
}
.faq-wrap { display: grid; grid-template-columns: 340px 1fr; max-width: 1240px; margin: 0 auto; }
.faq-left {
  background: var(--lime);
  padding: 60px 40px;
  border-right: 2px solid var(--black);
  display: flex; flex-direction: column; gap: 24px; justify-content: flex-start;
}
.faq-left h2 { color: var(--black); line-height: 1.05; word-break: normal; hyphens: none; }
.faq-left p { font-size: 15px; color: rgba(0,0,0,0.75); line-height: 1.7; margin-top: 16px; }
.faq-list { padding: 0 32px; }
.faq-item {
  border-bottom: 2px solid var(--black);
}
.faq-item:first-child { border-top: 2px solid var(--black); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 20px;
  font-size: 14px; font-weight: 700; color: #111;
  line-height: 1.55; word-break: normal; hyphens: none;
}
.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #141414; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300;
  transition: all 0.2s; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--blue); transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 0 22px;
  font-size: 14px; color: #444; line-height: 1.8;
  max-width: 620px;
}
.faq-item.open .faq-a { display: block; }

/* SECTION: BLOG */
#blog {
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.blog-head { padding: 60px 32px 0; max-width: 1240px; margin: 0 auto; }
.blog-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 12px;
}
.blog-cats {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-top: 24px; margin-bottom: 0;
  max-width: 1240px; margin-left: auto; margin-right: auto;
  padding: 0 32px;
  border-bottom: 2px solid var(--black);
}
.bcat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 12px 20px;
  border-right: 1px solid var(--black);
  transition: all 0.15s;
  color: #555;
}
.bcat:hover,.bcat.on { background: #141414; color: var(--lime); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: none;
  max-width: 1240px; margin: 0 auto;
  border-bottom: 2px solid var(--black);
}
.blog-card {
  border-right: 2px solid var(--black);
  overflow: hidden;
  transition: background 0.15s;
}
.blog-card:last-child { border-right: none; }
.blog-card:hover .bc-title { color: var(--blue); }
.bc-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bc-thumb-1 { background: var(--blue); }
.bc-thumb-2 { background: #141414; }
.bc-thumb-3 { background: var(--lime); }
.bc-label {
  position: absolute; top: 0; left: 0;
  padding: 10px 16px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.bc-thumb-1 .bc-label { background: var(--lime); color: var(--black); }
.bc-thumb-2 .bc-label { background: var(--blue); color: var(--white); }
.bc-thumb-3 .bc-label { background: #141414; color: var(--lime); }
.bc-bg-text {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 900;
  letter-spacing: -2px; text-transform: uppercase;
  opacity: 0.14; user-select: none; line-height: 1;
}
.bc-thumb-1 .bc-bg-text,.bc-thumb-2 .bc-bg-text { color: var(--white); }
.bc-thumb-3 .bc-bg-text { color: var(--black); }
.bc-body { padding: 28px; }
.bc-meta { font-size: 12px; color: #888; margin-bottom: 12px; }
.bc-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  line-height: 1.35; text-transform: uppercase;
  margin-bottom: 12px; transition: color 0.15s; letter-spacing: 0px;
  word-break: normal; hyphens: none;
}
.bc-excerpt { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.bc-link {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
}
.bc-link:hover { color: #141414; }
.blog-cta-bar {
  max-width: 1240px; margin: 0 auto;
  padding: 24px 32px;
  display: flex; justify-content: flex-end;
}

/* SECTION: FORM */
#contact {
  background: #141414;
  border-bottom: 2px solid var(--lime);
}
.form-layout {
  display: grid; grid-template-columns: 420px 1fr;
  max-width: 1240px; margin: 0 auto;
  border-top: 2px solid rgba(255,255,255,0.12);
}
.form-left {
  padding: 60px 48px;
  border-right: 2px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 24px;
}
.form-left h2 { color: var(--white); }
.form-left .s-body { color: rgba(255,255,255,0.72); max-width: 100%; }
.form-feats { list-style: none; margin-top: 40px; }
.form-feat {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.8);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.5;
}
.form-feat:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.form-feat-dot {
  width: 8px; height: 8px; background: var(--lime);
  flex-shrink: 0; margin-top: 5px;
}
.form-right { padding: 60px 48px; }
.form-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.15s; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.28); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--lime);
  background: rgba(210,255,82,0.04);
}
.fg select option { background: #1e1e1e; color: var(--white); }
.fg textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 24px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.consent-row input { width: 16px; height: 16px; accent-color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.consent-row label {
  font-size: 12px; color: rgba(255,255,255,0.6);
  line-height: 1.6; text-transform: none; letter-spacing: 0; font-weight: 400;
}
.submit-btn {
  width: 100%; background: var(--lime); color: var(--black);
  border: 2px solid var(--lime); padding: 16px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.15s;
}
.submit-btn:hover { background: var(--white); border-color: var(--white); }
.form-hint { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 10px; }
.success-msg {
  display: none; text-align: center; padding: 32px;
  background: rgba(210,255,82,0.08); border: 2px solid var(--lime);
  margin-top: 16px;
}
.success-msg .s-icon {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 900;
  color: var(--lime); display: block; margin-bottom: 8px;
}
.success-msg p {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  color: var(--white); text-transform: uppercase;
}

/* FOOTER */
footer {
  background: var(--black-nav);
  border-top: 2px solid rgba(255,255,255,0.1);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  max-width: 1240px; margin: 0 auto;
  padding: 56px 32px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 48px;
}
.f-brand {}
.f-logo {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900;
  letter-spacing: 0px; color: var(--white);
  line-height: 1; margin-bottom: 16px;
  white-space: nowrap;
}
.f-logo .dot { color: var(--lime); }
.f-tagline { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 280px; }
.f-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.f-col ul li a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); }
.footer-seo { display: none; }

/* SCROLL REVEAL */
.reveal { opacity: 1; transform: none; transition: none; }
.revealed { opacity: 1; transform: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue); }

@media (max-width: 1024px) {
  .hero-h1 { font-size: clamp(28px, 5vw, 56px); }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .svc:nth-child(3n),
  .why-grid .why-card:nth-child(3n) { border-right: 2px solid rgba(255,255,255,0.08); }
  .services-grid .svc:nth-child(2n),
  .why-grid .why-card:nth-child(2n) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .for-layout { grid-template-columns: 1fr; }
  .for-intro { border-right: none; border-bottom: 2px solid var(--black); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-left { border-right: none; border-bottom: 2px solid var(--black); }
  .form-layout { grid-template-columns: 1fr; }
  .form-left { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.12); }
  .routes-wrap { grid-template-columns: 1fr; }
  .route-ua { border-right: none; border-bottom: 2px solid var(--black); }
}

@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  /* Hamburger placeholder visible */
  .nav-mobile-hint {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* HERO */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 40px 20px; gap: 24px; overflow: hidden; }
  .hero-left::before { font-size: 180px; bottom: -20px; left: -10px; }
  .hero-h1 { font-size: clamp(26px, 7vw, 44px); line-height: 1.15; }
  .hero-desc { font-size: 14px; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-lime, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; font-size: 12px; }
  .hero-right { min-height: auto; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 24px 16px; }
  .stat-n { font-size: 36px; }
  .stat-u { font-size: 18px; }
  .stat-l { font-size: 10px; }
  .hero-market-tag { padding: 16px 20px; flex-wrap: wrap; gap: 10px; }
  .hero-market-tag span { font-size: 11px; }

  /* TICKER */
  .ticker-wrap { margin-top: 56px; }

  /* FOR WHOM */
  .for-layout { grid-template-columns: 1fr; }
  .for-intro { border-right: none; border-bottom: 2px solid var(--black); padding: 40px 20px; }
  .for-grid { grid-template-columns: 1fr 1fr; }
  .for-card { padding: 24px 16px; }
  .for-card:nth-child(3n) { border-right: 2px solid var(--black); }
  .for-card:nth-child(2n) { border-right: none; }

  /* SERVICES */
  .services-header { grid-template-columns: 1fr; padding: 40px 20px 32px; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; padding: 32px 20px; }
  .svc:nth-child(3n) { border-right: none; }

  /* ROUTES */
  .routes-wrap { grid-template-columns: 1fr; }
  .route-ua { border-right: none; border-bottom: 2px solid var(--black); }
  .route { padding: 40px 20px; }
  .route-flag-big { font-size: clamp(40px, 10vw, 64px); }

  /* PROCESS */
  .process-head { padding: 40px 20px 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 24px 16px; }
  .step:nth-child(2n) { border-right: none; }
  .step:last-child { grid-column: 1 / -1; border-right: none; }
  .step-n { font-size: 36px; }

  /* PRICING */
  .pricing-head { padding: 40px 20px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 2px solid var(--black); padding: 32px 20px; }
  .price-card:last-child { border-bottom: none; }
  .price-h { font-size: 28px; }
  .pricing-note { padding: 20px; }

  /* WHY */
  .why-head { padding: 40px 20px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; padding: 28px 20px; }
  .why-card:nth-child(3n) { border-right: none; }

  /* FAQ */
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-left { border-right: none; border-bottom: 2px solid var(--black); padding: 40px 20px; gap: 16px; }
  .faq-list { padding: 0 20px; }
  .faq-q { font-size: 13px; padding: 16px 0; }
  .faq-a { font-size: 13px; }

  /* BLOG */
  .blog-head { padding: 40px 20px 0; }
  .blog-head-row { flex-direction: column; align-items: flex-start; }
  .blog-cats { padding: 0 20px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .bcat { white-space: nowrap; padding: 10px 14px; font-size: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { border-right: none; border-bottom: 2px solid var(--black); }
  .blog-card:last-child { border-bottom: none; }
  .blog-cta-bar { padding: 20px; justify-content: center; }

  /* FORM */
  #contact { padding: 0; }
  #contact > div { padding: 40px 20px 0; }
  .form-layout { grid-template-columns: 1fr; border-top: none; }
  .form-left { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.12); padding: 32px 20px; gap: 16px; }
  .form-right { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-feats { margin-top: 16px; }
  .submit-btn { font-size: 13px; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; gap: 8px; }
  .f-logo { font-size: 22px; }

  /* GENERAL */
  section, #contact { padding: 60px 0; }
  h2 { font-size: clamp(22px, 6vw, 36px); line-height: 1.15; }
  .s-body { font-size: 14px; }
  .wrap { padding: 0 20px; }

  /* NO HORIZONTAL SCROLL */
  * { max-width: 100%; }
  img, video, iframe { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(22px, 8vw, 34px); }
  .for-grid { grid-template-columns: 1fr; }
  .for-card:nth-child(n) { border-right: none; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-n { font-size: 28px; letter-spacing: -0.5px; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .step:last-child { border-bottom: none; }
  h2 { font-size: clamp(20px, 7vw, 28px); }
}
/* -------------------------------------------------------------------------
 * BACK NAVIGATION STRIP — appears under ticker on blog/single/archive pages
 * ---------------------------------------------------------------------- */
.notium-back-strip {
    background: var(--black);
    border-bottom: 2px solid var(--black);
    padding: 14px 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
}
.notium-back-link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.15s, transform 0.15s;
}
.notium-back-link:hover {
    color: var(--white);
    transform: translateX(-2px);
}
.notium-back-link-sec {
    color: rgba(255,255,255,0.7);
}
.notium-back-link-sec:hover {
    color: var(--lime);
    transform: translateX(2px);
}
.notium-back-link .arr {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 768px) {
    .notium-back-strip {
        padding: 12px 20px;
        gap: 12px;
    }
    .notium-back-link {
        font-size: 11px;
    }
}
