/* =========================================================================
   Etikettdruck — bendras dizaino sistemos failas visiems puslapiams
   Modernus, drąsus stilius: ryškus mėlynas + citrinos akcentas, storos
   linijos, kietas (offset) šešėlis vietoj išplaukusio.
   ========================================================================= */

:root{
  --bg: #FFFFFF;
  --bg-alt: #F1F0EB;
  --bg-dark: #0A0A0A;
  --ink: #0A0A0A;
  --ink-soft: #47463F;
  --ink-faint: #8A897F;
  --line: #0A0A0A;
  --line-dark: #FFFFFF;

  --brand: #1B3BFF;
  --brand-dark: #1129C4;
  --brand-light: #E7EBFF;

  --accent: #D6FF3D;
  --accent-dark: #A9CC00;
  --teal: #D6FF3D;

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

  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);

  --container: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Nunito Sans', sans-serif;
  color:var(--ink);
  background:var(--bg);
  font-size:16px;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:'Nunito Sans', sans-serif; font-weight:700; margin:0; line-height:1.2; letter-spacing:0; }
p{ margin:0; }
button{ font-family:inherit; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:10px; height:10px;
  background:var(--accent);
  border:2px solid var(--ink);
  display:inline-block;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border-radius:var(--radius-sm);
  font-weight:700;
  font-size:14.5px;
  cursor:pointer;
  border:2px solid var(--ink);
  transition:transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
  box-shadow:4px 4px 0 var(--ink);
}
.btn:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
.btn:active{ transform:translate(0,0); box-shadow:1px 1px 0 var(--ink); }
.btn-primary{ background:var(--accent); color:var(--ink); }
.btn-primary:hover{ background:#E4FF6E; }
.btn-outline{ background:transparent; color:#fff; border-color:#fff; box-shadow:4px 4px 0 rgba(255,255,255,0.4); }
.btn-outline:hover{ background:#fff; color:var(--ink); box-shadow:6px 6px 0 rgba(255,255,255,0.4); }
.btn-dark{ background:var(--ink); color:#fff; border-color:var(--ink); }
.btn-dark:hover{ background:var(--brand); border-color:var(--ink); }
.btn-line{ background:#fff; color:var(--ink); border-color:var(--ink); }
.btn-line:hover{ background:var(--bg-alt); }

/* ---------- perforation divider (signature element) ---------- */
.perf{
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 28px;
  max-width:var(--container);
  margin:0 auto;
}
.perf::before, .perf::after{
  content:'';
  flex:1;
  height:0;
  border-top:2px dashed rgba(255,255,255,0.25);
}
.perf-dot{
  width:6px; height:6px;
  border-radius:50%;
  background:var(--line);
}

/* ---------- header / nav ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:2px solid var(--ink);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.logo{
  display:flex;
  align-items:baseline;
  gap:1px;
  font-family:'Nunito Sans', sans-serif;
  font-weight:800;
  font-size:21px;
  color:var(--ink);
}
.logo .do{ color:var(--ink); }
.logo .labels{
  color:var(--ink);
  position:relative;
}
.logo .labels::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:4px;
  background:var(--accent);
  border-radius:2px;
}
.site-footer .logo{ color:#fff; }
.site-footer .logo .do,
.site-footer .logo .labels{ color:#fff; }
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}
.nav-links a{
  font-size:14.5px;
  font-weight:600;
  color:var(--ink-soft);
  padding:8px 0;
  border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active{
  color:var(--ink);
  border-color:var(--brand);
}
.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-toggle{ display:none; }

/* ---------- language toggle ---------- */
.lang-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:32px;
  padding:0 11px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  font-weight:700;
  color:var(--ink);
  background:var(--bg-alt);
  border:2px solid var(--ink);
  border-radius:18px;
  transition:background .15s ease, color .15s ease;
}
.lang-toggle:hover{ background:var(--ink); color:var(--accent); }

@media (max-width:900px){
  .nav-cta{ gap:8px; }
  .nav-links{
    position:absolute;
    top:76px; left:0; right:0;
    background:#fff;
    border-bottom:2px solid var(--ink);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:6px 28px 18px;
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ width:100%; padding:12px 0; border-bottom:1px solid var(--bg-alt); }
  .nav-toggle{
    display:flex; flex-direction:column; gap:4px;
    background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{ width:22px; height:2px; background:var(--ink); display:block; }
  .nav-cta .btn-line{ display:none; }
}

/* ---------- hero ---------- */
.hero{
  background:var(--bg-dark);
  color:#fff;
  position:relative;
  overflow:hidden;
  padding:76px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:40px;
  align-items:center;
  padding-bottom:64px;
}
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }

.hero h1{
  font-size:clamp(32px,4.6vw,54px);
  font-weight:800;
  margin-bottom:20px;
  color:#fff;
}
.hero h1 span{ color:var(--accent); }
.hero p.lead{
  font-size:17px;
  color:rgba(255,255,255,0.75);
  max-width:520px;
  margin-bottom:30px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

/* roll graphic — die-cut label wheel motif */
.roll-wrap{ display:flex; justify-content:center; align-items:center; }
.roll{
  width:min(340px, 78vw);
  height:min(340px, 78vw);
  border-radius:50%;
  position:relative;
  background:
    repeating-conic-gradient(var(--accent) 0deg 14deg, var(--ink) 14deg 28deg);
  border:3px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
}
.roll::before{
  content:'';
  position:absolute; inset:14%;
  border-radius:50%;
  background:var(--bg-dark);
  border:3px solid var(--accent);
}
.roll-core{
  width:22%; height:22%;
  background:var(--accent);
  border-radius:50%;
  border:3px solid var(--ink);
  position:relative;
  z-index:1;
}

/* ---------- sections ---------- */
section{ padding:72px 0; }
.section-alt{ background:var(--bg-alt); }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(26px,3vw,38px); font-weight:800; margin-bottom:14px; }
.section-head p{ color:var(--ink-soft); font-size:16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- usp strip ---------- */
.usp-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
  background:var(--ink);
  border:2px solid var(--ink);
  border-radius:var(--radius);
  overflow:hidden;
}
@media (max-width:820px){ .usp-strip{ grid-template-columns:repeat(2,1fr); } }
.usp-item{
  background:#fff;
  padding:26px 22px;
  transition:background .15s ease;
}
.usp-item:hover{ background:var(--brand-light); }
.usp-item .num{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:#fff;
  background:var(--ink);
  display:inline-block;
  padding:2px 7px;
  font-weight:700;
  margin-bottom:10px;
}
.usp-item h4{ font-size:16px; margin-bottom:8px; }
.usp-item p{ font-size:13.5px; color:var(--ink-soft); }

/* ---------- cards ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
@media (max-width:900px){ .grid-3, .grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-3, .grid-4, .grid-2{ grid-template-columns:1fr; } }

.card{
  background:#fff;
  border:2px solid var(--ink);
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:5px 5px 0 var(--ink);
  transition:box-shadow .15s ease, transform .15s ease;
}
.card:hover{ box-shadow:8px 8px 0 var(--ink); transform:translate(-3px,-3px); }
.card .tag{
  display:inline-block;
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  font-weight:700;
  color:var(--ink);
  background:var(--accent);
  border:1.5px solid var(--ink);
  padding:3px 9px;
  border-radius:3px;
  margin-bottom:14px;
  letter-spacing:0.04em;
}
.card h3{ font-size:18px; margin-bottom:10px; }
.card p{ font-size:14px; color:var(--ink-soft); }
.card a.more{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; font-size:13.5px; font-weight:700; color:var(--brand);
}

.industry-card{
  background:var(--bg-alt);
  border-radius:var(--radius);
  padding:22px;
  border:2px solid transparent;
  transition:border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.industry-card:hover{ border-color:var(--ink); background:#fff; box-shadow:4px 4px 0 var(--ink); }
.industry-card h4{ font-size:15.5px; margin-bottom:6px; }
.industry-card p{ font-size:13px; color:var(--ink-soft); }

/* ---------- stats ---------- */
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
@media (max-width:700px){ .stats{ grid-template-columns:1fr 1fr; } }
.stat .figure{
  font-family:'Nunito Sans', sans-serif;
  font-weight:800;
  font-size:38px;
  color:var(--brand);
}
.stat .label{ font-size:13.5px; color:var(--ink-soft); margin-top:6px; }

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--ink);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:48px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  border:2px solid var(--ink);
  box-shadow:6px 6px 0 var(--accent);
}
.cta-band h3{ font-size:26px; margin-bottom:8px; color:#fff; }
.cta-band p{ color:rgba(255,255,255,0.8); font-size:14.5px; }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom:2px solid var(--ink);
  padding:20px 0;
}
.faq-q{
  display:flex; justify-content:space-between; align-items:center;
  cursor:pointer; font-weight:700; font-size:15.5px;
}
.faq-q .plus{ font-size:20px; color:var(--brand); transition:transform .2s ease; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden;
  color:var(--ink-soft); font-size:14.5px;
  transition:max-height .25s ease, padding-top .25s ease;
}
.faq-item.open .faq-a{ max-height:300px; padding-top:12px; }

/* ---------- footer ---------- */
.site-footer{
  background:var(--bg-dark);
  color:rgba(255,255,255,0.7);
  padding:60px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:36px;
  padding-bottom:36px;
  border-bottom:2px solid rgba(255,255,255,0.15);
}
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{
  color:var(--accent); font-size:13px; text-transform:uppercase; letter-spacing:0.08em;
  margin-bottom:16px; font-family:'IBM Plex Mono', monospace;
}
.footer-grid ul li{ margin-bottom:10px; font-size:14px; }
.footer-grid ul li a:hover{ color:#fff; }
.footer-bottom{
  padding-top:22px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color:rgba(255,255,255,0.45);
  flex-wrap:wrap; gap:10px;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  background:var(--bg-dark);
  color:#fff;
  padding:150px 0 56px;
  position:relative;
}
.page-hero h1{ font-size:clamp(28px,4vw,42px); color:#fff; margin-bottom:12px; }
.page-hero p{ color:rgba(255,255,255,0.72); max-width:560px; font-size:15.5px; }
.breadcrumb{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color:var(--accent);
  margin-bottom:16px;
  letter-spacing:0.06em;
}

/* ---------- forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px){ .form-grid{ grid-template-columns:1fr; } }
.field{ margin-bottom:16px; }
.field label{
  display:block; font-size:13px; font-weight:600; color:var(--ink-soft);
  margin-bottom:7px; text-transform:uppercase; letter-spacing:0.03em;
}
.field input, .field select, .field textarea{
  width:100%;
  font-family:'Nunito Sans', sans-serif;
  font-size:15px;
  padding:12px 14px;
  border:2px solid var(--ink);
  border-radius:var(--radius-sm);
  outline:none;
  transition:box-shadow .15s ease;
  background:#fff;
  color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  box-shadow:3px 3px 0 var(--brand);
}
.field textarea{ resize:vertical; min-height:110px; }

.field-file{
  border:2px dashed var(--ink);
  border-radius:var(--radius-sm);
  padding:18px 14px;
  text-align:center;
  background:var(--bg-alt);
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
}
.field-file:hover{ background:#fff; border-color:var(--brand); }
.field-file input[type="file"]{ display:none; }
.field-file .file-label{ font-size:13.5px; font-weight:600; color:var(--ink); }
.field-file .file-hint{ font-size:12px; color:var(--ink-soft); margin-top:4px; }
.field-file.has-file{ border-style:solid; border-color:var(--brand); background:var(--brand-light); }
.field-file .file-name{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--brand); margin-top:4px; word-break:break-all; }

/* ---------- awards strip ---------- */
.awards-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  padding:20px 26px;
  background:#fff;
  border:2px solid var(--ink);
  border-radius:var(--radius);
  box-shadow:5px 5px 0 var(--accent);
}
.awards-strip .award{
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--ink); font-weight:600;
}
.awards-strip .award .medal{
  width:30px; height:30px; border-radius:50%;
  background:var(--ink); color:var(--accent);
  border:2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito Sans', sans-serif; font-weight:700; font-size:13px;
  flex-shrink:0;
}

.mt-40{ margin-top:40px; }
.mt-56{ margin-top:56px; }
.text-center{ text-align:center; }
.badge-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.badge{
  font-size:12.5px; font-weight:600; color:var(--ink);
  background:var(--brand-light);
  border:1.5px solid var(--ink);
  padding:6px 12px; border-radius:20px;
}
