/* ===== NordValo v2 — Nordic Technical (wg notki 1+2) ===== */
:root {
  --navy: #07131C;      /* główny granat */
  --navy2: #0B1D29;     /* drugi granat */
  --blue: #1683D8;      /* niebieski NordValo */
  --blue-h: #0F6FBA;    /* hover */
  --light: #F4F6F7;     /* jasne tło */
  --white: #FFFFFF;
  --txt: #111820;
  --mut: #66727C;
  --line: #DCE2E6;
  --ok: #1D9B62;
  --soft: #A9B9C5;      /* tekst na ciemnym */
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --radius: 8px;
  --radius-btn: 6px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--txt);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== TOP BAR ===== */
.topbar { background: var(--navy); color: #B9C6CF; font-size: 12px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 38px; }
.topbar-msg { display: flex; gap: 9px; align-items: center; white-space: nowrap; overflow: hidden; }
.topbar-msg .sep { color: rgba(255,255,255,.3); }
.topbar-help { color: var(--white); text-decoration: none; font-weight: 700; white-space: nowrap; padding: 4px 0; }
.topbar-help:hover { color: #7cc4f5; }
@media (max-width: 1150px) { .topbar-msg > :nth-child(6), .topbar-msg > :nth-child(7) { display: none; } }
@media (max-width: 880px) { .topbar-msg > :nth-child(4), .topbar-msg > :nth-child(5) { display: none; } }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { font-size: 1.45rem; font-weight: 800; letter-spacing: 1px; color: var(--txt); text-decoration: none; }
.logo span { color: var(--blue); }
.menu { display: flex; gap: 28px; }
.menu a { color: var(--txt); text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 6px 0; border-bottom: 2px solid transparent; }
.menu a:hover { color: var(--blue); border-color: var(--blue); }
.nav-icons { display: flex; gap: 14px; align-items: center; }
.nav-icon { font-size: 1.05rem; text-decoration: none; opacity: .85; cursor: pointer; }
.nav-icon:hover { opacity: 1; }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(90deg, rgba(3,12,18,.8) 0%, rgba(3,12,18,.55) 45%, rgba(3,12,18,.38) 100%),
    var(--navy) url("img/hero-forest.jpg") center/cover no-repeat;
  color: var(--white);
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-inner { padding-top: 80px; padding-bottom: 80px; max-width: 720px; margin: 0; }
.hero-kicker { color: #9fd4f7; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); line-height: 1.1; font-weight: 800; margin-bottom: 20px; letter-spacing: -.01em; }
.hero h1 span { color: var(--blue); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  height: 48px; padding: 0 26px; border-radius: var(--radius-btn);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-h); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.9); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-block { width: 100%; }

/* ===== USP ===== */
.usp { background: var(--navy2); padding: 28px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-ico {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(22,131,216,.16); border: 1px solid rgba(22,131,216,.5);
  color: #6db8ef; font-weight: 800; font-size: 1.05rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.usp-item strong { display: block; color: var(--white); font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.usp-item small { color: #B9C6CF; font-size: 13px; }

/* ===== SECTIONS (wspólne) ===== */
section { padding: 80px 0; }
.kicker { color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 14px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 16px; }
.lead { color: var(--mut); font-size: 1.02rem; max-width: 640px; margin-bottom: 40px; }

/* ===== PRODUCTS ===== */
.products { background: var(--light); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s; }
.card:hover { box-shadow: 0 10px 28px rgba(17,24,32,.08); border-color: #c3cdd4; }
.card-img { position: relative; background: #EEF2F4; height: 240px; display: flex; align-items: center; justify-content: center; }
.card-img img { max-height: 210px; width: auto; max-width: 86%; object-fit: contain; }
.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 4px;
}
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card h3 { font-size: 1.2rem; font-weight: 700; }
.card-spec { color: var(--mut); font-size: 13px; }
.price { font-size: 1.3rem; font-weight: 800; margin: 6px 0 12px; }
.price .vat { font-size: .72rem; font-weight: 500; color: var(--mut); }
.card-body .btn { margin-top: auto; }

/* ===== LÖYDÄ ===== */
.loyda { background: var(--white); }
.loyda-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.loyda-text .lead { margin-bottom: 26px; }
.loyda-media {
  height: 340px; border-radius: 12px;
  background: var(--navy) url("img/hero-forest.jpg") center 30%/cover no-repeat;
  border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(7,19,28,.18);
}

/* ===== WHY (ciemny panel) ===== */
.why { background: var(--navy2); color: var(--white); }
.why h2 { text-align: center; margin-bottom: 44px; }
.why h2::after { content: ""; display: block; width: 48px; height: 3px; background: var(--blue); margin: 14px auto 0; border-radius: 2px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.why-item { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 24px; }
.why-ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: rgba(22,131,216,.15); font-size: 1.25rem; margin-bottom: 14px; }
.why-item h3 { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.why-item p { color: var(--soft); font-size: 14px; }
.claim { text-align: center; margin: 64px auto 0; max-width: 820px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px; }
.claim p { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.25; }
.claim span { color: var(--blue); }

/* ===== CONTACT ===== */
.contact { background: var(--light); text-align: center; padding: 56px 0; }
.contact h2 { margin-bottom: 10px; }
.contact-mail { font-size: 1.35rem; font-weight: 700; }
.contact-mail a { color: var(--blue); text-decoration: none; }
.contact-mail a:hover { text-decoration: underline; }
.contact-note { color: var(--mut); font-size: 14px; margin-top: 6px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--soft); font-size: 14px; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.logo-footer { color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: var(--soft); font-size: 13.5px; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--soft); text-decoration: none; padding: 3px 0; }
.footer-col a:hover { color: var(--white); }
.footer-col p { padding: 3px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; }
.pay { letter-spacing: .3px; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .loyda-inner { grid-template-columns: 1fr; gap: 28px; }
  .loyda-media { height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .topbar-inner { justify-content: center; }
  .topbar-msg { display: none; }
  .topbar-inner::before { content: "🚚 Nopea toimitus Suomesta — 1–3 arkipäivää"; color: var(--white); font-weight: 600; }
  .topbar-help { display: none; }
  .nav-inner { height: 64px; }
  .menu { gap: 16px; }
  .menu a { font-size: 11.5px; letter-spacing: .5px; }
  .nav-icons { gap: 10px; }
  section { padding: 56px 0; }
  .hero { min-height: 500px; }
  .hero-inner { padding-top: 56px; padding-bottom: 56px; }
  .hero-cta .btn { width: 100%; }
  .usp-grid { grid-template-columns: 1fr; gap: 12px; }
  .usp { padding: 22px 0; }
  .usp-item { padding: 4px 0; }
  .grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why h2 { margin-bottom: 30px; }
  .claim { margin-top: 44px; padding-top: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
