/* ==========================================================================
   IC-soft — Design System v2 (2026)
   Tokens + componente. Dark/light prin [data-theme] pe <html>.
   ========================================================================== */

:root {
  /* Brand — culorile logo-ului IC-soft */
  --brand-violet: #6a2fd1;
  --brand-cyan: #45b7e8;
  --brand-teal: #40c9dd;
  --grad-accent: linear-gradient(125deg, #6a2fd1 0%, #4b7ed9 55%, #40c9dd 100%);

  /* Light theme */
  --bg: #f6f7fb;
  --bg-raise: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.72);
  --ink: #14162a;
  --ink-2: #4a4e6a;
  --ink-3: #7a7e99;
  --line: rgba(20, 22, 42, 0.1);
  --line-strong: rgba(20, 22, 42, 0.18);
  --accent: #5c2ec9;
  --accent-2: #1385c9;
  --accent-ink: #ffffff;
  --card-shadow: 0 1px 2px rgba(20, 22, 42, 0.04), 0 12px 32px -12px rgba(20, 22, 42, 0.12);
  --card-shadow-hover: 0 2px 4px rgba(20, 22, 42, 0.06), 0 24px 48px -12px rgba(106, 47, 209, 0.18);
  --glow: none;
  --hero-veil: radial-gradient(80% 60% at 50% 0%, rgba(106, 47, 209, 0.08), transparent 70%);
  --code-bg: #eceef6;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-h: 74px;

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0a0c15;
  --bg-raise: #10131f;
  --bg-glass: rgba(13, 16, 28, 0.72);
  --ink: #eef0fa;
  --ink-2: #a7abc6;
  --ink-3: #6f7492;
  --line: rgba(238, 240, 250, 0.08);
  --line-strong: rgba(238, 240, 250, 0.16);
  --accent: #9a78ff;
  --accent-2: #45c6f0;
  --accent-ink: #ffffff;
  --card-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 16px 40px -16px rgba(0, 0, 0, 0.6);
  --card-shadow-hover: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 24px 56px -16px rgba(106, 47, 209, 0.4);
  --glow: 0 0 40px rgba(106, 47, 209, 0.25);
  --hero-veil: radial-gradient(80% 60% at 50% 0%, rgba(106, 47, 209, 0.18), transparent 70%);
  --code-bg: #171b2c;
  color-scheme: dark;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.35s ease, color 0.35s ease;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.4vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 19px; }
p { margin: 0 0 1em; text-wrap: pretty; }

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

/* ---------- Utilities ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent-2); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  min-height: 48px;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(106, 47, 209, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(106, 47, 209, 0.6); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none !important; }
.logo img, .logo .logo-mark { height: 38px; width: auto; display: block; }
.logo .logo-word { height: 26px; width: auto; display: block; }
.footer-grid .logo .logo-mark { height: 34px; }
.footer-grid .logo .logo-word { height: 23px; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.02em; line-height: 1; color: var(--accent-2); }
.logo-text em { font-style: normal; color: var(--accent); }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15.5px;
  text-decoration: none !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--line); }
.main-nav a.active { color: var(--accent); background: color-mix(in oklab, var(--accent) 12%, transparent); }

.header-utils { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
}
.lang-switch a {
  padding: 9px 13px;
  color: var(--ink-3);
  text-decoration: none !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-switch a.active { color: var(--accent-ink); background: var(--accent); }
.lang-switch a:not(.active):hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--hero-veil);
  pointer-events: none;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.85;
}
.hero .container { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
  background: var(--bg-glass);
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-cyan); box-shadow: 0 0 10px var(--brand-cyan); }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin: 0 auto 36px; }
.cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-caps {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 48px;
}
.hero-caps span {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: var(--bg-glass);
  padding: 7px 14px; border-radius: 999px;
}

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); border-color: color-mix(in oklab, var(--accent) 35%, var(--line)); }
a.card { color: inherit; text-decoration: none !important; display: block; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  margin-bottom: 18px;
}
.card-icon svg { width: 23px; height: 23px; }
.card h3, .card h4 { margin-bottom: 8px; }
.card p { color: var(--ink-2); margin: 0; font-size: 15.5px; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; font-weight: 600; font-size: 14.5px; color: var(--accent);
}
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* numbered steps */
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-2);
  display: block;
  margin-bottom: 12px;
}

/* ---------- Split sections (service detail) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  width: 100%;
  object-fit: cover;
}
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.checklist svg { width: 19px; height: 19px; color: var(--accent-2); flex-shrink: 0; margin-top: 4px; }

/* ---------- Portfolio ---------- */
.project-card { overflow: hidden; padding: 0; }
.project-media { aspect-ratio: 16 / 9; background: var(--code-bg); position: relative; }
.project-media video { width: 100%; height: 100%; object-fit: cover; }
.project-media .media-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-3);
  background: repeating-linear-gradient(-45deg, transparent 0 14px, var(--line) 14px 15px);
}
.project-body { padding: 26px 28px 30px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.project-tags span {
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  border-radius: 999px; padding: 5px 12px;
}

/* ---------- Blog ---------- */
.article-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.article-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.article-card .article-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.article-cat {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 10px;
}
.article-card h3 { font-size: 20px; }
.article-card p { flex: 1; }
.featured-card { display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; padding: 0; }
.featured-card img { height: 100%; object-fit: cover; }
.featured-card .article-body { padding: clamp(26px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }

/* Article page */
.article-hero { padding: clamp(48px, 6vw, 80px) 0 0; }
.article-hero .container { max-width: 800px; }
.article-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13.5px; color: var(--ink-3);
  margin-bottom: 18px;
}
.article-figure { max-width: 980px; margin: clamp(32px, 5vw, 48px) auto 0; padding: 0 24px; }
.article-figure img { border-radius: var(--radius-lg); border: 1px solid var(--line); width: 100%; }
.article-body-text { max-width: 720px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) 24px; }
.article-body-text h2 { font-size: clamp(23px, 2.6vw, 30px); margin-top: 1.6em; }
.article-body-text p { color: var(--ink-2); font-size: 17.5px; line-height: 1.75; }
.article-body-text li { color: var(--ink-2); margin-bottom: 10px; line-height: 1.7; }
.article-body-text blockquote {
  margin: 2em 0; padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--bg-raise);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-size: 20px; line-height: 1.5;
  color: var(--ink);
}
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; margin-bottom: 24px; }
.back-link svg { width: 15px; height: 15px; }
.draft-banner {
  background: color-mix(in oklab, #f59e0b 15%, transparent);
  border: 1px solid color-mix(in oklab, #f59e0b 40%, transparent);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: var(--font-mono); font-size: 13.5px;
  margin-bottom: 28px;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.pagination button {
  min-width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink-2);
  font-family: var(--font-mono); font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pagination button:hover { border-color: var(--accent); color: var(--accent); }
.pagination button.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.hidden { display: none !important; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--ink-2); font-size: 15.5px; }
.faq-item .faq-a p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-raise);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 100%, rgba(106, 47, 209, 0.14), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; max-width: 760px; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .card-icon { margin: 0; width: 44px; height: 44px; flex-shrink: 0; }
.contact-item strong { display: block; font-family: var(--font-display); margin-bottom: 2px; }
.contact-item a { font-size: 16.5px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
#form-status { margin-top: 16px; font-weight: 600; display: none; padding: 13px 18px; border-radius: 11px; font-size: 15px; }
#form-status.success { display: block; background: color-mix(in oklab, #22c55e 14%, transparent); color: #16a34a; }
#form-status.error { display: block; background: color-mix(in oklab, #ef4444 14%, transparent); color: #ef4444; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 36px;
  margin-top: clamp(48px, 7vw, 96px);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-grid .logo { margin-bottom: 16px; }
.footer-grid .logo img { height: 34px; }
.footer-grid .logo-text { font-size: 19px; }
.footer-grid p { color: var(--ink-3); font-size: 15px; max-width: 34ch; }
.footer-col h4 { font-size: 15px; font-family: var(--font-mono); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-2); font-size: 15.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--ink-3); font-size: 14px;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg-raise);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 14px; font-size: 17px; white-space: normal; }
  .nav-toggle { display: inline-flex; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .featured-card { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .logo img, .logo .logo-mark { height: 31px; }
  .logo .logo-word { height: 21px; }
  .logo-text { font-size: 18px; }
  .header-utils { gap: 8px; }
  .theme-toggle { width: 42px; height: 42px; }
  .nav-toggle { width: 42px; height: 42px; }
  #hero-canvas { opacity: 0.55; }
  .hero { padding-top: 64px; }
  .card { padding: 24px 20px; }
  .project-body { padding: 20px 20px 24px; }
  .article-card .article-body { padding: 20px 18px 24px; }
  .article-body-text p { font-size: 16.5px; }
  .faq-item summary { padding: 17px 18px; font-size: 16px; }
  .faq-item .faq-a { padding: 0 18px 18px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .hero-caps { display: none; }
  .header-utils .lang-switch a { padding: 12px 12px; }
}
