/* ============================================================
   CONVERTEREN — main.css
   Global stylesheet: design tokens, base/reset, accessibility,
   header/footer, hero, sections, cards, FAQ, breadcrumb,
   scrollbox, buttons + the complete converter widget.

   IMPORTANT (integration note):
   main.css is enqueued on EVERY page and is therefore
   self-sufficient for the converter widget (.conv-app), which
   also renders inside the homepage hero (data-universal block).
   assets/css/converter.css only ADDS tool-page content styles
   (article, steps, comparison table, format cards, related, ads).

   Accent: teal #0d9488 (hover #0f766e) — CONTRACT §13.
   Dark mode: automatic via prefers-color-scheme token overrides.
   No build step, plain CSS, system-ui stack.
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS (light)
   ------------------------------------------------------------ */
:root {
  color-scheme: light;

  /* Brand / accent */
  --cnv-accent: #0d9488;            /* teal-600 (contract) */
  --cnv-accent-hover: #0f766e;      /* teal-700 (contract) */
  --cnv-accent-text: #0f766e;       /* accent used as text/icon ink (AA on light) */
  --cnv-accent-soft: #ccfbf1;       /* teal-100 fills */
  --cnv-accent-fade: #f0fdfa;       /* teal-50 washes */
  --cnv-accent-contrast: #ffffff;

  /* Neutrals */
  --cnv-bg: #f8fafc;
  --cnv-bg-alt: #f1f5f9;
  --cnv-surface: #ffffff;
  --cnv-field: #ffffff;
  --cnv-hover: #f1f5f9;
  --cnv-zebra: #f8fafc;
  --cnv-text: #0f172a;
  --cnv-text-muted: #475569;
  --cnv-text-faint: #64748b;
  --cnv-border: #e2e8f0;
  --cnv-border-strong: #cbd5e1;
  --cnv-link: #0d9488;

  /* Status */
  --cnv-danger: #dc2626;
  --cnv-danger-soft: #fef2f2;
  --cnv-danger-border: rgba(220, 38, 38, 0.28);

  /* Focus */
  --cnv-ring: rgba(13, 148, 136, 0.35);
  --cnv-focus-ring: 0 0 0 4px var(--cnv-ring);

  /* Header / footer */
  --cnv-header-bg: rgba(255, 255, 255, 0.88);
  --cnv-footer-bg: #0f172a;
  --cnv-footer-text: #cbd5e1;
  --cnv-footer-muted: #8ea0bf;
  --cnv-footer-border: rgba(148, 163, 184, 0.16);

  /* Scrollbar */
  --cnv-scrollbar-thumb: #cbd5e1;
  --cnv-scrollbar-thumb-hover: #94a3b8;

  /* Elevation */
  --cnv-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --cnv-shadow-md: 0 6px 16px -4px rgba(15, 23, 42, 0.1), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  --cnv-shadow-lg: 0 20px 44px -12px rgba(15, 23, 42, 0.18);

  /* Shape */
  --cnv-radius-sm: 8px;
  --cnv-radius: 12px;
  --cnv-radius-lg: 16px;
  --cnv-radius-pill: 999px;

  /* Layout */
  --cnv-container: 1180px;
  --cnv-header-h: 64px;

  /* Motion */
  --cnv-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --cnv-dur-fast: 120ms;
  --cnv-dur: 180ms;

  /* Type */
  --cnv-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --cnv-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* Dark mode: token overrides only (CONTRACT §13) */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --cnv-accent: #0d9488;
    --cnv-accent-hover: #0f766e;
    --cnv-accent-text: #2dd4bf;                 /* lighter teal ink for dark bg */
    --cnv-accent-soft: rgba(45, 212, 191, 0.16);
    --cnv-accent-fade: rgba(45, 212, 191, 0.07);
    --cnv-accent-contrast: #ffffff;

    --cnv-bg: #0b1220;
    --cnv-bg-alt: #0e1626;
    --cnv-surface: #131c2e;
    --cnv-field: #0d1524;
    --cnv-hover: #1a2436;
    --cnv-zebra: rgba(148, 163, 184, 0.05);
    --cnv-text: #e2e8f0;
    --cnv-text-muted: #9fb0c3;
    --cnv-text-faint: #6b7a90;
    --cnv-border: #243149;
    --cnv-border-strong: #35435f;
    --cnv-link: #2dd4bf;

    --cnv-danger: #f87171;
    --cnv-danger-soft: rgba(248, 113, 113, 0.1);
    --cnv-danger-border: rgba(248, 113, 113, 0.3);

    --cnv-ring: rgba(45, 212, 191, 0.35);

    --cnv-header-bg: rgba(11, 18, 32, 0.86);
    --cnv-footer-bg: #0a1120;
    --cnv-footer-text: #94a3b8;
    --cnv-footer-muted: #64748b;
    --cnv-footer-border: rgba(148, 163, 184, 0.14);

    --cnv-scrollbar-thumb: #334155;
    --cnv-scrollbar-thumb-hover: #475569;

    --cnv-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --cnv-shadow-md: 0 6px 16px -4px rgba(0, 0, 0, 0.5);
    --cnv-shadow-lg: 0 20px 44px -12px rgba(0, 0, 0, 0.6);
  }
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* keep anchor targets clear of the sticky header */
  scroll-padding-top: calc(var(--cnv-header-h) + 16px);
}

body {
  font-family: var(--cnv-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cnv-text);
  background: var(--cnv-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

img, video { display: block; max-width: 100%; height: auto; }
svg { vertical-align: middle; }

a {
  color: var(--cnv-link);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
button::-moz-focus-inner { border: 0; }

summary { cursor: pointer; }
summary::-webkit-details-marker { display: none; }

/* JS toggles the [hidden] attribute everywhere — author display
   rules must never beat it (CONTRACT §11). */
[hidden] { display: none !important; }

::selection {
  background: var(--cnv-accent-soft);
  color: var(--cnv-text);
}

/* ------------------------------------------------------------
   3. ACCESSIBILITY
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--cnv-accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Markup pairs both classes: class="skip-link sr-only" */
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  padding: 10px 16px;
  background: var(--cnv-accent);
  color: var(--cnv-accent-contrast);
  font-weight: 600;
  border-radius: var(--cnv-radius-sm);
  box-shadow: var(--cnv-shadow-lg);
  text-decoration: none;
}

/* ------------------------------------------------------------
   4. SCROLLBARS (webkit + firefox)
   ------------------------------------------------------------ */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--cnv-scrollbar-thumb) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--cnv-scrollbar-thumb);
  border-radius: var(--cnv-radius-pill);
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background-color: var(--cnv-scrollbar-thumb-hover); }

/* ------------------------------------------------------------
   5. LAYOUT — container + sticky footer
   ------------------------------------------------------------ */
.container {
  width: min(100% - 40px, var(--cnv-container));
  margin-inline: auto;
}

/* CONTRACT §13: sticky footer */
body.cnv-body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body.cnv-body main { flex: 1 0 auto; }
.site-footer { margin-top: auto; }

.site-main { padding-bottom: clamp(48px, 8vw, 80px); }

/* ------------------------------------------------------------
   6. HEADER — sticky, nav, language dropdown, burger
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cnv-header-bg);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--cnv-border);
}
/* keep clear of the WordPress admin bar */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--cnv-header-h);
}

.site-logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cnv-text);
  text-decoration: none;
  white-space: nowrap;
}
.site-logo:hover { text-decoration: none; color: var(--cnv-accent-text); }
.site-logo__tld { color: var(--cnv-accent); font-weight: 700; }

.site-nav { flex: 1 1 auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: var(--cnv-radius-sm);
  color: var(--cnv-text-muted);
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--cnv-dur-fast) var(--cnv-ease),
              background-color var(--cnv-dur-fast) var(--cnv-ease);
}
.site-nav__list a:hover {
  color: var(--cnv-accent-text);
  background: var(--cnv-accent-fade);
  text-decoration: none;
}

/* Language dropdown */
.site-lang { position: relative; margin-left: auto; }
.site-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 6px 12px;
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-surface);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--cnv-dur-fast) var(--cnv-ease),
              background-color var(--cnv-dur-fast) var(--cnv-ease);
}
.site-lang__btn:hover { border-color: var(--cnv-accent); color: var(--cnv-accent-text); }
.site-lang__globe { font-size: 1rem; line-height: 1; }
.site-lang__caret {
  font-size: 0.65rem;
  color: var(--cnv-text-faint);
  transition: transform var(--cnv-dur) var(--cnv-ease);
}
.site-lang__btn[aria-expanded="true"] .site-lang__caret { transform: rotate(180deg); }

.site-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 600;
  min-width: 184px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius);
  box-shadow: var(--cnv-shadow-lg);
}
.site-lang__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--cnv-radius-sm);
  color: var(--cnv-text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}
.site-lang__item:hover {
  background: var(--cnv-hover);
  color: var(--cnv-text);
  text-decoration: none;
}
.site-lang__item.is-active {
  background: var(--cnv-accent-fade);
  color: var(--cnv-accent-text);
  font-weight: 600;
}
.site-lang__item.is-active::after { content: "✓"; font-size: 0.85em; }

/* Burger (hidden on desktop, shown < 900px) */
.site-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-sm);
  background: var(--cnv-surface);
}
.site-burger__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-text);
  transition: transform var(--cnv-dur) var(--cnv-ease),
              opacity var(--cnv-dur) var(--cnv-ease);
}
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(2) { opacity: 0; }
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile navigation panel */
@media (max-width: 899.98px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--cnv-surface);
    border-bottom: 1px solid var(--cnv-border);
    box-shadow: var(--cnv-shadow-lg);
  }
  .site-nav.is-open { display: block; }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 16px 16px;
  }
  .site-nav__list a {
    display: block;
    padding: 12px 14px;
    font-size: 1rem;
  }
  .site-burger { display: flex; }
}

/* ------------------------------------------------------------
   7. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--cnv-footer-bg);
  color: var(--cnv-footer-text);
  font-size: 0.92rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: clamp(40px, 6vw, 56px) 0;
}

.site-footer__tagline {
  margin-top: 12px;
  max-width: 300px;
  color: var(--cnv-footer-muted);
  line-height: 1.55;
}

.site-footer .site-logo { color: #ffffff; }
.site-footer .site-logo__tld { color: var(--cnv-accent-text); }

.site-footer__col h3 {
  margin: 0 0 14px;
  color: var(--cnv-footer-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__col a {
  display: inline-block;
  padding: 4px 0;
  color: var(--cnv-footer-text);
  text-decoration: none;
}
.site-footer__col a:hover { color: var(--cnv-accent-text); text-decoration: none; }

.site-footer__bottom {
  border-top: 1px solid var(--cnv-footer-border);
  padding: 18px 0;
  color: var(--cnv-footer-muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ------------------------------------------------------------
   8. HERO (homepage / locale home)
   ------------------------------------------------------------ */
.cnv-hero {
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, var(--cnv-accent-fade), var(--cnv-bg) 78%);
  border-bottom: 1px solid var(--cnv-border);
  text-align: center;
}

.cnv-hero__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cnv-hero__sub {
  max-width: 640px;
  margin: 12px auto 28px;
  color: var(--cnv-text-muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

/* The universal converter widget sits inside the hero */
.cnv-hero .conv-app {
  max-width: 720px;
  margin-inline: auto;
  box-shadow: var(--cnv-shadow-lg);
  text-align: left;
}
.cnv-hero .conv-drop { padding: clamp(32px, 6vw, 48px) 24px; }

/* ------------------------------------------------------------
   9. SECTIONS & HEADINGS
   ------------------------------------------------------------ */
.cnv-section { padding: clamp(44px, 6vw, 64px) 0; }
.cnv-section--alt {
  background: var(--cnv-bg-alt);
  border-block: 1px solid var(--cnv-border);
}

.cnv-section h2,
.cnv-section--alt h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 24px;
}

/* Page-level heading block (converter + category templates) */
.cnv-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 4px 0 10px;
}
.cnv-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--cnv-text-muted);
  font-size: 1.05rem;
}

.cnv-privacy-text {
  max-width: 720px;
  color: var(--cnv-text-muted);
}

.cnv-mt { margin-top: 40px; }

/* ------------------------------------------------------------
   10. CARD GRID (tools / categories)
   ------------------------------------------------------------ */
.cnv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.cnv-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius);
  box-shadow: var(--cnv-shadow-sm);
  text-decoration: none;
  transition: transform var(--cnv-dur) var(--cnv-ease),
              box-shadow var(--cnv-dur) var(--cnv-ease),
              border-color var(--cnv-dur) var(--cnv-ease);
}
.cnv-card:hover {
  transform: translateY(-2px);
  border-color: var(--cnv-accent);
  box-shadow: var(--cnv-shadow-md);
  text-decoration: none;
}
.cnv-card__title {
  color: var(--cnv-text);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color var(--cnv-dur-fast) var(--cnv-ease);
}
.cnv-card:hover .cnv-card__title { color: var(--cnv-accent-text); }
.cnv-card__meta {
  margin-top: auto;              /* aligns meta at the bottom in stretched rows */
  padding-top: 4px;
  color: var(--cnv-text-faint);
  font-size: 0.82rem;
}

/* Category cards get a teal wash */
.cnv-card--cat {
  background: linear-gradient(135deg, var(--cnv-accent-fade), var(--cnv-surface) 62%);
}

/* ------------------------------------------------------------
   11. HOW IT WORKS (homepage)
   ------------------------------------------------------------ */
.cnv-how {
  counter-reset: how;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cnv-how li {
  counter-increment: how;
  padding: 22px;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius);
  box-shadow: var(--cnv-shadow-sm);
}
.cnv-how li::before {
  content: counter(how);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-accent-soft);
  color: var(--cnv-accent-text);
  font-weight: 700;
  font-size: 0.95rem;
}
.cnv-how__title {
  display: block;
  margin: 12px 0 6px;
  font-weight: 650;
  font-size: 1.02rem;
}
.cnv-how__text {
  color: var(--cnv-text-muted);
  font-size: 0.95rem;
}
@media (max-width: 860px) { .cnv-how { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   12. FAQ (details/summary — homepage + converter pages)
   ------------------------------------------------------------ */
.cnv-faq {
  margin-bottom: 10px;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius);
  overflow: hidden;
}
.cnv-faq summary {
  position: relative;
  padding: 15px 48px 15px 18px;
  font-weight: 600;
  font-size: 0.97rem;
  list-style: none;
  transition: color var(--cnv-dur-fast) var(--cnv-ease);
}
.cnv-faq summary:hover { color: var(--cnv-accent-text); }
.cnv-faq summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-hover);
  color: var(--cnv-text-muted);
  font-weight: 500;
  line-height: 1;
  transition: transform var(--cnv-dur) var(--cnv-ease),
              background-color var(--cnv-dur) var(--cnv-ease);
}
.cnv-faq[open] summary::after {
  content: "–";
  background: var(--cnv-accent-soft);
  color: var(--cnv-accent-text);
}
.cnv-faq p {
  padding: 0 18px 16px;
  color: var(--cnv-text-muted);
  font-size: 0.95rem;
  animation: cnv-fade var(--cnv-dur) var(--cnv-ease);
}

@keyframes cnv-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   13. BREADCRUMB (converter + category)
   ------------------------------------------------------------ */
.cnv-breadcrumb { margin-bottom: 20px; font-size: 0.85rem; }
.cnv-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cnv-breadcrumb li { display: flex; align-items: center; }
.cnv-breadcrumb li + li::before {
  content: "/";
  margin: 0 9px;
  color: var(--cnv-text-faint);
}
.cnv-breadcrumb a { color: var(--cnv-text-muted); }
.cnv-breadcrumb a:hover { color: var(--cnv-accent-text); text-decoration: none; }
.cnv-breadcrumb li[aria-current="page"] {
  color: var(--cnv-text);
  font-weight: 500;
}

/* ------------------------------------------------------------
   14. SCROLLBOX (long lists — custom scrollbar)
   ------------------------------------------------------------ */
.cnv-scrollbox {
  max-height: 420px;
  overflow: auto;
  padding: 4px;
  margin: -4px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--cnv-scrollbar-thumb) transparent;
}

/* ------------------------------------------------------------
   15. BUTTON KIT (shared: header-free, used site-wide)
   ------------------------------------------------------------ */
.conv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;              /* CONTRACT §13 touch target */
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--cnv-radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background-color var(--cnv-dur-fast) var(--cnv-ease),
              border-color var(--cnv-dur-fast) var(--cnv-ease),
              color var(--cnv-dur-fast) var(--cnv-ease),
              box-shadow var(--cnv-dur-fast) var(--cnv-ease),
              transform var(--cnv-dur-fast) var(--cnv-ease);
}
.conv-btn:focus-visible {
  outline: 2px solid var(--cnv-accent);
  outline-offset: 2px;
}
.conv-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.conv-btn--primary {
  background: var(--cnv-accent);
  color: var(--cnv-accent-contrast);
  box-shadow: var(--cnv-shadow-sm);
}
.conv-btn--primary:hover:not(:disabled) {
  background: var(--cnv-accent-hover);
  text-decoration: none;
}
.conv-btn--primary:active:not(:disabled) { transform: translateY(1px); }

.conv-btn--ghost {
  background: transparent;
  border-color: var(--cnv-border-strong);
  color: var(--cnv-text);
}
.conv-btn--ghost:hover:not(:disabled) {
  border-color: var(--cnv-accent);
  color: var(--cnv-accent-text);
  background: var(--cnv-accent-fade);
  text-decoration: none;
}
.conv-btn--ghost:active:not(:disabled) { transform: translateY(1px); }

.conv-btn--lg {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: var(--cnv-radius);
}

/* ------------------------------------------------------------
   16. CONVERTER WIDGET (.conv-app)
   Self-contained here: the same widget renders on converter
   pages AND inside the homepage hero (universal block), so it
   must be styled even when converter.css is not enqueued.
   ------------------------------------------------------------ */
.conv-app {
  padding: clamp(20px, 3.5vw, 32px);
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-lg);
  box-shadow: var(--cnv-shadow-md);
}

/* --- Dropzone --- */
.conv-drop {
  padding: clamp(32px, 6vw, 48px) 20px;
  border: 2px dashed var(--cnv-border-strong);
  border-radius: var(--cnv-radius);
  background: var(--cnv-accent-fade);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--cnv-dur) var(--cnv-ease),
              background-color var(--cnv-dur) var(--cnv-ease),
              box-shadow var(--cnv-dur) var(--cnv-ease),
              transform var(--cnv-dur) var(--cnv-ease);
}
.conv-drop:hover {
  border-color: var(--cnv-accent);
  background: var(--cnv-accent-fade);
}
.conv-drop:focus-visible {
  outline: 2px solid var(--cnv-accent);
  outline-offset: 2px;
}
/* CONTRACT §13: drag-over state (set by uploader.js) */
.conv-drop.is-dragover {
  border-color: var(--cnv-accent);
  background: var(--cnv-accent-fade);
  box-shadow: var(--cnv-focus-ring);
  transform: scale(1.005);
}

.conv-drop__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-accent-soft);
  color: var(--cnv-accent-text);
}
.conv-drop__icon svg { width: 26px; height: 26px; }

.conv-drop__title {
  font-size: 1.06rem;
  font-weight: 650;
}
.conv-drop__or {
  margin: 2px 0 14px;
  color: var(--cnv-text-faint);
  font-size: 0.9rem;
}
.conv-drop__privacy {
  max-width: 420px;
  margin: 14px auto 0;
  color: var(--cnv-text-faint);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* --- Suggestion chips (detected file) --- */
.conv-suggest {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--cnv-accent-fade);
  border: 1px solid var(--cnv-accent-soft);
  border-radius: var(--cnv-radius);
}
.conv-suggest__label {
  color: var(--cnv-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.conv-suggest__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
/* chips are generated by uploader.js — style any direct child */
.conv-suggest__chips > *,
.conv-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--cnv-border-strong);
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-surface);
  color: var(--cnv-text);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--cnv-dur-fast) var(--cnv-ease),
              color var(--cnv-dur-fast) var(--cnv-ease),
              background-color var(--cnv-dur-fast) var(--cnv-ease);
}
.conv-suggest__chips > *:hover,
.conv-chip:hover {
  border-color: var(--cnv-accent);
  color: var(--cnv-accent-text);
  background: var(--cnv-accent-fade);
  text-decoration: none;
}

/* --- File rows --- */
.conv-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.conv-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-sm);
  box-shadow: var(--cnv-shadow-sm);
}
.conv-file__name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
}
.conv-file__size {
  flex: 0 0 auto;
  color: var(--cnv-text-faint);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.conv-file__remove {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--cnv-radius-sm);
  color: var(--cnv-text-faint);
  font-size: 1.1rem;
  line-height: 1;
  transition: background-color var(--cnv-dur-fast) var(--cnv-ease),
              color var(--cnv-dur-fast) var(--cnv-ease);
}
.conv-file__remove:hover {
  background: var(--cnv-danger-soft);
  color: var(--cnv-danger);
}

/* --- Options --- */
.conv-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.conv-opt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-sm);
}
.conv-opt__label {
  color: var(--cnv-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.conv-opt__input,
.conv-opt__select {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  background: var(--cnv-field);
  border: 1px solid var(--cnv-border-strong);
  border-radius: var(--cnv-radius-sm);
  color: var(--cnv-text);
  transition: border-color var(--cnv-dur-fast) var(--cnv-ease),
              box-shadow var(--cnv-dur-fast) var(--cnv-ease);
}
.conv-opt__input:focus,
.conv-opt__select:focus {
  outline: none;
  border-color: var(--cnv-accent);
  box-shadow: var(--cnv-focus-ring);
}
.conv-opt__input[type="color"] {
  padding: 4px;
  cursor: pointer;
}
.conv-opt__input[type="range"] {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--cnv-accent);
  cursor: pointer;
}
.conv-opt__input[type="range"]:focus {
  box-shadow: none;
  outline: 2px solid var(--cnv-accent);
  outline-offset: 4px;
}
.conv-opt__value {
  color: var(--cnv-accent-text);
  font-family: var(--cnv-font-mono);
  font-size: 0.82rem;
}
.conv-opt__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

/* checkbox row: label text left, control right */
.conv-opt--check {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.conv-opt--check .conv-opt__label { font-size: 0.88rem; }
.conv-opt__input[type="checkbox"] {
  width: 19px;
  height: 19px;
  min-height: 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--cnv-accent);
  cursor: pointer;
}

/* --- Actions --- */
.conv-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.conv-actions .conv-btn--lg { min-width: min(240px, 100%); }

/* --- Progress --- */
.conv-progress { margin-top: 20px; }
.conv-progress__bar {
  height: 8px;
  border-radius: var(--cnv-radius-pill);
  background: var(--cnv-hover);
  overflow: hidden;
}
.conv-progress__fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cnv-accent), #14b8a6);
  transition: width 220ms var(--cnv-ease);
}
.conv-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.conv-progress__label {
  color: var(--cnv-text-muted);
  font-size: 0.88rem;
}

/* --- Error --- */
.conv-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--cnv-danger-soft);
  border: 1px solid var(--cnv-danger-border);
  border-radius: var(--cnv-radius-sm);
  color: var(--cnv-danger);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

/* --- Results --- */
.conv-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.conv-result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cnv-surface);
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-sm);
  box-shadow: var(--cnv-shadow-sm);
}
.conv-result__name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 500;
}
.conv-result__size {
  flex: 0 0 auto;
  color: var(--cnv-text-faint);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.conv-result .conv-download {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.88rem;
}

/* OCR text output + its buttons */
.conv-ocr-text {
  flex-basis: 100%;
  min-height: 180px;
  margin-bottom: 4px;
  padding: 14px;
  background: var(--cnv-field);
  border: 1px solid var(--cnv-border-strong);
  border-radius: var(--cnv-radius-sm);
  color: var(--cnv-text);
  font-family: var(--cnv-font-mono);
  font-size: 0.85rem;
  line-height: 1.55;
  resize: vertical;
}
.conv-ocr-text:focus {
  outline: none;
  border-color: var(--cnv-accent);
  box-shadow: var(--cnv-focus-ring);
}
.conv-ocr-copy,
.conv-txt,
.conv-docx {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 8px;
  margin-right: 8px;
  padding: 7px 14px;
  border: 1px solid var(--cnv-border-strong);
  border-radius: var(--cnv-radius-sm);
  background: var(--cnv-surface);
  color: var(--cnv-text);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--cnv-dur-fast) var(--cnv-ease),
              color var(--cnv-dur-fast) var(--cnv-ease),
              background-color var(--cnv-dur-fast) var(--cnv-ease);
}
.conv-ocr-copy:hover,
.conv-txt:hover,
.conv-docx:hover {
  border-color: var(--cnv-accent);
  color: var(--cnv-accent-text);
  background: var(--cnv-accent-fade);
}

/* --- Data preview table (data converters) --- */
.conv-table-wrap {
  flex-basis: 100%;
  margin-top: 4px;
  overflow-x: auto;
  border: 1px solid var(--cnv-border);
  border-radius: var(--cnv-radius-sm);
  scrollbar-width: thin;
}
.conv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.conv-table th,
.conv-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--cnv-border);
  text-align: left;
  white-space: nowrap;
}
.conv-table thead th {
  background: var(--cnv-hover);
  font-weight: 600;
  position: sticky;
  top: 0;
}
.conv-table tbody tr:last-child td { border-bottom: 0; }
.conv-table tbody tr:nth-child(even) { background: var(--cnv-zebra); }
.conv-table-meta {
  flex-basis: 100%;
  margin-top: 8px;
  color: var(--cnv-text-faint);
  font-size: 0.8rem;
}

/* ------------------------------------------------------------
   17. MOTION PREFERENCES
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------------------------------------
   18. PRINT
   ------------------------------------------------------------ */
@media print {
  .site-header,
  .site-footer,
  .cnv-ad,
  .conv-app,
  .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ============================================================
   2026 BRAND REFINEMENT — premium product surface
   ============================================================ */
:root {
  --cnv-accent: #635bff;
  --cnv-accent-hover: #5147e5;
  --cnv-accent-text: #5147e5;
  --cnv-accent-soft: #eeecff;
  --cnv-accent-fade: #f8f7ff;
  --cnv-ring: rgba(99,91,255,.25);
  --cnv-bg: #f7f8fc;
  --cnv-bg-alt: #f1f3f9;
  --cnv-text: #101828;
  --cnv-text-muted: #475467;
  --cnv-border: #e4e7ec;
  --cnv-shadow-lg: 0 24px 70px -24px rgba(16,24,40,.28);
  --cnv-radius-lg: 24px;
}
body { background: radial-gradient(900px 420px at 50% -80px, rgba(99,91,255,.11), transparent 68%), var(--cnv-bg); }
.site-header { border-bottom-color: rgba(228,231,236,.75); box-shadow: 0 1px 0 rgba(16,24,40,.02); }
.site-header__inner { min-height: 72px; }
.site-logo { display:flex; align-items:center; gap:10px; color:var(--cnv-text); font-size:20px; font-weight:800; letter-spacing:-.045em; text-decoration:none!important; }
.site-logo__mark { width:34px; height:34px; display:grid; place-items:center; border-radius:10px; color:#fff; background:linear-gradient(135deg,#7c72ff,#5147e5); box-shadow:0 8px 18px rgba(99,91,255,.25); font-size:19px; }
.site-logo__tld { color:var(--cnv-accent); }
.site-nav__list a { color:#344054; font-weight:600; font-size:14px; padding:9px 10px; border-radius:10px; }
.site-nav__list a:hover { background:#f2f0ff; color:#5147e5; text-decoration:none; }
.site-lang__btn { border:1px solid var(--cnv-border); background:rgba(255,255,255,.75); border-radius:12px; padding:9px 12px; box-shadow:0 1px 2px rgba(16,24,40,.04); }
.cnv-hero { padding:clamp(58px,8vw,104px) 0 62px; position:relative; overflow:hidden; }
.cnv-hero::before,.cnv-hero::after { content:""; position:absolute; border-radius:999px; filter:blur(2px); pointer-events:none; }
.cnv-hero::before { width:420px;height:420px;left:-260px;top:-120px;background:rgba(46,211,183,.09); }
.cnv-hero::after { width:380px;height:380px;right:-220px;top:20px;background:rgba(99,91,255,.08); }
.cnv-hero .container { position:relative; z-index:1; }
.cnv-hero__title { max-width:850px; margin-inline:auto; font-size:clamp(40px,6vw,68px); line-height:1.02; letter-spacing:-.055em; text-align:center; font-weight:850; }
.cnv-hero__sub { max-width:690px; margin:18px auto 0; text-align:center; font-size:clamp(17px,2vw,20px); color:var(--cnv-text-muted); }
.cnv-hero__proof { display:flex; flex-wrap:wrap; justify-content:center; gap:9px; margin:20px auto 28px; }
.cnv-hero__proof span { background:rgba(255,255,255,.72); border:1px solid rgba(228,231,236,.9); backdrop-filter:blur(8px); border-radius:999px; padding:7px 11px; font-size:12px; font-weight:700; color:#475467; box-shadow:0 2px 7px rgba(16,24,40,.04); }
.conv-app { border:1px solid rgba(99,91,255,.15)!important; border-radius:28px!important; box-shadow:0 28px 80px -34px rgba(16,24,40,.38),0 8px 24px -14px rgba(99,91,255,.25)!important; background:rgba(255,255,255,.93)!important; backdrop-filter:blur(14px); }
.conv-dropzone { border:1.5px dashed #c9c5ff!important; border-radius:20px!important; background:linear-gradient(180deg,#fbfaff 0%,#fff 100%)!important; transition:.2s ease!important; }
.conv-dropzone:hover,.conv-dropzone.is-dragover { border-color:var(--cnv-accent)!important; background:#f7f5ff!important; transform:translateY(-1px); box-shadow:0 12px 30px -20px rgba(99,91,255,.55); }
.cnv-card { position:relative; border:1px solid var(--cnv-border); border-radius:18px; background:rgba(255,255,255,.9); box-shadow:0 2px 5px rgba(16,24,40,.025); transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; overflow:hidden; }
.cnv-card::after { content:"→"; position:absolute; right:18px; top:50%; transform:translateY(-50%); color:#98a2b3; font-weight:800; transition:.18s ease; }
.cnv-card:hover { transform:translateY(-3px); border-color:#c9c5ff; box-shadow:0 18px 38px -22px rgba(16,24,40,.28); text-decoration:none; }
.cnv-card:hover::after { right:15px; color:var(--cnv-accent); }
.cnv-card__title { padding-right:28px; font-weight:750; letter-spacing:-.018em; }
.cnv-section { padding-block:clamp(52px,7vw,82px); }
.cnv-section h2 { font-size:clamp(26px,3vw,36px); letter-spacing:-.04em; }
.cnv-h1 { margin-top:18px; font-size:clamp(36px,5vw,54px); letter-spacing:-.05em; }
.cnv-lead { max-width:780px; font-size:18px; line-height:1.7; color:var(--cnv-text-muted); }
.cnv-breadcrumb { margin-top:28px; }
.cnv-how li { border:1px solid var(--cnv-border); background:#fff; border-radius:18px; box-shadow:0 4px 14px -10px rgba(16,24,40,.18); }
.cnv-faq { border:1px solid var(--cnv-border); border-radius:16px; background:#fff; margin-bottom:10px; overflow:hidden; }
.cnv-faq summary { padding:18px 20px; font-weight:700; }
.cnv-faq p { padding:0 20px 20px; color:var(--cnv-text-muted); }
.site-footer { background:linear-gradient(180deg,#101828,#0b1220); }
@media (max-width:760px){.cnv-hero{padding-top:42px}.cnv-hero__title{font-size:40px}.conv-app{border-radius:20px!important}.site-logo__mark{width:31px;height:31px}}
@media (prefers-color-scheme:dark){
 :root{--cnv-accent:#8b83ff;--cnv-accent-hover:#9d96ff;--cnv-accent-text:#a8a2ff;--cnv-accent-soft:rgba(139,131,255,.16);--cnv-accent-fade:rgba(139,131,255,.06)}
 body{background:radial-gradient(900px 420px at 50% -80px,rgba(99,91,255,.13),transparent 68%),var(--cnv-bg)}
 .site-nav__list a{color:#cbd5e1}.site-nav__list a:hover{background:rgba(139,131,255,.1);color:#c4bfff}.site-lang__btn,.cnv-hero__proof span,.cnv-card,.cnv-how li,.cnv-faq{background:rgba(19,28,46,.92)}
 .conv-app{background:rgba(19,28,46,.95)!important}.conv-dropzone{background:linear-gradient(180deg,rgba(99,91,255,.08),rgba(13,21,36,.9))!important;border-color:#514a9c!important}
}

/* v1.1 UX polish: searchable tool hubs + structured responsive footer */
.cnv-tool-filter{position:relative;max-width:620px;margin:26px 0 24px}.cnv-tool-filter input{width:100%;min-height:52px;padding:0 18px 0 48px;border:1px solid var(--cnv-border);border-radius:16px;background:var(--cnv-surface);color:var(--cnv-text);font:inherit;box-shadow:0 8px 24px rgba(16,24,40,.05);outline:none}.cnv-tool-filter input:focus{border-color:var(--cnv-accent);box-shadow:0 0 0 4px var(--cnv-accent-fade)}.cnv-tool-filter__icon{position:absolute;left:17px;top:50%;transform:translateY(-50%);font-size:24px;color:var(--cnv-text-muted);pointer-events:none}.cnv-tool-filter__empty{padding:28px;border:1px dashed var(--cnv-border);border-radius:18px;text-align:center;color:var(--cnv-text-muted)}.cnv-card[hidden]{display:none!important}
.site-footer{margin-top:clamp(56px,8vw,96px);background:linear-gradient(180deg,#101828 0%,#0b1220 100%);color:#f8fafc;border-top:1px solid rgba(255,255,255,.08)}.site-footer__top{display:grid;grid-template-columns:minmax(260px,1.05fr) minmax(420px,1.4fr);gap:clamp(42px,7vw,92px);padding:clamp(48px,7vw,76px) 0 38px}.site-footer__brand{min-width:0}.site-footer__tagline{max-width:460px;margin:18px 0 0;color:#aeb9cc;line-height:1.7}.site-footer__trust{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}.site-footer__trust span{display:inline-flex;align-items:center;min-height:34px;padding:7px 11px;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:rgba(255,255,255,.045);color:#d9e2ef;font-size:.78rem;font-weight:650}.site-footer__cols{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,64px)}.site-footer__col h2{margin:0 0 16px;color:#fff;font-size:.88rem;font-weight:750;letter-spacing:.02em}.site-footer__col ul{display:grid;gap:3px;margin:0;padding:0;list-style:none}.site-footer__col a{display:inline-flex;align-items:center;min-height:36px;padding:5px 0;color:#aeb9cc;text-decoration:none;transition:color .18s ease,transform .18s ease}.site-footer__col a:hover,.site-footer__col a:focus-visible{color:#fff;transform:translateX(2px)}.site-footer__languages{display:flex;align-items:center;gap:18px;padding:20px 0;border-top:1px solid rgba(255,255,255,.08)}.site-footer__languages-label{flex:0 0 auto;color:#7f8ca3;font-size:.78rem;font-weight:750;text-transform:uppercase;letter-spacing:.08em}.site-footer__language-list{display:flex;flex-wrap:wrap;gap:8px}.site-footer__language-list a{display:inline-flex;align-items:center;min-height:36px;padding:6px 11px;border-radius:10px;color:#b9c4d4;text-decoration:none}.site-footer__language-list a:hover,.site-footer__language-list a:focus-visible,.site-footer__language-list a[aria-current="page"]{background:rgba(255,255,255,.07);color:#fff}.site-footer__bottom{padding:18px 0;border-top:1px solid rgba(255,255,255,.08);color:#7f8ca3}.site-footer__bottom-inner{display:flex;justify-content:space-between;align-items:center;gap:18px}.site-footer__bottom p{margin:0}.site-footer__bottom a{color:#aeb9cc;text-decoration:none}.site-footer__bottom a:hover{color:#fff}
@media(max-width:900px){.site-footer__top{grid-template-columns:1fr;gap:38px}.site-footer__cols{max-width:620px}.site-footer__tagline{max-width:600px}}
@media(max-width:600px){.site-footer{margin-top:52px}.site-footer__top{padding:42px 0 28px;gap:34px}.site-footer__cols{grid-template-columns:1fr;gap:30px}.site-footer__languages{align-items:flex-start;flex-direction:column;gap:10px}.site-footer__language-list{display:grid;grid-template-columns:1fr 1fr;width:100%}.site-footer__language-list a{min-height:44px;padding:9px 10px;background:rgba(255,255,255,.035)}.site-footer__bottom-inner{align-items:flex-start;flex-direction:column;gap:8px}.site-footer__trust{display:grid;grid-template-columns:1fr}.site-footer__trust span{min-height:40px}.cnv-tool-filter{margin-top:20px}.cnv-tool-filter input{min-height:54px;font-size:16px}.cnv-grid{grid-template-columns:1fr}}
@media(max-width:380px){.site-footer__language-list{grid-template-columns:1fr}}
