/* ──────────────────────────────────────────────────────────
   Nota Trade — Landing
   ────────────────────────────────────────────────────────── */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f4f6f8;
  --color-bg-dark: #0f1626;
  --color-bg-dark-2: #1a1f2e;

  --color-text: #131a2b;
  --color-text-muted: #5c6370;
  --color-text-on-dark: #e8ecf1;
  --color-text-on-dark-muted: #8a93a4;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-soft: #eff6ff;

  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;

  --color-border: #e5e7eb;
  --color-border-strong: #d1d5db;
  --color-border-dark: #2a3245;

  --color-success: #10b981;
  --color-error: #ef4444;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;

  --container: 1240px;
  --pad-x: clamp(14px, 3vw, 28px);
  --section-y: clamp(48px, 8vw, 96px);

  --shadow-sm: 0 1px 2px rgba(15, 22, 38, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 22, 38, 0.08);
  --shadow-lg: 0 12px 36px rgba(15, 22, 38, 0.10);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }

button, input, select, textarea { font-family: inherit; }

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

/* Typography */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); }
h1 { font-size: clamp(26px, 5.5vw, 56px); line-height: 1.08; }
h2 { font-size: clamp(22px, 4vw, 40px); line-height: 1.15; }
h3 { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.25; }
h4 { font-size: clamp(15px, 1.8vw, 18px); line-height: 1.35; font-weight: 600; }

p { margin: 0; }

.muted { color: var(--color-text-muted); }
.mono { font-family: var(--font-mono); font-weight: 500; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Section */
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--soft { background: var(--color-bg-soft); }

.what-gives-section {
  background: #0f1e3d;
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}
.what-gives-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.25), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(123, 168, 255, 0.10), transparent 55%);
  pointer-events: none;
}
.what-gives-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
}
.what-gives-section .container { position: relative; z-index: 1; }
.what-gives-section .eyebrow { color: #7BA8FF; }
.what-gives-section .eyebrow::before { background: #7BA8FF; }
.what-gives-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.what-gives-text {
  display: flex;
  flex-direction: column;
}
.what-gives-text h2 {
  margin-top: 14px;
  color: #fff;
}
.what-gives-subtitle {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #B8D0FF;
}
.what-gives-lead {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.what-gives-callout {
  margin-top: 24px;
  padding: 20px 22px;
  background: rgba(123, 168, 255, 0.10);
  border: 1px solid rgba(123, 168, 255, 0.25);
  border-left: 3px solid #7BA8FF;
  border-radius: 10px;
}
.what-gives-callout-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7BA8FF;
  margin-bottom: 8px;
}
.what-gives-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.what-gives-photo {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  flex: 1;
  box-shadow: var(--shadow-md);
}
.what-gives-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.what-gives-photo:hover img { transform: scale(1.04); }
.what-gives-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 61, 0.10) 30%, rgba(15, 30, 61, 0.85) 100%);
}
.what-gives-photo-tag {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
}
.what-gives-photo-tag-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FCD34D;
  margin-bottom: 6px;
}
.what-gives-photo-tag strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.what-gives-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.what-gives-card {
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px) clamp(18px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.what-gives-card:hover {
  transform: translateY(-2px);
}
.what-gives-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.what-gives-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.what-gives-card--blue .what-gives-card-icon {
  background: rgba(123, 168, 255, 0.16);
  color: #B8D0FF;
}
.what-gives-card--blue:hover {
  border-color: rgba(123, 168, 255, 0.40);
  background: rgba(123, 168, 255, 0.10);
}
.what-gives-card--blue:hover .what-gives-card-icon {
  background: rgba(123, 168, 255, 0.28);
  color: #fff;
}
.what-gives-card--amber .what-gives-card-icon {
  background: rgba(252, 211, 77, 0.18);
  color: #FCD34D;
}
.what-gives-card--amber:hover {
  border-color: rgba(252, 211, 77, 0.40);
  background: rgba(252, 211, 77, 0.06);
}
.what-gives-card--amber:hover .what-gives-card-icon {
  background: rgba(252, 211, 77, 0.30);
  color: #fff;
}
.what-gives-card--emerald .what-gives-card-icon {
  background: rgba(110, 231, 183, 0.18);
  color: #6EE7B7;
}
.what-gives-card--emerald:hover {
  border-color: rgba(110, 231, 183, 0.40);
  background: rgba(110, 231, 183, 0.06);
}
.what-gives-card--emerald:hover .what-gives-card-icon {
  background: rgba(110, 231, 183, 0.30);
  color: #fff;
}
.what-gives-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: rgba(123, 168, 255, 0.6);
  letter-spacing: 0.1em;
}
.what-gives-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .what-gives-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .what-gives-cards { grid-template-columns: 1fr; }
}
.section--dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-on-dark); }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4.5vw, 56px); }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 14px; font-size: clamp(15px, 1.8vw, 17px); color: var(--color-text-muted); }
.section--dark .section-head p { color: var(--color-text-on-dark-muted); }

/* ────────── BUTTONS ────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 14px -4px rgba(37, 99, 235, 0.45);
}
.btn--primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover { background: var(--color-primary-soft); }

.section--dark .btn--secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.section--dark .btn--secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.btn--accent {
  background: var(--color-accent);
  color: #1a1100;
  border-color: var(--color-accent);
}
.btn--accent:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.micro-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: gap 0.18s ease;
}
.micro-cta:hover { gap: 10px; }
.micro-cta svg { transition: transform 0.18s ease; }
.micro-cta:hover svg { transform: translateX(2px); }

/* ────────── HEADER ────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 8px rgba(15, 22, 38, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 28px; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.header-nav a:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone { display: none; }
.header-phone:hover { color: var(--color-primary); }

.burger {
  display: none;
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.burger:hover { border-color: var(--color-border-strong); }
.burger:active { background: var(--color-bg-soft); }
.burger .burger-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}
.burger .burger-line:nth-child(1) { top: 13px; }
.burger .burger-line:nth-child(2) { top: 19px; }
.burger .burger-line:nth-child(3) { top: 25px; }
.burger.is-open .burger-line:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; }
.burger.is-open .burger-line:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 22, 38, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: -16px 0 48px rgba(15, 22, 38, 0.18);
  padding: 88px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.mobile-menu-close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-soft);
}
.mobile-menu-close:active { background: var(--color-bg-soft); }
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu-nav a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active { color: var(--color-primary); }
.mobile-menu-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.mobile-menu-phone:hover { border-color: var(--color-primary); background: #fff; }
.mobile-menu-phone svg { color: var(--color-primary); flex-shrink: 0; }
.mobile-menu-phone-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.mobile-menu-phone-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

/* ────────── HERO (dark) ────────── */
.hero {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero h1,
.hero h2,
.hero h3,
.hero h4 { color: var(--color-text-on-dark); }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 30%, transparent 90%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; top: -100px;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 12px var(--color-success);
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .accent-blue {
  color: #7BA8FF;
  background: linear-gradient(90deg, #7BA8FF, #B8D0FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-on-dark-muted);
  margin: 0 0 18px;
  max-width: 560px;
}
.hero-sub--small {
  font-size: 14.5px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.6);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 580px;
}
.hero-stat-value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-on-dark);
  margin-bottom: 4px;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 13.5px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.4;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: linear-gradient(135deg, #1F1738 0%, #0F1422 100%);
  border: 1px solid var(--color-border-dark);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.solar-panel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(123, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #1a3a8c 0%, #0a1a4a 100%);
  background-size: 32px 32px, 32px 32px, cover;
  transform: perspective(900px) rotateX(45deg) rotateZ(-12deg) scale(1.4) translateY(-10%);
  transform-origin: center;
  opacity: 0.9;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,20,34,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-visual-card {
  position: absolute;
  z-index: 2;
  background: rgba(15, 22, 38, 0.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  color: var(--color-text-on-dark);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  animation: hero-float 6s ease-in-out infinite;
}
.hero-visual-card .ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(123,168,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #7BA8FF;
  flex-shrink: 0;
}
.hero-visual-card.card-1 { top: 24px; left: 24px; }
.hero-visual-card.card-2 { bottom: 100px; right: 20px; animation-delay: -2s; }
.hero-visual-card.card-3 { bottom: 24px; left: 24px; animation-delay: -4s; }
.hero-visual-card strong { font-weight: 600; }
.hero-visual-card .meta { color: var(--color-text-on-dark-muted); font-size: 12px; }

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Ghost button on dark hero */
.btn--ghost-dark {
  background: rgba(255,255,255,0.08);
  color: var(--color-text-on-dark);
  border-color: rgba(255,255,255,0.18);
}
.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

/* ────────── BRAND STRIP ────────── */
.brands {
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.brands-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 28px;
}
.brand-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brand-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee 50s linear infinite;
  animation-delay: 800ms;
}
.brand-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
  opacity: 0.7;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-name:hover { opacity: 1; color: var(--color-text); }
.brand-mark {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-primary);
  opacity: 0.7;
}

/* ────────── WHAT WE SUPPLY ────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}
.product-grid--last-3 {
  display: contents;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(18px, 2.6vw, 28px) clamp(16px, 2.4vw, 24px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.product-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.product-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-card .icon-wrap {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-radius: 10px;
  margin-bottom: 18px;
}
.product-card h4 { font-size: 17px; }
.product-card .meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.product-card .corner {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.product-card--cta {
  background: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.product-card--cta h4 { color: #fff; }
.product-card--cta .meta { color: var(--color-text-on-dark-muted); }
.product-card--cta .corner { color: rgba(255,255,255,0.4); }
.product-card--cta .icon-wrap {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
}
.product-card--cta:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.product-card--cta:hover .icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.product-cta-row {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3.4vw, 36px) clamp(26px, 4vw, 44px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 32px -16px rgba(15, 22, 38, 0.16), 0 2px 6px rgba(15, 22, 38, 0.04);
}
.product-cta-row p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.product-cta-row strong {
  color: var(--color-text);
  font-weight: 700;
}
.product-cta-row .btn { padding: 15px 26px; font-size: 15.5px; font-weight: 600; }

/* ────────── SEGMENTS ────────── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}
.segment-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 32px);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.segment-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.segment-card-media {
  position: relative;
  margin: calc(-1 * clamp(18px, 3vw, 32px)) calc(-1 * clamp(18px, 3vw, 32px)) 4px;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.segment-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.segment-card:hover .segment-card-media img { transform: scale(1.04); }
.segment-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,38,0) 50%, rgba(15,22,38,0.55) 100%);
  pointer-events: none;
}
.segment-card-num {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.segment-card h3 { font-size: 24px; margin: 0; }
.segment-card .lead {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.segment-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.segment-card .tag {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text);
  font-weight: 500;
}
.segment-card .cta-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* ────────── ADVANTAGES ────────── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}
.adv-grid--6 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.adv-card {
  padding: clamp(18px, 2.6vw, 28px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.adv-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.adv-card .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.adv-card h4 { font-size: 17px; }
.adv-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }

/* ────────── STATS ────────── */
.stats-section {
  padding: clamp(56px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.stats-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.stats-section-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(115%);
}
.stats-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(circle at 82% 70%, rgba(245, 158, 11, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(15, 22, 38, 0.78) 0%, rgba(15, 22, 38, 0.92) 100%);
}
.stats-section .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.stat-cell {
  padding: clamp(20px, 3.2vw, 40px) clamp(14px, 2.2vw, 24px);
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-cell .num .accent { color: var(--color-accent); }
.stat-cell .label {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.4;
  max-width: 200px;
}
.stat-cell .index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 14px;
  opacity: 0.6;
}

/* ────────── GEOGRAPHY ────────── */
.geo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.geo-map {
  position: relative;
  aspect-ratio: 1238 / 960;
  background: linear-gradient(180deg, #f4f7fb 0%, #eaf0f8 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  padding: 0;
}
.europe-map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.europe-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.geo-map .europe-svg { width: 100%; height: 100%; display: block; }

/* All country paths default to soft gray */
.europe-svg .ec,
.europe-svg path {
  fill: #d8dee8;
  stroke: #fff;
  stroke-width: 1.2;
  transition: fill 0.2s ease;
}
/* Tagged presence countries — light blue tint (real highlight comes from halos/pins) */
.europe-svg .ec--country {
  fill: #C7D7F0;
}
/* Highlighted presence countries — primary blue */
.europe-svg .ec--presence {
  fill: var(--color-primary);
}

/* Pin halos */
.em-halo {
  fill: rgba(37, 99, 235, 0.12);
  stroke: rgba(37, 99, 235, 0.30);
  stroke-width: 1.5;
  transition: r 0.25s ease, fill 0.25s ease;
}
.em-halo--office {
  fill: rgba(37, 99, 235, 0.08);
  stroke: rgba(37, 99, 235, 0.22);
}
.em-halo--warehouse {
  fill: rgba(245, 158, 11, 0.16);
  stroke: rgba(245, 158, 11, 0.38);
}

/* Pin markers */
.em-pin-pulse {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1;
  opacity: 0.55;
  transform-origin: center;
  transform-box: fill-box;
  animation: em-pulse 2.2s ease-in-out infinite;
}
@keyframes em-pulse {
  0%   { r: 8;  opacity: 0.6; }
  50%  { r: 22; opacity: 0;   }
  100% { r: 8;  opacity: 0;   }
}
.em-pin-outer {
  fill: var(--color-primary);
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 2px 6px rgba(15, 22, 38, 0.25));
}
.em-pin-inner {
  fill: #fff;
}
.em-pin.is-hover .em-pin-outer {
  fill: var(--color-accent);
  r: 11;
}

/* Labels */
.em-label-bg {
  fill: #fff;
  stroke: var(--color-border);
  stroke-width: 1;
  filter: drop-shadow(0 2px 5px rgba(15, 22, 38, 0.10));
  opacity: 0.95;
}
.em-label-text {
  fill: var(--color-text);
  font-family: Manrope, sans-serif;
  letter-spacing: -0.005em;
}
.em-label.is-hover .em-label-bg {
  fill: var(--color-primary);
  stroke: var(--color-primary);
}
.em-label.is-hover .em-label-text {
  fill: #fff;
}

/* Legend */
.europe-map-legend {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: flex;
  gap: 18px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--color-text);
  font-weight: 500;
}
.em-legend-item { display: inline-flex; align-items: center; gap: 7px; }
.em-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}
.em-legend-dot--warehouse { background: var(--color-accent); }
.em-legend-dot--office { background: var(--color-primary); }

.geo-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--color-primary), 0 4px 10px rgba(37, 99, 235, 0.35);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.geo-pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  opacity: 0.4;
  animation: pin-pulse 2.4s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}
.geo-pin-label {
  position: absolute;
  left: 22px;
  top: -10px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.geo-list { display: flex; flex-direction: column; gap: 8px; }
.geo-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.geo-item:hover,
.geo-item.is-active { border-color: var(--color-primary); background: var(--color-primary-soft); }
.geo-flag {
  width: 36px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.geo-item .country {
  font-weight: 600;
  font-size: 15px;
}
.geo-item .detail {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.geo-item .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.geo-item .badge.warehouse {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

/* ────────── FINANCE ────────── */
.finance-section { background: var(--color-bg-soft); }
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
}
.finance-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(16px, 2.4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.finance-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.finance-card .term {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.finance-card h4 { font-size: 18px; }
.finance-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; flex: 1; }
.finance-card .pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.finance-foot {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3.4vw, 36px) clamp(26px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 32px -16px rgba(15, 22, 38, 0.16), 0 2px 6px rgba(15, 22, 38, 0.04);
}
.finance-foot p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.finance-foot strong {
  color: var(--color-text);
  font-weight: 700;
}
.finance-foot .btn { padding: 15px 26px; font-size: 15.5px; font-weight: 600; }

/* ────────── PROCESS ────────── */
.process-section { padding: clamp(48px, 8vw, 96px) 0; }
.process-split {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
.process-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(260px, 36vw, 560px);
  box-shadow: var(--shadow-md);
}
.process-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,38,0.15) 45%, rgba(15,22,38,0.88) 100%);
}
.process-photo-tag {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: #fff;
}
.process-photo-tag-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FCD34D;
  margin-bottom: 8px;
}
.process-photo-tag strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  letter-spacing: -0.01em;
}
.process-content {
  display: flex;
  flex-direction: column;
}
.process-content h2 { margin-top: 14px; }
.process-lead {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.process-timeline {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}
.process-tl-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px dashed var(--color-border);
}
.process-tl-step:first-child { border-top: 0; padding-top: 0; }
.process-tl-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-mono);
}
.process-tl-body h4 {
  font-size: 17px;
  margin: 0 0 6px;
  line-height: 1.3;
}
.process-tl-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.process-cta-btn {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--color-bg-dark);
  color: #fff;
  border: 1px solid var(--color-bg-dark);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.process-cta-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.process-cta-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #1a1100;
  flex-shrink: 0;
}
.process-cta-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.process-cta-btn-text strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.process-cta-btn-text span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.process-cta-btn > svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ────────── FORM ────────── */
.form-section {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.16), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(245, 158, 11, 0.08), transparent 50%);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-section h2 { color: #fff; }
.form-section .lead { color: var(--color-text-on-dark-muted); font-size: 17px; margin-top: 18px; max-width: 480px; line-height: 1.55; }

.form-side-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-side-list .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-text-on-dark);
}
.form-side-list .item-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding-top: 2px;
  min-width: 24px;
}
.form-side-list .item-text { color: var(--color-text-on-dark-muted); line-height: 1.55; }
.form-side-list .item-text strong { color: #fff; font-weight: 600; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.4vw, 36px);
  color: var(--color-text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.form-field:first-child, .form-row .form-field { margin-top: 0; }
.form-row + .form-row { margin-top: 16px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  gap: 4px;
}
.form-field label .req { color: var(--color-error); }
.form-field input, .form-field select {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C6370' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}
.form-field input.err, .form-field select.err { border-color: var(--color-error); }
.form-field .err-msg { font-size: 12px; color: var(--color-error); }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.check:hover { border-color: var(--color-border-strong); background: var(--color-bg-soft); }
.check.is-checked { border-color: var(--color-primary); background: var(--color-primary-soft); }
.check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.check.is-checked .check-box { background: var(--color-primary); border-color: var(--color-primary); }
.check.is-checked .check-box svg { opacity: 1; }
.check-box svg { opacity: 0; transition: opacity 0.15s; }

.form-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-foot .note {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 280px;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success .check-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 { font-size: 22px; }
.form-success p { margin-top: 12px; color: var(--color-text-muted); font-size: 15px; line-height: 1.55; }

/* ────────── FOOTER ────────── */
.footer { padding: clamp(40px, 6vw, 72px) 0 36px; background: #fff; border-top: 1px solid var(--color-border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
}
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; max-width: 360px; }
.footer-col h5 {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 18px 0;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--color-text); }
.footer-col a:hover { color: var(--color-primary); }
.footer-contact { font-size: 14px; line-height: 1.6; color: var(--color-text); }
.footer-contact .line + .line { margin-top: 12px; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ────────── MOBILE ────────── */
/* Tablet — stack 2-col fixed-proportion layouts (hero, geo, form, footer) */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .burger { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 520px; margin-left: auto; margin-right: auto; aspect-ratio: 5/4; }
  .geo-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .process-split { grid-template-columns: 1fr; }
  .process-photo { aspect-ratio: 16 / 9; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Phone — stack hero CTAs, footer to 1 col, single-col forms */
@media (max-width: 720px) {
  .header-phone { display: none; }
  .header-cta-btn svg { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { width: 100%; white-space: normal; line-height: 1.2; text-align: center; }
  .hero-visual-card.card-1 { top: 14px; left: 14px; }
  .hero-visual-card.card-2 { bottom: 70px; right: 12px; }
  .hero-visual-card.card-3 { bottom: 14px; left: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { width: 100%; }
  .form-foot .note { max-width: none; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-stats { grid-template-columns: 1fr; }
  .product-cta-row, .finance-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-cell:last-child { grid-column: auto; }
}

/* Small phones — header compaction + tighter hero floating cards */
@media (max-width: 480px) {
  .header-inner { height: 58px; gap: 8px; }
  .header-logo img { height: 22px; }
  .header-cta-btn { padding: 9px 12px; font-size: 13px; }
  .burger { width: 36px; height: 36px; }

  .hero-visual-card { padding: 8px 12px; font-size: 12px; gap: 8px; }
  .hero-visual-card .ico { width: 26px; height: 26px; }
  .hero-visual-card.card-1 { top: 10px; left: 10px; }
  .hero-visual-card.card-2 { bottom: 56px; right: 10px; }
  .hero-visual-card.card-3 { bottom: 10px; left: 10px; }

  .brand-track { gap: 40px; }

  .faq-q { grid-template-columns: 28px 1fr 26px; gap: 10px; padding: 16px 14px; }
  .faq-a { padding: 0 14px 16px 52px; }

  .geo-item { grid-template-columns: 40px 1fr auto; }
  .geo-flag { width: 30px; height: 20px; }

  .warehouse-row { grid-template-columns: 1fr; gap: 2px; }
  .warehouse-row + .warehouse-row { padding-top: 8px; }
  .warehouse-head { grid-template-columns: 36px 1fr auto; gap: 10px; }
  .warehouse-flag { width: 36px; height: 24px; }
  .warehouse-badge { font-size: 9.5px; padding: 3px 6px; }

  .process-tl-step { grid-template-columns: 36px 1fr; gap: 12px; padding: 14px 0; }
  .process-tl-num { width: 28px; height: 28px; font-size: 13px; }

  .form-field input, .form-field select { height: 42px; }
}

/* ────────── FAQ ────────── */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}
.faq-aside-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-aside-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.faq-aside-card h3 { font-size: 22px; line-height: 1.2; margin: 0; }
.faq-aside-card p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.55; margin: 0; }
.faq-aside-card .btn { margin-top: 6px; }
.faq-aside-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-soft);
  color: var(--color-text);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.faq-aside-phone:hover { border-color: var(--color-primary); background: #fff; }
.faq-aside-phone svg { color: var(--color-primary); flex-shrink: 0; }
.faq-aside-phone span { display: flex; flex-direction: column; line-height: 1.3; }
.faq-aside-phone-label { font-size: 12px; color: var(--color-text-muted); }
.faq-aside-phone strong { font-size: 15px; font-weight: 600; }
.faq-aside-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-text-muted);
}
.faq-aside-meta .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.is-open {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--color-text);
}
.faq-q:hover { background: var(--color-bg-soft); }
.faq-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-bg-soft);
  color: var(--color-text);
  flex-shrink: 0;
}
.faq-item.is-open .faq-toggle {
  background: var(--color-primary);
  color: #fff;
}
.faq-a {
  padding: 0 24px 22px 84px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  animation: faq-slide 0.25s ease;
}
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ────────── PROJECTS ────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}
.project-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}
.project-media {
  margin: -24px -24px 4px;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.project-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-media img { transform: scale(1.05); }
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.project-year {
  color: var(--color-primary);
  font-weight: 600;
}
.project-type {
  text-align: right;
}
.project-power {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.project-power .num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.project-power .unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.project-region {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}
.project-equipment {
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-equipment .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.project-equipment .value {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
}
.project-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
}
.project-footer .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-bottom: 2px;
}
.projects-foot {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--color-text-muted);
}
.projects-foot strong { color: var(--color-text); font-weight: 600; }

/* ────────── CONSULTATION BAND ────────── */
.consult-band {
  padding: clamp(36px, 5vw, 56px) 0;
  position: relative;
  overflow: hidden;
}
.consult-band--light {
  background: var(--color-primary-soft);
  border-top: 1px solid color-mix(in oklab, var(--color-primary) 18%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--color-primary) 18%, transparent);
}
.consult-band--dark {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.16), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(37, 99, 235, 0.20), transparent 55%),
    var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.consult-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 1;
}
.consult-band-text { flex: 1; }
.consult-band h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--color-text);
}
.consult-band--dark h3 { color: #fff; }
.consult-band p {
  margin-top: clamp(8px, 1.2vw, 12px);
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.55;
  color: var(--color-text-muted);
}
.consult-band--dark p { color: rgba(255, 255, 255, 0.78); }
.consult-band .btn {
  flex-shrink: 0;
  padding: 15px 26px;
  font-size: 15.5px;
  font-weight: 600;
  box-shadow: 0 8px 24px -6px rgba(245, 158, 11, 0.45);
}
.consult-band--dark .btn--accent { box-shadow: 0 10px 28px -6px rgba(245, 158, 11, 0.55); }
.consult-band--light .btn { box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.30); }

@media (max-width: 720px) {
  .consult-band-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-aside { position: static; }
  .faq-aside-card { max-width: 560px; }
}

/* ────────── ABOUT (landing) ────────── */
.about-section { padding-top: clamp(48px, 8vw, 80px); padding-bottom: clamp(48px, 8vw, 80px); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 0;
  box-shadow: var(--shadow-md);
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-section:hover .about-photo img { transform: scale(1.03); }
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,38,0.05) 40%, rgba(15,22,38,0.78) 100%);
}
.about-photo-tag {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  z-index: 1;
  color: #fff;
}
.about-photo-tag-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FCD34D;
  margin-bottom: 8px;
}
.about-photo-tag strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  letter-spacing: -0.01em;
}
.about-content {
  display: flex;
  flex-direction: column;
}
.about-content h2 { margin-top: 14px; }
.about-content p { margin-top: 14px; font-size: 16px; color: var(--color-text-muted); line-height: 1.65; }
.about-content p.about-lead {
  font-size: 19px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}
.about-accent {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  border-radius: var(--radius);
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
}
.about-accent-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-accent p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.about-accent strong { color: #fff; }

/* ────────── SEGMENT PROPOSALS ────────── */
/* ────────── PROPOSALS — TABS + PANEL ────────── */
.proposals-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.proposals-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.proposals-tab:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.proposals-tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  transition: background 0.18s ease, color 0.18s ease;
}
.proposals-tab-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}
.proposals-tab--blue.is-active { background: #1e3a8a; border-color: #1e3a8a; }
.proposals-tab--amber.is-active { background: #b45309; border-color: #b45309; }
.proposals-tab--emerald.is-active { background: #047857; border-color: #047857; }
.proposals-tab.is-active .proposals-tab-label { color: #fff; }
.proposals-tab.is-active .proposals-tab-num {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.proposals-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: proposals-fade 0.3s ease;
}
@keyframes proposals-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.proposals-panel--blue { border-top: 4px solid #1e3a8a; }
.proposals-panel--amber { border-top: 4px solid #b45309; }
.proposals-panel--emerald { border-top: 4px solid #047857; }

.proposals-panel-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.proposals-panel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proposals-panel-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.10) 30%, rgba(15, 22, 38, 0.78) 100%);
}
.proposals-panel--blue .proposals-panel-media-overlay {
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.20) 30%, rgba(15, 22, 38, 0.82) 100%);
}
.proposals-panel--amber .proposals-panel-media-overlay {
  background: linear-gradient(180deg, rgba(180, 83, 9, 0.18) 30%, rgba(15, 22, 38, 0.80) 100%);
}
.proposals-panel--emerald .proposals-panel-media-overlay {
  background: linear-gradient(180deg, rgba(4, 120, 87, 0.18) 30%, rgba(15, 22, 38, 0.80) 100%);
}
.proposals-panel-media-tag {
  position: absolute;
  left: clamp(16px, 2vw, 22px);
  right: clamp(16px, 2vw, 22px);
  bottom: clamp(16px, 2vw, 22px);
  z-index: 1;
  color: #fff;
}
.proposals-panel-media-tag-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.proposals-panel--blue .proposals-panel-media-tag-label { color: #93C5FD; }
.proposals-panel--amber .proposals-panel-media-tag-label { color: #FCD34D; }
.proposals-panel--emerald .proposals-panel-media-tag-label { color: #6EE7B7; }
.proposals-panel-media-tag strong {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.proposals-panel-body {
  padding: clamp(22px, 2.4vw, 28px) clamp(22px, 2.6vw, 30px) clamp(24px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 14px);
}
.proposals-panel-body h3 {
  font-size: clamp(20px, 2.2vw, 22px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}
.proposals-panel-subtitle {
  margin: 0;
  font-size: clamp(15.5px, 1.7vw, 16px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-text);
}
.proposals-panel--blue .proposals-panel-subtitle { color: #1e3a8a; }
.proposals-panel--amber .proposals-panel-subtitle { color: #b45309; }
.proposals-panel--emerald .proposals-panel-subtitle { color: #047857; }
.proposals-panel-lead {
  margin: 0;
  font-size: clamp(14.5px, 1.5vw, 15px);
  line-height: 1.6;
  color: var(--color-text-muted);
}
.proposals-panel-points-label {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}
.proposals-panel-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.proposals-panel-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.4vw, 14.5px);
  line-height: 1.4;
  color: var(--color-text);
}
.proposals-panel--blue .proposals-panel-points li svg { color: #1e3a8a; flex-shrink: 0; }
.proposals-panel--amber .proposals-panel-points li svg { color: #b45309; flex-shrink: 0; }
.proposals-panel--emerald .proposals-panel-points li svg { color: #047857; flex-shrink: 0; }
.proposals-panel-footnote {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
  border-left: 3px solid var(--color-border-strong);
  padding: 12px 14px;
  border-radius: 6px;
}
.proposals-panel--emerald .proposals-panel-footnote {
  background: rgba(4, 120, 87, 0.06);
  border-left-color: #047857;
}
.proposals-panel-body .btn { align-self: flex-start; margin-top: 6px; padding: 13px 22px; font-size: 14.5px; }

/* ────────── WORK CONDITIONS ────────── */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}
.conditions-card {
  padding: clamp(18px, 2.6vw, 28px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.conditions-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.conditions-ico {
  width: 44px; height: 44px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.conditions-card h4 { font-size: 17px; margin: 0 0 6px; }
.conditions-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; margin: 0; }

/* ────────── TRAINING ────────── */
.training-section { }
.training-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
.training-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.training-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.training-photo--mobile { display: none; }
.training-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.10) 30%, rgba(15, 22, 38, 0.85) 100%);
}
.training-photo-tag {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  z-index: 1;
  color: #fff;
}
.training-photo-tag-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FCD34D;
  margin-bottom: 6px;
}
.training-photo-tag strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: block;
}
.training-photo-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.training-photo-card-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FCD34D;
  margin-bottom: 8px;
}
.training-photo-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #fff;
}

.training-content {
  display: flex;
  flex-direction: column;
}
.training-content h2 { margin-top: 14px; }
.training-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 14px 0 28px;
}
.training-bento {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.training-bento-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.training-bento-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.training-bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.training-bento-card--audience .training-bento-icon {
  background: rgba(252, 211, 77, 0.18);
  color: #b45309;
}
.training-bento-card--program .training-bento-icon {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.training-bento-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}
.training-bento-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.training-bento-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
}
.training-bento-card--audience li svg { color: #b45309; flex-shrink: 0; }
.training-bento-card--program li svg { color: var(--color-primary); flex-shrink: 0; }
.training-content .btn { align-self: flex-start; }


/* Tablet — stack 2-col fixed-proportion layouts (about, training, proposals) */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16 / 9; }
  .proposals-tabs { grid-template-columns: 1fr; }
  .proposals-panel { grid-template-columns: 1fr; }
  .proposals-panel-media { aspect-ratio: 16 / 9; min-height: 0; }
  .training-grid { grid-template-columns: 1fr; }
  .training-photo--desktop { display: none; }
  .training-photo--mobile { display: block; aspect-ratio: auto; height: 350px; margin: 18px 0 8px; }
}
/* Phone — stack 2-col internal grids */
@media (max-width: 720px) {
  .proposals-panel-points { grid-template-columns: 1fr; }
  .training-bento { grid-template-columns: 1fr; }
}

/* ────────── REVEAL ON SCROLL ────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────────────────
   CONTACTS PAGE
   ────────────────────────────────────────────────────────── */

/* ────────── CONTACTS HERO ────────── */
.contacts-hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(36px, 5.5vw, 72px);
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.06), transparent 50%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.contacts-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}
.contacts-hero h1 {
  margin-top: clamp(12px, 1.8vw, 18px);
  letter-spacing: -0.025em;
}
.contacts-hero-sub {
  margin-top: clamp(14px, 2vw, 20px);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 560px;
}

.contacts-quick {
  margin-top: clamp(24px, 3.6vw, 36px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(10px, 1.2vw, 12px);
}
.contacts-quick-tile {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 14px);
  padding: clamp(12px, 1.8vw, 16px) clamp(14px, 2vw, 18px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.contacts-quick-tile:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contacts-quick-tile svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contacts-quick-tile .tile-label {
  font-family: var(--font-mono);
  font-size: clamp(10.5px, 1.2vw, 11.5px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.contacts-quick-tile .tile-value {
  font-size: clamp(14px, 1.6vw, 15.5px);
  font-weight: 600;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.contacts-hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--color-bg-dark) 0%, var(--color-bg-dark-2) 100%);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contacts-hero-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 65%);
  pointer-events: none;
}
.contacts-hero-card-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-muted);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.contacts-hero-card-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.08); }
}
.contacts-hero-card h3 {
  position: relative;
  z-index: 1;
  margin-top: clamp(14px, 2vw, 18px);
  color: #fff;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.3;
}
.contacts-hero-card p {
  position: relative;
  z-index: 1;
  margin-top: clamp(10px, 1.4vw, 14px);
  font-size: clamp(13.5px, 1.5vw, 15px);
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
}
.contacts-hero-card-stats {
  position: relative;
  z-index: 1;
  margin-top: clamp(18px, 2.4vw, 24px);
  padding-top: clamp(16px, 2.2vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}
.contacts-hero-card-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contacts-hero-card-stats strong {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.contacts-hero-card-stats span {
  font-size: clamp(12px, 1.3vw, 13px);
  line-height: 1.5;
  color: var(--color-text-on-dark-muted);
}

/* ────────── MANAGERS ────────── */
.managers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}
.manager-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.8vw, 28px) clamp(18px, 2.4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.manager-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.manager-avatar {
  width: clamp(52px, 5vw, 60px);
  height: clamp(52px, 5vw, 60px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4f7cf0 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
  margin-bottom: 8px;
}
.manager-name {
  font-size: clamp(16px, 1.8vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.manager-role {
  font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.005em;
}
.manager-focus {
  font-size: clamp(12.5px, 1.3vw, 13px);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 2px;
}
.manager-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.manager-langs .lang {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  padding: 3px 8px;
  border-radius: 4px;
}
.manager-contact {
  margin-top: clamp(14px, 1.8vw, 18px);
  padding-top: clamp(14px, 1.8vw, 18px);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.manager-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--color-text);
  transition: color 0.15s ease;
  word-break: break-word;
}
.manager-contact a svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: color 0.15s ease;
}
.manager-contact a:hover { color: var(--color-primary); }
.manager-contact a:hover svg { color: var(--color-primary); }

/* ────────── WAREHOUSES ────────── */
.warehouses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}
.warehouse-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(16px, 2.4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.warehouse-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}
.warehouse-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}
.warehouse-flag {
  width: 44px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.warehouse-flag svg { display: block; width: 100%; height: 100%; }
.warehouse-country {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.3;
}
.warehouse-city {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  line-height: 1.2;
  margin-top: 2px;
}
.warehouse-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  align-self: flex-start;
}
.warehouse-badge--store {
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-color: color-mix(in oklab, var(--color-primary) 18%, transparent);
}
.warehouse-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: clamp(13.5px, 1.5vw, 14px);
  line-height: 1.55;
  color: var(--color-text);
  padding: clamp(10px, 1.4vw, 12px) clamp(12px, 1.6vw, 14px);
  background: var(--color-bg-soft);
  border-radius: 8px;
}
.warehouse-address svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.warehouse-row {
  display: grid;
  grid-template-columns: minmax(96px, 110px) 1fr;
  gap: 12px;
  font-size: clamp(13px, 1.4vw, 13.5px);
  line-height: 1.5;
}
.warehouse-row + .warehouse-row { padding-top: 10px; border-top: 1px dashed var(--color-border); }
.warehouse-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-top: 2px;
}

/* ────────── QUICK FORM ────────── */
.quick-form-section {
  background: var(--color-bg);
}
.quick-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}
.quick-form-section .lead {
  margin-top: clamp(14px, 2vw, 18px);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 480px;
}
.quick-form-list {
  margin-top: clamp(20px, 2.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick-form-list > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  color: var(--color-text);
}
.quick-form-list svg {
  color: var(--color-success);
  flex-shrink: 0;
}
.quick-form-fullform {
  margin-top: clamp(22px, 3.4vw, 32px);
  padding: clamp(14px, 1.8vw, 16px) clamp(14px, 2vw, 18px);
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  line-height: 1.5;
}
.quick-form-fullform a {
  color: var(--color-primary);
  font-weight: 600;
}
.quick-form-fullform a:hover { color: var(--color-primary-hover); }

.quick-form-section .form-card {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  background: #fff;
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}

/* ──────────────────────────────────────────────────────────
   PRO NAS (ABOUT) PAGE
   ────────────────────────────────────────────────────────── */

/* ────────── HERO ────────── */
.pronas-hero {
  position: relative;
  padding: clamp(40px, 7vw, 96px) 0 clamp(40px, 7vw, 80px);
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.pronas-hero h1,
.pronas-hero h2 { color: var(--color-text-on-dark); }
.pronas-hero .eyebrow { color: #7BA8FF; }
.pronas-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(37, 99, 235, 0.30), transparent 55%),
    radial-gradient(circle at 88% 70%, rgba(245, 158, 11, 0.12), transparent 55%);
  pointer-events: none;
}
.pronas-hero h1 {
  margin-top: clamp(12px, 1.8vw, 18px);
  letter-spacing: -0.025em;
}
.pronas-hero .accent-blue { color: #7BA8FF; }
.pronas-hero-sub {
  margin-top: clamp(16px, 2.4vw, 24px);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
}
.pronas-hero-sub--small {
  margin-top: clamp(12px, 1.6vw, 16px);
  font-size: clamp(14px, 1.6vw, 15.5px);
  color: var(--color-text-on-dark-muted);
  opacity: 0.78;
}
.pronas-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: stretch;
}
.pronas-hero-text { position: relative; z-index: 1; }
.pronas-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: stretch;
}
.pronas-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pronas-hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 22, 38, 0.35) 0%, transparent 45%),
    linear-gradient(0deg, rgba(15, 22, 38, 0.55) 0%, transparent 55%);
  pointer-events: none;
}
.pronas-hero-visual-tag {
  position: absolute;
  z-index: 2;
  background: rgba(15, 22, 38, 0.68);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-text-on-dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.pronas-hero-visual-tag--top {
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pronas-hero-visual-tag--top .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
}
.pronas-hero-visual-tag--bottom {
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}
.pronas-hero-visual-tag--bottom .ico {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(123, 168, 255, 0.20);
  color: #7BA8FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pronas-hero-visual-tag--bottom strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.01em;
}
.pronas-hero-visual-tag--bottom span {
  display: block;
  font-size: 12px;
  color: var(--color-text-on-dark-muted);
  margin-top: 2px;
}
.pronas-hero-meta {
  position: relative;
  margin-top: clamp(28px, 4.5vw, 56px);
  padding-top: clamp(20px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
  max-width: 720px;
}
.pronas-hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.pronas-hero-meta strong {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.pronas-hero-meta span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-on-dark-muted);
}

/* ────────── APPROACH ────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}
.approach-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(18px, 2.6vw, 28px) clamp(18px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.approach-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.approach-ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.approach-card h4 { font-size: 17px; letter-spacing: -0.01em; }
.approach-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; margin-top: 4px; }

/* ────────── RELIABILITY ────────── */
.reliability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}
.reliability-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.6vw, 28px) clamp(16px, 2.4vw, 24px) clamp(18px, 2.4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reliability-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.reliability-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.reliability-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4f7cf0 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}
.reliability-card h4 { font-size: 17px; letter-spacing: -0.01em; }
.reliability-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; margin-top: 4px; }

/* ────────── BRANDS ────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}
.brand-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.brand-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-name {
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.brand-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border: 1px solid color-mix(in oklab, var(--color-primary) 18%, transparent);
  padding: 5px 10px;
  border-radius: 4px;
}
.brand-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.brand-card p {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ────────── LOGISTICS ────────── */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.logistics-lead {
  margin-top: clamp(14px, 2vw, 18px);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 480px;
}
.logistics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.logistics-item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 14px);
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2.2vw, 22px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: clamp(14px, 1.6vw, 15.5px);
  font-weight: 500;
  color: var(--color-text);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.logistics-item:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.logistics-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

/* ────────── FINANCE BANNER ────────── */
.pronas-finance { padding: clamp(40px, 7vw, 80px) 0; }
.pronas-finance-card {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-dark-2) 100%);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 48px) clamp(22px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pronas-finance-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 65%);
  pointer-events: none;
}
.pronas-finance-card > div { position: relative; z-index: 1; }
.pronas-finance-card p {
  margin-top: clamp(14px, 2vw, 18px);
  font-size: clamp(14.5px, 1.7vw, 16px);
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
  max-width: 520px;
}
.pronas-finance-card .btn {
  margin-top: 28px;
}
.pronas-finance-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.6vw, 28px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.pronas-finance-stats > div { display: flex; flex-direction: column; gap: 6px; }
.pronas-finance-stats strong {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}
.pronas-finance-stats span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-on-dark-muted);
}

/* ────────── MISSION & VISION ────────── */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.mv-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  min-height: clamp(200px, 28vw, 280px);
}
.mv-card--vision {
  background: #fff;
  border: 1px solid var(--color-border);
}
.mv-card--mission {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  color: #fff;
}
.mv-card--mission::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 65%);
  pointer-events: none;
}
.mv-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.mv-card--vision .mv-ico { background: var(--color-primary-soft); color: var(--color-primary); }
.mv-card--mission .mv-ico { background: rgba(255, 255, 255, 0.16); color: #fff; }
.mv-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.mv-card--vision .mv-label { color: var(--color-text-muted); }
.mv-card--mission .mv-label { color: rgba(255, 255, 255, 0.7); }
.mv-card h3 {
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.mv-card--mission h3 { color: #fff; }

/* ────────── SLOGAN ────────── */
.pronas-slogan {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.pronas-slogan-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(37, 99, 235, 0.20), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(245, 158, 11, 0.10), transparent 55%);
  pointer-events: none;
}
.pronas-slogan-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.pronas-slogan-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pronas-slogan h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(22px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pronas-slogan .accent-blue { color: #7BA8FF; }
.pronas-slogan p {
  margin-top: clamp(14px, 2vw, 20px);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.pronas-slogan .eyebrow { justify-content: center; }

/* ────────── PARTNER FORM ────────── */
.partner-section {
  padding: var(--section-y) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.05), transparent 55%),
    radial-gradient(circle at 88% 75%, rgba(245, 158, 11, 0.06), transparent 55%);
  pointer-events: none;
}
.partner-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.partner-text h2 { margin-top: 14px; letter-spacing: -0.02em; }
.partner-text p {
  margin-top: clamp(14px, 2vw, 18px);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 480px;
}
.partner-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner-bullets > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--color-text);
}
.partner-bullets svg { color: var(--color-success); flex-shrink: 0; }

.partner-card {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.partner-submit { margin-top: 24px; }
.partner-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}
.partner-direct {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.partner-direct:hover { border-color: var(--color-primary); background: #fff; }
.partner-direct svg { color: var(--color-primary); flex-shrink: 0; }
.partner-direct > span { display: flex; flex-direction: column; line-height: 1.3; gap: 2px; }
.partner-direct > span > span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.partner-direct strong { font-size: clamp(14px, 1.6vw, 15.5px); font-weight: 600; color: var(--color-text); }

/* ─────────────────────────────────────
   PRO-NAS (Про нас) — clean styles
   ───────────────────────────────────── */

/* ────────── 01 · ХТО МИ ────────── */
.pn-who {
  padding: clamp(40px, 7vw, 96px) 0 clamp(40px, 6.5vw, 88px);
  background: var(--color-bg);
}
.pn-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}
.pn-who-text h2 {
  margin: 0 0 4px;
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.15;
}
.pn-who-text p {
  margin-top: clamp(14px, 2vw, 18px);
  font-size: clamp(14.5px, 1.7vw, 16px);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
}
.pn-who-text p.pn-lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 500;
}
.pn-who-aside {
  position: relative;
  background: linear-gradient(140deg, #0f1626 0%, #1a2238 100%);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.4vw, 40px) clamp(20px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pn-who-aside::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 65%);
  pointer-events: none;
}
.pn-who-aside-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 18px;
}
.pn-who-aside p {
  position: relative;
  margin: 0;
  font-size: clamp(14.5px, 1.7vw, 16px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.pn-who-aside p + p { margin-top: 14px; }
.pn-who-aside strong { color: #fff; font-weight: 600; }

/* ────────── SECTION HEAD HELPERS ────────── */
.pn-section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.pn-section-head h2 {
  margin-top: 14px;
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.15;
}
.pn-section-head p {
  margin-top: 14px;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--color-text-muted);
}
.pn-section-head--dark h2 { color: #fff; }
.pn-section-head--dark p { color: rgba(255,255,255,0.7); }

/* ────────── 02 · ЩО ДАЄ NOTA TRADE (DARK) ────────── */
.pn-give {
  position: relative;
  padding: clamp(40px, 7vw, 96px) 0 clamp(48px, 8vw, 100px);
  background: #0a1024;
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.pn-give-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.28), transparent 50%),
    radial-gradient(circle at 88% 80%, rgba(245, 158, 11, 0.10), transparent 50%);
  pointer-events: none;
}
.pn-give-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
.pn-give .container { position: relative; }
.pn-give-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: clamp(20px, 3.6vw, 48px);
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.pn-give-head h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: #fff;
}
.pn-give-head p {
  margin: 0;
  font-size: clamp(14.5px, 1.7vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

.pn-give-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.pn-give-stat {
  position: relative;
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px) clamp(14px, 2vw, 20px);
  background: linear-gradient(155deg, rgba(123, 168, 255, 0.08) 0%, rgba(123, 168, 255, 0.02) 100%);
  border: 1px solid rgba(123, 168, 255, 0.18);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pn-give-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 28px;
  height: 2px;
  background: #7BA8FF;
  border-radius: 0 0 2px 2px;
}
.pn-give-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7BA8FF;
  margin-bottom: 8px;
}
.pn-give-stat strong {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.pn-give-stat-sub {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.6);
}

.pn-give-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.pn-give-intro {
  display: flex;
  flex-direction: column;
}
.pn-give-intro p {
  margin: 0;
  font-size: clamp(14.5px, 1.8vw, 16.5px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.pn-give-intro p + p { margin-top: 18px; }
.pn-give-risk {
  margin-top: clamp(18px, 2.4vw, 24px);
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.4vw, 26px);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
}
.pn-give-risk-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 10px;
}
.pn-give-risk p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

.pn-give-list {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.6vw, 28px) clamp(18px, 3vw, 32px) clamp(16px, 2.4vw, 24px);
}
.pn-give-list-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7BA8FF;
  margin-bottom: 18px;
}
.pn-give-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: clamp(16px, 2.4vw, 28px);
}
.pn-give-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
}
.pn-give-list li:first-child,
.pn-give-list li:nth-child(2) { border-top: 0; }
.pn-give-list-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: rgba(123,168,255,0.7);
  letter-spacing: 0.06em;
}

/* ────────── 03 · ЩО ПОСТАЧАЄМО ────────── */
.pn-supply {
  padding: clamp(48px, 8vw, 100px) 0;
  background: var(--color-bg);
}
.pn-supply-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: clamp(20px, 3.6vw, 48px);
  align-items: end;
  margin-bottom: clamp(24px, 3.2vw, 40px);
}
.pn-supply-head-text h2 {
  margin: 0 0 clamp(12px, 1.6vw, 16px);
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.15;
}
.pn-supply-head-text .pn-lead {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-text);
  max-width: 460px;
}
.pn-supply-head-note p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 15.5px);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 480px;
}

/* Bento grid: 4 cols x 2 rows; photo occupies 2x2 left cell */
.pn-supply-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(10px, 1.4vw, 16px);
}
.pn-supply-photo {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(220px, 30vw, 360px);
  box-shadow: var(--shadow-md);
}
.pn-supply-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pn-supply-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(15, 22, 38, 0.78) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), transparent 55%);
  pointer-events: none;
}
.pn-supply-photo-tag {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}
.pn-supply-photo-tag-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.pn-supply-photo-tag strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}

.pn-supply-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(14px, 1.8vw, 20px) clamp(14px, 1.8vw, 20px) clamp(12px, 1.6vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pn-supply-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.pn-supply-card-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-text-muted);
}
.pn-supply-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pn-supply-card h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
  color: var(--color-text);
}

/* ────────── 04 · ДЛЯ КОГО ПРАЦЮЄМО ────────── */
.pn-segments {
  padding: clamp(48px, 8vw, 100px) 0;
  background: var(--color-bg-soft);
}
.pn-segments-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pn-segment {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pn-segment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pn-segment--reverse .pn-segment-media { order: 2; }
.pn-segment--reverse .pn-segment-body { order: 1; }
.pn-segment--primary { border-left: 3px solid var(--color-primary); border-top: 1px solid var(--color-border); }
.pn-segment--accent { border-left: 3px solid #f59e0b; border-top: 1px solid var(--color-border); }
.pn-segment--navy { border-left: 3px solid #1e3a8a; border-top: 1px solid var(--color-border); }
.pn-segment--reverse.pn-segment--primary { border-left: 1px solid var(--color-border); border-right: 3px solid var(--color-primary); }
.pn-segment--reverse.pn-segment--accent { border-left: 1px solid var(--color-border); border-right: 3px solid #f59e0b; }
.pn-segment--reverse.pn-segment--navy { border-left: 1px solid var(--color-border); border-right: 3px solid #1e3a8a; }
.pn-segment-media {
  position: relative;
  min-height: clamp(220px, 28vw, 340px);
  overflow: hidden;
}
.pn-segment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pn-segment:hover .pn-segment-media img { transform: scale(1.04); }
.pn-segment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 22, 38, 0.55) 100%);
  pointer-events: none;
}
.pn-segment-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #fff;
  background: rgba(15, 22, 38, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 10px;
  border-radius: 4px;
}
.pn-segment--primary .pn-segment-num { background: rgba(37, 99, 235, 0.88); border-color: rgba(123, 168, 255, 0.4); }
.pn-segment--accent .pn-segment-num { background: rgba(245, 158, 11, 0.92); border-color: rgba(252, 211, 77, 0.4); }
.pn-segment--navy .pn-segment-num { background: rgba(30, 58, 138, 0.88); border-color: rgba(123, 168, 255, 0.3); }
.pn-segment-body {
  padding: clamp(20px, 3.4vw, 36px) clamp(20px, 3.6vw, 40px) clamp(22px, 3.6vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pn-segment-body h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -0.022em;
  margin: 0;
}
.pn-segment-lead {
  font-size: clamp(14.5px, 1.7vw, 16px);
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 500;
  margin: 0;
}
.pn-segment-body-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}
.pn-segment-help {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  border-left: 3px solid var(--color-border-strong);
  background: var(--color-bg-soft);
}
.pn-segment--primary .pn-segment-help { border-left-color: var(--color-primary); background: var(--color-primary-soft); }
.pn-segment--accent .pn-segment-help { border-left-color: #f59e0b; background: rgba(245, 158, 11, 0.08); }
.pn-segment--navy .pn-segment-help { border-left-color: #1e3a8a; background: rgba(30, 58, 138, 0.06); }
.pn-segment-value {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.pn-segment-value span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pn-segment--primary .pn-segment-value span { color: var(--color-primary); }
.pn-segment--accent .pn-segment-value span { color: #b45309; }
.pn-segment--navy .pn-segment-value span { color: #1e3a8a; }
.pn-segment-value p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 500;
}

/* ────────── 05 · СИЛЬНА ПОЗИЦІЯ (DARK) ────────── */
.pn-strong {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.pn-strong-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pn-strong-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(2px) saturate(120%);
}
.pn-strong-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(15, 22, 38, 0.85) 0%, rgba(15, 22, 38, 0.95) 100%);
}
.pn-strong-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
}
.pn-strong .container { position: relative; }

.pn-strong-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.pn-strong-text h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(22px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.022em;
}
.pn-strong-text p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.6vw, 15.5px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.pn-strong-text p:last-child {
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}
.pn-strong-text p strong {
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #7BA8FF;
  padding-bottom: 1px;
}
.pn-strong-text p em {
  font-style: normal;
  font-weight: 600;
  color: #fff;
}

.pn-strong-outcomes-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7BA8FF;
  margin-bottom: 12px;
}
.pn-strong-outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pn-strong-outcomes-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
}
.pn-strong-outcomes-list li:first-child { border-top: 0; }
.pn-strong-outcome-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(123,168,255,0.6);
  letter-spacing: 0.06em;
}

/* ────────── PRO-NAS / CONTACTS RESPONSIVE (only fixed-proportion stack rules) ────────── */
@media (max-width: 1024px) {
  .pronas-hero-grid { grid-template-columns: 1fr; }
  .pronas-hero-visual { max-width: 560px; margin: 0 auto; aspect-ratio: 16 / 11; width: 100%; height: auto; min-height: 0; }
  .pn-who-aside { position: static; }
  .pn-give-list { position: static; }
  .pn-segment--reverse .pn-segment-media { order: 0; }
  .pn-segment--reverse .pn-segment-body { order: 0; }
}
