/* =========================================================
   VERIOK-PAY — Institutional, clean, bilingual static site
   White background. Serious infra tone.
   ========================================================= */

:root{
  --bg:#ffffff;
  --bg2:#f8fafc;
  --card:#ffffff;
  --border:#e2e8f0;
  --text:#0f172a;
  --muted:#475569;
  --muted2:#64748b;

  --brand:#1e3a8a;      /* deep blue */
  --brand2:#0ea5e9;     /* sky */
  --accent:#10b981;     /* green */
  --danger:#b91c1c;

  --radius:14px;
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --shadow2:0 18px 60px rgba(2,6,23,.10);

  --max:1100px;
  --pad:22px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(30,58,138,.10), transparent 60%),
    radial-gradient(900px 500px at 110% 0%, rgba(16,185,129,.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }
img{ max-width:100%; display:block; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

.skip{
  position:absolute;
  left:-9999px; top:auto;
  width:1px;height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px;
  width:auto;height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:var(--shadow);
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-logo{ width:56px; height:56px; } /* bigger & visible */
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:900; letter-spacing:.2px; color:var(--brand); }
.brand-tag{ font-size:12px; color:var(--muted2); margin-top:3px; }

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a.active{ color:var(--text); background: rgba(15,23,42,.05); }
.nav a:hover{ color:var(--text); background: rgba(15,23,42,.05); }

.lang{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:6px;
}
.lang a{
  font-size:13px;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background:#fff;
}
.lang a.active{
  color:var(--brand);
  border-color: rgba(30,58,138,.25);
  background: rgba(30,58,138,.06);
}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background: rgba(15,23,42,.75);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  font-weight:850;
  border:1px solid rgba(30,58,138,.20);
  background: linear-gradient(135deg, rgba(30,58,138,.95), rgba(14,165,233,.70));
  color:#fff;
  box-shadow: var(--shadow);
}
.btn:hover{ filter:brightness(1.02); }
.btn:active{ transform: translateY(1px); }
.btn-small{ padding:10px 14px; border-radius:10px; font-size:14px; }

.btn-ghost{
  background:#fff;
  color:var(--brand);
  border:1px solid rgba(30,58,138,.22);
  box-shadow:none;
}
.btn-ghost:hover{ background: rgba(30,58,138,.06); }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  font-weight:850;
  font-size:12px;
}

.hero{
  padding:54px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.eyebrow{
  color: var(--muted2);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height:1.04;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 18px;
  font-size: 18px;
  line-height:1.65;
  color: var(--muted);
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

.trust{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}
.trust-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  min-width: 160px;
  box-shadow: 0 8px 22px rgba(2,6,23,.05);
}
.trust-kpi{ font-weight:950; font-size:20px; color:var(--brand); }
.trust-text{ color:var(--muted2); margin-top:2px; font-size:12px; }

.hero-card{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, rgba(30,58,138,.04) 100%);
  box-shadow: var(--shadow2);
}
.hero-card .glass{
  padding:22px;
  position:relative;
  z-index:1;
}
.hero-orb{
  position:absolute;
  inset:auto -120px -140px auto;
  width: 340px; height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.35), rgba(30,58,138,.18), transparent 65%);
  filter: blur(10px);
  opacity:.9;
}
.badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(30,58,138,.18);
  background: rgba(30,58,138,.06);
  font-size:12px;
  color:var(--brand);
  font-weight:900;
}
.hero-card h3{
  margin:12px 0 8px;
  font-size:20px;
  letter-spacing:-.01em;
}
.muted{ color:var(--muted); }

.checklist{
  list-style:none;
  padding:0;
  margin:16px 0 0;
}
.checklist li{
  padding:10px 0 10px 28px;
  position:relative;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.checklist li:first-child{ border-top:none; }
.checklist li:before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width:16px; height:16px;
  transform: translateY(-50%);
  border-radius: 6px;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.30);
  box-shadow: 0 0 0 4px rgba(16,185,129,.10);
}

.card-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.section{ padding:46px 0; }
.section-alt{
  background: rgba(2,6,23,.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{ margin-bottom:18px; max-width: 860px; }
.section-head h2{ margin:0 0 10px; font-size:28px; letter-spacing:-.01em; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  border:1px solid var(--border);
  background:#fff;
  border-radius: 16px;
  padding:18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}
.card h3{ margin:0 0 8px; font-size:18px; color:var(--brand); }
.card-large{ padding:22px; }
.card-large h2{ margin:0 0 10px; font-size:24px; letter-spacing:-.01em; color:var(--brand); }

.split{
  display:grid;
  grid-template-columns: 1.10fr .90fr;
  gap:14px;
  align-items:start;
}
.callout{
  border:1px solid rgba(30,58,138,.18);
  background: rgba(30,58,138,.04);
  border-radius: 16px;
  padding:20px;
}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color: var(--muted);
}
.bullets li{ margin:8px 0; }

.cta{
  border-radius: 18px;
  overflow:hidden;
}
.cta-inner{
  padding:28px;
  border:1px solid rgba(30,58,138,.18);
  background:
    radial-gradient(650px 260px at 10% 10%, rgba(30,58,138,.10), transparent 55%),
    radial-gradient(650px 260px at 100% 30%, rgba(16,185,129,.10), transparent 55%),
    #fff;
  box-shadow: var(--shadow2);
}
.cta-inner h2{ margin:0 0 8px; font-size:28px; color:var(--brand); }

.page-hero{
  padding:42px 0 8px;
}
.page-hero h1{ font-size: clamp(30px, 3.6vw, 46px); margin:0 0 10px; }

.divider{
  height:1px;
  background: var(--border);
  margin:26px 0;
}

.steps{ display:grid; gap:12px; }
.step{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap:12px;
  align-items:start;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 16px;
  padding:18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}
.step-num{
  width:52px;height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 16px;
  font-weight:950;
  font-size:18px;
  background: rgba(30,58,138,.08);
  border: 1px solid rgba(30,58,138,.18);
  color: var(--brand);
}
.step-body h2{ margin:0 0 6px; font-size:20px; color:var(--brand); }
.hint{
  margin-top:12px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(2,6,23,.02);
  color: var(--muted);
}

.faq{
  border:1px solid var(--border);
  background:#fff;
  border-radius: 14px;
  padding:12px 14px;
  margin:10px 0;
  box-shadow: 0 10px 22px rgba(2,6,23,.05);
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  color: rgba(15,23,42,.92);
}
.faq p{ margin:10px 0 0; color:var(--muted); }

.form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
label{
  display:grid;
  gap:8px;
  color: rgba(15,23,42,.90);
  font-weight:850;
  font-size:13px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background:#fff;
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(14,165,233,.50);
  box-shadow: 0 0 0 4px rgba(14,165,233,.15);
}
.checkbox{
  grid-template-columns: 18px 1fr;
  align-items:start;
  gap:10px;
  font-weight:700;
  color: var(--muted);
}
.checkbox input{
  width:18px;height:18px;
  margin-top:2px;
}
.form-note{ margin:0; min-height: 20px; color:var(--muted2); font-size:13px; }

.site-footer{
  margin-top:26px;
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:22px 0;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{ width:34px; height:34px; opacity:.98; }
.footer-title{ font-weight:950; letter-spacing:.2px; color:var(--brand); }
.footer-muted{ color:var(--muted2); font-size:13px; }
.footer-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-right a{
  color:var(--muted2);
  font-weight:800;
  font-size:13px;
  padding:6px 8px;
  border-radius:10px;
  border:1px solid transparent;
}
.footer-right a:hover{
  color:var(--text);
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.08);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0 22px;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--brand);
  font-weight:900;
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(30,58,138,.20);
  background: rgba(30,58,138,.05);
}

/* Mobile */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .brand-logo{ width:64px; height:64px; } /* bigger on mobile */
  .nav-toggle{ display:inline-block; }
  .nav{
    position:absolute;
    right: var(--pad);
    top: 84px;
    width: calc(100% - (var(--pad) * 2));
    max-width: 520px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow2);
  }
  .nav.open{ display:flex; }
  .nav a{ padding:12px 12px; }
  .lang{ margin-left:0; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
}
