/* =====================================================================
   CKB – DESIGN SYSTEM
   Mobile-first, WCAG-orijentisan, bez eksternih biblioteka i fontova.
   NAPOMENA O BRENDU: nijanse zelene su aproksimacija CKB brenda.
   PROVJERITI zvanične brend tokene (boje/logo) prije objave.
   ===================================================================== */

:root {
  /* Brand */
  --green-900: #06422A;
  --green-800: #005A33;
  --green-700: #006B3D;   /* primarna CKB zelena – PROVJERITI zvaničan HEX */
  --green-600: #008747;
  --green-500: #00A05A;
  --green-100: #DCF0E5;
  --green-50:  #EEF7F2;
  --lime:      #8DC63F;

  /* Neutrals */
  --ink:       #12211A;
  --ink-2:     #3D4F46;
  --ink-3:     #5E6E66;
  --line:      #DDE6E1;
  --bg:        #F6F9F7;
  --card:      #FFFFFF;

  /* Semantics */
  --warn-bg:   #FFF4DC;
  --warn-ink:  #7A5300;
  --focus:     #0B57D0;

  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 1px 2px rgba(18,33,26,.06), 0 8px 24px rgba(18,33,26,.07);
  --shadow-lg: 0 4px 12px rgba(18,33,26,.10), 0 20px 48px rgba(18,33,26,.12);

  --header-h:  60px;
  --bottomnav-h: 62px;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; height: auto; }
a { color: var(--green-700); }
a:hover { color: var(--green-800); }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-800); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
section { margin: 40px 0; }
main { min-height: 60vh; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 16px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.logo-link { display: inline-flex; align-items: center; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  border: none; background: transparent; color: var(--ink);
  cursor: pointer; text-decoration: none;
}
.icon-btn:hover { background: var(--green-50); color: var(--green-800); }
.lang-switch {
  min-width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; font-weight: 700; cursor: pointer; color: var(--ink-2); font-size: .9rem;
}
.lang-switch:hover { border-color: var(--green-600); color: var(--green-700); }
.header-login { display: none; }
@media (min-width: 720px) { .header-login { display: inline-flex; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-800); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: var(--green-100); color: var(--green-900); }
.btn-secondary:hover { background: var(--green-50); }
.btn-outline { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn-outline:hover { background: var(--green-50); }
.btn-white { background: #fff; color: var(--green-800); }
.btn-white:hover { background: var(--green-50); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%);
  color: #fff; margin: 0; padding: 40px 0 56px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(141,198,63,.35), transparent 70%);
}
.hero .container { position: relative; z-index: 1; display: grid; gap: 28px; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero p.lead { font-size: 1.1rem; color: #E4F3EA; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { display:flex; flex-wrap:wrap; gap:14px; margin-top: 6px; color:#CFE8DA; font-size:.88rem; }
.hero-badges span { display:inline-flex; align-items:center; gap:6px; }
@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.1fr .9fr; align-items: center; }
}

/* Phone mockup */
.phone-mock {
  width: min(280px, 74vw); margin: 0 auto;
  background: #0D2B1D; border-radius: 36px; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.15);
}
.phone-screen {
  background: linear-gradient(180deg, #F6FBF8, #E9F5EE);
  border-radius: 26px; padding: 18px 14px; color: var(--ink); min-height: 380px;
  display:flex; flex-direction:column; gap:12px;
}
.phone-notch { width: 88px; height: 20px; background: #0D2B1D; border-radius: 999px; margin: 0 auto 4px; }
.mock-balance { background: var(--green-700); color:#fff; border-radius: 16px; padding: 14px; }
.mock-balance small { opacity:.8; }
.mock-balance strong { font-size: 1.4rem; display:block; }
.mock-row { display:flex; gap:10px; }
.mock-chip { flex:1; background:#fff; border-radius:14px; padding:10px; text-align:center; font-size:.72rem; font-weight:600; color:var(--ink-2); box-shadow: var(--shadow); }
.mock-chip svg { display:block; margin:0 auto 4px; color: var(--green-700); }
.mock-tx { background:#fff; border-radius:14px; padding:10px 12px; display:flex; justify-content:space-between; font-size:.78rem; box-shadow: var(--shadow); }
.mock-tx b { color: var(--green-800); }

/* ---------- Quick actions ---------- */
.quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (min-width: 720px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px) { .quick-grid { grid-template-columns: repeat(8, 1fr); } }
.quick-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 8px; text-decoration: none; color: var(--ink);
  font-size: .82rem; font-weight: 600; text-align: center; min-height: 92px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.quick-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green-500); color: var(--green-900); }
.quick-item .qi-icon {
  width: 44px; height: 44px; border-radius: 12px; display:flex; align-items:center; justify-content:center;
  background: var(--green-50); color: var(--green-700);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; box-shadow: 0 1px 2px rgba(18,33,26,.04);
}
.card-hover { transition: transform .12s ease, box-shadow .12s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.section-head .link-more { white-space: nowrap; font-weight: 700; text-decoration: none; }

/* Offer cards */
.offer-card { display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; }
.offer-card .offer-art {
  height: 84px; border-radius: 12px; margin: -4px -4px 4px;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  display:flex; align-items:center; justify-content:center; color: var(--green-700);
}
.offer-meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: .78rem; }
.tag { background: var(--green-50); color: var(--green-900); border-radius: 999px; padding: 3px 10px; font-weight: 600; }
.tag-warn { background: var(--warn-bg); color: var(--warn-ink); }
.offer-card .btn { margin-top: auto; align-self: flex-start; }

/* Category cards */
.cat-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink);
}
.cat-card .cat-icon {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.cat-card p { margin: 0; color: var(--ink-3); font-size: .88rem; }
.cat-card .chev { margin-left: auto; color: var(--ink-3); }

/* Product cards */
.prod-card { display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: var(--ink); }
.prod-card .prod-cat { font-size: .75rem; font-weight: 700; color: var(--green-700); text-transform: uppercase; letter-spacing: .06em; }
.prod-card p { color: var(--ink-3); font-size: .92rem; margin: 0; }
.prod-card .prod-cta { margin-top: auto; font-weight: 700; color: var(--green-700); }

/* ---------- Recommender ---------- */
.reco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 780px) { .reco-grid { grid-template-columns: repeat(3, 1fr); } }
.reco-btn {
  display: flex; align-items: center; gap: 10px; padding: 14px; min-height: 60px;
  border-radius: var(--radius); border: 2px solid var(--line); background: #fff;
  font: inherit; font-weight: 650; color: var(--ink); cursor: pointer; text-align: left;
}
.reco-btn[aria-pressed="true"], .reco-btn:hover { border-color: var(--green-600); background: var(--green-50); }
.reco-btn .qi-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--green-100); color: var(--green-800); display:flex; align-items:center; justify-content:center; flex:0 0 38px; }
.reco-note { font-size: .8rem; color: var(--ink-3); margin-top: 10px; }

/* ---------- Accordions ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc + .acc { margin-top: 10px; }
.acc summary {
  list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 48px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.3rem; color: var(--green-700); font-weight: 400; }
.acc[open] summary::after { content: "–"; }
.acc .acc-body { padding: 0 18px 16px; color: var(--ink-2); }

/* ---------- Support ---------- */
.support-tiles { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .support-tiles { grid-template-columns: 1fr 1fr; } }
.support-tile { display: flex; flex-direction: column; gap: 10px; }
.support-tile h3 { display: flex; align-items: center; gap: 10px; }
.support-tile .btn { align-self: flex-start; }
.abroad-box {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff; border-radius: var(--radius-lg); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.abroad-box h2 { color: #fff; }
.abroad-box p { color: #DDEFE4; margin: 0; }

/* ---------- CKB GO section ---------- */
.gosec {
  background: linear-gradient(160deg, #0D2B1D, var(--green-800));
  border-radius: var(--radius-lg); color: #fff; padding: 32px 22px; overflow: hidden; position: relative;
}
.gosec h2 { color: #fff; }
.gosec p { color: #D5EADD; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  background: #000; color: #fff; border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px; padding: 8px 16px; min-height: 52px; min-width: 168px;
}
.store-badge:hover { background: #111; color:#fff; border-color: #fff; }
.store-badge small { display: block; font-size: .64rem; opacity: .85; line-height: 1.1; }
.store-badge b { font-size: 1.02rem; line-height: 1.15; }
.qr-row { display: none; gap: 20px; margin-top: 18px; }
@media (min-width: 900px) { .qr-row { display: flex; } }
.qr-box { background: #fff; border-radius: 14px; padding: 10px; text-align: center; color: var(--ink); width: 132px; }
.qr-box img { width: 104px; height: 104px; }
.qr-box small { font-weight: 700; font-size: .72rem; }

/* Feature list */
.featgrid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .featgrid { grid-template-columns: 1fr 1fr; } }
.feat { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.07); border-radius: 14px; padding: 12px 14px; }
.feat .qi-icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; background: rgba(141,198,63,.25); color: #C9E89B; display:flex; align-items:center; justify-content:center; }
.feat p { margin: 0; font-size: .92rem; color: #E4F3EA; }
.card .feat { background: var(--green-50); }
.card .feat p { color: var(--ink-2); }
.card .feat .qi-icon { background: var(--green-100); color: var(--green-800); }

/* ---------- Filters / chips ---------- */
.chip-row { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 10px; -webkit-overflow-scrolling: touch; }
.chip {
  flex: 0 0 auto; border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  padding: 9px 16px; font: inherit; font-size: .9rem; font-weight: 650; color: var(--ink-2);
  cursor: pointer; min-height: 40px;
}
.chip[aria-pressed="true"] { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* ---------- Search ---------- */
.search-bar { display: flex; gap: 8px; }
.search-bar input {
  flex: 1; min-height: 52px; border-radius: 14px; border: 2px solid var(--line);
  padding: 0 16px; font: inherit; background: #fff;
}
.search-bar input:focus { border-color: var(--green-600); outline: none; }
.search-group h3 { margin: 22px 0 10px; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
.result-item { display: block; text-decoration: none; color: var(--ink); padding: 14px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--line); margin-bottom: 8px; }
.result-item:hover { border-color: var(--green-500); }
.result-item small { color: var(--ink-3); }

/* ---------- Compare ---------- */
.compare-pick { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
@media (min-width: 780px) { .compare-pick { grid-template-columns: repeat(4, 1fr); } }
.pick-box { display: flex; align-items: center; gap: 8px; padding: 12px; border: 2px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 600; font-size: .9rem; }
.pick-box input { width: 20px; height: 20px; accent-color: var(--green-700); }
.pick-box.checked { border-color: var(--green-600); background: var(--green-50); }
.compare-scroll { overflow-x: auto; margin-top: 18px; }
table.compare { border-collapse: collapse; width: 100%; min-width: 520px; background: #fff; border-radius: var(--radius); overflow: hidden; }
table.compare th, table.compare td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; font-size: .92rem; vertical-align: top; }
table.compare thead th { background: var(--green-700); color: #fff; }
table.compare tbody th { background: var(--green-50); white-space: nowrap; }

/* ---------- Branches ---------- */
.branch-card h3 { margin-bottom: 4px; }
.branch-card p { margin: 0 0 4px; font-size: .92rem; color: var(--ink-2); }
.branch-card .tag { margin-right: 6px; }

/* ---------- Product page ---------- */
.prod-hero { background: linear-gradient(150deg, var(--green-800), var(--green-600)); color: #fff; border-radius: var(--radius-lg); padding: 30px 22px; margin-top: 16px; }
.prod-hero h1 { color: #fff; font-size: clamp(1.5rem,4vw,2.2rem); }
.prod-hero p { color: #DDEFE4; max-width: 60ch; }
.crumbs { font-size: .85rem; margin: 16px 0 0; color: var(--ink-3); }
.crumbs a { text-decoration: none; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before {
  content: "✓"; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-100); color: var(--green-800); font-weight: 800; font-size: .8rem;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
}
.steps { list-style: none; margin: 0; padding: 0; counter-reset: st; display: grid; gap: 12px; }
.steps li { display: flex; gap: 12px; align-items: flex-start; counter-increment: st; }
.steps li::before {
  content: counter(st); flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-700); color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Verify banner */
.verify-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--warn-bg); color: var(--warn-ink);
  border: 1px solid #EDDCB0; border-radius: 12px; padding: 12px 14px; font-size: .88rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #C6DFD0; margin-top: 56px; padding: 40px 0 30px; }
.site-footer a { color: #E8F5EE; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .92rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.15); margin-top: 26px; padding-top: 18px; font-size: .8rem; color: #9FC3AE; }

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-around;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) { .bottom-nav { display: none; } }
.bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: var(--ink-3); font-size: .68rem; font-weight: 700;
  padding: 5px 2px; border-radius: 10px; min-height: 48px; justify-content: center;
}
.bnav-item[aria-current="page"] { color: var(--green-700); }
.bnav-item svg { flex: 0 0 auto; }

/* ---------- Drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(6,25,16,.5); z-index: 80; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(340px, 88vw); background: #fff; box-shadow: var(--shadow-lg);
  padding: 18px; overflow-y: auto;
  transform: translateX(0);
}
.drawer .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.drawer ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 2px; }
.drawer a.dr-link { display: block; padding: 13px 12px; border-radius: 12px; text-decoration: none; color: var(--ink); font-weight: 650; }
.drawer a.dr-link:hover { background: var(--green-50); color: var(--green-900); }
.drawer .dr-sec { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); padding: 14px 12px 6px; }

/* ---------- Page transitions ---------- */
.page-enter { animation: fadeUp .28s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Loading / empty ---------- */
.loading { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 60px 0; color: var(--ink-3); }
.spinner { width: 26px; height: 26px; border-radius: 50%; border: 3px solid var(--green-100); border-top-color: var(--green-700); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 48px 20px; color: var(--ink-3); }
.empty-state .qi-icon { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 14px; background: var(--green-50); color: var(--green-600); display:flex; align-items:center; justify-content:center; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .92rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 48px; border: 2px solid var(--line); border-radius: 12px;
  padding: 10px 14px; font: inherit; background: #fff;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-600); outline: none; }
.form-error { color: #B3261E; font-size: .82rem; margin-top: 4px; display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #B3261E; }
.form-field.invalid .form-error { display: block; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 70px 20px; }
.notfound .big { font-size: 5rem; font-weight: 800; color: var(--green-100); line-height: 1; }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; font-size: .85rem; color: var(--ink-3); }
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip svg { color: var(--green-700); }
