/* Gestión Legal - landing B2B */

:root {
  --gl-blue: #009cea;
  --gl-blue-700: #006fac;
  --gl-navy: #082f4d;
  --gl-navy-900: #041d31;
  --gl-orange: #f07a24;
  --gl-orange-700: #d96516;
  --gl-ink: #102233;
  --gl-body: #526170;
  --gl-muted: #7a8996;
  --gl-line: #dde7ee;
  --gl-soft: #f4f8fb;
  --gl-white: #ffffff;
  --gl-radius: 8px;
  --gl-shadow: 0 22px 55px rgba(8, 47, 77, .12);
  --gl-container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gl-body);
  background: var(--gl-white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--gl-ink);
  font-family: "Raleway", Arial, sans-serif;
  line-height: 1.15;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.gl-container {
  width: min(100% - 48px, var(--gl-container));
  margin: 0 auto;
}

.gl-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(221, 231, 238, .8);
  backdrop-filter: blur(14px);
}

.gl-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gl-logo img {
  width: auto;
  height: 38px;
}

.gl-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.gl-nav a,
.gl-link-action {
  color: var(--gl-navy);
  font-size: 14px;
  font-weight: 700;
}

.gl-nav a:hover,
.gl-link-action:hover,
.gl-text-link:hover {
  color: var(--gl-orange);
}

.gl-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--gl-radius);
  color: var(--gl-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.gl-btn:hover {
  transform: translateY(-1px);
}

.gl-btn--primary {
  color: #fff;
  background: var(--gl-orange);
  box-shadow: 0 12px 24px rgba(240, 122, 36, .24);
}

.gl-btn--primary:hover {
  color: #fff;
  background: var(--gl-orange-700);
}

.gl-btn--secondary {
  color: var(--gl-navy);
  background: #fff;
  border-color: var(--gl-line);
}

.gl-btn--secondary:hover {
  color: var(--gl-navy);
  border-color: var(--gl-blue);
  box-shadow: 0 12px 24px rgba(8, 47, 77, .08);
}

.gl-btn--light {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
}

.gl-btn--light:hover {
  color: #fff;
  border-color: #fff;
}

.gl-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gl-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gl-lead {
  max-width: 560px;
  color: #435565;
  font-size: 20px;
  line-height: 1.55;
}

.gl-hero {
  position: relative;
  padding: 82px 0 70px;
  background: var(--gl-soft);
  overflow: hidden;
}

.gl-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 58%;
  background: url("../../assets/img/cc4.jpg") center right / cover no-repeat;
  opacity: .18;
}

.gl-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(360px, 430px);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  justify-content: space-between;
}

.gl-hero__copy {
  max-width: 540px;
  min-width: 0;
}

.gl-hero h1 {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.15vw, 58px);
  font-weight: 800;
  overflow-wrap: normal;
}

.gl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gl-actions--center {
  justify-content: center;
}

.gl-note {
  max-width: 680px;
  margin-top: 22px;
  color: var(--gl-muted);
  font-size: 14px;
}

.gl-note a,
.gl-cta__small a,
.gl-text-link {
  color: var(--gl-blue-700);
  font-weight: 800;
}

.gl-hero__visual {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.gl-command {
  width: min(100%, 430px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(221, 231, 238, .9);
  border-radius: 14px;
  box-shadow: var(--gl-shadow);
  overflow: hidden;
}

.gl-command__top {
  padding: 26px;
  background: var(--gl-navy);
}

.gl-command__top span,
.gl-command__top strong {
  display: block;
}

.gl-command__top span {
  color: #a9cce3;
  font-size: 13px;
  font-weight: 700;
}

.gl-command__top strong {
  margin-top: 5px;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.gl-command__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gl-command__grid div {
  min-height: 132px;
  padding: 24px;
  border-top: 1px solid var(--gl-line);
}

.gl-command__grid div:nth-child(odd) {
  border-right: 1px solid var(--gl-line);
}

.gl-command__grid i {
  display: block;
  margin-bottom: 18px;
  color: var(--gl-blue);
  font-size: 28px;
}

.gl-command__grid span {
  color: var(--gl-ink);
  font-size: 15px;
  font-weight: 800;
}

.gl-metrics {
  padding: 34px 0;
  background: var(--gl-navy);
}

.gl-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.gl-metric {
  padding: 28px 22px;
  background: var(--gl-navy);
  text-align: center;
}

.gl-metric strong {
  display: block;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.gl-metric span {
  display: block;
  margin-top: 9px;
  color: #b9d3e4;
  font-size: 14px;
  font-weight: 700;
}

.gl-section {
  padding: 92px 0;
}

.gl-section--soft {
  background: var(--gl-soft);
}

.gl-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.gl-section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.gl-section-head p {
  margin-top: 18px;
  color: var(--gl-body);
  font-size: 17px;
}

.gl-section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  text-align: left;
}

.gl-section-head--split p {
  margin: 0;
}

.gl-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gl-line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.gl-client-grid img {
  width: 100%;
  height: 116px;
  padding: 30px;
  object-fit: contain;
  border-right: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  filter: grayscale(1);
  opacity: .72;
  transition: filter .18s ease, opacity .18s ease;
}

.gl-client-grid img:nth-child(3n) {
  border-right: 0;
}

.gl-client-grid img:nth-last-child(-n+3) {
  border-bottom: 0;
}

.gl-client-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.gl-card-grid {
  display: grid;
  gap: 22px;
}

.gl-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.gl-card {
  min-height: 270px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
}

.gl-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--gl-blue);
  border-radius: var(--gl-radius);
  font-size: 25px;
}

.gl-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.gl-card p {
  color: var(--gl-body);
  font-size: 15px;
}

.gl-tech {
  color: #c8dce9;
  background: var(--gl-navy-900);
}

.gl-tech h2,
.gl-tech h3 {
  color: #fff;
}

.gl-tech__layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.gl-tech__intro {
  position: sticky;
  top: 112px;
}

.gl-tech__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
}

.gl-tech__intro p {
  margin-bottom: 24px;
  color: #b6ccdc;
  font-size: 17px;
}

.gl-analytics-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.gl-analytics-strip span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--gl-radius);
  font-size: 13px;
  font-weight: 800;
}

.gl-tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gl-tech__grid article {
  min-height: 204px;
  padding: 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--gl-radius);
}

.gl-tech__grid i {
  display: block;
  margin-bottom: 18px;
  color: #69c9ff;
  font-size: 28px;
}

.gl-tech__grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.gl-tech__grid p,
.gl-richtext {
  color: #b6ccdc;
  font-size: 15px;
}

.gl-richtext p {
  color: inherit;
  font-size: inherit;
}

.gl-richtext ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.gl-richtext li {
  position: relative;
  padding-left: 18px;
}

.gl-richtext li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gl-orange);
}

.gl-process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gl-process li {
  min-height: 118px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
  color: var(--gl-ink);
  font-size: 15px;
  font-weight: 800;
}

.gl-process span {
  color: var(--gl-blue-700);
  font-size: 12px;
  font-weight: 800;
}

.gl-confidence {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
}

.gl-confidence__media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--gl-shadow);
}

.gl-confidence__content h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 46px);
}

.gl-confidence__content p {
  max-width: 620px;
  color: var(--gl-body);
  font-size: 17px;
}

.gl-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.gl-check-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
  color: var(--gl-ink);
  font-size: 14px;
  font-weight: 800;
}

.gl-check-grid i {
  color: var(--gl-orange);
  font-size: 20px;
}

.gl-cta {
  padding: 88px 0;
  color: #fff;
  background: var(--gl-navy);
  text-align: center;
}

.gl-cta h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 56px);
}

.gl-cta p {
  max-width: 650px;
  margin: 0 auto;
  color: #c2d8e7;
  font-size: 18px;
}

.gl-cta__small {
  margin-top: 22px !important;
  font-size: 14px !important;
}

.gl-footer {
  padding: 56px 0 24px;
  color: var(--gl-body);
  background: #fff;
  border-top: 1px solid var(--gl-line);
}

.gl-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr 1.25fr 1.15fr;
  gap: 30px;
}

.gl-footer__logo {
  width: auto;
  height: 32px;
  margin-bottom: 18px;
}

.gl-footer p,
.gl-footer a {
  color: var(--gl-body);
  font-size: 14px;
}

.gl-footer a {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.gl-footer a:hover {
  color: var(--gl-blue-700);
}

.gl-footer h3 {
  margin-bottom: 15px;
  color: var(--gl-ink);
  font-size: 16px;
}

.gl-footer__contact {
  margin-top: 16px;
}

.gl-footer__contact a,
.gl-footer__notice a {
  display: inline;
  margin: 0;
}

.gl-footer__notice {
  padding: 20px;
  background: var(--gl-soft);
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
}

.gl-footer__notice p + p {
  margin-top: 12px;
}

.gl-footer__notice > a {
  display: inline-block;
  margin-top: 14px;
}

.gl-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--gl-line);
  color: var(--gl-muted);
  font-size: 13px;
}

.gl-hero-slider .owl-dots,
.gl-office-carousel .owl-dots,
.gl-testimonial-carousel .owl-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.gl-hero-slider .owl-dot,
.gl-office-carousel .owl-dot,
.gl-testimonial-carousel .owl-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--gl-line) !important;
}

.gl-hero-slider .owl-dot.active,
.gl-office-carousel .owl-dot.active,
.gl-testimonial-carousel .owl-dot.active {
  background: var(--gl-orange) !important;
}

.gl-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gl-news-card,
.gl-proof-panel,
.gl-contact__info,
.gl-form {
  background: #fff;
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
}

.gl-news-card {
  overflow: hidden;
}

.gl-news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gl-news-card > div {
  padding: 24px;
}

.gl-news-card h3,
.gl-proof-panel h3,
.gl-contact__info h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.gl-news-card p {
  margin-bottom: 16px;
  color: var(--gl-body);
  font-size: 15px;
}

.gl-modal-news {
  display: none;
  max-width: 1080px;
  padding: 28px;
  background: #fff;
}

.gl-modal-news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 28px;
  align-items: start;
}

.gl-modal-news h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.gl-modal-news h4 {
  margin: 0 0 18px;
  color: var(--gl-body);
  font: 700 18px/1.35 "Open Sans", Arial, sans-serif;
}

.gl-modal-news img {
  width: 100%;
  border-radius: var(--gl-radius);
}

.gl-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gl-proof-panel {
  min-width: 0;
  padding: 26px;
}

.gl-office-carousel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--gl-radius);
}

.gl-office-slide {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--gl-radius);
}

.gl-office-slide img {
  border-radius: 0;
}

.gl-office-slide figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  color: #fff;
  background: rgba(4, 29, 49, .86);
  border-radius: var(--gl-radius);
  font-size: 13px;
  font-weight: 800;
}

.gl-testimonial {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
}

.gl-testimonial__quote,
.gl-testimonial__quote p {
  color: var(--gl-body);
  font-size: 16px;
}

.gl-testimonial__quote p {
  margin: 0;
}

.gl-testimonial strong {
  margin-top: 22px;
  color: var(--gl-ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 18px;
}

.gl-testimonial span {
  margin-top: 4px;
  color: var(--gl-muted);
  font-size: 14px;
  font-weight: 700;
}

.gl-testimonial .gl-text-link {
  margin-top: 18px;
  font-size: 14px;
}

.gl-modal-testimonial {
  display: none;
  max-width: 760px;
  padding: 30px;
  background: #fff;
}

.gl-modal-testimonial h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.gl-modal-testimonial h4 {
  margin: 0 0 18px;
  color: var(--gl-body);
  font: 700 16px/1.4 "Open Sans", Arial, sans-serif;
}

.gl-modal-testimonial .gl-richtext {
  color: var(--gl-body);
  font-size: 16px;
}

.gl-contact {
  background: var(--gl-navy);
}

.gl-contact .gl-section-head h2 {
  color: #fff;
}

.gl-contact .gl-section-head p {
  color: #c2d8e7;
}

.gl-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.gl-contact__info,
.gl-form {
  padding: 28px;
}

.gl-contact__info p + p {
  margin-top: 16px;
}

.gl-contact__info iframe {
  margin-top: 22px;
  border-radius: var(--gl-radius);
}

.gl-form,
.gl-cv-form {
  display: grid;
  gap: 16px;
}

.gl-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gl-form label,
.gl-cv-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--gl-ink);
  font-size: 14px;
  font-weight: 800;
}

.gl-form input,
.gl-form textarea,
.gl-file-label {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
  color: var(--gl-ink);
  background: #fff;
  font: 600 14px/1.4 "Open Sans", Arial, sans-serif;
}

.gl-form textarea {
  resize: vertical;
}

.gl-file-label {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 5px 12px;
  padding: 14px;
  border-style: dashed;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease;
}

.gl-file-label:hover {
  border-color: var(--gl-blue);
  background: var(--gl-soft);
}

.gl-file-label__icon {
  grid-row: 1 / 4;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--gl-radius);
  color: #fff;
  background: var(--gl-blue);
  font-size: 20px;
}

.gl-file-label__text {
  color: var(--gl-ink);
  font-size: 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.gl-file-label__hint {
  color: var(--gl-muted);
  font-size: 12px;
  font-weight: 700;
}

.gl-file-label__button {
  width: fit-content;
  padding: 6px 10px;
  color: var(--gl-navy);
  background: #fff;
  border: 1px solid var(--gl-line);
  border-radius: var(--gl-radius);
  font-size: 12px;
  font-weight: 800;
}

.gl-file-label input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.gl-form__success,
.gl-form__error {
  padding: 12px 14px;
  border-radius: var(--gl-radius);
  font-size: 14px;
  font-weight: 800;
}

.gl-form__success {
  color: #0b6b35;
  background: #e6f6ec;
}

.gl-form__error {
  color: #9b271f;
  background: #fdebea;
}

.gl-social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.gl-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  background: var(--gl-soft);
  color: var(--gl-navy);
  font-size: 20px;
}

.gl-float,
.gl-whatsapp,
.gl-back-to-top {
  position: fixed;
  z-index: 50;
}

.gl-float {
  left: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 14px 36px rgba(8, 47, 77, .16);
}

.gl-float:hover {
  color: #fff;
}

.gl-float--self {
  bottom: 176px;
  min-width: 150px;
  background: #0b70d4;
  border-radius: 0 20px 20px 0;
}

.gl-float--self::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: solid #9ff269;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg) translateY(-4px);
}

.gl-float--warning {
  bottom: 112px;
  max-width: 236px;
  background: #f5aa22;
  border-radius: 0 20px 20px 0;
}

.gl-float--warning::before {
  content: "!";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 13px;
}

.gl-float--warning span {
  display: block;
}

.gl-whatsapp {
  left: 0;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gl-whatsapp img {
  width: 48px;
  height: 48px;
}

.gl-whatsapp span {
  padding: 8px 13px;
  background: #229933;
  border-radius: 6px;
}

.gl-back-to-top {
  right: 28px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gl-blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.gl-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#launcher-svg-container,
#mck-sidebox-launcher {
  margin-right: 200px !important;
}

#kommunicate-widget-iframe {
  right: 500px !important;
}

.df-messenger-wrapper {
  bottom: 100px !important;
}

.tooltip.show {
  opacity: .94;
}

.tooltip {
  font-size: 14px !important;
}

.tooltip .tooltip-inner {
  max-width: 700px !important;
  padding: 10px 14px !important;
  color: #fff !important;
  background: #111 !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.38 !important;
  text-align: left !important;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  border-top-color: #111;
}

@media (max-width: 1100px) {
  .gl-nav {
    display: none;
  }

  .gl-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-footer__notice {
    grid-column: 1 / -1;
  }

  .gl-process {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .gl-container {
    width: min(100% - 32px, var(--gl-container));
  }

  .gl-header__inner {
    min-height: auto;
    padding: 14px 0;
  }

  .gl-link-action {
    display: none;
  }

  .gl-hero {
    padding: 56px 0 54px;
    background: var(--gl-soft);
  }

  .gl-hero::before {
    display: none;
  }

  .gl-hero__layout,
  .gl-section-head--split,
  .gl-tech__layout,
  .gl-confidence,
  .gl-proof-grid,
  .gl-contact__grid,
  .gl-modal-news__grid {
    grid-template-columns: 1fr;
  }

  .gl-hero__visual {
    justify-content: stretch;
  }

  .gl-command {
    width: 100%;
  }

  .gl-tech__intro {
    position: static;
  }

  .gl-metrics__grid {
    grid-template-columns: 1fr;
  }

  .gl-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-client-grid img,
  .gl-client-grid img:nth-child(3n),
  .gl-client-grid img:nth-last-child(-n+3) {
    border-right: 1px solid var(--gl-line);
    border-bottom: 1px solid var(--gl-line);
  }

  .gl-client-grid img:nth-child(2n) {
    border-right: 0;
  }

  .gl-tech__grid {
    grid-template-columns: 1fr;
  }

  .gl-analytics-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gl-float {
    min-height: 44px;
    font-size: 15px;
  }

  .gl-float--self {
    bottom: 160px;
    min-width: 156px;
  }

  .gl-float--warning {
    bottom: 96px;
    max-width: 246px;
  }

  .gl-whatsapp {
    font-size: 0;
  }

  .gl-whatsapp img {
    width: 54px;
    height: 54px;
  }

  .gl-whatsapp span {
    display: none;
  }

  .gl-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .gl-header__actions .gl-btn {
    display: none;
  }

  .gl-logo img {
    height: 34px;
  }

  .gl-section {
    padding: 68px 0;
  }

  .gl-actions,
  .gl-actions--center {
    flex-direction: column;
  }

  .gl-btn {
    width: 100%;
  }

  .gl-lead {
    font-size: 18px;
  }

  .gl-command__grid,
  .gl-card-grid--4,
  .gl-check-grid,
  .gl-analytics-strip {
    grid-template-columns: 1fr;
  }

  .gl-command__grid div:nth-child(odd) {
    border-right: 0;
  }

  .gl-client-grid {
    grid-template-columns: 1fr;
  }

  .gl-news-grid,
  .gl-form__row {
    grid-template-columns: 1fr;
  }

  .gl-client-grid img,
  .gl-client-grid img:nth-child(2n) {
    border-right: 0;
  }

  .gl-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-whatsapp span,
  .gl-float--warning span {
    display: none;
  }

  .gl-float--self {
    min-width: auto;
    width: 54px;
    overflow: hidden;
    color: transparent;
  }

  .gl-float--warning {
    width: 54px;
    color: transparent;
  }

  .gl-float--self::before,
  .gl-float--warning::before {
    margin-right: 0;
  }
}
