/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #f4f6fb;
  color: #14213d;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --blue:      #1a56e8;
  --blue-d:    #1240c7;
  --blue-lt:   #e8eeff;
  --blue-md:   #b8cafd;
  --text:      #14213d;
  --soft:      #5a6a85;
  --xsoft:     #9aaac0;
  --border:    #dde3ef;
  --white:     #ffffff;
  --bg:        #f4f6fb;
  --bg2:       #edf0f8;
  --shadow:    0 2px 18px rgba(26,86,232,0.08);
  --shadow-md: 0 8px 36px rgba(26,86,232,0.13);
  --r:         16px;
  --rS:        10px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--blue);
  color: #fff;
  font-size: .78rem;
  padding: 8px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { opacity: .85; font-weight: 500; }
.topbar-right { display: flex; gap: 20px; }
.topbar-right a {
  color: #fff; opacity: .85;
  display: flex; align-items: center; gap: 6px;
  transition: opacity .15s;
  font-weight: 500;
}
.topbar-right a:hover { opacity: 1; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-wrap {
  max-width: 1260px; margin: 0 auto;
  padding: 0 5vw;
  height: 68px;
  display: flex; align-items: center; gap: 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  margin-right: 36px; flex-shrink: 0;
}
.logo img { height: 42px; width: auto; }
.logo-text {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  letter-spacing: -.5px; color: var(--text);
}
.nav-menu {
  display: flex; flex: 1; gap: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a, .nav-menu > li > button {
  display: flex; align-items: center; gap: 4px;
  height: 68px; padding: 0 17px;
  font-size: .875rem; font-weight: 500;
  color: var(--soft);
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  transition: color .18s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover { color: var(--blue); }
.nav-menu > li > button::after {
  content: '▾'; font-size: .6rem; margin-top: 1px;
  transition: transform .2s;
}
.nav-menu > li:hover > button::after { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rS);
  box-shadow: var(--shadow-md);
  min-width: 230px; padding: 8px 0;
  display: none; z-index: 600;
  animation: ddShow .16s ease;
}
@keyframes ddShow { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
.nav-menu > li:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 20px;
  font-size: .83rem; color: var(--soft);
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--blue-lt); color: var(--blue); }

.nav-cta {
  margin-left: auto; flex-shrink: 0;
  background: var(--blue); color: #fff;
  padding: 11px 24px; border-radius: 50px;
  font-size: .875rem; font-weight: 600;
  transition: background .18s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-d); transform: translateY(-1px); }

/* Mobile burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f6e 50%, #0d1b3e 100%);
  color: #fff;
  padding: 80px 5vw 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.hero-glow-1 { width: 600px; height: 600px; background: rgba(59,130,246,0.15); top: -200px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(99,102,241,0.1); bottom: -150px; left: 100px; }
.hero-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 6px 16px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #93c5fd; margin-bottom: 22px;
}
.badge-pulse { width: 7px; height: 7px; background: #3b82f6; border-radius: 50%; animation: bpulse 2s ease-in-out infinite; }
@keyframes bpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

.hero h1 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 20px;
}
.hero h1 span { color: #60a5fa; }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 500px; margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none;
  font-family: inherit; transition: all .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-white { background: #fff; color: var(--blue); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-white:hover { background: #f0f6ff; transform: translateY(-2px); }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(26,86,232,0.3); }
.btn-blue:hover { background: var(--blue-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

/* Hero stats card */
.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.hc-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); }
.hc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hc-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 18px;
}
.hc-num {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: #60a5fa; display: block; line-height: 1;
}
.hc-label { font-size: .74rem; color: rgba(255,255,255,.55); margin-top: 5px; }
.hc-cta {
  background: var(--blue); color: #fff;
  border-radius: 12px; padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .88rem; cursor: pointer;
  transition: background .18s; text-decoration: none;
}
.hc-cta:hover { background: #2563eb; }

/* ===== STRIP (stats bar) ===== */
.strip {
  background: var(--blue);
  padding: 0 5vw;
}
.strip-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex;
}
.strip-item {
  flex: 1; padding: 26px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.strip-item:last-child { border-right: none; }
.strip-num {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.7rem; font-weight: 800; color: #fff; display: block;
}
.strip-label { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 88px 5vw; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }
.section-dark { background: #0d1b3e; color: #fff; }
.inner { max-width: 1260px; margin: 0 auto; }
.section-head { margin-bottom: 48px; }
.s-label {
  font-size: .72rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-dark .s-label { color: #60a5fa; }
h2 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px;
}
.s-sub { color: var(--soft); font-size: .95rem; max-width: 540px; line-height: 1.75; }
.section-dark .s-sub { color: rgba(255,255,255,.6); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  transition: all .22s; cursor: pointer;
  position: relative; overflow: hidden;
  display: block; text-decoration: none; color: inherit;
}
.svc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), #6366f1);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc:hover { border-color: var(--blue-md); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.svc:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.svc h3 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.svc p { color: var(--soft); font-size: .82rem; line-height: 1.65; }
.svc-arrow { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .8rem; font-weight: 700; color: var(--blue); }

/* ===== 1C PRODUCTS ===== */
.tab-nav {
  display: flex; gap: 6px; flex-wrap: wrap;
  border-bottom: 2px solid var(--border); margin-bottom: 32px;
}
.tab-btn {
  padding: 10px 22px; font-size: .85rem; font-weight: 600;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--soft); border-bottom: 2.5px solid transparent;
  margin-bottom: -2px; transition: all .18s;
}
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-btn:hover { color: var(--text); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all .22s; cursor: pointer;
}
.prod-card:hover { border-color: var(--blue-md); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prod-card-img {
  height: 130px; background: linear-gradient(135deg, #eef2ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.prod-card-img img { max-height: 90px; max-width: 90%; object-fit: contain; }
.prod-card-body { padding: 14px 16px; }
.prod-card h4 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: .78rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; letter-spacing: -.2px; }
.prod-card p { font-size: .75rem; color: var(--soft); line-height: 1.55; }
.prod-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-size: .75rem; font-weight: 700; color: var(--blue); }

.services-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
}
.svc-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rS); padding: 13px 16px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .83rem; color: var(--soft);
  transition: all .18s;
}
.svc-item:hover { border-color: var(--blue-md); color: var(--text); background: var(--blue-lt); }
.svc-item::before { content: '›'; color: var(--blue); font-size: 1rem; font-weight: 800; flex-shrink: 0; }

/* ===== COMPUTER ===== */
.comp-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.comp-feats { display: flex; flex-direction: column; gap: 14px; }
.comp-feat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 13px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all .2s;
}
.comp-feat:hover { border-color: var(--blue-md); transform: translateX(5px); }
.cf-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.comp-feat h4 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: .85rem; font-weight: 700; margin-bottom: 4px; }
.comp-feat p { color: var(--soft); font-size: .8rem; }

.pricing-col { display: flex; flex-direction: column; gap: 14px; }
.p-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 22px 24px; transition: all .2s;
}
.p-card.featured { background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%); border-color: transparent; color: #fff; }
.p-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.p-tag { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--xsoft); margin-bottom: 6px; }
.p-card.featured .p-tag { color: rgba(255,255,255,.6); }
.p-amount { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.p-per { font-size: .78rem; font-weight: 400; opacity: .65; }
.p-desc { font-size: .8rem; margin-top: 7px; color: var(--soft); }
.p-card.featured .p-desc { color: rgba(255,255,255,.75); }
.p-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: .8rem; font-weight: 700; color: var(--blue); cursor: pointer; }
.p-card.featured .p-link { color: #fff; }

/* ===== CALCULATOR ===== */
.calc-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start;
}
.calc-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px;
  display: flex; flex-direction: column; gap: 28px;
}
.calc-group > label {
  display: block; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 12px;
}
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--soft); font-family: inherit; font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .18s;
}
.opt:hover { border-color: var(--blue); color: var(--blue); }
.opt.sel { background: var(--blue); border-color: var(--blue); color: #fff; }

.range-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.range-val { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--blue); }
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: var(--border);
  border-radius: 4px; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--blue); cursor: pointer;
  box-shadow: 0 2px 10px rgba(26,86,232,0.35);
}
.range-hints { display: flex; justify-content: space-between; font-size: .72rem; color: var(--xsoft); margin-top: 6px; }

.checks { display: flex; flex-direction: column; gap: 11px; }
.chk { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: .875rem; color: var(--soft); transition: color .18s; }
.chk:hover { color: var(--text); }
.chk input { display: none; }
.chk-box {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; transition: all .18s;
}
.chk input:checked ~ .chk-box { background: var(--blue); border-color: var(--blue); color: #fff; }
.chk input:checked ~ .chk-box::after { content: '✓'; }

/* Result box */
.calc-result {
  background: var(--white); border: 1.5px solid var(--blue-md);
  border-radius: var(--r); padding: 28px;
  position: sticky; top: 84px;
  display: flex; flex-direction: column; gap: 18px;
}
.cr-head {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--blue);
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.cr-lines { display: flex; flex-direction: column; gap: 10px; }
.cr-line { display: flex; justify-content: space-between; font-size: .82rem; color: var(--soft); }
.cr-line strong { color: var(--text); font-weight: 600; }
.cr-total {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.cr-label { font-family: 'Unbounded', 'Inter', sans-serif; font-size: .85rem; font-weight: 700; }
.cr-price { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.cr-note { font-size: .72rem; color: var(--xsoft); line-height: 1.65; }
.cr-cta {
  background: var(--blue); color: #fff; border: none;
  border-radius: 11px; padding: 14px;
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: .88rem; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.cr-cta:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,232,0.3); }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.c-info { display: flex; flex-direction: column; gap: 28px; }
.c-info-text { color: var(--soft); font-size: .95rem; line-height: 1.8; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.c-item h4 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: .82rem; font-weight: 700; margin-bottom: 4px; }
.c-item p { color: var(--soft); font-size: .875rem; }
.c-item a { color: var(--blue); font-weight: 500; }
.c-item a:hover { text-decoration: underline; }

.form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 38px; box-shadow: var(--shadow);
}
.form-box h3 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 1.15rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 5px; }
.form-sub { color: var(--soft); font-size: .85rem; margin-bottom: 26px; }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-group label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--soft); }
.f-group input, .f-group select, .f-group textarea {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--rS); padding: 12px 14px;
  color: var(--text); font-family: inherit; font-size: .88rem;
  outline: none; transition: border-color .18s; width: 100%;
}
.f-group input::placeholder, .f-group textarea::placeholder { color: var(--xsoft); }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--blue); background: var(--white); }
.f-group textarea { resize: vertical; min-height: 90px; }
.f-group select { -webkit-appearance: none; }
.f-submit {
  width: 100%; background: var(--blue); color: #fff; border: none;
  border-radius: 11px; padding: 15px;
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: .92rem; font-weight: 700;
  cursor: pointer; margin-top: 4px; transition: all .2s;
}
.f-submit:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,232,0.25); }
.form-ok { display: none; text-align: center; padding: 32px 20px; flex-direction: column; align-items: center; gap: 14px; }
.form-ok.show { display: flex; }
.ok-icon { font-size: 3rem; }
.form-ok h3 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 1rem; }
.form-ok p { color: var(--soft); font-size: .875rem; }

/* ===== FOOTER ===== */
footer { background: #0c1225; color: rgba(255,255,255,.65); padding: 52px 5vw 24px; }
.footer-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-wrap img { height: 38px; }
.footer-logo-img { height: 42px !important; width: 42px; border-radius: 8px; }
.logo-img { height: 38px; width: 38px; border-radius: 7px; }
.footer-brand { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: .82rem; line-height: 1.7; max-width: 270px; }
.f-col h4 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: .75rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col li a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .15s; }
.f-col li a:hover { color: #fff; }
.f-col .footer-contact { font-size: .82rem; color: rgba(255,255,255,.55); display: flex; flex-direction: column; gap: 10px; }
.f-col .footer-contact a { color: rgba(255,255,255,.75); transition: color .15s; }
.f-col .footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: 1260px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .comp-layout { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .strip-inner { flex-wrap: wrap; }
  .strip-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 999; padding: 20px 5vw;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-close { font-size: 1.5rem; cursor: pointer; color: var(--soft); background: none; border: none; }
.mobile-nav a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 600; color: var(--text);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mob-cta {
  margin-top: 24px; background: var(--blue); color: #fff;
  text-align: center; border-radius: 12px; padding: 16px;
  font-family: 'Unbounded', 'Inter', sans-serif; font-weight: 700;
  border-bottom: none;
}

/* ===== MULTIPAGE ADDITIONS ===== */
.nav-menu > li > a.nav-active,
.nav-menu > li > button.nav-active { color: var(--blue); }

/* Navigation quick-cards */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.nav-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
  transition: all .22s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.nav-card:hover {
  border-color: var(--blue-md);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.nav-card-icon {
  width: 52px; height: 52px;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.nav-card h3 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: -.3px;
}
.nav-card p { color: var(--soft); font-size: .82rem; line-height: 1.6; }
.nav-card-link {
  margin-top: auto;
  font-size: .8rem; font-weight: 700; color: var(--blue);
  display: flex; align-items: center; gap: 5px;
}

/* Product cards (1C products page) */
.prod-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod-lg {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .22s; text-decoration: none; color: inherit;
}
.prod-lg:hover { border-color: var(--blue-md); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.prod-lg-img {
  height: 240px;
  background: linear-gradient(135deg, #f5f8ff, #e8efff);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px;
}
.prod-lg-img img { max-height: 100%; max-width: 90%; object-fit: contain; transition: transform .35s; }
.prod-lg:hover .prod-lg-img img { transform: scale(1.04); }
.prod-lg-img svg { max-height: 100%; max-width: 90%; }
.prod-lg-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prod-lg-body h3 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .88rem; font-weight: 700; letter-spacing: -.3px; line-height: 1.35;
}
.prod-lg-body p { color: var(--soft); font-size: .8rem; line-height: 1.6; flex: 1; }
.prod-price-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 10px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.price-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  flex: 1; min-width: 100px; text-align: center;
}
.price-box-label { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--xsoft); margin-bottom: 3px; }
.price-box-val {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .88rem; font-weight: 800; color: var(--blue);
}
.prod-cta {
  display: flex; align-items: center; gap: 5px;
  margin-top: 4px; font-size: .8rem; font-weight: 700; color: var(--blue);
}

/* HRM comparison table */
.hrm-table-wrap { overflow-x: auto; margin-top: 32px; }
.hrm-table {
  width: 100%; border-collapse: collapse;
  font-size: .82rem;
}
.hrm-table th {
  background: var(--blue);
  color: #fff;
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: -.2px;
  padding: 14px 16px; text-align: left;
  white-space: nowrap;
}
.hrm-table th:first-child { background: #0d1b3e; border-radius: 8px 0 0 0; }
.hrm-table th:last-child { border-radius: 0 8px 0 0; }
.hrm-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--soft);
  vertical-align: top;
}
.hrm-table tr:nth-child(even) td { background: var(--bg); }
.hrm-table tr:hover td { background: var(--blue-lt); }
.hrm-table td:first-child { color: var(--text); font-weight: 500; }
.check-yes { color: #16a34a; font-size: 1rem; }
.check-no  { color: #dc2626; font-size: 1rem; }
.check-part { color: #d97706; font-size: .9rem; }

/* About page */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.about-facts { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.fact-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 13px; padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.fact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.cert-block {
  background: linear-gradient(135deg, #0d1b3e, #1a2f6e);
  border-radius: var(--r); padding: 40px;
  color: #fff; display: flex; flex-direction: column; gap: 16px;
}
.cert-block h3 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 800;
}
.cert-block p { color: rgba(255,255,255,.7); line-height: 1.75; font-size: .9rem; }
.cert-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.cert-badge-icon { font-size: 2rem; }
.cert-badge-text { font-size: .8rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.cert-badge-text strong { color: #fff; }

/* Contacts page */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contacts-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.info-card-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--blue-lt); border: 1px solid var(--blue-md);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-card h4 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .82rem; font-weight: 700; margin-bottom: 5px;
}
.info-card p { color: var(--soft); font-size: .875rem; line-height: 1.6; }
.info-card a { color: var(--blue); font-weight: 500; }
.info-card a:hover { text-decoration: underline; }
.requisites-table { width: 100%; border-collapse: collapse; font-size: .82rem; margin-top: 8px; }
.requisites-table td { padding: 7px 0; border-bottom: 1px solid var(--border); }
.requisites-table td:first-child { color: var(--soft); width: 50%; }
.requisites-table td:last-child { color: var(--text); font-weight: 500; }

/* Inner page hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f6e 50%, #0d1b3e 100%);
  color: #fff;
  padding: 56px 5vw 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner { max-width: 1260px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero h1 span { color: #60a5fa; }
.page-hero p { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 600px; line-height: 1.75; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Service list (inner pages) */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.svc-list-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rS); padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: all .18s;
}
.svc-list-item:hover { border-color: var(--blue-md); background: var(--blue-lt); }
.svc-list-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: .7rem; font-weight: 800;
}
.svc-list-item h4 {
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: .82rem; font-weight: 700; margin-bottom: 4px;
}
.svc-list-item p { color: var(--soft); font-size: .78rem; line-height: 1.55; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  padding: 60px 5vw; color: #fff; text-align: center;
}
.cta-band h2 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800; margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 28px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* KKT / PC pricing (no amounts — call) */
.call-only {
  background: var(--blue-lt); border: 1.5px solid var(--blue-md);
  border-radius: 14px; padding: 24px 28px;
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px;
}
.call-only-icon { font-size: 2rem; }
.call-only h4 {
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 5px;
}
.call-only p { color: var(--soft); font-size: .82rem; }
.call-only a { color: var(--blue); font-weight: 700; text-decoration: none; }
.call-only a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .nav-cards { grid-template-columns: 1fr 1fr; }
  .prod-grid-lg { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .svc-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-cards { grid-template-columns: 1fr; }
  .prod-grid-lg { grid-template-columns: 1fr; }
}

/* ===== VERSION TILES (Base / PROF / KORP) ===== */
.version-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.version-tiles.cols-2 { grid-template-columns: repeat(2, 1fr); }
.version-tiles.cols-4 { grid-template-columns: repeat(4, 1fr); }
.ver-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: all .22s;
  position: relative;
}
.ver-tile:hover {
  border-color: var(--blue-md);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ver-tile.featured {
  background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
  border-color: transparent;
  color: #fff;
}
.ver-tile-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.ver-tile.featured .ver-tile-head { border-bottom-color: rgba(255,255,255,.2); }
.ver-tile-name {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
}
.ver-tile-badge {
  background: var(--blue-lt);
  color: var(--blue);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.ver-tile.featured .ver-tile-badge {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.ver-tile-features {
  display: flex; flex-direction: column;
  gap: 9px;
  flex: 1;
}
.ver-tile-features li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .82rem;
  line-height: 1.55;
  color: var(--soft);
}
.ver-tile.featured .ver-tile-features li { color: rgba(255,255,255,.85); }
.ver-tile-features li::before {
  content: '›';
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}
.ver-tile.featured .ver-tile-features li::before { color: #fff; }
.ver-tile-foot {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.ver-tile.featured .ver-tile-foot { border-top-color: rgba(255,255,255,.2); }
.ver-tile-price {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.ver-tile-price .from {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--xsoft);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.ver-tile.featured .ver-tile-price { color: #fff; }
.ver-tile.featured .ver-tile-price .from { color: rgba(255,255,255,.6); }
.ver-tile-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  text-decoration: none;
  display: block;
}
.ver-tile-cta:hover {
  background: var(--blue-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26,86,232,0.25);
}
.ver-tile.featured .ver-tile-cta {
  background: #fff;
  color: var(--blue);
}
.ver-tile.featured .ver-tile-cta:hover {
  background: #f0f6ff;
}

/* Simple tile (no features list, just title + price) */
.simple-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all .22s;
}
.simple-tile:hover {
  border-color: var(--blue-md);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.simple-tile-name {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.3;
}
.simple-tile-desc {
  color: var(--soft);
  font-size: .82rem;
  line-height: 1.6;
  flex: 1;
}
.simple-tile-foot {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.simple-tile-price {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
}

/* Equipment tile (with image) */
.equip-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .22s;
}
.equip-tile:hover {
  border-color: var(--blue-md);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.equip-tile-img {
  height: 180px;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  padding: 16px;
}
.equip-tile-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.equip-tile-body {
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 12px;
  flex: 1;
}
.equip-tile-name {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.3px;
}
.equip-tile-desc {
  color: var(--soft);
  font-size: .82rem;
  line-height: 1.55;
  flex: 1;
}

/* Brand heading */
.brand-heading {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  margin-top: 48px;
}
.brand-heading:first-of-type { margin-top: 0; }
.brand-heading-logo {
  height: 44px; width: auto;
  display: flex; align-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blue);
}
.brand-heading-title {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.5px;
}

/* Product hero with image side-by-side */
.product-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-detail-img {
  background: linear-gradient(135deg, #f5f8ff, #e8efff);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.product-detail-img img {
  max-height: 380px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(26, 86, 232, 0.15));
}
.product-text p {
  color: var(--soft);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.product-text p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .version-tiles { grid-template-columns: 1fr; }
  .version-tiles.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .version-tiles.cols-4 { grid-template-columns: 1fr; }
}

/* List with no version (used for support sections) */
.text-block-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 24px;
}
.text-block-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--soft);
  font-size: .92rem;
  line-height: 1.7;
}
.text-block-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* Add lic note */
.licence-note {
  background: var(--blue-lt);
  border: 1px solid var(--blue-md);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--text);
  line-height: 1.6;
}
.licence-note a { color: var(--blue); font-weight: 600; text-decoration: underline; }

