/* Pinol Ukraine — landing page styles (implemented from "Pinol Landing v2.dc.html") */

* { box-sizing: border-box; }
body {
  margin: 0;
  background: #F2F6FB;
  font-family: Inter, sans-serif;
  color: #0E1C38;
}
a { color: #3A66A8; text-decoration: none; }
a:hover { color: #0E1C38; }
input, textarea { font-family: Inter, sans-serif; }
::placeholder { color: #7089B0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; }

/* ---------- animations ---------- */
@keyframes pnl-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes pnl-scan { 0%, 100% { transform: translate(-3px, -3px); } 50% { transform: translate(7px, 9px); } }
@keyframes pnl-knob-a { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(20px); } }
@keyframes pnl-knob-b { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-20px); } }
@keyframes pnl-drop { 0% { transform: translateY(-5px); opacity: 0; } 25% { opacity: 1; } 70% { transform: translateY(6px); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes pnl-pulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 1; } }
@keyframes pnl-spin { to { transform: rotate(360deg); } }
@keyframes pnl-orb-a { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(300px, -80px); } 50% { transform: translate(140px, 90px); } 75% { transform: translate(-180px, -50px); } }
@keyframes pnl-orb-b { 0%, 100% { transform: translate(0, 0); } 30% { transform: translate(340px, -90px); } 65% { transform: translate(120px, 80px); } }
@keyframes pnl-orb-pulse { 0%, 100% { transform: scale(0.85); opacity: 0.55; } 50% { transform: scale(1.3); opacity: 1; } }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].pnl-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- layout helpers ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 246, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 102, 168, 0.2);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { height: 42px; width: auto; }
.nav { display: flex; gap: 26px; font-size: 13.5px; font-weight: 500; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex; border: 1px solid rgba(58, 102, 168, 0.35); overflow: hidden;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
}
.lang-btn { border: none; cursor: pointer; padding: 7px 11px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; background: transparent; color: #3A66A8; }
.lang-btn.active { background: #0E1C38; color: #fff; }
.header-cta {
  background: #0E1C38; color: #fff; padding: 11px 20px; font-size: 13px; font-weight: 600; border-radius: 2px;
  transition: background 0.2s ease;
}
.header-cta:hover { background: #3A66A8; color: #fff; }

/* ---------- hero ---------- */
.hero { background: #F2F6FB; border-bottom: 1px solid rgba(58, 102, 168, 0.2); position: relative; overflow: hidden; }
.hero-bg-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg-layer video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; align-items: center; padding: 96px 0 88px; }
.hero-copy { animation: pnl-rise 0.6s ease both; }
.hero-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.08em; color: #3A66A8; margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow .rule { width: 34px; height: 1px; background: #3A66A8; display: inline-block; }
.hero h1 { font-family: Poppins, sans-serif; font-size: 54px; line-height: 1.12; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 26px; text-wrap: balance; }
.hero-sub { font-size: 16.5px; line-height: 1.7; color: #3d4d6b; margin: 0 0 40px; max-width: 520px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 28px; font-size: 14.5px; font-weight: 600; border-radius: 2px; white-space: nowrap; }
.btn-primary { background: #0E1C38; color: #fff; transition: background 0.2s ease; }
.btn-primary:hover { background: #3A66A8; color: #fff; }
.btn-secondary { background: transparent; color: #0E1C38; border: 1px solid rgba(14,28,56,0.45); box-sizing: border-box; transition: border-color 0.2s ease, color 0.2s ease; }
.btn-secondary:hover { border-color: #3A66A8; color: #3A66A8; }
.hero-photo { animation: pnl-rise 0.6s 0.15s ease both; position: relative; }
.hero-photo-frame { border: 1px solid rgba(58, 102, 168, 0.25); padding: 10px; background: #fff; }
.hero-photo-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.hero-points { border-top: 1px solid rgba(58, 102, 168, 0.2); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.hero-point { padding: 26px 36px 30px; border-right: 1px solid rgba(58, 102, 168, 0.14); display: flex; flex-direction: column; gap: 8px; }
.hero-point-k { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em; color: #3A66A8; }
.hero-point-v { font-size: 13.5px; line-height: 1.55; color: #3d4d6b; }

/* ---------- generic section ---------- */
.section { background: #fff; }
.section.alt { background: #F2F6FB; border-top: 1px solid rgba(58, 102, 168, 0.2); }
.section.dark { background: #0E1C38; color: #fff; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 100px 40px; }
.section-head { display: flex; align-items: baseline; gap: 16px; border-bottom: 1px solid rgba(58, 102, 168, 0.2); padding-bottom: 14px; margin-bottom: 56px; }
.section.dark .section-head { border-bottom-color: rgba(143, 180, 222, 0.3); }
.eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.08em; color: #3A66A8; }
.section.dark .eyebrow { color: #8FB4DE; }
.section h2 { font-family: Poppins, sans-serif; font-size: 33px; line-height: 1.22; font-weight: 600; letter-spacing: -0.01em; margin: 0; text-wrap: balance; }

/* about */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
.about-copy { display: flex; flex-direction: column; gap: 20px; font-size: 16px; line-height: 1.72; color: #3d4d6b; }
.about-copy p { margin: 0; }

/* areas */
h2.areas-h2 { margin: 0 0 48px; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-card {
  background: #fff; border: 1px solid rgba(58, 102, 168, 0.2); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 16px; min-height: 120px; box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; cursor: default;
}
.area-card:hover { border-color: #3A66A8; box-shadow: 0 12px 28px -16px rgba(14, 28, 56, 0.25); }
.area-card span { font-family: Poppins, sans-serif; font-size: 17px; font-weight: 500; line-height: 1.4; text-wrap: balance; }

/* service */
.service-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; margin-bottom: 64px; }
.service-lead { font-size: 16.5px; line-height: 1.72; color: #B8CBE4; margin: 0; text-wrap: pretty; }
.service-list { border-top: 1px solid rgba(143, 180, 222, 0.3); }
.service-row {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: baseline; padding: 26px 4px;
  border-bottom: 1px solid rgba(143, 180, 222, 0.22); transition: background 0.2s ease;
}
.service-row:hover { background: rgba(143, 180, 222, 0.07); }
.service-row-title { font-family: Poppins, sans-serif; font-size: 17px; font-weight: 500; color: #fff; }
.service-row-body { font-size: 14.5px; line-height: 1.7; color: #B8CBE4; max-width: 640px; display: block; }

/* how we work */
h2.how-h2 { margin: 0 0 64px; max-width: 620px; }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.how-step { padding: 0 8px 8px 0; }
.how-icon { height: 64px; margin-bottom: 22px; }
.how-icon svg { width: 64px; height: 64px; display: block; overflow: visible; }
.how-title { font-family: Poppins, sans-serif; font-size: 16px; font-weight: 500; margin: 0 0 10px; }
.how-body { font-size: 13.5px; line-height: 1.65; color: #3d4d6b; padding-right: 8px; }

/* manufacturers */
h2.mfr-h2 { margin: 0 0 56px; max-width: 780px; font-size: 26px; line-height: 1.4; font-weight: 500; letter-spacing: -0.005em; text-wrap: pretty; }
.mfr-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; border-top: 1px solid rgba(58, 102, 168, 0.2); }
.mfr-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 19px 4px;
  border-bottom: 1px solid rgba(58, 102, 168, 0.18); transition: background 0.2s ease;
}
.mfr-row:hover { background: #fff; }
.mfr-name { font-family: Poppins, sans-serif; font-size: 17px; font-weight: 500; }
.mfr-country { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #7089B0; white-space: nowrap; }

/* training */
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
h2.training-h2 { margin: 0 0 36px; }
.training-list { display: flex; flex-direction: column; }
.training-item { display: flex; gap: 18px; align-items: baseline; padding: 15px 0; border-bottom: 1px solid rgba(58, 102, 168, 0.14); }
.training-item .rule { width: 22px; height: 1px; background: #3A66A8; flex: none; align-self: center; }
.training-item span.text { font-size: 15.5px; line-height: 1.6; color: #3d4d6b; }
.training-photo { border: 1px solid rgba(58, 102, 168, 0.25); padding: 10px; background: #fff; }
.training-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* contact */
.contact-inner { max-width: 760px; margin: 0 auto; padding: 110px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.08em; color: #3A66A8; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.contact-eyebrow .rule { width: 34px; height: 1px; background: #3A66A8; display: inline-block; }
.contact-inner h2 { font-family: Poppins, sans-serif; font-size: 36px; line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 18px; text-wrap: balance; }
.contact-lead { font-size: 16.5px; line-height: 1.7; color: #3d4d6b; margin: 0 0 48px; max-width: 520px; text-wrap: pretty; }
.contact-actions { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.contact-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px; background: #fff;
  border: 1px solid rgba(58, 102, 168, 0.25); padding: 28px 44px; min-width: 240px; transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: #3A66A8; }
.contact-card-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: #7089B0; }
.contact-card-value { font-family: Poppins, sans-serif; font-size: 22px; font-weight: 600; color: #0E1C38; }

/* footer */
.site-footer { background: #0E1C38; color: #B8CBE4; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 64px 40px 40px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 56px; }
.footer-logo-wrap { padding: 10px 16px; display: inline-block; margin-bottom: 18px; }
.footer-logo { height: 40px; width: auto; display: block; }
.footer-desc { font-size: 14px; line-height: 1.65; max-width: 300px; }
.footer-col { font-size: 14px; line-height: 2; }
.footer-label { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: 0.1em; color: #7089B0; margin-bottom: 14px; }
.footer-col a { color: #fff; }
.footer-col a.footer-nav-link { color: #B8CBE4; }
.footer-bottom { border-top: 1px solid rgba(143, 180, 222, 0.2); }
.footer-bottom-inner { max-width: 1240px; margin: 0 auto; padding: 20px 40px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #7089B0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  body { overflow-x: hidden; }
  [data-m="root"] { min-width: 0 !important; }
  [data-m="sec"] { padding: 56px 20px !important; }
  [data-m="hwrap"] { padding-left: 20px !important; padding-right: 20px !important; }
  [data-m="hdr"] { padding-left: 20px !important; padding-right: 20px !important; gap: 12px !important; }
  [data-m="foot"] { padding-left: 20px !important; padding-right: 20px !important; }
  [data-m="nav"], [data-m="hdrcta"] { display: none !important; }
  [data-m="herogrid"] { grid-template-columns: 1fr !important; gap: 36px !important; padding: 52px 0 48px !important; }
  [data-m="hpt"] { padding: 20px 20px 22px !important; }
  [data-g="2"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  [data-g="4"] { grid-template-columns: 1fr 1fr !important; }
  [data-g="5"] { grid-template-columns: 1fr 1fr !important; }
  [data-g="foot"] { grid-template-columns: 1fr !important; gap: 36px !important; }
  [data-g="row"] { grid-template-columns: 1fr !important; gap: 6px !important; }
  h1 { font-size: 34px !important; line-height: 1.16 !important; }
  h2 { font-size: 25px !important; }
}
@media (max-width: 520px) {
  [data-g="4"], [data-g="5"] { grid-template-columns: 1fr !important; }
  [data-m="herogrid"] svg { max-height: 220px; }
}
