/*
Theme Name: iSerwer Child
Theme URI: https://iserwer.pl
Description: Motyw potomny Divi dla iSerwer.pl. Zawiera design system (kolory, typografię, komponenty) oraz globalny nagłówek i stopkę renderowane 1:1 z makietą. Buduj treść stron modułami Divi, korzystając z klas .is-*.
Author: WOH GROUP LTD
Author URI: https://woh.group
Template: Divi
Version: 1.0.13
Text Domain: iserwer-child
*/

/* ============================================================
   1. TOKENY (zmienne)
   ============================================================ */
:root {
  --is-bg-deep: #0B0F17;
  --is-bg-alt: #0E1524;
  --is-bg-card: #111C2E;
  --is-bg-darkest: #070C14;
  --is-bg-light: #F7F8FA;

  --is-blue: #4D7CFE;
  --is-teal: #31E6C1;
  --is-violet: #806BFF;

  --is-grad: linear-gradient(135deg, #4D7CFE, #31E6C1);
  --is-grad-text: linear-gradient(90deg, #4D7CFE, #31E6C1);

  --is-text: #ffffff;
  --is-text-muted: rgba(255,255,255,.55);
  --is-text-dim: rgba(255,255,255,.4);
  --is-border: rgba(255,255,255,.07);
  --is-border-strong: rgba(255,255,255,.1);

  --is-ok: #31E6C1;
  --is-warn: #FEBC2E;
  --is-err: #FF5757;

  --is-font-head: 'Space Grotesk', sans-serif;
  --is-font-body: 'Inter', sans-serif;

  --is-container: 1280px;
  --is-nav-h: 72px;
}

/* ============================================================
   2. KEYFRAMES
   ============================================================ */
@keyframes is-dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
@keyframes is-woh-breathe { 0%,100%{opacity:.38} 50%{opacity:.55;filter:drop-shadow(0 0 8px rgba(245,212,41,.18))} }

/* ============================================================
   3. NAGŁÓWEK (Global Header)
   ============================================================ */
.is-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  height: var(--is-nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(11,15,23,.82);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease;
  box-sizing: border-box;
}
.is-nav.is-scrolled { background: rgba(11,15,23,.97); }

.is-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.is-logo__mark {
  width: 34px; height: 34px; border-radius: 8px; background: var(--is-grad);
  display: flex; align-items: center; justify-content: center;
}
.is-logo__text {
  font-family: var(--is-font-head); font-size: 19px; font-weight: 700;
  color: #fff; letter-spacing: -.3px;
}
.is-logo__text span { color: var(--is-blue); }

.is-nav__menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.is-nav__menu li { margin: 0; padding: 0; }
.is-nav__menu a {
  font-family: var(--is-font-body); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s;
}
.is-nav__menu a:hover { color: #fff; }
.is-nav__menu .current-menu-item > a,
.is-nav__menu .is-active > a,
.is-nav__menu a.is-active { color: var(--is-blue); font-weight: 600; }

.is-nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.is-nav__status { display: flex; align-items: center; gap: 6px; text-decoration: none; }
.is-nav__status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--is-teal); animation: is-dot-pulse 2s ease infinite; }
.is-nav__status-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.45); font-family: var(--is-font-body); }

/* ============================================================
   4. PRZYCISKI
   ============================================================ */
.is-btn {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--is-font-head); font-weight: 600; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s, background .2s;
}
.is-btn--primary {
  background: var(--is-grad); color: #fff;
  padding: 9px 20px; border-radius: 8px; font-size: 13px;
}
.is-btn--primary:hover { opacity: .88; transform: translateY(-1px); }
.is-btn--lg { padding: 14px 32px; border-radius: 10px; font-size: 16px; }
.is-btn--lg:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(77,124,254,.4); }
.is-btn--ghost {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #fff; padding: 13px 26px; border-radius: 10px; font-size: 15px; font-weight: 500;
}
.is-btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   5. STOPKA (Global Footer)
   ============================================================ */
.is-footer { background: var(--is-bg-darkest); border-top: 1px solid rgba(255,255,255,.06); padding: 72px 0 0; }
.is-footer__inner { max-width: var(--is-container); margin: 0 auto; padding: 0 48px; box-sizing: border-box; }
.is-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.is-footer__brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.is-footer__brand-mark { width: 32px; height: 32px; border-radius: 7px; background: var(--is-grad); display: flex; align-items: center; justify-content: center; }
.is-footer__brand-name { font-family: var(--is-font-head); font-size: 18px; font-weight: 700; color: #fff; }
.is-footer__brand-name span { color: var(--is-blue); }
.is-footer__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.4); font-family: var(--is-font-body); max-width: 280px; margin: 0 0 24px; }
.is-footer__social { display: flex; gap: 10px; }
.is-footer__social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.is-footer__social a:hover { background: rgba(255,255,255,.12); }
.is-footer__col-title { font-family: var(--is-font-head); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.is-footer__links { display: flex; flex-direction: column; gap: 10px; }
.is-footer__links a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; font-family: var(--is-font-body); transition: color .2s; }
.is-footer__links a:hover { color: #fff; }

.is-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.is-footer__copy { font-size: 13px; color: rgba(255,255,255,.25); font-family: var(--is-font-body); }
.is-footer__legal { display: flex; gap: 24px; justify-content: flex-end; }
.is-footer__legal a { font-size: 13px; color: rgba(255,255,255,.3); text-decoration: none; font-family: var(--is-font-body); transition: color .2s; }
.is-footer__legal a:hover { color: rgba(255,255,255,.7); }

/* Kredyt WOH GROUP */
.is-woh { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; animation: is-woh-breathe 5s ease-in-out infinite; transition: opacity .3s, transform .3s, filter .3s; }
.is-woh:hover { opacity: 1 !important; transform: scale(1.05); filter: drop-shadow(0 0 14px rgba(245,212,41,.3)); animation: none; }
.is-woh__label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.45); font-family: var(--is-font-head); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
.is-woh__sep { color: rgba(255,255,255,.18); font-size: 13px; }
.is-woh svg { display: block; }

/* ============================================================
   6. RESET kontekstu Divi dla naszych globali
   ============================================================ */
.is-nav *, .is-footer * { box-sizing: border-box; }
body { font-family: var(--is-font-body); }


/* ISERWER FULL SITE IMPORT */
html,
body,
#page-container,
#et-main-area,
#main-content,
.et-l,
.et_builder_inner_content {
  background: #0B0F17 !important;
}
html,
body {
  min-height: 100%;
  margin: 0 !important;
  overflow-x: hidden !important;
}
body {
  color: #fff;
}
.et-l--footer,
.et-l--footer .et_builder_inner_content,
.et-l--footer .et_pb_section,
.et-l--footer .et_pb_row,
.et-l--footer .et_pb_code,
.et-l--footer .et_pb_code_inner {
  background: #070C14 !important;
}
.et-l--header,
.et-l--header .et_builder_inner_content,
.et-l--header .et_pb_section,
.et-l--header .et_pb_row,
.et-l--header .et_pb_column,
.et-l--header .et_pb_module,
.et-l--header .et_pb_code,
.et-l--header .et_pb_code_inner {
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: #0B0F17 !important;
}
.et-l--header .et_pb_section_0_tb_header,
.et-l--header .et_pb_section.et_pb_section_0_tb_header {
  background: #0B0F17 !important;
  padding: 0 !important;
}
.is-nav {
  transform: translateZ(0);
}
.is-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.is-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.is-mobile-panel {
  display: none;
}
.is-menu-lock {
  overflow: hidden;
}
.is-client-static-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.is-client-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  text-decoration: none !important;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.is-client-card:hover {
  border-color: rgba(77,124,254,.42);
  background: rgba(77,124,254,.075);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.is-client-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.is-client-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.is-client-card__label {
  display: block;
  min-height: 36px;
  color: rgba(255,255,255,.68);
  font-family: var(--is-font-body);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.is-blog-single,
.is-blog-archive {
  background: #0B0F17;
  color: #fff;
  min-height: 100vh;
  padding-top: var(--is-nav-h);
}
.is-blog-container {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}
.is-blog-container--narrow {
  width: min(880px, calc(100% - 96px));
}
.is-blog-hero {
  padding: 86px 0 64px;
  background: radial-gradient(circle at 80% 20%, rgba(77,124,254,.16), transparent 34%), #0B0F17;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.is-blog-hero--archive {
  padding-bottom: 76px;
}
.is-blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.35);
  font: 13px/1.4 var(--is-font-body);
}
.is-blog-breadcrumb a {
  color: rgba(255,255,255,.48);
  text-decoration: none;
}
.is-blog-breadcrumb a:hover {
  color: #fff;
}
.is-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.is-blog-meta a,
.is-blog-meta span,
.is-blog-card__cat {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(77,124,254,.32);
  background: rgba(77,124,254,.12);
  color: #4D7CFE;
  padding: 6px 12px;
  font: 600 12px/1 var(--is-font-head);
  text-decoration: none;
}
.is-blog-hero h1 {
  margin: 0;
  max-width: 920px;
  color: #fff;
  font: 700 54px/1.06 var(--is-font-head);
  letter-spacing: 0;
}
.is-blog-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.58);
  font: 17px/1.75 var(--is-font-body);
}
.is-blog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  padding: 70px 0 96px;
}
.is-blog-aside-card {
  position: sticky;
  top: 104px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: #111C2E;
}
.is-blog-aside-card span {
  display: block;
  margin-bottom: 10px;
  color: #31E6C1;
  font: 700 13px/1 var(--is-font-head);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.is-blog-aside-card p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font: 14px/1.65 var(--is-font-body);
}
.is-blog-aside-link {
  display: inline-flex;
  margin-top: 18px;
  color: #31E6C1;
  text-decoration: none;
  font: 700 13px/1 var(--is-font-head);
}
.is-blog-content {
  max-width: 820px;
  min-width: 0;
  color: rgba(255,255,255,.72);
  font: 17px/1.8 var(--is-font-body);
}
.is-blog-content h2,
.is-blog-content h3 {
  margin: 42px 0 14px;
  color: #fff;
  font-family: var(--is-font-head);
  letter-spacing: 0;
}
.is-blog-content h2 { font-size: 30px; line-height: 1.2; }
.is-blog-content h3 { font-size: 23px; line-height: 1.25; }
.is-blog-content p { margin: 0 0 20px; }
.is-blog-content a { color: #4D7CFE; }
.is-blog-content ul,
.is-blog-content ol {
  margin: 0 0 24px 22px;
  padding: 0;
}
.is-blog-content li { margin: 0 0 10px; }
.is-blog-content blockquote,
.is-blog-content pre {
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}
.is-blog-list-section {
  padding: 72px 0 100px;
  background: #0B0F17;
}
.is-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.is-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: #111C2E;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.is-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77,124,254,.4);
  background: #132038;
}
.is-blog-card h2 {
  margin: 22px 0 12px;
  color: #fff;
  font: 700 22px/1.25 var(--is-font-head);
  letter-spacing: 0;
}
.is-blog-card p {
  color: rgba(255,255,255,.52);
  font: 14px/1.65 var(--is-font-body);
}
.is-blog-card__more {
  margin-top: auto;
  color: #31E6C1;
  font: 600 13px/1 var(--is-font-head);
}
.is-blog-pagination {
  margin-top: 38px;
}
.is-blog-empty {
  color: rgba(255,255,255,.6);
}
.is-legal-hero {
  padding: calc(var(--is-nav-h) + 78px) 0 72px;
  background: radial-gradient(circle at 82% 18%, rgba(49,230,193,.12), transparent 34%), #0B0F17;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.is-legal-container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}
.is-legal-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(77,124,254,.28);
  background: rgba(77,124,254,.1);
  color: #4D7CFE;
  font: 600 12px/1 var(--is-font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.is-legal-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font: 700 54px/1.06 var(--is-font-head);
  letter-spacing: 0;
}
.is-legal-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.58);
  font: 17px/1.75 var(--is-font-body);
}
.is-legal-content {
  padding: 70px 0 96px;
  background: #0B0F17;
}
.is-legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}
.is-legal-card,
.is-legal-aside-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: #111C2E;
}
.is-legal-card {
  padding: 38px;
}
.is-legal-block + .is-legal-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.is-legal-block h2 {
  margin: 0 0 12px;
  color: #fff;
  font: 700 24px/1.2 var(--is-font-head);
  letter-spacing: 0;
}
.is-legal-block p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font: 15px/1.8 var(--is-font-body);
}
.is-legal-aside {
  position: sticky;
  top: 104px;
}
.is-legal-aside-card {
  padding: 24px;
}
.is-legal-aside-card span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.38);
  font: 700 12px/1 var(--is-font-head);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.is-legal-aside-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font: 700 16px/1.3 var(--is-font-head);
}
.is-legal-aside-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.58);
  font: 14px/1.65 var(--is-font-body);
}
.is-legal-aside-card a {
  display: flex;
  min-height: 38px;
  align-items: center;
  color: #31E6C1;
  text-decoration: none;
  font: 600 13px/1 var(--is-font-head);
}
.is-company-box {
  margin-top: 0;
}
.is-contact-hero,
.is-search-hero,
.is-404-hero {
  padding: calc(var(--is-nav-h) + 82px) 0 72px;
  background: radial-gradient(circle at 78% 18%, rgba(77,124,254,.16), transparent 34%), #0B0F17;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.is-contact-container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}
.is-contact-heading { max-width: 780px; }
.is-contact-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #4D7CFE;
  font: 700 12px/1 var(--is-font-head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.is-contact-heading h1,
.is-search-hero h1,
.is-404-hero h1 {
  margin: 0;
  color: #fff;
  font: 700 54px/1.06 var(--is-font-head);
  letter-spacing: 0;
}
.is-contact-heading p,
.is-search-hero p,
.is-404-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.58);
  font: 17px/1.75 var(--is-font-body);
}
.is-contact-section {
  padding: 72px 0 96px;
  background: #0B0F17;
}
.is-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
.is-contact-form,
.is-contact-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: #111C2E;
}
.is-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px;
}
.is-form-notice {
  border-radius: 12px;
  padding: 14px 16px;
  font: 700 14px/1.45 var(--is-font-head);
}
.is-form-notice--success {
  border: 1px solid rgba(49,230,193,.35);
  background: rgba(49,230,193,.1);
  color: #31E6C1;
}
.is-form-notice--error {
  border: 1px solid rgba(255,87,87,.35);
  background: rgba(255,87,87,.1);
  color: #FF8A8A;
}
.is-hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}
.is-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.is-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.48);
  font: 700 12px/1.3 var(--is-font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.is-contact-form input,
.is-contact-form textarea,
.is-search-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 13px 15px;
  font: 15px/1.4 var(--is-font-body);
  box-sizing: border-box;
}
.is-contact-form textarea { min-height: 180px; resize: vertical; }
.is-consent {
  flex-direction: row !important;
  align-items: flex-start;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--is-font-body) !important;
  font-weight: 500 !important;
}
.is-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.is-consent a { color: #4D7CFE; }
.is-contact-submit,
.is-search-form button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg,#4D7CFE,#31E6C1);
  color: #fff;
  padding: 15px 22px;
  font: 700 15px/1 var(--is-font-head);
  cursor: pointer;
}
.is-contact-aside { display: flex; flex-direction: column; gap: 16px; }
.is-contact-card { padding: 24px; }
.is-contact-card span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.38);
  font: 700 12px/1 var(--is-font-head);
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.is-contact-card a,
.is-contact-card strong {
  display: block;
  color: #fff;
  text-decoration: none;
  font: 700 16px/1.35 var(--is-font-head);
  margin-bottom: 10px;
}
.is-contact-card p { margin: 0; color: rgba(255,255,255,.58); font: 14px/1.65 var(--is-font-body); }
.is-search-form { display: flex; gap: 10px; max-width: 620px; margin-top: 28px; }
.is-search-page,
.is-404-page { min-height: 100vh; background: #0B0F17; color: #fff; }
.is-empty-state {
  max-width: 760px;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: #111C2E;
}
.is-empty-state h2 { margin: 0 0 10px; color: #fff; font: 700 28px/1.2 var(--is-font-head); }
.is-empty-state p { margin: 0 0 22px; color: rgba(255,255,255,.58); font: 15px/1.7 var(--is-font-body); }
.is-empty-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.is-empty-links a {
  display: inline-flex;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  padding: 11px 14px;
  text-decoration: none;
  font: 700 13px/1 var(--is-font-head);
}
.is-reading-progress {
  position: fixed;
  top: var(--is-nav-h);
  left: 0;
  right: 0;
  z-index: 99998;
  height: 3px;
  background: rgba(255,255,255,.06);
}
.is-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #4D7CFE, #31E6C1);
  box-shadow: 0 0 18px rgba(49,230,193,.35);
}
.is-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99990;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(17,28,46,.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
  cursor: pointer;
}
.is-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.is-back-top:hover {
  border-color: rgba(49,230,193,.45);
}
.is-cookie-notice {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99991;
  width: min(520px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,12,20,.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  transition: opacity .2s ease, transform .2s ease;
}
.is-cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.is-cookie-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font: 700 14px/1.2 var(--is-font-head);
}
.is-cookie-notice p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font: 13px/1.55 var(--is-font-body);
}
.is-cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.is-cookie-notice a {
  color: rgba(255,255,255,.56);
  font: 600 12px/1 var(--is-font-head);
  text-decoration: none;
  white-space: nowrap;
}
.is-cookie-notice button {
  border: 0;
  border-radius: 10px;
  padding: 11px 15px;
  background: linear-gradient(135deg,#4D7CFE,#31E6C1);
  color: #fff;
  font: 700 12px/1 var(--is-font-head);
  cursor: pointer;
  white-space: nowrap;
}
.is-section-container {
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
}
.is-section-heading {
  max-width: 680px;
  margin: 0 auto 58px;
  text-align: center;
}
.is-section-heading span {
  display: inline-block;
  margin-bottom: 14px;
  color: #4D7CFE;
  font: 700 11px/1 var(--is-font-head);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.is-section-heading h2 {
  margin: 0;
  color: #fff !important;
  font-family: var(--is-font-head);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}
.is-why-dark,
.is-testimonials-dark {
  padding: 100px 0;
  background: #0B0F17 !important;
  color: #fff;
}
.is-why-grid,
.is-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.is-why-card,
.is-testimonial-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: #111C2E !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.is-why-card {
  padding: 32px;
}
.is-why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 11px;
}
.is-why-card h3,
.is-testimonial-card strong {
  color: #fff !important;
  font-family: var(--is-font-head);
}
.is-why-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}
.is-why-card p,
.is-testimonial-card p,
.is-testimonial-card span {
  color: rgba(255,255,255,.64) !important;
  font-family: var(--is-font-body);
}
.is-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.is-testimonial-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 32px;
}
.is-testimonial-quote {
  margin-bottom: 16px;
  color: rgba(77,124,254,.32);
  font: 700 56px/.8 Georgia, serif;
}
.is-testimonial-card p {
  flex: 1;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
}
.is-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.is-testimonial-avatar {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font: 700 15px/1 var(--is-font-head);
}
.is-testimonial-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.is-testimonial-card span {
  display: block;
  font-size: 12px;
}
.is-testimonials-polished {
  position: relative;
  overflow: hidden;
}
.is-testimonials-polished::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(77,124,254,.08), rgba(77,124,254,0));
  pointer-events: none;
}
.is-testimonials-polished h2 {
  color: #0B0F17 !important;
  text-wrap: balance;
}
.is-testimonials-polished [data-reveal][style*="background:#fff"] {
  min-height: 310px !important;
  box-shadow: 0 18px 44px rgba(11,15,23,.06) !important;
}
.is-testimonials-polished [data-reveal][style*="background:#fff"] p {
  color: rgba(11,15,23,.72) !important;
}
section#o-nas,
.is-testimonials-polished {
  background: #0B0F17 !important;
  color: #fff !important;
}
section#o-nas h2,
section#o-nas h3,
section#o-nas [style*="color:#0B0F17"],
.is-testimonials-polished [style*="color:#0B0F17"],
.is-testimonials-polished h2,
.is-testimonials-polished h3 {
  color: #fff !important;
}
section#o-nas p,
section#o-nas [style*="rgba(11,15,23,0.6)"],
.is-testimonials-polished p,
.is-testimonials-polished [style*="rgba(11,15,23,0.7)"],
.is-testimonials-polished [style*="rgba(11,15,23,0.5)"] {
  color: rgba(255,255,255,.62) !important;
}
section#o-nas [style*="background:#fff"],
.is-testimonials-polished [style*="background:#fff"] {
  background: #111C2E !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.18) !important;
}
.et_pb_pagebuilder_layout .entry-content,
.et_pb_pagebuilder_layout .et_builder_inner_content {
  background: #0B0F17;
}
body.et_pb_pagebuilder_layout #page-container,
body.et_pb_pagebuilder_layout #et-main-area,
body.et_pb_pagebuilder_layout #main-content,
body.et_pb_pagebuilder_layout article,
body.et_pb_pagebuilder_layout .entry-content,
body.et_pb_pagebuilder_layout .et-l,
body.et_pb_pagebuilder_layout .et_builder_inner_content {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}
body.et_pb_pagebuilder_layout .entry-content > .et-l,
body.et_pb_pagebuilder_layout .entry-content > .et-l > .et_builder_inner_content > .et_pb_section,
body.et_pb_pagebuilder_layout .et_builder_inner_content > .et_pb_section:first-child,
body.et_pb_pagebuilder_layout .et_pb_section:first-child,
body.et_pb_pagebuilder_layout .et_pb_section:first-child > .et_pb_row,
body.et_pb_pagebuilder_layout .et_pb_section:first-child .et_pb_column,
body.et_pb_pagebuilder_layout .et_pb_section:first-child .et_pb_module,
body.et_pb_pagebuilder_layout .et_pb_section:first-child .et_pb_code_inner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.et-l--header,
.et-l--header .et_builder_inner_content,
.et-l--header .et_pb_section,
.et-l--header .et_pb_row,
.et-l--header .et_pb_column,
.et-l--header .et_pb_module,
.et-l--header .et_pb_code,
.et-l--header .et_pb_code_inner,
.et-l--footer,
.et-l--footer .et_builder_inner_content,
.et-l--footer .et_pb_section,
.et-l--footer .et_pb_row,
.et-l--footer .et_pb_column,
.et-l--footer .et_pb_module,
.et-l--footer .et_pb_code,
.et-l--footer .et_pb_code_inner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.et-l--header .et_pb_section,
.et-l--header .et_pb_row,
.et-l--header .et_pb_module,
.et-l--header .et_pb_code,
.et-l--header .et_pb_code_inner {
  min-height: 0 !important;
}
.et-l--footer .et_pb_section,
.et-l--footer .et_pb_row,
.et-l--footer .et_pb_module,
.et-l--footer .et_pb_code,
.et-l--footer .et_pb_code_inner {
  min-height: 0 !important;
}
.et-l--header .is-nav,
.et-l--footer .is-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
.et-l--header .is-nav {
  left: 0 !important;
  right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.is-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
body.et_pb_pagebuilder_layout #page-container,
body.et_pb_pagebuilder_layout #et-main-area,
body.et_pb_pagebuilder_layout #main-content {
  padding-top: 0 !important;
}
@media (max-width: 980px) {
  .is-nav { padding: 0 20px; }
  .is-nav__menu { display: none; }
  .is-menu-toggle { display: inline-flex; }
  .is-nav__cta { display: none; }
  .is-mobile-panel {
    display: block;
    position: fixed;
    top: var(--is-nav-h);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--is-nav-h));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    background: rgba(7,12,20,.98);
    border-top: 1px solid rgba(255,255,255,.08);
    transition: opacity .2s ease, transform .2s ease;
  }
  .is-nav.is-mobile-open .is-mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .is-nav.is-mobile-open .is-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .is-nav.is-mobile-open .is-menu-toggle span:nth-child(2) { opacity: 0; }
  .is-nav.is-mobile-open .is-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .is-mobile-panel__inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px 20px 32px;
  }
  .is-mobile-panel__inner a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-family: var(--is-font-head);
    font-size: 17px;
    font-weight: 600;
  }
  .is-mobile-panel__inner a:hover {
    background: rgba(255,255,255,.06);
    color: #fff;
  }
  .is-mobile-panel__cta {
    justify-content: center;
    margin-top: 12px;
    background: var(--is-grad);
    color: #fff !important;
  }
  .is-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .is-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .is-footer__legal { justify-content: center; flex-wrap: wrap; }
  .is-client-static-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .is-client-card { min-height: 150px; padding: 12px; }
  .is-blog-container,
  .is-blog-container--narrow { width: min(100% - 40px, 760px); }
  .is-blog-hero h1 { font-size: 38px; line-height: 1.12; }
  .is-blog-layout { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 72px; }
  .is-blog-aside { order: 2; }
  .is-blog-grid { grid-template-columns: 1fr; }
  .is-legal-container { width: min(100% - 40px, 760px); }
  .is-legal-layout { grid-template-columns: 1fr; }
  .is-legal-aside { position: static; }
  .is-legal-hero h1 { font-size: 38px; line-height: 1.12; }
}
@media (max-width: 980px) {
  body.et_pb_pagebuilder_layout {
    overflow-x: hidden !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_section,
  body.et_pb_pagebuilder_layout .et_pb_row,
  body.et_pb_pagebuilder_layout .et_pb_column,
  body.et_pb_pagebuilder_layout .et_pb_module,
  body.et_pb_pagebuilder_layout .et_pb_code,
  body.et_pb_pagebuilder_layout .et_pb_code_inner {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner section {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner section > div,
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:1280px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:800px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:760px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:720px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:640px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:600px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:560px"] {
    max-width: none !important;
    width: 100% !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    box-sizing: border-box !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="display:grid"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(2"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(3"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(4"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(5"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(6"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:1fr 1fr"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:360px 1fr"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:320px 1fr"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:280px 1fr"] {
    grid-template-columns: 1fr !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="display:flex"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="display: flex"] {
    max-width: 100% !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="justify-content:space-between"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="align-items:flex-end"] {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h1,
  body.et_pb_pagebuilder_layout .et_pb_code_inner h2,
  body.et_pb_pagebuilder_layout .et_pb_code_inner h3 {
    letter-spacing: 0 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h1,
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:60px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:56px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:52px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:50px"] {
    font-size: 38px !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h2,
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:48px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:44px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:42px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:40px"] {
    font-size: 30px !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h3,
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:36px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:32px"] {
    font-size: 24px !important;
    line-height: 1.24 !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner p {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner a[style*="display:inline-flex"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner button {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="display:flex"][style*="gap:14px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="display:flex"][style*="gap:12px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="justify-content:center"][style*="gap"] {
    flex-wrap: wrap !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner svg[width="560"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="width:560px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="height:500px"] {
    width: 100% !important;
    max-width: 360px !important;
    height: 320px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="position:absolute"][style*="right:-"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="position:absolute"][style*="left:-"] {
    display: none !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner input,
  body.et_pb_pagebuilder_layout .et_pb_code_inner textarea,
  body.et_pb_pagebuilder_layout .et_pb_code_inner select {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .is-nav {
    height: 64px;
    padding: 0 16px;
  }
  .is-logo__mark {
    width: 30px;
    height: 30px;
  }
  .is-logo__text {
    font-size: 17px;
  }
  .is-nav__actions {
    gap: 8px;
  }
  .is-nav__status {
    display: none;
  }
  .is-btn--primary {
    padding: 8px 12px;
    font-size: 12px;
  }
  .is-mobile-panel {
    top: 64px;
    height: calc(100dvh - 64px);
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner section:first-of-type {
    padding-top: 64px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner section > div,
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:1280px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:800px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:760px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:720px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:640px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:600px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner section div[style*="max-width:560px"] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h1,
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:60px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:56px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:52px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:50px"] {
    font-size: 32px !important;
    line-height: 1.12 !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h2,
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:48px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:44px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:42px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:40px"] {
    font-size: 26px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner h3,
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:36px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="font-size:32px"] {
    font-size: 22px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="padding:36px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="padding:32px"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="padding:28px"] {
    padding: 22px !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(3,1fr)"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(4,1fr)"],
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  body.et_pb_pagebuilder_layout .et_pb_code_inner [style*="min-height:100vh"] {
    min-height: auto !important;
  }
  .is-footer {
    padding-top: 48px;
  }
  .is-footer__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .is-client-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .is-client-card {
    min-height: 138px;
    padding: 10px;
    border-radius: 14px;
  }
  .is-client-card__label {
    font-size: 11px;
  }
  .is-section-container {
    width: min(100% - 36px, 640px);
  }
  .is-why-dark,
  .is-testimonials-dark {
    padding: 56px 0;
  }
  .is-section-heading {
    margin-bottom: 32px;
  }
  .is-section-heading h2 {
    font-size: 26px;
  }
  .is-why-grid,
  .is-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .is-why-card,
  .is-testimonial-card {
    padding: 22px;
    min-height: 0;
  }
  .is-blog-single,
  .is-blog-archive { padding-top: 64px; }
  .is-blog-container,
  .is-blog-container--narrow { width: min(100% - 32px, 640px); }
  .is-blog-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 42px 0 64px !important;
  }
  .is-blog-aside {
    order: 2;
  }
  .is-blog-hero { padding: 54px 0 44px; }
  .is-blog-hero h1 { font-size: 32px; }
  .is-blog-lead { font-size: 15px; }
  .is-blog-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }
  .is-blog-content h2 { font-size: 25px; }
  .is-blog-content h3 { font-size: 21px; }
  .is-blog-content ul,
  .is-blog-content ol { margin-left: 18px; }
  .is-blog-card { min-height: 0; padding: 22px; }
  .is-contact-hero,
  .is-search-hero,
  .is-404-hero { padding: calc(64px + 48px) 0 44px; }
  .is-contact-container { width: min(100% - 32px, 640px); }
  .is-contact-layout { grid-template-columns: 1fr; }
  .is-contact-heading h1,
  .is-search-hero h1,
  .is-404-hero h1 { font-size: 32px; line-height: 1.12; }
  .is-contact-form { padding: 22px; }
  .is-form-row { grid-template-columns: 1fr; }
  .is-search-form { flex-direction: column; }
  .is-legal-hero { padding: calc(64px + 48px) 0 44px; }
  .is-legal-container { width: min(100% - 32px, 640px); }
  .is-legal-hero h1 { font-size: 32px; }
  .is-legal-card { padding: 24px; }
  .is-reading-progress { top: 64px; }
  .is-cookie-notice {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .is-cookie-notice__actions {
    justify-content: space-between;
  }
  .is-back-top {
    right: 14px;
    bottom: 14px;
  }
}
