/* -- Self-hosted fonts (no external requests) -- */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/barlow-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlow-condensed-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/barlow-condensed-latin-800-normal.woff2') format('woff2');
}
:root {
  --petrol: #1a6b6b; --petrol-light: #22888a; --petrol-dark: #104848;
  --petrol-muted: rgba(26,107,107,0.12); --charcoal: #222220;
  --off-white: #f7f5f0; --white: #ffffff;
  --font-head: 'Barlow Condensed', sans-serif; --font-body: 'Barlow', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--charcoal); color: var(--off-white); overflow-x: hidden; }

/* в”Ђв”Ђ NAV в”Ђв”Ђ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; background: rgba(34,34,32,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.logo { font-family: var(--font-head); font-size: 22px; font-weight: 800; letter-spacing: 0.08em; color: var(--white); text-decoration: none; text-transform: uppercase; }
.logo span { color: var(--petrol-light); }
nav ul { display: flex; gap: 36px; list-style: none; }
nav a { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,245,240,0.6); text-decoration: none; transition: color 0.2s; }
nav a:hover { color: var(--petrol-light); }
.nav-cta { background: var(--petrol); color: var(--white) !important; padding: 10px 22px; border-radius: 2px; }
.nav-cta:hover { background: var(--petrol-light) !important; }

/* в”Ђв”Ђ NAV DROPDOWN (homepage only) в”Ђв”Ђ */
nav ul li { position: relative; }
.nav-dropdown { display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); background: rgba(22,22,20,0.97); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 8px 0; min-width: 220px; z-index: 200; box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
nav ul li:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 10px 20px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247,245,240,0.5) !important; text-decoration: none; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-dropdown a:hover { color: var(--petrol-light) !important; background: rgba(26,107,107,0.08); }
.nav-dropdown .dropdown-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 0; }
.nav-dropdown .dropdown-label { padding: 8px 20px 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,245,240,0.2) !important; cursor: default; }
.nav-dropdown .dropdown-label:hover { background: none !important; color: rgba(247,245,240,0.2) !important; }
nav ul li > a.has-dropdown::after { content: ' в–ѕ'; font-size: 9px; opacity: 0.5; }

/* в”Ђв”Ђ PRODUCT HERO в”Ђв”Ђ */
.product-hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal); padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(17,17,16,0.96) 40%, rgba(17,17,16,0.5) 70%, rgba(17,17,16,0.2) 100%), linear-gradient(to top, rgba(17,17,16,0.98) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(26,107,107,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26,107,107,0.05) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, transparent 80%); }
.hero-content { position: relative; z-index: 10; padding: 0 48px 96px; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,245,240,0.35); margin-bottom: 32px; }
.breadcrumb a { color: rgba(247,245,240,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--petrol-light); }
.breadcrumb span { color: var(--petrol-light); }
.product-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--petrol-light); margin-bottom: 24px; }
.product-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--petrol-light); }
.product-hero h1 { font-family: var(--font-head); font-size: clamp(52px, 7vw, 88px); font-weight: 800; line-height: 0.92; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 28px; }
.product-hero h1 .hl { color: var(--petrol-light); }
.hero-claim { font-size: 19px; font-weight: 400; line-height: 1.65; color: rgba(247,245,240,0.7); max-width: 560px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* в”Ђв”Ђ BUTTONS в”Ђв”Ђ */
.btn-primary { display: inline-block; padding: 15px 32px; background: var(--petrol); color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--petrol-light); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: rgba(247,245,240,0.55); text-decoration: none; transition: color 0.2s; }
.btn-ghost:hover { color: var(--white); }
.btn-secondary { display: inline-block; padding: 15px 32px; border: 1px solid rgba(247,245,240,0.25); color: var(--off-white); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: rgba(247,245,240,0.6); color: var(--white); }

/* в”Ђв”Ђ FACTS BAR в”Ђв”Ђ */
.facts-bar { background: rgba(26,107,107,0.12); border-top: 1px solid rgba(26,107,107,0.3); border-bottom: 1px solid rgba(26,107,107,0.3); padding: 28px 48px; }
.facts-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-item { padding: 0 32px; border-right: 1px solid rgba(26,107,107,0.2); }
.fact-item:first-child { padding-left: 0; }
.fact-item:last-child { border-right: none; }
.fact-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.fact-num span { color: var(--petrol-light); }
.fact-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,245,240,0.4); margin-top: 6px; }

/* в”Ђв”Ђ SECTIONS в”Ђв”Ђ */
section { padding: 100px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--petrol-light); margin-bottom: 20px; }
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--petrol-light); }
h2 { font-family: var(--font-head); font-size: clamp(34px, 4.5vw, 58px); font-weight: 800; line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); }
h2 .hl { color: var(--petrol-light); }

/* в”Ђв”Ђ PRODUCT NAV в”Ђв”Ђ */
.product-nav { background: #111110; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 48px; }
.product-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; overflow-x: auto; }
.pnav-item { padding: 16px 24px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247,245,240,0.35); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.pnav-item:hover { color: rgba(247,245,240,0.7); }
.pnav-item.active { color: var(--petrol-light); border-bottom-color: var(--petrol-light); }

/* в”Ђв”Ђ HOW IT WORKS в”Ђв”Ђ */
.how-section { background: #1a1a18; }
.how-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.how-text p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 24px; }
.step { display: flex; align-items: flex-start; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: rgba(26,107,107,0.2); line-height: 1; flex-shrink: 0; width: 52px; }
.step-body h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; margin-top: 8px; }
.step-body p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.6; }

/* в”Ђв”Ђ FEATURES в”Ђв”Ђ */
.features-section { background: var(--charcoal); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.feature-card { background: var(--charcoal); padding: 40px 36px; transition: background 0.2s; }
.feature-card:hover { background: rgba(26,107,107,0.06); }
.feature-icon { width: 44px; height: 44px; margin-bottom: 20px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { color: var(--petrol-light); }
.feature-card h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.65; }

/* в”Ђв”Ђ LOCATIONS в”Ђв”Ђ */
.locations-section { background: #111110; }
.locations-intro { max-width: 600px; margin-bottom: 64px; }
.locations-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; }
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.location-card { background: #111110; padding: 36px 28px; transition: background 0.2s; }
.location-card:hover { background: rgba(26,107,107,0.08); }
.location-icon { width: 40px; height: 40px; margin-bottom: 16px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.location-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.location-card p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.5; }
.location-examples { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.loc-ex { font-size: 10px; font-weight: 500; color: rgba(247,245,240,0.3); border: 1px solid rgba(255,255,255,0.06); padding: 3px 8px; border-radius: 2px; }

/* в”Ђв”Ђ SPECS в”Ђв”Ђ */
.specs-section { background: #1a1a18; }
.specs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.specs-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 24px; }
.spec-row:last-child { border-bottom: none; }
.spec-key { font-size: 13px; font-weight: 500; color: rgba(247,245,240,0.4); flex-shrink: 0; }
.spec-val { font-size: 14px; font-weight: 600; color: var(--white); text-align: right; }

/* в”Ђв”Ђ CTA в”Ђв”Ђ */
.cta-section { background: var(--petrol-dark); border-top: 1px solid rgba(26,107,107,0.4); text-align: center; padding: 100px 48px; }
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: rgba(247,245,240,0.6); max-width: 520px; margin: 0 auto 48px; line-height: 1.65; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; align-items: center; flex-wrap: wrap; }

/* в”Ђв”Ђ DIVIDER в”Ђв”Ђ */
.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(26,107,107,0.4), transparent); }

/* в”Ђв”Ђ FOOTER в”Ђв”Ђ */
footer { background: #0f0f0e; padding: 64px 48px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 20px; display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(247,245,240,0.3); line-height: 1.6; max-width: 280px; }
footer h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,245,240,0.3); margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer li a { font-size: 13px; color: rgba(247,245,240,0.4); text-decoration: none; transition: color 0.2s; }
footer li a:hover { color: var(--petrol-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p, .footer-address { font-size: 12px; color: rgba(247,245,240,0.2); }
.footer-address { text-align: right; }

/* в”Ђв”Ђ FOOTER SIMPLIFIED (impressum/datenschutz) в”Ђв”Ђ */
.footer-simple { background: #0f0f0e; padding: 24px 48px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer-simple p { font-size: 12px; color: rgba(247,245,240,0.2); }
.footer-simple-links { display: flex; gap: 24px; }
.footer-simple-links a { font-size: 12px; color: rgba(247,245,240,0.3); text-decoration: none; transition: color 0.2s; }
.footer-simple-links a:hover { color: var(--petrol-light); }

/* в”Ђв”Ђ ANIMATIONS в”Ђв”Ђ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* в”Ђв”Ђ RESPONSIVE в”Ђв”Ђ */
@media (max-width: 900px) {
  nav ul, nav .nav-cta { display: none; }
  section { padding: 64px 24px; }
  nav, .facts-bar, .product-nav { padding-left: 24px; padding-right: 24px; }
  .hero-content { padding: 0 24px 72px; }
  .how-split, .specs-split { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fact-item { border-right: none; padding: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-buttons { flex-direction: column; }
  .footer-simple { flex-direction: column; gap: 12px; text-align: center; }
}

/* в”Ђв”Ђ HOMEPAGE HERO в”Ђв”Ђ */
.home-hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal); }
.home-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,107,107,0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 20% 70%, rgba(26,107,107,0.10) 0%, transparent 60%), linear-gradient(160deg, #0d0d0c 0%, #1e2020 50%, #0f1a1a 100%); }
.home-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(26,107,107,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(26,107,107,0.07) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 40%, transparent 100%); }
.home-hero-content { position: relative; z-index: 10; padding: 0 48px 80px; max-width: 680px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--petrol-light); margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--petrol-light); }
.home-hero h1 { font-family: var(--font-head); font-size: clamp(56px, 8vw, 96px); font-weight: 800; line-height: 0.92; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.home-hero h1 .highlight { color: var(--petrol-light); }
.hero-sub { font-size: 17px; font-weight: 400; line-height: 1.65; color: rgba(247,245,240,0.65); max-width: 520px; margin-bottom: 44px; margin-top: 24px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; }
.hero-stats { position: absolute; bottom: 80px; right: 48px; display: flex; flex-direction: column; gap: 24px; text-align: right; }
.stat-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--petrol-light); }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,245,240,0.4); }

/* в”Ђв”Ђ MARQUEE в”Ђв”Ђ */
.marquee-strip { background: var(--petrol-dark); border-top: 1px solid rgba(26,107,107,0.4); border-bottom: 1px solid rgba(26,107,107,0.4); overflow: hidden; padding: 14px 0; }
.marquee-inner { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 32px; padding: 0 40px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,245,240,0.4); }
.marquee-item::after { content: "в—†"; color: var(--petrol-light); font-size: 8px; }

/* в”Ђв”Ђ HOMEPAGE PRODUCTS GRID в”Ђв”Ђ */
.products-section { background: #1a1a18; }
.hp-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.hp-products-grid-bottom { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-top: none; }
.hp-product-card { background: #1a1a18; padding: 48px 40px; position: relative; overflow: hidden; transition: background 0.3s; }
.hp-product-card:hover { background: #202220; }
.hp-product-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--petrol); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.hp-product-card:hover::before { transform: scaleX(1); }
.product-num { font-family: var(--font-head); font-size: 72px; font-weight: 800; color: rgba(26,107,107,0.12); line-height: 1; margin-bottom: 24px; letter-spacing: -0.02em; }
.product-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--petrol-light); background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.25); padding: 4px 10px; border-radius: 2px; margin-bottom: 16px; }
.hp-product-card h3 { font-family: var(--font-head); font-size: 28px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hp-product-card p { font-size: 14px; line-height: 1.65; color: rgba(247,245,240,0.5); margin-bottom: 28px; }
.product-locations { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.loc-tag { font-size: 11px; font-weight: 500; color: rgba(247,245,240,0.4); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 2px; }
.product-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--petrol-light); text-decoration: none; transition: gap 0.2s; }
.product-link:hover { gap: 12px; }

/* в”Ђв”Ђ TECH SECTION в”Ђв”Ђ */
.tech-section { background: var(--charcoal); position: relative; overflow: hidden; }
.tech-section::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,107,107,0.12) 0%, transparent 70%); pointer-events: none; }
.tech-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.tech-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 28px; }
.tech-stack { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); }
.tech-item { background: rgba(255,255,255,0.02); padding: 28px 24px; transition: background 0.2s; }
.tech-item:hover { background: rgba(26,107,107,0.08); }
.tech-item-icon { width: 36px; height: 36px; margin-bottom: 14px; }
.tech-item h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.tech-item p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.5; }

/* в”Ђв”Ђ PARTNER в”Ђв”Ђ */
.partner-section { background: #1a1a18; }
.partner-types { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.partner-item { background: #1a1a18; padding: 40px 28px; text-align: center; transition: background 0.2s; }
.partner-item:hover { background: rgba(26,107,107,0.08); }
.partner-item-icon { width: 48px; height: 48px; margin: 0 auto 16px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.partner-item h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.partner-item p { font-size: 12px; color: rgba(247,245,240,0.35); line-height: 1.4; }

/* в”Ђв”Ђ NETWORK в”Ђв”Ђ */
.network-section { background: linear-gradient(180deg, var(--charcoal) 0%, #0f1a1a 100%); text-align: center; padding: 120px 48px; }
.network-stats { display: flex; justify-content: center; gap: 80px; margin: 64px 0; }
.network-stat .num { font-family: var(--font-head); font-size: 72px; font-weight: 800; line-height: 1; color: var(--white); }
.network-stat .num span { color: var(--petrol-light); }
.network-stat .label { font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,245,240,0.35); margin-top: 8px; }
.network-p { max-width: 560px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.55); }

/* в”Ђв”Ђ SOLUTION PAGES в”Ђв”Ђ */
.sol-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 80px; }
.sol-hero-bg { position: absolute; inset: 0; }
.sol-hero-stars { position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 100%), radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.1) 0%, transparent 100%), radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.08) 0%, transparent 100%), radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.12) 0%, transparent 100%); }
.sol-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(26,107,107,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26,107,107,0.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, transparent 80%); }
.sol-hero .hero-content { max-width: 860px; padding: 0 48px 96px; }
.sol-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--petrol-light); margin-bottom: 24px; background: rgba(26,107,107,0.12); border: 1px solid rgba(26,107,107,0.3); padding: 6px 16px; border-radius: 2px; }
.sol-hero h1 { font-family: var(--font-head); font-size: clamp(52px, 7.5vw, 96px); font-weight: 800; line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.sol-hero h1 .hl { color: var(--petrol-light); }
.sol-hero h1 .sub { font-size: clamp(28px, 4vw, 52px); color: var(--petrol-light); display: block; letter-spacing: 0.08em; margin-top: 8px; }
.sol-hero .hero-claim { margin-top: 28px; margin-bottom: 52px; }

.sol-page-nav { background: #111110; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 48px; }
.sol-page-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; overflow-x: auto; }

.sol-concept-section { background: #1a1a18; }
.sol-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.sol-split-text p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 20px; }
.sol-pillars { display: flex; flex-direction: column; gap: 0; }
.sol-pillar { display: flex; align-items: flex-start; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sol-pillar:last-child { border-bottom: none; }
.sol-pillar-icon { width: 44px; height: 44px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--petrol-light); }
.sol-pillar h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.sol-pillar p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.6; }

.sol-film-section { background: var(--charcoal); }
.sol-film-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.sol-film-text p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 20px; }
.sol-film-quote { background: rgba(26,107,107,0.1); border-left: 3px solid var(--petrol-light); padding: 24px 28px; margin-top: 32px; border-radius: 0 4px 4px 0; }
.sol-film-quote p { font-size: 18px; font-style: italic; color: rgba(247,245,240,0.8); line-height: 1.6; }
.sol-years { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.sol-year-row { background: var(--charcoal); padding: 20px 24px; display: flex; align-items: flex-start; gap: 20px; transition: background 0.2s; }
.sol-year-row:hover { background: rgba(26,107,107,0.05); }
.sol-year-row.is-future { border-top: 1px solid rgba(26,107,107,0.2); background: rgba(26,107,107,0.04); }
.sol-year-label { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--petrol-light); flex-shrink: 0; width: 72px; line-height: 1; margin-top: 2px; }
.sol-year-row.is-future .sol-year-label { color: rgba(247,245,240,0.3); }
.sol-year-content h5 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.sol-year-row.is-future .sol-year-content h5 { color: rgba(247,245,240,0.5); }
.sol-year-content p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.5; }
.sol-year-products { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.sol-year-tag { font-size: 10px; font-weight: 500; color: rgba(247,245,240,0.3); border: 1px solid rgba(255,255,255,0.07); padding: 3px 8px; border-radius: 2px; }

.sol-example-section { background: #111110; }
.sol-example-header { margin-bottom: 48px; }
.sol-example-header p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; max-width: 640px; }
.sol-example-world { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.sol-example-world-header { background: rgba(26,107,107,0.1); border-bottom: 1px solid rgba(26,107,107,0.2); padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; }
.sol-example-world-title h3 { font-family: var(--font-head); font-size: 32px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; }
.sol-example-world-title p { font-size: 13px; color: rgba(247,245,240,0.4); margin-top: 6px; }
.sol-example-world-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--petrol-light); background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.3); padding: 6px 16px; border-radius: 2px; }
.sol-example-world-body { padding: 36px; }
.sol-example-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.sol-example-product { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 20px 20px 22px; transition: border-color 0.2s; }
.sol-example-product:hover { border-color: rgba(26,107,107,0.35); }
.sol-ep-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; display: inline-block; margin-bottom: 10px; }
.sol-ep-badge-ar, .sol-ep-badge-ai { background: rgba(26,107,107,0.15); color: var(--petrol-light); border: 1px solid rgba(26,107,107,0.3); }
.sol-ep-badge-video { background: rgba(80,60,120,0.2); color: #a78bde; border: 1px solid rgba(100,80,160,0.3); }
.sol-ep-badge-photo { background: rgba(60,80,100,0.2); color: #7aa8c8; border: 1px solid rgba(80,100,130,0.3); }
.sol-ep-badge-vr { background: rgba(120,60,60,0.2); color: #c87878; border: 1px solid rgba(150,80,80,0.3); }
.sol-example-product h5 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.sol-example-product p { font-size: 12px; color: rgba(247,245,240,0.4); line-height: 1.5; }
.sol-example-audience { background: rgba(26,107,107,0.06); border: 1px solid rgba(26,107,107,0.15); border-radius: 4px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 16px; }
.sol-ea-icon { width: 36px; height: 36px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--petrol-light); }
.sol-ea-text h5 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.sol-ea-text p { font-size: 13px; color: rgba(247,245,240,0.45); line-height: 1.5; }

.sol-audience-section { background: #1a1a18; }
.sol-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.sol-audience-card { background: #1a1a18; padding: 36px 28px; transition: background 0.2s; }
.sol-audience-card:hover { background: rgba(26,107,107,0.06); }
.sol-audience-letter { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: rgba(26,107,107,0.25); line-height: 1; margin-bottom: 16px; }
.sol-audience-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sol-audience-card p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.55; }
.sol-audience-products { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.sol-ap-tag { font-size: 10px; color: var(--petrol-light); border: 1px solid rgba(26,107,107,0.25); padding: 2px 8px; border-radius: 2px; }

.sol-benefits-section { background: var(--charcoal); }
.sol-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.sol-benefit-card { background: var(--charcoal); padding: 40px 36px; transition: background 0.2s; }
.sol-benefit-card:hover { background: rgba(26,107,107,0.05); }
.sol-benefit-num { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: rgba(26,107,107,0.2); line-height: 1; margin-bottom: 16px; }
.sol-benefit-card h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.sol-benefit-card p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.65; }

.sol-locations-section { background: #111110; }
.sol-locations-intro { max-width: 640px; margin-bottom: 64px; }
.sol-locations-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; }
.sol-locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.sol-location-card { background: #111110; padding: 36px 28px; transition: background 0.2s; }
.sol-location-card:hover { background: rgba(26,107,107,0.06); }
.sol-location-icon { width: 40px; height: 40px; margin-bottom: 16px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.sol-location-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sol-location-card p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.5; }

.sol-offer-section { background: #1a1a18; }
.sol-offer-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.sol-offer-text p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 24px; }
.sol-offer-items { display: flex; flex-direction: column; gap: 0; }
.sol-offer-item { display: flex; align-items: flex-start; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sol-offer-item:last-child { border-bottom: none; }
.sol-offer-icon { width: 44px; height: 44px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--petrol-light); }
.sol-offer-item h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.sol-offer-item p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.6; }

.sol-formats-section { background: var(--charcoal); }
.sol-formats-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; max-width: 600px; }
.sol-formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 48px; }
.sol-format-card { background: var(--charcoal); padding: 40px 32px; position: relative; transition: background 0.2s; overflow: hidden; }
.sol-format-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--petrol); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.sol-format-card:hover { background: rgba(26,107,107,0.05); }
.sol-format-card:hover::before { transform: scaleX(1); }
.sol-format-icon { width: 44px; height: 44px; margin-bottom: 20px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--petrol-light); }
.sol-format-card h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.sol-format-card p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.65; margin-bottom: 16px; }
.sol-format-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sol-format-tag { font-size: 10px; font-weight: 500; color: rgba(247,245,240,0.3); border: 1px solid rgba(255,255,255,0.06); padding: 3px 8px; border-radius: 2px; }

.sol-process-section { background: #111110; }
.sol-process-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; max-width: 600px; }
.sol-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 48px; }
.sol-process-step { background: #111110; padding: 36px 28px; }
.sol-process-num { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: rgba(26,107,107,0.15); line-height: 1; margin-bottom: 16px; }
.sol-process-step h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sol-process-step p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.55; }

.sol-pricing-section { background: var(--charcoal); }
.sol-pricing-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.sol-pricing-text p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 24px; }
.sol-pricing-box { background: rgba(26,107,107,0.1); border: 1px solid rgba(26,107,107,0.3); border-radius: 4px; padding: 40px 36px; }
.sol-pricing-box h3 { font-family: var(--font-head); font-size: 28px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.sol-pricing-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(26,107,107,0.15); }
.sol-pricing-item:last-child { border-bottom: none; }
.sol-pi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--petrol-light); flex-shrink: 0; margin-top: 7px; }
.sol-pi-text { font-size: 14px; color: rgba(247,245,240,0.6); line-height: 1.5; }
.sol-pi-text strong { color: var(--white); font-weight: 600; }

.sol-imanox-section { background: #1a1a18; }
.sol-imanox-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sol-imanox-text p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.65); margin-top: 24px; }
.sol-imanox-text strong { color: var(--white); }
.sol-imanox-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; padding: 14px 28px; border: 1px solid rgba(26,107,107,0.4); border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--petrol-light); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.sol-imanox-link:hover { border-color: var(--petrol-light); color: var(--white); }
.sol-imanox-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 40px 36px; }
.sol-imanox-box-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,245,240,0.3); margin-bottom: 24px; }
.sol-imanox-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sol-imanox-item:last-child { border-bottom: none; }
.sol-imanox-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--petrol-light); flex-shrink: 0; margin-top: 7px; }
.sol-imanox-item p { font-size: 14px; color: rgba(247,245,240,0.55); line-height: 1.5; }
.sol-imanox-item strong { color: var(--white); font-weight: 600; }

/* в”Ђв”Ђ SOLUTION RESPONSIVE в”Ђв”Ђ */
@media (max-width: 900px) {
  .sol-hero .hero-content { padding: 0 24px 72px; }
  .sol-split, .sol-film-split, .sol-offer-split, .sol-pricing-split, .sol-imanox-split { grid-template-columns: 1fr; gap: 40px; }
  .sol-example-products { grid-template-columns: 1fr; }
  .sol-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-benefits-grid, .sol-locations-grid, .sol-formats-grid { grid-template-columns: 1fr; }
  .sol-process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* в”Ђв”Ђ ГњBER UNS в”Ђв”Ђ */
.ue-hero { position: relative; min-height: 85vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 80px; }
.ue-hero-bg { position: absolute; inset: 0; }
.ue-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(26,107,107,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26,107,107,0.05) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2) 40%, transparent 85%); }
.ue-hero .hero-content { max-width: 1100px; padding: 0 48px 100px; }
.ue-hero h1 { font-family: var(--font-head); font-size: clamp(56px, 8vw, 104px); font-weight: 800; line-height: 0.88; letter-spacing: -0.02em; text-transform: uppercase; color: var(--white); margin-bottom: 32px; }
.ue-hero h1 .hl { color: var(--petrol-light); }
.ue-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--petrol-light); margin-bottom: 24px; background: rgba(26,107,107,0.12); border: 1px solid rgba(26,107,107,0.3); padding: 6px 16px; border-radius: 2px; }
.ue-hero-intro { font-size: 19px; font-weight: 400; line-height: 1.7; color: rgba(247,245,240,0.65); max-width: 780px; }
.ue-hero-intro strong { color: var(--white); font-weight: 600; }

.ue-stats-bar { background: rgba(26,107,107,0.1); border-top: 1px solid rgba(26,107,107,0.25); border-bottom: 1px solid rgba(26,107,107,0.25); padding: 36px 48px; }
.ue-stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); }
.ue-stat-item { padding: 0 28px; border-right: 1px solid rgba(26,107,107,0.2); text-align: center; }
.ue-stat-item:first-child { padding-left: 0; text-align: left; }
.ue-stat-item:last-child { border-right: none; text-align: right; }
.ue-stat-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--white); line-height: 1; }
.ue-stat-num span { color: var(--petrol-light); }
.ue-stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,245,240,0.35); margin-top: 6px; }

.ue-story-section { background: #1a1a18; }
.ue-story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-top: 64px; }
.ue-story-text p { font-size: 17px; line-height: 1.8; color: rgba(247,245,240,0.65); margin-top: 20px; }
.ue-story-text p strong { color: var(--white); font-weight: 600; }
.ue-timeline { display: flex; flex-direction: column; gap: 0; }
.ue-tl-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ue-tl-item:last-child { border-bottom: none; }
.ue-tl-year { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: rgba(26,107,107,0.4); line-height: 1; flex-shrink: 0; width: 64px; margin-top: 2px; }
.ue-tl-body h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.ue-tl-body p { font-size: 13px; color: rgba(247,245,240,0.4); line-height: 1.55; margin: 0; }

.ue-drive-section { background: var(--charcoal); }
.ue-drive-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; margin-top: 64px; }
.ue-drive-quote { background: rgba(26,107,107,0.08); border-left: 3px solid var(--petrol-light); border-radius: 0 4px 4px 0; padding: 32px 36px; }
.ue-drive-quote p { font-size: 20px; font-style: italic; color: rgba(247,245,240,0.8); line-height: 1.65; margin: 0; }
.ue-drive-quote strong { color: var(--petrol-light); font-style: normal; }
.ue-drive-text p { font-size: 17px; line-height: 1.8; color: rgba(247,245,240,0.65); margin-top: 20px; }
.ue-drive-text p strong { color: var(--white); font-weight: 600; }

.ue-approach-section { background: #111110; }
.ue-approach-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-top: 64px; }
.ue-approach-text p { font-size: 17px; line-height: 1.8; color: rgba(247,245,240,0.65); margin-top: 20px; }
.ue-approach-text p strong { color: var(--white); font-weight: 600; }
.ue-tech-stack { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.ue-tech-item { background: #111110; padding: 20px 24px; display: flex; align-items: center; gap: 16px; transition: background 0.2s; }
.ue-tech-item:hover { background: rgba(26,107,107,0.06); }
.ue-tech-icon { width: 36px; height: 36px; background: var(--petrol-muted); border: 1px solid rgba(26,107,107,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--petrol-light); }
.ue-tech-body h5 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.ue-tech-body p { font-size: 12px; color: rgba(247,245,240,0.4); margin: 0; }

.ue-team-section { background: #1a1a18; }
.ue-team-intro { max-width: 640px; margin-bottom: 64px; }
.ue-team-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; }
.ue-team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ue-team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; transition: border-color 0.2s, background 0.2s; }
.ue-team-card:hover { border-color: rgba(26,107,107,0.35); background: rgba(26,107,107,0.04); }
.ue-team-avatar { height: 160px; display: flex; align-items: center; justify-content: center; background: rgba(26,107,107,0.06); border-bottom: 1px solid rgba(255,255,255,0.05); }
.ue-avatar-ph { width: 80px; height: 80px; border-radius: 50%; background: rgba(26,107,107,0.15); border: 2px dashed rgba(26,107,107,0.35); display: flex; align-items: center; justify-content: center; color: rgba(26,107,107,0.5); }
.ue-team-info { padding: 16px 16px 20px; }
.ue-team-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ue-team-role { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,245,240,0.35); }

.ue-values-section { background: var(--charcoal); }
.ue-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.ue-value-card { background: var(--charcoal); padding: 40px 36px; transition: background 0.2s; }
.ue-value-card:hover { background: rgba(26,107,107,0.05); }
.ue-value-num { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: rgba(26,107,107,0.15); line-height: 1; margin-bottom: 16px; }
.ue-value-card h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.ue-value-card p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.65; }

/* в”Ђв”Ђ ГњBER UNS RESPONSIVE в”Ђв”Ђ */
@media (max-width: 900px) {
  .ue-hero .hero-content { padding: 0 24px 80px; }
  .ue-stats-bar { padding-left: 24px; padding-right: 24px; }
  .ue-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ue-stat-item { border-right: none; padding: 0; text-align: left; }
  .ue-story-split, .ue-drive-split, .ue-approach-split { grid-template-columns: 1fr; gap: 48px; }
  .ue-values-grid { grid-template-columns: 1fr; }
  .ue-team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* в”Ђв”Ђ LOCATION PAGES в”Ђв”Ђ */
.loc-hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 80px; }
.loc-hero-bg { position: absolute; inset: 0; }
.loc-hero .hero-content { max-width: 860px; padding: 0 48px 100px; }
.loc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--petrol-light); margin-bottom: 24px; background: rgba(26,107,107,0.12); border: 1px solid rgba(26,107,107,0.3); padding: 6px 16px; border-radius: 2px; }
.loc-hero h1 { font-family: var(--font-head); font-size: clamp(48px, 7vw, 92px); font-weight: 800; line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; color: var(--white); margin-bottom: 28px; }
.loc-hero h1 .hl { color: var(--petrol-light); }

.loc-approach { background: #1a1a18; }
.loc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.loc-split-text p { font-size: 17px; line-height: 1.8; color: rgba(247,245,240,0.65); margin-top: 20px; }
.loc-split-text p strong { color: var(--white); }
.loc-quote { background: rgba(26,107,107,0.08); border-left: 3px solid var(--petrol-light); padding: 32px 36px; border-radius: 0 4px 4px 0; }
.loc-quote p { font-size: 20px; font-style: italic; color: rgba(247,245,240,0.85); line-height: 1.6; margin: 0; }

.loc-products-section { background: var(--charcoal); }
.loc-products-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; max-width: 600px; }
.loc-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.loc-product-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 28px 28px 32px; transition: border-color 0.2s, background 0.2s; position: relative; overflow: hidden; }
.loc-product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--petrol); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.loc-product-card:hover { border-color: rgba(26,107,107,0.4); background: rgba(26,107,107,0.04); }
.loc-product-card:hover::before { transform: scaleX(1); }
.loc-pc-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; display: inline-block; margin-bottom: 12px; background: var(--petrol-muted); color: var(--petrol-light); border: 1px solid rgba(26,107,107,0.3); }
.loc-product-card h4 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.loc-product-card p { font-size: 13px; color: rgba(247,245,240,0.45); line-height: 1.6; margin-bottom: 16px; }
.loc-product-card a { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--petrol-light); text-decoration: none; }

.loc-benefits-section { background: #111110; }
.loc-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); margin-top: 64px; }
.loc-benefit-card { background: #111110; padding: 40px 36px; transition: background 0.2s; }
.loc-benefit-card:hover { background: rgba(26,107,107,0.05); }
.loc-benefit-num { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: rgba(26,107,107,0.2); line-height: 1; margin-bottom: 16px; }
.loc-benefit-card h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.loc-benefit-card p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.65; }

.loc-example-section { background: #1a1a18; }
.loc-example-box { background: rgba(26,107,107,0.08); border: 1px solid rgba(26,107,107,0.2); border-radius: 4px; padding: 36px; }
.loc-example-box h4 { font-family: var(--font-head); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.loc-example-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.loc-example-row:last-child { border-bottom: none; }
.loc-example-key { font-size: 13px; color: rgba(247,245,240,0.4); }
.loc-example-val { font-size: 14px; font-weight: 600; color: var(--white); text-align: right; }

.loc-usecases-section { background: var(--charcoal); }
.loc-usecases-intro p { font-size: 17px; line-height: 1.7; color: rgba(247,245,240,0.6); margin-top: 20px; max-width: 600px; }
.loc-usecases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.loc-usecase-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 36px; transition: border-color 0.2s; }
.loc-usecase-card:hover { border-color: rgba(26,107,107,0.4); }
.loc-usecase-card h4 { font-family: var(--font-head); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.loc-usecase-card p { font-size: 14px; color: rgba(247,245,240,0.5); line-height: 1.65; margin-bottom: 16px; }
.loc-usecase-products { display: flex; flex-wrap: wrap; gap: 8px; }
.up-tag { font-size: 10px; font-weight: 500; color: var(--petrol-light); border: 1px solid rgba(26,107,107,0.25); padding: 3px 10px; border-radius: 2px; }

/* в”Ђв”Ђ LOCATION RESPONSIVE в”Ђв”Ђ */
@media (max-width: 900px) {
  .loc-hero .hero-content { padding: 0 24px 80px; }
  .loc-split { grid-template-columns: 1fr; gap: 40px; }
  .loc-products-grid { grid-template-columns: 1fr; }
  .loc-benefits-grid { grid-template-columns: 1fr; }
  .loc-usecases-grid { grid-template-columns: 1fr; }
}

/* в”Ђв”Ђ LEGAL PAGES в”Ђв”Ђ */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 140px 48px 100px; }
.legal-wrap h1 { font-family: var(--font-head); font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 56px; }
.legal-wrap h1 .hl { color: var(--petrol-light); }
.legal-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.legal-block:last-child { border-bottom: none; margin-bottom: 0; }
.legal-block h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 16px; }
.legal-block h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 10px; margin-top: 20px; }
.legal-block p { font-size: 15px; line-height: 1.75; color: rgba(247,245,240,0.6); margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-link { color: var(--petrol-light); text-decoration: none; }
.legal-link:hover { text-decoration: underline; }
.contact-block { background: rgba(26,107,107,0.08); border: 1px solid rgba(26,107,107,0.2); border-radius: 4px; padding: 28px 32px; margin-top: 20px; }
.contact-line { font-size: 15px; line-height: 1.9; color: rgba(247,245,240,0.7); }
.contact-line strong { color: var(--white); font-weight: 600; }
.legal-list { margin: 12px 0; padding-left: 0; list-style: none; }
.legal-list li { font-size: 15px; line-height: 1.7; color: rgba(247,245,240,0.55); padding: 6px 0 6px 20px; position: relative; }
.legal-list li::before { content: 'вЂ”'; position: absolute; left: 0; color: var(--petrol-light); }
.legal-block code { font-size: 13px; color: var(--petrol-light); font-family: monospace; }

/* в”Ђв”Ђ FOOTER SIMPLE в”Ђв”Ђ */
.footer-simple { background: #0f0f0e; padding: 40px 48px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer-simple-links { display: flex; gap: 28px; }
.footer-simple-links a { font-size: 12px; color: rgba(247,245,240,0.3); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-simple-links a:hover { color: var(--petrol-light); }
.footer-simple > p { font-size: 12px; color: rgba(247,245,240,0.2); }

@media (max-width: 768px) {
  .legal-wrap { padding: 120px 24px 80px; }
  .footer-simple { flex-direction: column; gap: 20px; padding: 32px 24px; text-align: center; }
  .footer-simple-links { flex-wrap: wrap; justify-content: center; }
}

/* в”Ђв”Ђ HOMEPAGE RESPONSIVE в”Ђв”Ђ */
@media (max-width: 900px) {
  .home-hero-content { padding: 0 24px 72px; }
  .home-hero h1 { font-size: 56px; }
  .hero-stats { display: none; }
  .hp-products-grid, .hp-products-grid-bottom { grid-template-columns: 1fr; }
  .partner-types { grid-template-columns: repeat(2, 1fr); }
  .network-stats { gap: 40px; flex-wrap: wrap; }
  .tech-split { grid-template-columns: 1fr; gap: 40px; }
  .tech-stack { grid-template-columns: 1fr; }
  .network-section { padding: 80px 24px; }
}



/* -- LANGUAGE SWITCHER -- */
.lang-switcher { display: flex; align-items: center; gap: 2px; margin-left: 16px; }
.lang-opt { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: rgba(247,245,240,0.35); text-decoration: none; padding: 4px 7px; border-radius: 2px; transition: color 0.2s; }
.lang-opt:hover { color: rgba(247,245,240,0.75); }
.lang-opt.active { color: var(--petrol-light); }

/* -- CONTACT FORM -- */
.contact-form { margin-top: 40px; max-width: 680px; margin-left: auto; margin-right: auto; text-align: left; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.cf-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,245,240,0.5); }
.cf-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(247,245,240,0.3); }
.cf-field input, .cf-field textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; padding: 12px 16px; font-size: 15px; color: var(--white); font-family: inherit; transition: border-color 0.2s; outline: none; resize: vertical; width: 100%; box-sizing: border-box; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(247,245,240,0.25); }
.cf-field input:focus, .cf-field textarea:focus { border-color: var(--petrol-light); }
.cf-footer { display: flex; align-items: center; gap: 24px; margin-top: 8px; }
.cf-note { font-size: 13px; color: rgba(247,245,240,0.35); }
.cf-success { display: flex; align-items: center; gap: 12px; padding: 20px 24px; background: rgba(26,107,107,0.12); border: 1px solid rgba(26,107,107,0.3); border-radius: 4px; margin-top: 16px; }
.cf-success svg { color: var(--petrol-light); flex-shrink: 0; }
.cf-success p { font-size: 15px; color: rgba(247,245,240,0.8); }
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } .cf-footer { flex-direction: column; align-items: flex-start; } }

.contact-form .btn-primary { background: var(--petrol-light); border: none; cursor: pointer; }
.contact-form .btn-primary:hover { background: #fff; color: var(--petrol); }
.contact-form .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
