/*
  Editable custom styles.
  This file is loaded after generated Tilda styles,
  so rules here can override defaults.
*/

:root {
  --site-accent: #111111;
  --site-text: #111111;
  --fox-section-side-gutter: clamp(28px, 5.2vw, 100px);
}

::selection {
  background: #eb1414;
  color: #ffffff;
}

::-moz-selection {
  background: #eb1414;
  color: #ffffff;
}

/* ── Hero title: desktop position ── */
@media screen and (min-width: 960px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"],
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"],
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"],
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    top: 165px !important;
    width: auto !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] .tn-atom,
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] .tn-atom,
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] .tn-atom,
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    font-size: 29px !important;
    white-space: nowrap !important;
  }
}

/* ── Team nav: TEAM button active (red) on team page ── */
#rec1106160806 .tn-elem[data-elem-id="1747235487045"],
#rec1106160806 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  color: #eb1414 !important;
  pointer-events: none;
}

#rec1124408336 .tn-elem[data-elem-id="1747646347206"],
#rec1124408336 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  color: #eb1414 !important;
  pointer-events: none;
}

#allrecords[data-tilda-page-alias="team"] .t450__menu a[href="team.html"] {
  color: #eb1414 !important;
  pointer-events: none;
}

@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747225382228"],
  #rec1065483946 .tn-elem[data-elem-id="1747225382228"],
  #rec1106160806 .tn-elem[data-elem-id="1747225382228"] {
    left: -11px !important;
  }
}

/* Hide Tilda duplicate title (artifact, positioned at y=1200 in editor) */
#rec1123735461 .tn-elem[data-elem-id="1747312642704"],
#rec1124278386 .tn-elem[data-elem-id="1747312642704"],
#rec1124289401 .tn-elem[data-elem-id="1747312642704"],
#rec1124282366 .tn-elem[data-elem-id="1747312642704"] {
  display: none !important;
}

/* ── Black decorative rectangles (aboutus) ── */
#rec1113408456 {
  display: none !important;
}

/* ── Reliable grid section: hide original artboard ── */
#rec1083953436 .t396 {
  display: none !important;
}

#rec1083953436 {
  padding: 0 !important;
  min-height: 0 !important;
}

/* Grid wrapper */
.fox-reliable {
  background-color: #1b1919;
  padding: 52px calc(var(--fox-section-side-gutter) + 13px) 56px;
  font-family: "Unbounded", sans-serif;
  overflow-x: clip;
}

.fox-reliable__inner {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fox-reliable__heading {
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 31px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.fox-reliable__accent {
  background-color: #eb1414;
  color: #000;
  padding: 0 8px;
}

.fox-reliable__grid-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Horizontal separator — затухает на концах */
.fox-reliable__grid-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 12%,
    rgba(255, 255, 255, 0.18) 88%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Vertical separator — затухает на концах */
.fox-reliable__grid-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 12%,
    rgba(255, 255, 255, 0.18) 88%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.fox-reliable__cell {
  padding: 36px 40px 36px 0;
}

.fox-reliable__cell:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
}

.fox-reliable__icon {
  margin-bottom: 14px;
}

.fox-reliable__icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(7307%) hue-rotate(356deg) brightness(96%) contrast(95%);
  display: block;
}

.fox-reliable__title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.2;
}

.fox-reliable__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: #ccc;
}

@media (max-width: 767px) {
  .fox-reliable {
    padding: 36px 10px 40px;
  }
  .fox-reliable__inner {
    padding: 0 10px;
  }
  .fox-reliable__grid-wrap {
    grid-template-columns: 1fr;
  }
  .fox-reliable__grid-wrap::before,
  .fox-reliable__grid-wrap::after {
    display: none;
  }
  .fox-reliable__cell {
    padding: 28px 16px;
  }
  /* Fix even-cell horizontal shift in single-column layout */
  .fox-reliable__cell:nth-child(even) {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Gradient separators after items 1 and 3 */
  .fox-reliable__cell:nth-child(1)::after,
  .fox-reliable__cell:nth-child(3)::after {
    content: '';
    display: block;
    height: 1px;
    margin: 16px -16px 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 12%,
      rgba(255, 255, 255, 0.18) 88%,
      transparent 100%
    );
  }
}

/* Example override:
.t-btn {
  border-radius: 12px;
}
*/

.fox-service-details {
  background-color: #1b1919;
  padding: 60px calc(var(--fox-section-side-gutter) + 13px);
  font-family: "Unbounded", sans-serif;
  overflow-x: clip;
}

.fox-service-details__container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  box-sizing: border-box;
}

.fox-service-details__title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 31px !important;
  line-height: 31px !important;
  letter-spacing: 1px;
  font-weight: 700 !important;
}

.fox-service-details__title-accent {
  background-color: #eb1414;
  color: #000;
  padding: 0 8px;
}

.fox-service-details__card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  color: #e8e8e8;
  padding: 28px;
  position: relative;
  overflow: visible;
  scroll-margin-top: 110px;
}

.fox-service-details__card::before,
.fox-service-details__card::after {
  position: absolute;
  color: #fff;
  font-size: 28px;
  font-weight: 100;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
}

.fox-service-details__card::before {
  content: "+";
  top: 0;
  left: 0;
  transform: translate(-45%, -50%);
}

.fox-service-details__card::after {
  content: "+";
  right: 0;
  bottom: 0;
  transform: translate(45%, 50%);
}

.fox-service-details__card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}

.fox-service-details__card h3::before {
  content: "";
  width: 34px;
  height: 34px;
  position: static;
  flex: 0 0 34px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(7307%) hue-rotate(356deg) brightness(96%) contrast(95%);
}

#service-dex h3::before {
  background-image: url("../img/icons/4.svg");
}

#service-ai h3::before {
  background-image: url("../img/icons/7.svg");
}

#service-training h3::before {
  background-image: url("../img/icons/8.svg");
}

#service-team h3::before {
  background-image: url("../img/icons/9.svg");
}

.fox-service-details__card p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.35;
  max-width: 1080px;
  font-weight: 500;
}

.fox-service-details__card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.fox-service-details__card li {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

@media screen and (min-width: 1200px) {
  .fox-reliable {
    padding-left: calc(var(--fox-section-side-gutter) + 23px);
    padding-right: calc(var(--fox-section-side-gutter) + 23px);
  }

  .fox-service-details {
    padding-left: calc(var(--fox-section-side-gutter) + 23px);
    padding-right: calc(var(--fox-section-side-gutter) + 23px);
  }
}

#rec1038917196 [data-elem-id="1747300672649"],
#rec1038917196 [data-elem-id="1747301686516"],
#rec1038917196 [data-elem-id="1747307081956"],
#rec1038917196 [data-elem-id="1747306816540"],
#rec1038917196 [data-elem-id="1747301018731"],
#rec1038917196 [data-elem-id="1747306996972"],
#rec1038917196 [data-elem-id="1747307127833"],
#rec1038917196 [data-elem-id="1747306938582"],
#rec1038917196 [data-elem-id="1747301030509"],
#rec1038917196 [data-elem-id="1747307011903"],
#rec1038917196 [data-elem-id="1747307214822"],
#rec1038917196 [data-elem-id="1747306952954"],
#rec1038917196 [data-elem-id="1747301037908"],
#rec1038917196 [data-elem-id="1747307038148"],
#rec1038917196 [data-elem-id="1747307260660"],
#rec1038917196 [data-elem-id="1747306970522"],
#rec1083953436 [data-elem-id="1747300672649"],
#rec1083953436 [data-elem-id="1747301686516"],
#rec1083953436 [data-elem-id="1747307081956"],
#rec1083953436 [data-elem-id="1747306816540"],
#rec1083953436 [data-elem-id="1747301018731"],
#rec1083953436 [data-elem-id="1747306996972"],
#rec1083953436 [data-elem-id="1747307127833"],
#rec1083953436 [data-elem-id="1747306938582"],
#rec1083953436 [data-elem-id="1747301030509"],
#rec1083953436 [data-elem-id="1747307011903"],
#rec1083953436 [data-elem-id="1747307214822"],
#rec1083953436 [data-elem-id="1747306952954"],
#rec1083953436 [data-elem-id="1747301037908"],
#rec1083953436 [data-elem-id="1747307038148"],
#rec1083953436 [data-elem-id="1747307260660"],
#rec1083953436 [data-elem-id="1747306970522"] {
  cursor: pointer;
}

#rec1038917196 [data-elem-id="1747301686516"] .tn-atom,
#rec1038917196 [data-elem-id="1747306996972"] .tn-atom,
#rec1038917196 [data-elem-id="1747307011903"] .tn-atom,
#rec1038917196 [data-elem-id="1747307038148"] .tn-atom,
#rec1083953436 [data-elem-id="1747301686516"] .tn-atom,
#rec1083953436 [data-elem-id="1747306996972"] .tn-atom,
#rec1083953436 [data-elem-id="1747307011903"] .tn-atom,
#rec1083953436 [data-elem-id="1747307038148"] .tn-atom {
  font-size: 17px !important;
}

#rec1038917196 [data-elem-id="1747306816540"] .tn-atom,
#rec1038917196 [data-elem-id="1747306938582"] .tn-atom,
#rec1038917196 [data-elem-id="1747306952954"] .tn-atom,
#rec1038917196 [data-elem-id="1747306970522"] .tn-atom,
#rec1083953436 [data-elem-id="1747306816540"] .tn-atom,
#rec1083953436 [data-elem-id="1747306938582"] .tn-atom,
#rec1083953436 [data-elem-id="1747306952954"] .tn-atom,
#rec1083953436 [data-elem-id="1747306970522"] .tn-atom {
  filter: brightness(0) saturate(100%);
}

/* Undo main.css centering shift for service icons 2-4 */
#rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
  left: calc(50% - 600px + 387px) !important;
}

#rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
  left: calc(50% - 600px + 654px) !important;
}

#rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
  left: calc(50% - 600px + 921px) !important;
}

@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: calc(50% - 480px + 280px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: calc(50% - 480px + 522px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: calc(50% - 480px + 763px) !important;
  }
}

@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: calc(50% - 320px + 404px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: calc(50% - 320px + 76px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: calc(50% - 320px + 403px) !important;
  }
}

@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: calc(50% - 240px + 282px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: calc(50% - 240px + 40px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: calc(50% - 240px + 282px) !important;
  }
}

@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: 40px !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: 40px !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: 40px !important;
  }
}

@media (max-width: 980px) {
  .fox-service-details {
    padding: 42px 14px;
  }

  .fox-service-details__container {
    padding: 0;
  }

  .fox-service-details__card {
    padding: 20px;
  }

  .fox-service-details__card p {
    font-size: 13px;
    line-height: 1.35;
  }

  .fox-service-details__card li {
    font-size: 13px;
    line-height: 1.35;
  }
}

/* Steps section: 85.png card asset, clean layout */

/* Hide: bottom photos, top decorative shapes only */
#rec1031581486 .tn-elem__10315814861736238074986,
#rec1031581486 .tn-elem__10315814861736238148106,
#rec1031581486 .tn-elem__10315814861736238164050,
#rec1031581486 .tn-elem__10315814861747752398389,
#rec1031581486 .tn-elem__10315814861747752573499,
#rec1031581486 .tn-elem__10315814861747752581807 {
  display: none !important;
}

/* Card shape: apply 85.png, kill Tilda red — all sizes */
#rec1031581486 .tn-elem[data-elem-id="1736239293559"] .tn-atom,
#rec1031581486 .tn-elem[data-elem-id="1736239417419"] .tn-atom,
#rec1031581486 .tn-elem[data-elem-id="1736239428204"] .tn-atom {
  background-color: transparent !important;
  background-image: url("../img/photos/85.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* Numbers text style — all sizes */
#rec1031581486 .tn-elem__10315814861736236837914 .tn-atom,
#rec1031581486 .tn-elem__10315814861736237289253 .tn-atom,
#rec1031581486 .tn-elem__10315814861736237473197 .tn-atom {
  color: #000000 !important;
  font-size: 64px !important;
  line-height: 64px !important;
  font-weight: 900 !important;
  vertical-align: top !important;
}

/* Titles text style — all sizes */
#rec1031581486 .tn-elem__10315814861735309849618 .tn-atom,
#rec1031581486 .tn-elem__10315814861736237354228 .tn-atom,
#rec1031581486 .tn-elem__10315814861736237506627 .tn-atom {
  color: #000000 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

/* Descriptions text style — all sizes */
#rec1031581486 .tn-elem__10315814861735309006964 .tn-atom,
#rec1031581486 .tn-elem__10315814861735309135900 .tn-atom,
#rec1031581486 .tn-elem__10315814861736237970522 .tn-atom {
  color: #000000 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

/* Desktop (≥640px): unified top/height — all 3 cards side by side */
@media screen and (min-width: 640px) {
  #rec1031581486 .tn-elem__10315814861736239293559,
  #rec1031581486 .tn-elem__10315814861736239417419,
  #rec1031581486 .tn-elem__10315814861736239428204 {
    height: 330px !important;
    top: 65px !important;
  }

  /* Numbers 1/2/3 */
  #rec1031581486 .tn-elem__10315814861736236837914,
  #rec1031581486 .tn-elem__10315814861736237289253,
  #rec1031581486 .tn-elem__10315814861736237473197 {
    top: 111px !important;
    transform: translateX(5px);
  }

  /* Titles */
  #rec1031581486 .tn-elem__10315814861735309849618,
  #rec1031581486 .tn-elem__10315814861736237354228,
  #rec1031581486 .tn-elem__10315814861736237506627 {
    top: 196px !important;
  }

  /* Descriptions */
  #rec1031581486 .tn-elem__10315814861735309006964,
  #rec1031581486 .tn-elem__10315814861735309135900,
  #rec1031581486 .tn-elem__10315814861736237970522 {
    top: 241px !important;
  }
}

/* Mobile (≤479px): 3 stacked cards — 20px gap from heading (height 30px) */
@media screen and (max-width: 479px) {
  /* Card 1: starts at 30+20=50px */
  #rec1031581486 .tn-elem__10315814861736239293559 { top: 50px !important; height: 330px !important; }
  #rec1031581486 .tn-elem__10315814861736236837914 { top: 85px !important; transform: translateX(10px); }
  #rec1031581486 .tn-elem__10315814861735309849618 { top: 181px !important; }
  #rec1031581486 .tn-elem__10315814861735309006964 { top: 226px !important; }

  /* Card 2: starts at 50+330+20=400px */
  #rec1031581486 .tn-elem__10315814861736239417419 { top: 400px !important; height: 330px !important; }
  #rec1031581486 .tn-elem__10315814861736237289253 { top: 435px !important; transform: translateX(10px); }
  #rec1031581486 .tn-elem__10315814861736237354228 { top: 531px !important; }
  #rec1031581486 .tn-elem__10315814861735309135900 { top: 576px !important; }

  /* Card 3: starts at 400+330+20=750px */
  #rec1031581486 .tn-elem__10315814861736239428204 { top: 750px !important; height: 330px !important; }
  #rec1031581486 .tn-elem__10315814861736237473197  { top: 785px !important; transform: translateX(10px); }
  #rec1031581486 .tn-elem__10315814861736237506627  { top: 881px !important; }
  #rec1031581486 .tn-elem__10315814861736237970522  { top: 926px !important; }

  /* Keep section heading inside the mobile frame */
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
  }

  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    font-size: 14px !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* Button: center below cards */
#rec1031581486 .tn-elem__10315814861747900997963 {
  display: none !important;
}

#rec1031581486 .tn-elem__10315814861735311801781 {
  left: 50% !important;
  transform: translateX(-50%);
  top: 416px !important;
}

#rec1031581486 .tn-elem__10315814861735311801781 .tn-atom {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  box-sizing: border-box;
  background-color: #eb1414 !important;
  color: #000000 !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#rec1031581486 .tn-elem__10315814861735311801781 .tn-atom:hover,
#rec1031581486 .tn-elem__10315814861735311801781 .tn-atom:focus-visible {
  background-color: #ffffff !important;
  color: #000000 !important;
}

html body #allrecords #rec1031581486 .t396__carrier,
html body #allrecords #rec1031581486 .t396__filter,
html body #allrecords #rec1031581486 .t396__artboard {
  height: 546px !important;
}

@media screen and (max-width: 639px) {
  html body #allrecords #rec1031581486 .t396__carrier,
  html body #allrecords #rec1031581486 .t396__filter,
  html body #allrecords #rec1031581486 .t396__artboard {
    height: 1100px !important;
  }
}

@media screen and (max-width: 479px) {
  html body #allrecords #rec1031581486 .t396__carrier,
  html body #allrecords #rec1031581486 .t396__filter,
  html body #allrecords #rec1031581486 .t396__artboard {
    height: 1100px !important;
  }
}

/* Steps section: keep no horizontal scrollbar */
html body #allrecords #rec1031581486 .t396__artboard {
  overflow-x: clip !important;
  overflow-y: visible !important;
  scrollbar-width: none;
}

@media screen and (max-width: 639px) {
  html body #allrecords #rec1031581486 .t396__artboard {
    overflow-y: visible !important;
  }
}

html body #allrecords #rec1031581486 .t396__artboard::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* TEAM carousel: custom scrollbar placed directly under photos */
html body #allrecords #rec1033875646 {
  position: relative;
}

html body #allrecords #rec1033875646 .t396__artboard.dragscroll,
html body #allrecords #rec1033875646 .t396__artboard {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html body #allrecords #rec1033875646 .t396__artboard.dragscroll::-webkit-scrollbar,
html body #allrecords #rec1033875646 .t396__artboard::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

html body #allrecords #rec1033875646 .tn-elem[data-elem-id="1749207221725"] {
  display: none !important;
}

html body #allrecords #rec1033875646 .fox-team-inline-scrollbar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: #000000;
  z-index: 60;
  user-select: none;
  overflow: hidden;
  box-sizing: border-box;
}

html body #allrecords #rec1033875646 .fox-team-inline-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 72px;
  background-color: #eb1414;
  border: 0;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  transform: translateX(0);
  transition: background-color 0.15s ease;
  cursor: pointer;
}

html body #allrecords #rec1033875646 .fox-team-inline-scrollbar__thumb:hover {
  background-color: #ffffff;
}

/* Team cards: cut top-left corner */
html body #allrecords #rec1033875646 .img-glitch,
html body #allrecords #rec1108212246 .img-glitch,
html body #allrecords #rec1108906566 .img-glitch {
  -webkit-clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
}

/* Quotes section: remove decorative divider and use spacing instead */
#rec1065451616 .tn-elem[data-elem-id="1748621694120"],
#rec1065451616 .tn-elem[data-elem-id="1748621731965"],
#rec1065451616 .tn-elem[data-elem-id="1748621743536"] {
  display: none !important;
}

#rec1065451616 {
  margin-bottom: 24px;
}

#rec1065451616 .tradingview-widget-copyright,
#rec1065451616 .blue-text {
  display: none !important;
}

#rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom {
  position: relative;
  overflow: visible !important;
}

#rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom::before,
#rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom::after {
  content: "+";
  position: absolute;
  color: #ffffff;
  font-size: 28px;
  font-weight: 100;
  line-height: 1;
  z-index: 5;
  pointer-events: none;
}

#rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom::before {
  top: 0;
  left: 0;
  transform: translate(-45%, -50%);
}

#rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom::after {
  right: 0;
  bottom: 32px;
  transform: translate(45%, 50%);
}

@media screen and (min-width: 1200px) {
  /* Keep TradingView aligned to Tilda grid like neighboring blocks */
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
    left: var(--fox-section-side-gutter) !important;
    width: calc(100% - var(--fox-section-side-gutter) - var(--fox-section-side-gutter)) !important;
    height: 450px !important;
  }
}

/* Hero fox: unify vertical position on main pages */
#rec1123735461 .tn-elem[data-elem-id="1750248542074"],
#rec1124278386 .tn-elem[data-elem-id="1750248542074"],
#rec1124289401 .tn-elem[data-elem-id="1750248542074"],
#rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
  top: 90px !important;
}

@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"],
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"],
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"],
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    top: 138px !important;
  }
}

/* Fox image mobile positions are inside HERO MOBILE block below */

/* Hero 01/10: plain text without glow/gradient/shadow effects */
#rec1123735461 .tn-elem[data-elem-id="1747839299921"],
#rec1123735461 .tn-elem[data-elem-id="1747839299921"] .tn-atom,
#rec1124278386 .tn-elem[data-elem-id="1747839299921"],
#rec1124278386 .tn-elem[data-elem-id="1747839299921"] .tn-atom,
#rec1124289401 .tn-elem[data-elem-id="1747839299921"],
#rec1124289401 .tn-elem[data-elem-id="1747839299921"] .tn-atom,
#rec1124282366 .tn-elem[data-elem-id="1747839299921"],
#rec1124282366 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Lead form: keep visual style consistent with main page */
#allrecords .exora-lead-form .t-submit,
#allrecords .js-form-proccess .t-submit {
  color: #000000 !important;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  font-family: Unbounded, sans-serif !important;
  background-color: #eb1414 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  transition: 0.3s ease all !important;
}

#allrecords .exora-lead-form .t-form__inputsbox,
#allrecords .exora-lead-form .t-input-group,
#allrecords .exora-lead-form .t-input-block,
#allrecords .exora-lead-form .tn-form__submit,
#allrecords .exora-lead-form .t-input,
#allrecords .exora-lead-form .t-input-phonemask__wrap,
#allrecords .exora-lead-form .iti,
#allrecords .js-form-proccess .t-form__inputsbox,
#allrecords .js-form-proccess .t-input-group,
#allrecords .js-form-proccess .t-input-block,
#allrecords .js-form-proccess .tn-form__submit,
#allrecords .js-form-proccess .t-input,
#allrecords .js-form-proccess .t-input-phonemask__wrap {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

#allrecords .exora-lead-form .t-submit:hover,
#allrecords .js-form-proccess .t-submit:hover {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* Lead-form text spacing: prevent heading/subtitle overlap after copy update */
#allrecords .tn-elem[data-elem-id="1734444979691"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1748004070500"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254202569"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254025333"] .tn-atom {
  line-height: 1.06 !important;
}

#allrecords .tn-elem[data-elem-id="1734444925865"],
#allrecords .tn-elem[data-elem-id="1748004070505"],
#allrecords .tn-elem[data-elem-id="1753254202573"],
#allrecords .tn-elem[data-elem-id="1753254025327"] {
  transform: translateY(16px) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO MOBILE — reference layout
   Title+arrow top → separator → paragraph → stats(L) + fox(R) → phrase bar
   ═══════════════════════════════════════════════════════════ */

/* Helper: apply same rules to all 4 hero records */
/* ── ≤ 959px: tablets 640–960px ── */
@media screen and (max-width: 959px) {

  /* Artboard height — NOT overridden here; only mobile blocks (≤639/≤479) set height */
  html body #allrecords #rec1123735461 .t396__artboard,
  html body #allrecords #rec1123735461 .t396__carrier,
  html body #allrecords #rec1123735461 .t396__filter,
  html body #allrecords #rec1124278386 .t396__artboard,
  html body #allrecords #rec1124278386 .t396__carrier,
  html body #allrecords #rec1124278386 .t396__filter,
  html body #allrecords #rec1124289401 .t396__artboard,
  html body #allrecords #rec1124289401 .t396__carrier,
  html body #allrecords #rec1124289401 .t396__filter,
  html body #allrecords #rec1124282366 .t396__artboard,
  html body #allrecords #rec1124282366 .t396__carrier,
  html body #allrecords #rec1124282366 .t396__filter {
    overflow: hidden !important;
  }

  /* — Hide decorative/video elements — */
  #rec1123735461 .tn-elem[data-elem-id="1747232544453"],
  #rec1124278386 .tn-elem[data-elem-id="1747232544453"],
  #rec1124289401 .tn-elem[data-elem-id="1747232544453"],
  #rec1124282366 .tn-elem[data-elem-id="1747232544453"],
  #rec1123735461 .tn-elem[data-elem-id="1748015917462"],
  #rec1124278386 .tn-elem[data-elem-id="1748015917462"],
  #rec1124289401 .tn-elem[data-elem-id="1748015917462"],
  #rec1124282366 .tn-elem[data-elem-id="1748015917462"],
  #rec1123735461 .tn-elem[data-elem-id="1754575422933"],
  #rec1124278386 .tn-elem[data-elem-id="1754575422933"],
  #rec1124289401 .tn-elem[data-elem-id="1754575422933"],
  #rec1124282366 .tn-elem[data-elem-id="1754575422933"],
  #rec1124278386 .tn-elem[data-elem-id="1754575389578"],
  #rec1124289401 .tn-elem[data-elem-id="1750777179302"],
  #rec1123735461 .tn-elem[data-elem-id="1747233003903"],
  #rec1123735461 .tn-elem[data-elem-id="1747312395611"],
  #rec1123735461 .tn-elem[data-elem-id="1747312777885"],
  #rec1124278386 .tn-elem[data-elem-id="1747233003903"],
  #rec1124278386 .tn-elem[data-elem-id="1747312395611"],
  #rec1124278386 .tn-elem[data-elem-id="1747312777885"],
  #rec1124289401 .tn-elem[data-elem-id="1747233003903"],
  #rec1124289401 .tn-elem[data-elem-id="1747312395611"],
  #rec1124289401 .tn-elem[data-elem-id="1747312777885"],
  #rec1124282366 .tn-elem[data-elem-id="1747233003903"],
  #rec1124282366 .tn-elem[data-elem-id="1747312395611"],
  #rec1124282366 .tn-elem[data-elem-id="1747312777885"],
  #rec1123735461 .tn-elem[data-elem-id="1748343246927"],
  #rec1124278386 .tn-elem[data-elem-id="1748343246927"],
  #rec1124289401 .tn-elem[data-elem-id="1748343246927"],
  #rec1124282366 .tn-elem[data-elem-id="1748343246927"] {
    display: none !important;
  }

  /* — Card sticker (71-1.png) + glitch overlay (66-1.svg) — */
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"],
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"],
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"],
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"],
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"],
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"],
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"],
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: block !important;
    top: 316px !important;
    left: calc(50% - 320px + 430px) !important;
    width: 200px !important;
    height: 200px !important;
  }

  /* — 01/10 decorative counter: behind fox, right zone — */
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"],
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"],
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"],
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: block !important;
    top: 227px !important;
    left: auto !important;
    right: -30px !important;
    z-index: 3 !important;
  }

  /* — Title (FOX GLOBAL) at the very top — */
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"],
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"],
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"],
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    top: 70px !important;
    left: calc(50% - 320px + 10px) !important;
    width: 282px !important;
  }

  /* — Arrow icon: top-right, same row as title — */
  /* index uses 1747327198617; aboutus uses 1751631300223; team uses 1751631360021 */
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"],
  #rec1124278386 .tn-elem[data-elem-id="1747327198617"],
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"],
  #rec1124289401 .tn-elem[data-elem-id="1747327198617"],
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"],
  #rec1124282366 .tn-elem[data-elem-id="1747327198617"] {
    top: 70px !important;
    left: calc(50% - 320px + 300px) !important;
  }

  /* — Red separator: pseudo-element on title .tn-atom — */
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] .tn-atom::after,
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] .tn-atom::after,
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] .tn-atom::after,
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] .tn-atom::after {
    content: '' !important;
    display: block !important;
    height: 0.5px !important;
    background-color: #eb1414 !important;
    margin-top: 8px !important;
    width: 100% !important;
  }

  /* — Original Tilda separator: hidden on mobile — */
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"],
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"],
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"],
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: none !important;
  }

  /* — Paragraph text below separator — */
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"],
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"],
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"],
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    top: 136px !important;
    left: calc(50% - 320px + 10px) !important;
    width: 360px !important;
  }

  /* — Fox image: right side, vertically centred with stats — */
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"],
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"],
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"],
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    top: 176px !important;
    left: auto !important;
    right: -30px !important;
    width: 358px !important;
    height: 396px !important;
    zoom: 1 !important;
    z-index: 4 !important;
  }

  /* — Branded sticker on fox: render as one combined overlay on adaptive — */
  html body #allrecords #rec1123735461 .t396__artboard::after,
  html body #allrecords #rec1124278386 .t396__artboard::after,
  html body #allrecords #rec1124289401 .t396__artboard::after,
  html body #allrecords #rec1124282366 .t396__artboard::after {
    content: '' !important;
    position: absolute !important;
    top: auto !important;
    bottom: 68px !important;
    right: 0 !important;
    width: 236px !important;
    height: 236px !important;
    display: block !important;
    pointer-events: none !important;
    z-index: 5 !important;
    background-image: url('../img/icons/66-1.svg'), url('../img/photos/71-1.png') !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-size: contain, contain !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"],
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"],
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"],
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: none !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"],
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"],
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"],
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: none !important;
  }

  /* — Stats: left column — */
  /* Row 1 icon */
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"],
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"],
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"],
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    top: 236px !important; left: calc(50% - 320px + 10px) !important;
  }
  /* Row 1 number 7800+ */
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"],
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"],
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"],
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    top: 241px !important; left: calc(50% - 320px + 42px) !important;
  }
  /* Row 1 label */
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"],
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"],
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"],
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    top: 268px !important; left: calc(50% - 320px + 10px) !important;
  }
  /* Row 2 icon */
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"],
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"],
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"],
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    top: 311px !important; left: calc(50% - 320px + 10px) !important;
  }
  /* Row 2 number 300+ */
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"],
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"],
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"],
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    top: 316px !important; left: calc(50% - 320px + 42px) !important;
  }
  /* Row 2 label */
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"],
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"],
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"],
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    top: 343px !important; left: calc(50% - 320px + 10px) !important;
  }
  /* Row 3 icon */
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"],
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"],
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"],
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    top: 386px !important; left: calc(50% - 320px + 10px) !important;
  }
  /* Row 3 number 7+ */
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"],
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"],
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"],
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    top: 391px !important; left: calc(50% - 320px + 42px) !important;
  }
  /* Row 3 label */
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"],
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"],
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"],
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    top: 418px !important; left: calc(50% - 320px + 10px) !important;
  }

  /* — Phrase bar background: full-bleed gradient bar at bottom — */
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"],
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"],
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"],
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    top: 481px !important;
    left: calc(50% - 320px + -40px) !important;
  }

  /* — Typing phrase text on bar — */
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"],
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"],
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"],
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    top: 495px !important;
    left: calc(50% - 320px + 10px) !important;
    width: 600px !important;
  }
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  html body #allrecords #rec1123735461 .t396__artboard::after,
  html body #allrecords #rec1124278386 .t396__artboard::after,
  html body #allrecords #rec1124289401 .t396__artboard::after,
  html body #allrecords #rec1124282366 .t396__artboard::after {
    content: '' !important;
    top: 316px !important;
    bottom: auto !important;
    left: calc(50% - 320px + 434px) !important;
    right: auto !important;
    width: 200px !important;
    height: 200px !important;
  }

  #rec1123735461 .tn-elem[data-elem-id="1747728712611"],
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"],
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"],
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"],
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"],
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"],
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"],
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: none !important;
  }
}

@media screen and (min-width: 960px) and (max-width: 1079px) {
  html body #allrecords #rec1123735461 .t396__artboard::after,
  html body #allrecords #rec1124278386 .t396__artboard::after,
  html body #allrecords #rec1124289401 .t396__artboard::after,
  html body #allrecords #rec1124282366 .t396__artboard::after {
    content: '' !important;
    position: absolute !important;
    top: 329px !important;
    bottom: auto !important;
    left: calc(50% - 480px + 730px) !important;
    right: auto !important;
    width: 240px !important;
    height: 240px !important;
    display: block !important;
    pointer-events: none !important;
    z-index: 5 !important;
    background-image: url('../img/icons/66-1.svg'), url('../img/photos/71-1.png') !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-size: contain, contain !important;
  }

  #rec1123735461 .tn-elem[data-elem-id="1747728712611"],
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"],
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"],
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"],
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"],
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"],
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"],
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: none !important;
  }
}

/* ── ≤ 639px: large phones 480–640px ── */
@media screen and (max-width: 639px) {

  html body #allrecords #rec1123735461 .t396__artboard,
  html body #allrecords #rec1123735461 .t396__carrier,
  html body #allrecords #rec1123735461 .t396__filter,
  html body #allrecords #rec1124278386 .t396__artboard,
  html body #allrecords #rec1124278386 .t396__carrier,
  html body #allrecords #rec1124278386 .t396__filter,
  html body #allrecords #rec1124289401 .t396__artboard,
  html body #allrecords #rec1124289401 .t396__carrier,
  html body #allrecords #rec1124289401 .t396__filter,
  html body #allrecords #rec1124282366 .t396__artboard,
  html body #allrecords #rec1124282366 .t396__carrier,
  html body #allrecords #rec1124282366 .t396__filter {
    height: 536px !important;
    overflow: hidden !important;
  }

  #rec1123735461 .tn-elem[data-elem-id="1747234162072"],
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"],
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"],
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    top: 70px !important; left: calc(50% - 240px + 10px) !important; width: 218px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"],
  #rec1124278386 .tn-elem[data-elem-id="1747327198617"],
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"],
  #rec1124289401 .tn-elem[data-elem-id="1747327198617"],
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"],
  #rec1124282366 .tn-elem[data-elem-id="1747327198617"] {
    top: 70px !important; left: calc(50% - 240px + 228px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"],
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"],
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"],
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: none !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"],
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"],
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"],
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    top: 136px !important; left: calc(50% - 240px + 10px) !important; width: 290px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"],
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"],
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"],
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    top: 226px !important;
    left: auto !important;
    right: -20px !important;
    width: 292px !important;
    height: 330px !important;
    zoom: 1 !important;
    z-index: 4 !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"],
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"],
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"],
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    top: 236px !important; left: calc(50% - 240px + 10px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"],
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"],
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"],
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    top: 241px !important; left: calc(50% - 240px + 42px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"],
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"],
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"],
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    top: 268px !important; left: calc(50% - 240px + 10px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"],
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"],
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"],
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    top: 311px !important; left: calc(50% - 240px + 10px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"],
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"],
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"],
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    top: 316px !important; left: calc(50% - 240px + 42px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"],
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"],
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"],
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    top: 343px !important; left: calc(50% - 240px + 10px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"],
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"],
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"],
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    top: 386px !important; left: calc(50% - 240px + 10px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"],
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"],
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"],
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    top: 391px !important; left: calc(50% - 240px + 42px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"],
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"],
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"],
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    top: 418px !important; left: calc(50% - 240px + 10px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"],
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"],
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"],
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    top: 481px !important; left: calc(50% - 240px + -40px) !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"],
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"],
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"],
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    top: 495px !important; left: calc(50% - 240px + 10px) !important; width: 347px !important;
  }
  html body #allrecords #rec1123735461 .t396__artboard::after,
  html body #allrecords #rec1124278386 .t396__artboard::after,
  html body #allrecords #rec1124289401 .t396__artboard::after,
  html body #allrecords #rec1124282366 .t396__artboard::after {
    top: auto !important;
    bottom: 55px !important;
    right: 0 !important;
    width: 206px !important;
    height: 206px !important;
  }
  /* — Original Tilda sticker layers disabled on phones — */
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"],
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"],
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"],
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: none !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"],
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"],
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"],
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: none !important;
  }
  /* — 01/10 counter — */
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"],
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"],
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"],
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: block !important;
    top: 227px !important;
    left: auto !important;
    right: -20px !important;
    z-index: 3 !important;
  }
}

/* ── ≤ 479px: small phones (most common: iPhone SE, 360–480px) ── */
@media screen and (max-width: 479px) {

  html body #allrecords #rec1123735461 .t396__artboard,
  html body #allrecords #rec1123735461 .t396__carrier,
  html body #allrecords #rec1123735461 .t396__filter,
  html body #allrecords #rec1124278386 .t396__artboard,
  html body #allrecords #rec1124278386 .t396__carrier,
  html body #allrecords #rec1124278386 .t396__filter,
  html body #allrecords #rec1124289401 .t396__artboard,
  html body #allrecords #rec1124289401 .t396__carrier,
  html body #allrecords #rec1124289401 .t396__filter,
  html body #allrecords #rec1124282366 .t396__artboard,
  html body #allrecords #rec1124282366 .t396__carrier,
  html body #allrecords #rec1124282366 .t396__filter {
    /* 526px / 320 * 100vw — Tilda масштабирует ВСЕ элементы на viewport/320,
       высота артборда должна расти пропорционально чтобы вместить их */
    height: 164.375vw !important;
    overflow: hidden !important;
  }

  #rec1123735461 .tn-elem[data-elem-id="1747234162072"],
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"],
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"],
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    top: 70px !important; left: 10px !important; width: 218px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"],
  #rec1124278386 .tn-elem[data-elem-id="1747327198617"],
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"],
  #rec1124289401 .tn-elem[data-elem-id="1747327198617"],
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"],
  #rec1124282366 .tn-elem[data-elem-id="1747327198617"] {
    top: 70px !important; left: 268px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"],
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"],
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"],
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: none !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"],
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"],
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"],
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    top: 136px !important; left: 10px !important; width: 278px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"],
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"],
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"],
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    top: calc(218px * var(--zoom, 1)) !important;
    bottom: auto !important;
    left: auto !important;
    right: calc(-15px * var(--zoom, 1)) !important;
    width: calc(218px * var(--zoom, 1)) !important;
    height: calc(253px * var(--zoom, 1)) !important;
    zoom: 1 !important;
    z-index: 3 !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"] .tn-atom,
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"] .tn-atom,
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"] .tn-atom,
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] .tn-atom {
    background-position: center bottom !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"],
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"],
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"],
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    top: 236px !important; left: 10px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"],
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"],
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"],
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    top: 241px !important; left: 42px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"],
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"],
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"],
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    top: 268px !important; left: 10px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"],
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"],
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"],
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    top: 311px !important; left: 10px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"],
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"],
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"],
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    top: 316px !important; left: 42px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"],
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"],
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"],
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    top: 343px !important; left: 10px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"],
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"],
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"],
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    top: 386px !important; left: 10px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"],
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"],
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"],
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    top: 391px !important; left: 42px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"],
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"],
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"],
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    top: 418px !important; left: 10px !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"],
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"],
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"],
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    top: 471px !important; left: -220px !important; z-index: 4 !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"],
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"],
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"],
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    top: 485px !important;
    left: 10px !important;
    width: 300px !important;
    white-space: normal !important;
    z-index: 5 !important;
  }
  html body #allrecords #rec1123735461 .t396__artboard::after,
  html body #allrecords #rec1124278386 .t396__artboard::after,
  html body #allrecords #rec1124289401 .t396__artboard::after,
  html body #allrecords #rec1124282366 .t396__artboard::after {
    top: auto !important;
    bottom: calc(-10px * var(--zoom, 1)) !important;
    right: 0 !important;
    width: calc(150px * var(--zoom, 1)) !important;
    height: calc(150px * var(--zoom, 1)) !important;
  }
  /* — Original Tilda sticker layers disabled on small phones — */
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"],
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"],
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"],
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: none !important;
  }
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"],
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"],
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"],
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: none !important;
  }
  /* — 01/10 counter — */
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"],
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"],
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"],
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: block !important;
    top: 227px !important;
    left: auto !important;
    right: -15px !important;
    z-index: 3 !important;
    width: 177px !important;
    height: 200px !important;
  }
}

/* Global overflow safety */
html, body { overflow-x: hidden; }
#allrecords { overflow-x: clip; }

/* ── ≤479px: Tilda-зум масштабирует элементы пропорционально ширине viewport.
   Содержимое заполняет экран как на 320px (эталон), но сам артборд
   нужно сделать достаточно высоким чтобы вместить увеличенные элементы.
   Формула: high_px / 320 * 100vw (при 320px = исходная высота, при 425px = исходная * 1.328).
   rec1031581486 (карточки): эталон 1100px → 343.75vw
   rec1190205346 (соц. сети): эталон 646px  → 201.875vw */
@media screen and (max-width: 479px) {
  html body #allrecords #rec1031581486 .t396__artboard,
  html body #allrecords #rec1031581486 .t396__carrier,
  html body #allrecords #rec1031581486 .t396__filter {
    height: 343.75vw !important;
  }

  html body #allrecords #rec1190205346 .t396__artboard,
  html body #allrecords #rec1190205346 .t396__carrier,
  html body #allrecords #rec1190205346 .t396__filter {
    height: 201.875vw !important;
  }

  /* ── TradingView виджет: отменяем Tilda-зум, задаём ширину через vw ──
     TradingView рендерит график по реальным CSS-пикселям iframe, а не
     по визуальному Tilda-zoom. Поэтому отменяем зум на этом блоке,
     и задаём ширину calc(100vw - 20px) — iframe получит правильный размер
     и TradingView заполнит контейнер без горизонтального overflow. */
  #rec1065451616 .t396__artboard .tn-elem {
    zoom: 1 !important;
  }
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
    width: calc(100vw - 20px) !important;
    height: 120vw !important;
    left: 10px !important;
  }
  /* .tn-atom и его контейнер растягиваем на полную высоту .tn-elem.
     Внутри HTML-вставки есть media (max-width:768px){ max-height:400px }
     на .tradingview-widget-container — он обрезает контейнер и сбивает
     позицию ::after.  Снимаем max-height и выравниваем высоту явно. */
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom {
    height: 120vw !important;
  }
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tradingview-widget-container {
    max-height: none !important;
    height: 120vw !important;
  }
  html body #allrecords #rec1065451616 .t396__artboard,
  html body #allrecords #rec1065451616 .t396__carrier,
  html body #allrecords #rec1065451616 .t396__filter {
    height: calc(120vw + 24px) !important;
  }
}

/* ============================================================
   Lead form — clean responsive layout (#rec1043197791)
   ============================================================ */

#rec1043197791 {
  background-color: #000;
  overflow: visible;
}

/* Allow zoomed form content (button) to overflow artboard boundary */
#rec1043197791 .t396__artboard,
#rec1112862926 .t396__artboard,
#rec1113064831 .t396__artboard {
  overflow: visible !important;
}

.fox-leadform__inner {
  max-width: 100%;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  box-sizing: border-box;
  min-height: 400px;
}

/* ── Left: decorative column ─────────────────────────────── */
.fox-leadform__deco {
  flex: 0 0 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: visible;
  isolation: isolate;
}

.fox-leadform__deco-card {
  position: absolute;
  bottom: 40px;
  left: 10px;
  width: 338px;
  height: 338px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: 10;
  flex-shrink: 0;
}

.fox-leadform__deco-icon {
  width: 640px;
  height: 640px;
  background-image: url('../img/icons/77-1.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(359deg);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.fox-leadform__deco-num {
  position: absolute;
  right: 5px;
  top: 60px;
  bottom: auto;
  left: auto;
  transform: none;
  color: transparent;
  background-image: linear-gradient(0.265turn, rgba(255,255,255,1) 0%, rgba(170,170,170,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "CYBER", Arial, sans-serif;
  font-size: 202px;
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* ── Right: content column ───────────────────────────────── */
.fox-leadform__body {
  flex: 0 0 50%;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

.fox-leadform__title {
  color: #fff;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.fox-leadform__sub {
  color: #a5a5a5;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 24px 0;
}

/* ── Submit button ───────────────────────────────────────── */
.fox-leadform__submit {
  display: block !important;
  width: 100% !important;
  height: 56px !important;
  padding: 0 15px !important;
  font-weight: 600 !important;
  box-sizing: border-box !important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%) !important;
}

/* Input fields: keep compact height to prevent overlap with next section */
#rec1043197791 .t-input {
  height: 40px !important;
}
#rec1043197791 .t-input-phonemask__wrap {
  height: 40px !important;
}
#rec1043197791 textarea.t-input {
  height: 40px !important;
  resize: none !important;
  padding-top: 10px !important;
}

/* Force button colors regardless of Tilda JS overrides */
#rec1043197791 .t-submit {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%) !important;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%) !important;
  background-color: #eb1414 !important;
  color: #000000 !important;
}
#rec1043197791 .t-submit:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* ── Responsive: ≤1199px ─────────────────────────────────── */
@media screen and (max-width: 1199px) {
  .fox-leadform__inner {
    padding: 40px 40px;
  }
  .fox-leadform__deco-icon {
    width: 540px;
    height: 540px;
  }
  .fox-leadform__deco-num {
    font-size: 165px;
  }
  .fox-leadform__deco-card {
    width: 275px;
    height: 275px;
  }
}

/* ── Responsive: ≤959px ──────────────────────────────────── */
@media screen and (max-width: 959px) {
  .fox-leadform__inner {
    padding: 30px 20px;
    min-height: 360px;
  }
  .fox-leadform__deco {
    min-height: 300px;
  }
  .fox-leadform__deco-icon {
    width: 420px;
    height: 420px;
  }
  .fox-leadform__deco-num {
    font-size: 165px;
  }
  .fox-leadform__deco-card {
    width: 276px;
    height: 276px;
  }
  .fox-leadform__title {
    font-size: 16px;
  }
  .fox-leadform__sub {
    font-size: 12px;
  }
}

/* ── Responsive: ≤639px — stack vertically ───────────────── */
@media screen and (max-width: 639px) {
  .fox-leadform__inner {
    flex-direction: column;
    min-height: auto;
    padding: 30px 0;
    align-items: stretch;
  }
  .fox-leadform__body {
    padding: 0 20px;
    order: 1;
    width: 100%;
    box-sizing: border-box;
  }
  .fox-leadform__deco {
    order: 2;
    width: 100%;
    min-height: 320px;
    margin-top: 20px;
  }
  .fox-leadform__deco-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .fox-leadform__deco-num {
    font-size: 165px;
  }
  .fox-leadform__deco-card {
    width: 276px;
    height: 276px;
  }
  .fox-leadform__title {
    font-size: 18px;
  }

  #rec1043197791 .tn-elem[data-elem-id="1734444979691"],
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"],
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] {
    transform: translateY(0) !important;
  }

  #rec1043197791 .tn-elem[data-elem-id="1734444925865"],
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"],
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] {
    transform: translateY(10px) !important;
  }

  #rec1043197791 .tn-elem[data-elem-id="1747748205706"],
  #rec1112862926 .tn-elem[data-elem-id="1747748205706"],
  #rec1113064831 .tn-elem[data-elem-id="1747748205706"] {
    transform: translateY(20px) !important;
  }
}

/* ── Responsive: ≤479px ──────────────────────────────────── */
@media screen and (max-width: 479px) {
  .fox-leadform__inner {
    padding: 20px 0;
  }
  .fox-leadform__body {
    padding: 0 16px;
  }
  .fox-leadform__title {
    font-size: 15px;
  }
  .fox-leadform__sub {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .fox-leadform__deco {
    min-height: 280px;
  }
  .fox-leadform__deco-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .fox-leadform__deco-num {
    font-size: 113px;
  }
  .fox-leadform__deco-card {
    width: 188px;
    height: 188px;
  }
}

/* Footer (index/about/team): hide logo, center copyright, prevent overflow */
#rec1039094686 .tn-elem[data-elem-id="1747646347196"],
#rec1124404171 .tn-elem[data-elem-id="1747646347196"],
#rec1124408336 .tn-elem[data-elem-id="1747646347196"] {
  display: none !important;
}

@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 20px) !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] .tn-atom,
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] .tn-atom,
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    line-height: 1.2 !important;
  }
}

@media screen and (min-width: 960px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
    width: 300px !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] .tn-atom,
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] .tn-atom,
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    white-space: nowrap !important;
  }
}

/* Typewriter: keep cursor static without blinking animation */
.typed-cursor {
  animation: none !important;
  -webkit-animation: none !important;
  opacity: 1 !important;
}

/* Courses: hide legacy Exora-branded socials (kept in DOM, not removed) */
#rec1179555861 .tn-elem[data-elem-id="1751014255987"],
#rec1179555861 .tn-elem[data-elem-id="1751014256015"],
#rec1179555861 .tn-elem[data-elem-id="1751014256062"],
#rec1179555861 .tn-elem[data-elem-id="1747899420191"],
#rec1179555861 .tn-elem[data-elem-id="1747641823560"],
#rec1179555861 .tn-elem[data-elem-id="1747641823571"],
#rec1179555861 .tn-elem[data-elem-id="1747899484196"],
#rec1179555861 .tn-elem[data-elem-id="1747641823563"],
#rec1179555861 .tn-elem[data-elem-id="1747641823575"],
#rec1131005731 .tn-elem[data-elem-id="1753254025378"],
#rec1131005731 .tn-elem[data-elem-id="1753254025384"],
#rec1131005731 .tn-elem[data-elem-id="1753254025392"],
#rec1131005731 .tn-elem[data-elem-id="1753254025454"],
#rec1131005731 .tn-elem[data-elem-id="1753254025460"],
#rec1131005731 .tn-elem[data-elem-id="1753254025467"],
#rec1131005731 .tn-elem[data-elem-id="1753254025479"],
#rec1131005731 .tn-elem[data-elem-id="1753254025485"],
#rec1131005731 .tn-elem[data-elem-id="1753254025492"] {
  display: none !important;
}

/* Social icon hover indicator stripe: use brand red instead of green */
#allrecords .tn-elem[data-elem-id="1747843115036"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1747899376007"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1747899501429"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1751014255987"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1747899420191"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1747899484196"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1748004070358"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1748004070375"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1748004070371"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1748004070367"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753253778806"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753253778777"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753253778743"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753253778696"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254025403"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254025427"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254025454"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254025479"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254202669"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254202647"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254202625"] .tn-atom,
#allrecords .tn-elem[data-elem-id="1753254202693"] .tn-atom {
  background-color: #eb1414 !important;
}

/* ── Popup phone dropdown: raise form tn-elem above all other popup elements ──
   All popup artboard elements share z-index:3; later DOM siblings paint on top,
   hiding the country dropdown. Setting z-index:100 makes the form the topmost
   stacking context inside all three popup artboards.                           */
#rec1051896271 .tn-elem[data-elem-id="1750157527506"],
#rec1131002046 .tn-elem[data-elem-id="1750157527506"],
#rec1131012396 .tn-elem[data-elem-id="1753254202556"] {
  z-index: 100 !important;
}

/* Mobile: unify section headings to 20px */
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"],
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"],
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"],
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"],
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"],
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"],
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"],
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"],
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] {
    zoom: 1 !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
  }

  .fox-reliable__heading,
  .fox-service-details__title,
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] .tn-atom,
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] .tn-atom,
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"] .tn-atom,
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] .tn-atom,
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"] .tn-atom,
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] .tn-atom,
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] .tn-atom,
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] .tn-atom,
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] .tn-atom {
    font-size: 20px !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}
