/* theme2 overrides — site-wide font scale down. Loaded AFTER style.css/skin-1.css. */

/* ── Body font: Inter (Google Fonts) ── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

html, body,
input, select, textarea, button,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.dlab-title, .dlab-head, .section-head .title, .section-head .sub-title,
.btn, .site-button, .footer, .footer-title {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system,
               'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  font-feature-settings: "cv11", "ss01", "cv02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Sharper headings — matches OpenAI's tight tracking */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.dlab-title, .section-head .title {
  letter-spacing: -0.015em;
}

body {
  letter-spacing: -0.003em;
  font-weight: 500;           /* Inter Medium reads fuller than 400 */
}
p, li, td, th, small, label, input, textarea, select { font-weight: 500; }


/* --- Brand gradient: override skin-1's pink-orange with the style.css purple-blue --- */
:root {
  --gradient:     linear-gradient(to right, #7355f7 0%, #5f3bff 51%, #7355f7 100%);
  --gradientY:    linear-gradient(to top,   #7355f7 0%, #5f3bff 100%);
  --gradient-sec: linear-gradient(to right, #130065 0%, #2b0ead 51%, #130065 100%);
}
/* Apply to solid primary buttons too (not just gradient class) */
.btn-primary {
  background: var(--gradient) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.btn-primary:hover { filter: brightness(0.92); }

/* Colored text helpers that theme2 uses — bring them into the purple family */
.text-primary { color: #5f3bff !important; }

/* Links inside CKEditor content (FAQ, About, Voice Data, etc.) — use purple
   instead of theme2's pink. Scoped so nav/button links keep their own color. */
.page-content .container a,
.blog-article__body a,
.contact-page a,
.customer-voices a { color: #5f3bff; }
.page-content .container a:hover,
.blog-article__body a:hover,
.contact-page a:hover,
.customer-voices a:hover { color: #4b24f5; text-decoration: underline; }
/* Don't touch the visible nav button */
.page-content .container a.btn,
.page-content .container a.btn:hover { color: inherit; text-decoration: none; }

/* Nav link hover — override pink var(--primary) to the button purple */
.header-nav .nav > li:hover > a,
.header-nav .nav > li.active > a,
.header-nav .nav > li > a:hover,
.header-nav .nav > li > a:focus { color: #5f3bff !important; }

/* Bolder nav link weight */
.header-nav .nav > li > a,
.header-nav .nav > li > a span { font-weight: 700 !important; }

/* Text selection color — match the purple-blue button */
::selection     { background: #5f3bff; color: #fff; }
::-moz-selection{ background: #5f3bff; color: #fff; }

/* Page-load spinner — swap the pink SVG for the purple one, and auto-fade
   after 500ms so a slow external asset (Google Fonts, tracking pixels) can't
   pin the overlay on screen. */
#loading-area.loading-02 {
  background-color: #f4f2ff !important;
  background-image: url("../images/loading-02-purple.svg") !important;
  animation: olw-loading-fade 0.45s linear 0.5s forwards;
}
@keyframes olw-loading-fade {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}


html { font-size: 90%; }          /* shrinks every rem-based measurement by 10% */

body {
  font-size: 0.95rem;
  line-height: 1.55;
  letter-spacing: -0.002em;
}

/* Headings — keep hierarchy but dial it back */
h1, .h1 { font-size: 2rem; line-height: 1.15; }
h2, .h2 { font-size: 1.6rem; line-height: 1.2; }
h3, .h3, .dlab-title { font-size: 1.25rem; line-height: 1.25; }
h4, .h4 { font-size: 1.1rem; }
h5, .h5 { font-size: 1rem; }
h6, .h6, .sub-title { font-size: 0.8rem; }

/* Lead paragraphs and intro text */
.lead { font-size: 1rem; }

/* Bullet lists often use inline font-size:18px; nudge those down too */
ul.list-check-2[style*="font-size:18px"],
ul.list-check-3[style*="font-size:18px"] { font-size: 16px !important; line-height: 1.5; }

ul.list-check-2 p, ul.list-check-3 p { margin-bottom: 0.4rem; }

/* Inside the 3 home-page boxes specifically */
.icon-bx-wraper.style-7 ul li p { font-size: 16px; line-height: 1.5; }
.icon-bx-wraper.style-7 ul li { font-size: 16px; line-height: 1.5; }

/* Shrink the purple/gradient checkmark on list-check-2 and align with first line of text */
ul.list-check-2 li {
  padding: 4px 5px 4px 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
  position: relative;
}
ul.list-check-2 li:before {
  content: "\f00c";
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 11px !important;
  width: 18px !important;
  height: 18px !important;
  line-height: 18px !important;
  border-radius: 18px !important;
  color: #fff;
  background: #000;
  background-image: var(--gradient);
  background-size: 200%;
  text-align: center;
  flex: 0 0 18px;
  margin-top: 1.18em;          /* pulls the icon down to baseline-align with the first line */
  position: static !important;  /* override theme2's absolute positioning */
  top: auto !important;
  left: auto !important;
}
ul.list-check-2 li > * { margin-bottom: 0; }

/* Buttons stay tappable but trim a bit */
.btn { font-size: 0.9rem; padding: 0.55rem 1.15rem; }

/* Section heads */
.section-head.style-1 .title { font-size: 1.6rem; }
.section-head.style-1 .sub-title { font-size: 0.8rem; letter-spacing: 0.08em; }

/* Icon boxes on card grids */
.icon-bx-wraper .dlab-title { font-size: 1.1rem; }

/* Home 3-box grid: make the box titles larger & tighter */
.icon-bx-wraper.style-7 .dlab-title,
.icon-bx-wraper.style-7 .dlab-title strong {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

/* Testimonials: shrink headline */
.customer-voices .title { font-size: 1.4rem; }
.customer-voices .t13-role { font-size: 1.2rem; }
.customer-voices .t13-org { font-size: 0.85rem; }
.customer-voices .testimonial-4 p { font-size: 1rem; }

/* Footer */
footer, .footer { font-size: 0.85rem; }

/* Language picker — custom dropdown with flag icons */
.olw-lang-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
}
.olw-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.olw-lang-btn:hover,
.olw-lang-btn[aria-expanded="true"] { border-color: #5f3bff; color: #5f3bff; }
.olw-lang-btn .olw-flag { font-size: 16px; line-height: 1; }
.olw-lang-btn svg { margin-left: 2px; }

.olw-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  padding: 6px;
  margin: 0;
  list-style: none;
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
}
.olw-lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  cursor: pointer;
  transition: background .12s, color .12s;
}
.olw-lang-menu li:hover { background: #F2F2EE; }
.olw-lang-menu li[aria-selected="true"] {
  background: #5f3bff;
  color: #FFFFFF;
}
.olw-lang-menu li[aria-selected="true"]:hover { background: #4b24f5; }
.olw-lang-menu .olw-flag { font-size: 16px; line-height: 1; }


/* Keep Google Translate's iframe + banner out of the layout */
body { top: 0 !important; }
.goog-te-banner-frame, .skiptranslate { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
.goog-tooltip, .goog-tooltip:hover { background: none !important; border: none !important; box-shadow: none !important; }

/* Homepage testimonial — more compact */
.customer-voices { padding: 36px 16px !important; }
.customer-voices .title { font-size: 1.1rem; }
.customer-voices .sub-title { font-size: 0.7rem; }
.customer-voices .testimonials-wraper-2 { max-width: 640px; padding: 0 48px; }
.customer-voices .testimonial-4 { max-width: 560px; }
.customer-voices .testimonial-name {
  display: block;
  font-size: 1.08rem;                /* +20% from 0.9rem */
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: -0.005em;
  color: #9b59b6 !important;
  margin-bottom: 10px;
}
/* Hide the theme's corner-positioned quote mark */
.customer-voices .testimonial-4.quote-left:before { content: none !important; }

/* Put a small quote glyph inline, right before the title — sits on the same
   baseline as the title text, centered with the rest of the card. */
.customer-voices .testimonial-name:before {
  content: "\f121";                 /* same flaticon quote char theme2 used */
  font-family: 'Flaticon';
  font-size: 18px;
  color: #9b59b6;
  margin-right: 8px;
  vertical-align: baseline;
  display: inline-block;
}
.customer-voices .testimonial-4 p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.customer-voices .olw-prev,
.customer-voices .olw-next { width: 32px !important; height: 32px !important; font-size: 14px !important; }

/* Contact page — editorial two-column layout */
.contact-page { padding: 20px 0 64px; }
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 960px;
}
@media (min-width: 768px) {
  .contact-page__grid { grid-template-columns: 5fr 7fr; gap: 56px; }
}

.contact-page__title {
  font-size: clamp(2rem, 3vw + 0.8rem, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 16px;
  text-wrap: balance;
}
.contact-page__deck { font-size: 1.05rem; line-height: 1.6; color: #525252; margin: 0 0 24px; }
.contact-page__contacts { list-style: none; padding: 0; margin: 0; font-size: 15px; }
.contact-page__contacts li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #E5E5E5;
}
.contact-page__contacts li:last-child { border-bottom: 1px solid #E5E5E5; }
.contact-page__contacts span {
  min-width: 72px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8A8A8A;
  font-weight: 600;
}
.contact-page__contacts a { color: #0A0A0A; text-decoration: none; }
.contact-page__contacts a:hover { text-decoration: underline; }

.contact-page__process {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  background: #FAFAF7;
}
.contact-page__process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8A8A;
  margin-bottom: 6px;
}
.contact-page__process p { margin: 0; color: #1a1a1a; line-height: 1.55; font-size: 14.5px; }

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  background: #FFFFFF;
}
.contact-page__row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 520px) { .contact-page__row { grid-template-columns: 1fr 1fr; } }

.contact-page__form label { display: flex; flex-direction: column; gap: 4px; }
.contact-page__form label > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8A8A;
}
.contact-page__form label > span small {
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #8A8A8A;
}
.contact-page__form input,
.contact-page__form textarea {
  width: 100%;
  padding: 10px 14px;
  font: inherit;
  background: #FAFAF7;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  color: #0A0A0A;
}
.contact-page__form input:focus,
.contact-page__form textarea:focus { outline: none; border-color: #0A0A0A; background: #FFFFFF; }
.contact-page__form textarea { resize: vertical; min-height: 140px; }
.contact-page__form .btn { align-self: flex-start; margin-top: 6px; }

.contact-page__ok { background: #ECFDF5; color: #065F46; padding: 10px 14px; border-radius: 10px; font-size: 14px; }
.contact-page__err { background: #FEF2F2; color: #991B1B; padding: 10px 14px; border-radius: 10px; font-size: 14px; }

/* Blog list (index.html) — editorial grid */
.blog-index { padding: 20px 0 64px; }

/* Theme wraps content in .content-inner (padding-top:115px). Zero it out on
   editorial pages so they sit flush under the nav like the home page. */
.content-inner:has(.blog-index),
.content-inner:has(.blog-article),
.content-inner:has(.contact-page) { padding-top: 0 !important; padding-bottom: 0 !important; }
.content-inner:has(.blog-index) .col-xl-8,
.content-inner:has(.blog-article) .col-xl-8,
.content-inner:has(.contact-page) .col-xl-8,
.content-inner:has(.blog-index) .col-lg-8,
.content-inner:has(.blog-article) .col-lg-8,
.content-inner:has(.contact-page) .col-lg-8 {
  margin-bottom: 0 !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  width: 100% !important;
}
.blog-index__head { max-width: 780px; margin: 0 0 16px; }
.blog-index__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: #9b59b6;
  margin-bottom: 10px;
}
.blog-index__title {
  font-size: clamp(1.8rem, 3vw + 0.8rem, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 10px;
  text-wrap: balance;
}
.blog-index__deck { color: #525252; font-size: 1rem; margin: 0; }

.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px 28px;
}

.blog-card { display: flex; flex-direction: column; text-decoration: none; }
.blog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #F2F2EE;
  display: block;
  margin-bottom: 16px;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display:block; }
.blog-card:hover .blog-card__media img { transform: scale(1.02); }

.blog-card__body { display: flex; flex-direction: column; gap: 6px; }
.blog-card__cat {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  color: #8A8A8A;
}
.blog-card__title {
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0;
}
.blog-card__title a { color: #0A0A0A; text-decoration: none; }
.blog-card__title a:hover { color: #525252; }
.blog-card__excerpt {
  color: #525252;
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta { color: #8A8A8A; font-size: 12.5px; display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.blog-card__sep { color: #d0d0d0; }

.blog-index__pagination {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  margin-top: 56px; font-size: 14px;
}
.blog-index__pag-btn {
  padding: 6px 14px;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  color: #525252;
  text-decoration: none;
}
.blog-index__pag-btn:hover { color: #FAFAF7; background: #0A0A0A; border-color: #0A0A0A; }
.blog-index__pag-count { color: #8A8A8A; }
.blog-index__empty { padding: 80px 0; text-align: center; color: #8A8A8A; }

/* Blog article — editorial layout matching the home page's typographic language */
.blog-article { padding: 20px 0 32px; }
.blog-article__inner { max-width: 720px; margin: 0 auto; }

.blog-article__head { margin-bottom: 32px; }
.blog-article__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: #9b59b6;
  text-decoration: none;
  margin-bottom: 14px;
}
.blog-article__eyebrow:hover { color: #0A0A0A; }

.blog-article__title {
  font-size: clamp(1.8rem, 3vw + 0.8rem, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 16px;
  text-wrap: balance;
}

.blog-article__deck {
  font-size: 1.1rem;
  line-height: 1.55;
  color: #525252;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #525252;
}
.blog-article__author { color: #0A0A0A; font-weight: 500; text-decoration: none; }
.blog-article__author:hover { text-decoration: underline; }
.blog-article__sep { color: #8A8A8A; }

.blog-article__hero {
  margin: 36px 0;
  overflow: hidden;
  border-radius: 20px;
  background: #F2F2EE;
}
.blog-article__hero img { display:block; width: 100%; height: auto; }

.blog-article__body {
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
}
.blog-article__body p { margin: 0 0 1.15em; }
.blog-article__body h1,
.blog-article__body h2,
.blog-article__body h3,
.blog-article__body h4 {
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -0.015em;
  margin: 2em 0 0.6em;
  line-height: 1.25;
}
.blog-article__body h2 { font-size: 1.6rem; }
.blog-article__body h3 { font-size: 1.3rem; }
.blog-article__body h4 { font-size: 1.1rem; }
.blog-article__body img { max-width: 100%; height: auto; border-radius: 12px; margin: 1em 0; }
.blog-article__body a { color: #0A0A0A; text-decoration: underline; text-decoration-color: #E5E5E5; text-underline-offset: 3px; }
.blog-article__body a:hover { text-decoration-color: #0A0A0A; }
.blog-article__body blockquote {
  border-left: 3px solid #0A0A0A;
  padding: 4px 0 4px 20px;
  margin: 1.5em 0;
  color: #525252;
  font-style: italic;
}
.blog-article__body pre,
.blog-article__body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
  background: #F2F2EE;
  border-radius: 6px;
}
.blog-article__body code { padding: 1px 6px; }
.blog-article__body pre { padding: 14px 16px; overflow-x: auto; }
.blog-article__body ul,
.blog-article__body ol { padding-left: 1.25em; margin: 0 0 1.15em; }
.blog-article__body li { margin: 0.35em 0; }
.blog-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25em 0;
  font-size: 0.95em;
}
.blog-article__body th,
.blog-article__body td { border: 1px solid #E5E5E5; padding: 8px 10px; text-align: left; }
.blog-article__body th { background: #F7F7F3; font-weight: 600; }

.blog-article__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 40px 0 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E5E5;
}
.blog-article__tag {
  padding: 4px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  font-size: 13px;
  color: #525252;
  text-decoration: none;
}
.blog-article__tag:hover { color: #0A0A0A; border-color: #0A0A0A; }

.blog-article__share {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 16px 0 0 0;
  font-size: 14px;
}
.blog-article__share-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  color: #8A8A8A;
  margin-right: 4px;
}
.blog-article__share a {
  padding: 4px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  color: #525252;
  text-decoration: none;
  font-size: 13px;
}
.blog-article__share a:hover { color: #FAFAF7; background: #0A0A0A; border-color: #0A0A0A; }

.blog-article__comments {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #E5E5E5;
}
.blog-article__comments h2 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.blog-article__comments .comment-list { list-style: none; padding: 0; margin: 0 0 40px; }
.blog-article__comments .comment { margin-bottom: 20px; }
.blog-article__comments .comment-body {
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
}
.blog-article__comments .comment-author { display:flex; align-items:center; gap: 10px; margin-bottom: 6px; }
.blog-article__comments .avatar { width: 32px; height: 32px; border-radius: 32px; }
.blog-article__comments cite { font-style: normal; font-weight: 600; color: #0A0A0A; }
.blog-article__comments .reply { margin-top: 8px; }
.blog-article__comments .reply a { font-size: 13px; color: #525252; }
.blog-article__comments .reply a:hover { color: #0A0A0A; }
.blog-article__comments .comment-respond input[type="text"],
.blog-article__comments .comment-respond input[type="email"],
.blog-article__comments .comment-respond textarea {
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.blog-article__comments .comment-respond label {
  display: block;
  font-size: 13px;
  color: #525252;
  margin-bottom: 4px;
}
.blog-article__comments .comment-respond p { margin: 0 0 14px; }

/* Floating tooltip for nav items that have a description (uses data-tooltip attr) */
a[data-tooltip] { position: relative; }
a[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translate(-50%, 4px);
  background: #0A0A0A;
  color: #FAFAF7;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  max-width: 280px;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.9,.3,1.2), visibility 0s linear .2s;
  z-index: 100;
}
a[data-tooltip]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 2px);
  border: 6px solid transparent;
  border-bottom-color: #0A0A0A;
  margin-top: -2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.9,.3,1.2), visibility 0s linear .2s;
  pointer-events: none;
  z-index: 101;
}
a[data-tooltip]:hover::after,
a[data-tooltip]:focus-visible::after,
a[data-tooltip]:hover::before,
a[data-tooltip]:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

/* Kill the WOW.js entrance animations entirely — show content instantly */
.wow,
[data-wow-delay],
[data-wow-duration] {
  animation: none !important;
  -webkit-animation: none !important;
  animation-delay: 0s !important;
  -webkit-animation-delay: 0s !important;
  animation-duration: 0s !important;
  -webkit-animation-duration: 0s !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}
