body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 3rem;
  color: #48688a;
  margin-bottom: 10px;
}
h1 + p, h1 + strong {
  font-size: 1.3rem;
  color: #555;
}
.center {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
h1, h2, h3 {
  font-weight: 700;
  color: #1f1f1f;
}
a {
  color: #48688a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #3b26a4;
}
button, .button-primary {
  background-color: #48688a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.button-primary:hover {
  background-color: #4526a3;
}

a.btn, button.btn { 
  border-radius: 5px;
}

.ui-box {
  background-color: #fdfdff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease;
}
.ui-box:hover {
  transform: translateY(-5px);
}
.ui-counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #48688a;
  margin-bottom: 8px;
}
#temoignages .columns {
  text-align: center;
  margin-top: 40px;
}
#temoignages blockquote {
  font-style: italic;
  color: #555;
}
#team .columns {
  text-align: center;
}
#team img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100px;
  margin-bottom: 10px;
}
.langswitcher {
  margin-left: auto;
  font-weight: bold;
}
.langswitcher select {
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  color: #48688a;
  font-size: 1rem;
}
.blog-list-item {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.blog-list-item h2 {
  color: #48688a;
  margin-bottom: 10px;
}
.blog-list-item p {
  font-size: 1rem;
  color: #555;
}
.navbar {
  background: #ffffff;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.navbar a:hover {
  background: #f5f5f5;
  color: #48688a;
}
.navbar a.active {
  color: #48688a;
  font-weight: 600;
}
.lang-dd {
  margin-left: auto;
  position: relative;
}
.lang-btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: #333;
}
.lang-dd:hover .lang-btn {
  background: #f5f5f7;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 100%;           
  right: 0;
  margin-top: 6px;     
  z-index: 1000;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.lang-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -6px;           
  height: 6px;         
}

.lang-dd:hover .lang-menu {
  display: block;
}
.lang-menu .langswitcher {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.lang-menu .langswitcher li {
  margin: 0;
}
.lang-menu .langswitcher a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}
.lang-menu .langswitcher a:hover {
  background: #f5f5f7;
  color: #48688a;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.team-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  //border-color: #e9e4ff;
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
}
.team-card:hover img { transform: translateY(-2px); box-shadow: none; }

.team-card h3 {
  margin: 8px 0 4px;
}
.team-role {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 0.95rem;
  color: #444;
}
.page-thankyou {
  max-width: 700px;
  margin: 4rem auto;
  padding: 3rem;
  background: #fdfcff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}
.page-thankyou h1,
.page-thankyou h2 {
  color: #6b46c1;
  margin-bottom: 1rem;
}
.page-thankyou p {
  color: #555;
  font-size: 1.1rem;
}

.page-thankyou .btn-home {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.4rem;
  background: #6b46c1;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.page-thankyou .btn-home:hover {
  background: #55349b;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease-in-out;
  background: #fafafa;
}
form input:focus,
form textarea:focus {
  border-color: #7d4efc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 78, 252, 0.15);
}
form textarea {
  min-height: 120px;
  resize: vertical;
}
form button,
form input[type="submit"] {
  background: #7d4efc;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  margin-top: 10px;
}
form button:hover,
form input[type="submit"]:hover {
  background: #6936f5;
}
form .form-errors {
  color: #d93025;
  font-size: 13px;
  margin-top: 4px;
}
form .message {
  padding: 10px;
  background: #e6ffed;
  border: 1px solid #b2f5c0;
  color: #1a7f37;
  border-radius: 6px;
  margin-top: 15px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.faq-container .faq-card {
  margin-bottom:5px;
}

.faq-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  overflow: hidden;
}
.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.faq-card > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: #48688a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-card > summary::-webkit-details-marker { 
  display: none; 
}
.faq-card > summary::after {
  content: "+";
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .2s ease, opacity .2s ease;
  opacity: .7;
}
.faq-card[open] {
  border-color: #e7e0ff;
  box-shadow: 0 8px 24px rgba(95,61,196,0.08);
}
.faq-card[open] > summary::after {
  content: "–";
  transform: translateY(-1px);
  opacity: 1;
}
.faq-content {
  padding: 0 20px 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .22s ease, padding-top .2s ease, padding-bottom .2s ease;
}
.faq-card[open] .faq-content {
  padding-top: 6px;
  padding-bottom: 18px;
  max-height: 360px;
  opacity: 1;
}
.faq-content p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}
.page-title {
  text-align: center;
  margin-bottom: 40px;
}
.content-title h1,
.page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #48688a;
  margin-bottom: 8px;
}
.page-subtitle {
  font-size: 1rem;
  color: #666;
}
.process {
  margin-top: 8px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.process-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  //border-color: #e9e4ff;
}
.step-badge {
  width: 100%;
  //height: 40px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3d58c4;
  /*background: #f2f5ff80;*/
  border: none;
  margin-bottom: 8px;
}

.step-badge .inner-badge {
	background: white;
	width: 26px;
	text-align: center;
	border-radius: 999px;
}

.process-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 6px 0 8px;
}
.process-card p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.testi-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-color: #e9e4ff;
}
.testi-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px #f6f2ff;
}
.testi-card blockquote {
  margin: 0 0 14px;
  color: #333;
  line-height: 1.55;
  font-size: 0.98rem;
  position: relative;
  padding-left: 22px;
}
.testi-card blockquote:before {
  content: "“";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2rem;
  line-height: 1;
  color: #48688a;
  opacity: .25;
}
.testi-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.testi-name {
  font-weight: 700;
  color: #1f1f1f;
}
.testi-role {
  color: #48688a;
  font-weight: 600;
  background: #f6f2ff;
  border: 1px solid #e9e4ff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}
:root{
  --violet:#5f3dc4; --violet-2:#7d4efc; --violet-3:#a78bfa;
  --text:#111827; --muted:#666; --bg-soft:#f6f2ff;
}
.hero{
  position: relative;
  padding: 64px 0 48px;
  //background: radial-gradient(1200px 420px at 70% 10%, rgba(125,78,252,.15), transparent 60%), #fff;
  background: radial-gradient(1200px 420px at 70% 10%, rgba(78, 162, 252, 0.15), transparent 60%), #fff;
  align-items: start;
}
.hero-wrap{
  max-width: 1150px; margin: 0 auto; padding: 0 20px;
  display: grid; gap: 36px; grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
@media (max-width: 980px){ .hero-wrap{ grid-template-columns: 1fr; } }
.hero h1{
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
}
.accent{
  background: #8EB3FA;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}
.hero-lead{
  font-size: 1.05rem; color: #5b616e; max-width: 640px; margin-bottom: 24px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 18px; border-radius: 12px; font-weight:700; text-decoration:none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: none;
}
.btn-primary{
  color:#fff; background: #3498db;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}
//.btn-primary:hover{ transform: translateY(-2px); box-shadow: 4px 4px 2px rgba(0,0,0,0.25); }
.btn-ghost{
  color: var(--violet); background: #fff; border: 2px solid #e6e1ff;
}
.btn-ghost:hover{ color:#fff; background: var(--violet); border-color: var(--violet); }
.arr{ display:inline-block; transform: translateX(2px); }
.hero-visual{ display:flex; justify-content:center; }
.dash{
  width:min(580px,100%); border-radius: 28px;
  background: radial-gradient(600px 200px at 40% -10%, rgba(125,78,252,.25), rgba(214,197,255,.2) 60%, transparent 70%),
              linear-gradient(180deg, #efe9ff, #f7f3ff 50%, #f9f7ff);
  box-shadow: 0 28px 60px rgba(125,78,252,.15), 0 10px 20px rgba(0,0,0,.06);
  padding: 20px;
}
.dash-inner{
  background:#fff; border-radius: 18px; padding: 22px; box-shadow: 0 8px 20px rgba(0,0,0,.03) inset;
}
.dash-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.dash-top h4{ margin:0; font-size:1rem; color:#1f2937; font-weight:700; }
.dots i{ width:10px; height:10px; border-radius:50%; display:inline-block; margin-left:8px; }
.dots i:nth-child(1){ background:#ff5b5b; } .dots i:nth-child(2){ background:#ffd451; } .dots i:nth-child(3){ background:#39e27a; }
.bars{ display:grid; gap:10px; margin:12px 0 18px; }
.bar{ height:12px; border-radius:10px; background: linear-gradient(90deg, #d9c7ff, #ede6ff); opacity:.95; }
.bar.b1{ width:92%; } .bar.b2{ width:68%; } .bar.b3{ width:88%; }
.stats{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.stat{
  background: linear-gradient(180deg, #f5efff, #faf8ff);
  border: 1px solid #efe8ff;
  border-radius: 14px; padding: 16px; text-align:left;
}
.big{ font-weight:800; font-size: 1.4rem; color: var(--violet); margin-bottom:4px; }
.label{ color:#6b7280;   }
.features { padding: 24px 0 10px; }
.section-head { text-align: center; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.4rem); margin: 0 0 6px; color: #111827; }
.section-head p { color: #586174; max-width: 820px; margin: 0 auto; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feat-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

@media (max-width: 906px) {
  .feat-grid-3 {
	  display: flex;
	  flex-direction: column;
  }
}
@media (max-width: 682px) {
  .process-grid {
  	display: flex;
	  flex-direction: column;
  }
}

#imgSection img {
  width: 50%;
  height: auto;
}

@media (max-width: 1568px) {
  #imgSection img {
	  width: 75% !important;
  }
}

@media (max-width: 978px) {
  #imgSection img {
	  width: 100% !important;
  }
}

.feat-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #eee; border-radius: 18px; padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  border: none;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat-card:hover { 
  transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.08); 
  //border-color: #e9e4ff;
}
.feat-ico {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; box-shadow: inset 0 6px 16px rgba(0,0,0,.06);
}
.feat-ico img { width: 28px; height: 28px; display:block; }
.g-blue   { background: #2ea1ff; }
.g-teal   { background: #0dcf9b; }
.g-purple { background: #a78bfa; }
.g-pink   { background: #ff7ad9; }
.g-orange { background: #ffb86b; }
.g-green  { background: #7bd88f; }
.feat-body h3 { margin: 0; font-size: 1.05rem; color: #0f172a; font-weight: 700; }
.func { padding: 8px 0 0; }
.func-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.func-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.func-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  border-color: #e9e4ff;
}
.func-ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: inset 0 6px 16px rgba(0,0,0,.06);
  margin-bottom: 14px;
}
.func-ico img { width: 28px; height: 28px; display:block; }
.func-card h3 {
  margin: 2px 0 10px;
  font-size: 1.08rem;
  color: #0f172a;
}
.func-list {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 6px;
}
.func-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #4b5563; line-height: 1.55; font-size: .95rem;
}
.func-list li::before {
  content: "✓";
  font-weight: 800;
  color: #48688a;
  line-height: 1;
  transform: translateY(1px);
}
:root { --nav-offset: 150px; }           

#blog-hero { 
  padding-top: var(--nav-offset);
}


.fx { padding-top: 8px; }

.fx-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  column-gap: 28px;
  row-gap: 22px;
  position: relative;
}


.fx-list::before { content: none; }

.fx-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 6px 0;
  background: transparent;
  border: 0;
  transition: background .2s ease;
}

.fx-item:hover { background: #fcfbff; }

.fx-ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: inset 0 6px 16px rgba(0,0,0,.06);
  flex: 0 0 64px;
  transition: transform .18s ease, box-shadow .2s ease;
}

.fx-ico img { width: 28px; height: 28px; display: block; filter: brightness(0) invert(1); }
.fx-item:hover .fx-ico { transform: translateY(-2px); box-shadow: inset 0 8px 18px rgba(0,0,0,.08); }

.fx-body h3 {
  margin: 4px 0 8px;
  font-size: 1.08rem;
  color: #0f172a;
}

.fx-bullets {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 6px;
}
.fx-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #4b5563; line-height: 1.55; font-size: .95rem;
}
.fx-bullets li::before {
  content: "✓";
  font-weight: 800;
  color: #48688a;
  line-height: 1;
  transform: translateY(1px);
}


.g-blue   { background: linear-gradient(135deg, #2ea1ff, #0077ff); }
.g-teal   { background: linear-gradient(135deg, #0dcf9b, #00b38f); }
.g-purple { background: linear-gradient(135deg, #a78bfa, #7d4efc); }
.g-pink   { background: linear-gradient(135deg, #ff7ad9, #d946ef); }
.g-orange { background: linear-gradient(135deg, #ffb86b, #ff7a00); }
.g-green  { background: linear-gradient(135deg, #7bd88f, #22c55e); }
.g-mem-blue { background: #8eb3fa; }
.g-mem-primary { background: #48688a; }


@media (max-width: 980px) {
  .fx-list { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}
@media (max-width: 600px) {
  .fx-list { grid-template-columns: 1fr; }
}


.cc-window {
  font-family: 'Inter', system-ui, sans-serif;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}


.cc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 6px;
}
.cc-message {
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.cc-header::before {
  content: "";
  width: 120px;
  height: 28px;
  background: url('/user/themes/quark/images/logo.png') center / contain no-repeat;
  flex: 0 0 120px;
}

.kpi { padding-top: 6px; }
.kpi-head { text-align: center; margin-bottom: 18px; }
.kpi-head h3 { margin: 0 0 6px; font-size: 1.2rem; color: #111827; }
.kpi-head p { margin: 0; color: #586174; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px;
}


.ui-counter { font-size: clamp(2rem, 1.2rem + 2.2vw, 2.6rem); }
.kpi-label { color: #4b5563; }


@media (max-width: 980px) {
  .kpi-grid { grid-template-columns: repeat(2, minmax(200px, 1fr)); }
}


.header-buttons {
  display:flex;
  gap:15px;
  justify-content:center;
}

.header-buttons a {
  width:fit-content;
}

@media (max-width: 560px) {
  .kpi-grid { grid-template-columns: 1fr; }
  
  .header-buttons {
    flex-direction:column;
    align-items:center;
  }
  
  a.btn {
	  font-size: 15px;
	  padding: 20px 24px;
  }
  
  .feat-ico {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
  
  .feat-ico img {
    width: 24px !important;
  }
  
  .feat-body h3 {
    font-size:14px;
  }
}

.overlay {
  background: #fff;
}

.mobile-menu .button_container.active .top {
  background-color:#3085EE;
}

.mobile-menu .button_container.active .bottom {
  background-color:#3085EE;
}


@media (max-width: 560px) {
  .kpi-grid { grid-template-columns: 1fr; }
}


.mobile-container .navbar .lang-dd {
	margin: auto;
}

.mobile-container .navbar .container {
    flex-direction: column;
}

.navbar .langswitcher {
    transform: inherit;
}




.form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-color: #e9e4ff;
}

.label.label-rounded {
    padding: 4px 16px;
}
body.header-fixed.header-animated #header.scrolled,
#header {height:auto;}

#header .navbar {padding: 0}

.cc-btn, .cc-highlight .cc-btn.layout-1 {
    padding: 0.25rem .4rem;
}

a#tcb-save-settings-btn:hover {
    background: #e1edfd;
    border-color: #227ded;
    text-decoration: none;
}

.tcb-catTabs input[name=sections]:checked+label {
    background: #92c738;
    color: #fff;
}

.tcb-catTabs section label {
    color: #5a5f69; background:transparent
}
.feat-body h3{
    word-break: break-word;
    hyphens: auto;
}

.container.grid-xl {
  max-width: 90%;
}

.text-center {
text-align:center;
}

.overlay.open {
  opacity:1;
  background:#ffffff;
  z-index:1000; 
}

.cc-revoke-from-plugin {
  z-index:1;
}

.centered-block {
  max-width: 700px;        /* largeur confortable */
  margin: 80px auto 40px;  /* centre horizontal + espace vertical */
  text-align: center;
  padding: 20px;
}

.cta {
  margin-top: 30px;
}

.contact {
  text-align: center;
  margin-top: 20px;
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.container-flex.justify-content-center {
  justify-content: center;
}

/* Base: 1 colonne par défaut */
.item {
  flex: 0 0 100%;
  box-sizing: border-box;
}

/* Utilitaire générique */
[class*="item-"] {
  box-sizing: border-box;
}

/* SM ≥ 576px */
@media (min-width: 576px) {
  .item-sm-12 { flex: 0 0 100%; }
  .item-sm-6  { flex: 0 0 calc((100% - 20px) / 2); }
  .item-sm-4  { flex: 0 0 calc((100% - 2 * 20px) / 3); }
  .item-sm-3  { flex: 0 0 calc((100% - 3 * 20px) / 4); }
  .item-sm-2  { flex: 0 0 calc((100% - 5 * 20px) / 6); }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
  .item-md-12 { flex: 0 0 100%; }
  .item-md-6  { flex: 0 0 calc((100% - 20px) / 2); }
  .item-md-4  { flex: 0 0 calc((100% - 2 * 20px) / 3); }
  .item-md-3  { flex: 0 0 calc((100% - 3 * 20px) / 4); }
  .item-md-2  { flex: 0 0 calc((100% - 5 * 20px) / 6); }
}

/* LG ≥ 980px */
@media (min-width: 980px) {
  .item-lg-12 { flex: 0 0 100%; }
  .item-lg-6  { flex: 0 0 calc((100% - 20px) / 2); }
  .item-lg-4  { flex: 0 0 calc((100% - 2 * 20px) / 3); }
  .item-lg-3  { flex: 0 0 calc((100% - 3 * 20px) / 4); }
  .item-lg-2  { flex: 0 0 calc((100% - 5 * 20px) / 6); }
}

/* XL ≥ 1200px */
@media (min-width: 1200px) {
  .item-xl-12 { flex: 0 0 100%; }
  .item-xl-6  { flex: 0 0 calc((100% - 20px) / 2); }
  .item-xl-4  { flex: 0 0 calc((100% - 2 * 20px) / 3); }
  .item-xl-3  { flex: 0 0 calc((100% - 3 * 20px) / 4); }
  .item-xl-2  { flex: 0 0 calc((100% - 5 * 20px) / 6); }
}

/* XXL ≥ 1500px */
@media (min-width: 1700px) {
  .item-xxl-12 { flex: 0 0 100%; }
  .item-xxl-6  { flex: 0 0 calc((100% - 20px) / 2); }
  .item-xxl-4  { flex: 0 0 calc((100% - 2 * 20px) / 3); }
  .item-xxl-3  { flex: 0 0 calc((100% - 3 * 20px) / 4); }
  .item-xxl-2  { flex: 0 0 calc((100% - 5 * 20px) / 6); }
}
