/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #e50914;
  --red-dark: #c8060f;
  --navy: #0d2033;
  --gray-bg: #f3f4f6;
  --gray-card: #f3f4f6;
  --text-muted: #6b7280;
  --text-body: #4b5563;
  --dark: #0a0a0a;
  --border: #e5e7eb;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container-w: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input {
  font-family: inherit;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: var(--red-dark);
}
.btn-red:active {
  transform: scale(0.98);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 84px;
  gap: 40px;
}
.logo {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.logo-arrow {
  color: var(--red);
  font-weight: 800;
}
.logo-light {
  font-weight: 500;
  color: var(--navy);
}

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
}
.main-nav a {
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.main-nav a:hover {
  opacity: 1;
}

.header-btn {
  margin-left: auto;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 20px;
  position: sticky;
  top: 84px;
  z-index: 99;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
}
.mobile-nav .btn {
  width: 100%;
  margin-top: 4px;
}

/* ============ HERO ============ */
.hero {
  background: var(--gray-bg);
  padding: 72px 0 60px;
}
.hero-inner {
  display: flex;
  align-items: start;
  gap: 40px;
}
.hero-text {
  flex: 0 0 460px;
  max-width: 460px;
}
.eyebrow {
  display: inline-block;
  background: #fff;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-text h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-body);
  max-width: 360px;
  margin-bottom: 28px;
}
.hero-image {
  flex: 1;
  min-width: 0;
}
.hero-image img {
  width: 100%;
  height: auto;
}

/* ============ APP BLOCK ============ */
.app-block {
  background: var(--gray-bg);
  padding: 90px 0;
}
.app-block-inner {
  display: flex;
  align-items: center;
  gap: 90px;
}
.app-phone {
  flex: 0 0 300px;
  max-width: 300px;
}
.app-content {
  flex: 1;
  padding-top: 10px;
  max-width: 640px;
}
.app-content h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.app-desc {
  font-size: 15px;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 26px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
}
.check-ic {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.stores-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.store-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}
.store-badge:hover {
  background: #222;
}
.store-ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.store-badge span {
  font-size: 10px;
  line-height: 1.35;
  opacity: 0.95;
}
.store-badge b {
  font-size: 13px;
  font-weight: 600;
}

.note-box {
  border: 1px solid var(--red);
  /* background: #fdf5f5; */
  color: var(--red);
  font-size: 13px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  max-width: 500px;
}

/* ============ ADVANTAGES ============ */
.advantages {
  background: #fff;
  padding: 40px 0 90px;
}
.advantages .section-title {
  margin-bottom: 32px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.adv-card {
  background: var(--gray-card);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
}
.adv-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 16px 0 8px;
}
.adv-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
}
.icon-badge svg {
  width: 22px;
  height: 22px;
}
.icon-badge--dark {
  background: var(--navy);
}
.icon-badge--red {
  background: var(--red);
}

/* ============ GOALS ============ */
.goals {
  background: var(--gray-bg);
  padding: 90px 0;
}
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.goals-col .section-title {
  margin-bottom: 30px;
}
.goal-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid #e2e4e8;
}
.goal-item:last-child {
  padding-bottom: 0;
}
.goals-col .goal-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.goal-item .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.goal-item .icon-badge svg {
  width: 19px;
  height: 19px;
}
.goal-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.goal-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ============ SOLUTIONS ============ */
.solutions {
  background: #fff;
  padding: 90px 0;
}
.solutions .section-title {
  margin-bottom: 32px;
  max-width: 560px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sol-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
}
.sol-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin: 16px 0 10px;
  line-height: 1.3;
}
.sol-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

/* ============ NEW LEVEL + SLIDER ============ */
.new-level {
  background: var(--gray-bg);
  padding: 90px 0 70px;
  overflow: hidden;
}
.new-level .section-title {
  margin-bottom: 44px;
  max-width: 640px;
}

.slider {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 40px,
    #000 calc(100% - 40px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 40px,
    #000 calc(100% - 40px),
    transparent 100%
  );
}
.slider-track {
  display: flex;
  gap: 26px;
  width: max-content;
  will-change: transform;
  padding: 0 40px;
}
.slide {
  flex: 0 0 auto;
  width: 230px;
  text-align: center;
}
.slide img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 20px;
  pointer-events: none;
  user-select: none;
}
.slide p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  padding: 0 6px;
}

/* ============ STEPS ============ */
.steps {
  background: #fff;
  padding: 90px 0;
}
.steps .section-title {
  margin-bottom: 34px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--gray-card);
  border-radius: var(--radius-lg);
  padding: 26px 24px 30px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
}

/* ============ REQUEST FORM ============ */
.request {
  /* background: var(--dark); */
  padding: 70px 0;
}
.request-inner {
  display: flex;
  position: relative;
  /* background: var(--dark); */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #101010, #050505);
  border-radius: 28px;
  padding: 56px 64px;
  overflow: hidden;
}
.request-content {
  flex: 0 0 460px;
  max-width: 460px;
}
.request-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}
.request-content > p {
  color: #b3b6bb;
  font-size: 15px;
  margin-bottom: 26px;
  max-width: 420px;
}

.form-row {
  margin-bottom: 12px;
}
.form-row--split {
  display: flex;
  gap: 12px;
}
.request input[type="text"],
.request input[type="tel"],
.request input[type="email"] {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 13px 16px;
  /* color: #fff; */
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.request input::placeholder {
  color: #7a7a7a;
}
.request input:focus {
  border-color: var(--red);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
  cursor: pointer;
  font-size: 12.5px;
  color: #9a9da2;
  line-height: 1.5;
}
.consent input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #1a1a1a;
  margin-top: 1px;
  position: relative;
}
.consent input:checked + .checkmark {
  background: #1eb95c;
  border-color: #1eb95c;
}
.consent input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-submit {
  width: 100%;
  padding: 14px 26px;
  font-size: 15px;
}
.form-success {
  display: none;
  color: #4fd67a;
  font-size: 13.5px;
  margin-top: 14px;
}
.form-success.show {
  display: block;
}

.request-image {
    position: absolute;
    /* max-width: 300px; */
    bottom: 0;
    right: 0;
    width: 50%;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark);
  /* padding: 56px 0 30px; */
  color: #fff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #232323;
  flex-wrap: wrap;
  gap: 30px;
}
.logo--footer {
  color: #fff;
}
.logo--footer .logo-light {
  color: #fff;
}

.footer-contacts {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-label {
  font-size: 13px;
  color: #8b8d92;
  margin-bottom: 4px;
}
.footer-contact-col a {
  font-size: 14.5px;
  color: #fff;
}
.support-btn {
  display: inline-flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-top: 2px;
  width: fit-content;
}

.footer-links {
  display: flex;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid #232323;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #c7c8cb;
}
.ext-ic {
  width: 13px;
  height: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: #7d7f84;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7c8cb;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-icons a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.social-icons svg {
  width: 15px;
  height: 15px;
}

/* ============ RESPONSIVE ============ */

/* Laptop 1024-1439 */
@media (max-width: 1439px) {
  :root {
    --container-w: 980px;
  }
  .hero-text {
    flex: 0 0 420px;
    max-width: 420px;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .app-block-inner {
    gap: 50px;
  }
  .request-inner {
    padding: 48px;
  }
}

/* Tablet 768-1023 */
@media (max-width: 1023px) {
  :root {
    --container-w: 100%;
  }
  .container {
    padding: 0 28px;
  }

  .main-nav {
    display: none;
  }
  .header-btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    height: 68px;
  }

  .hero {
    padding: 44px 0 40px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  .hero-text {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 34px;
  }
  .hero-image {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .app-block {
    padding: 60px 0;
  }
  .app-block-inner {
    flex-direction: column;
  }
  .app-phone {
    max-width: 240px;
    margin: 0 auto;
  }

  .advantages {
    padding: 30px 0 60px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goals {
    padding: 60px 0;
  }
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solutions {
    padding: 60px 0;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .new-level {
    padding: 60px 0 50px;
  }

  .steps {
    padding: 60px 0;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .request {
    padding: 50px 0;
  }
  .request-inner {
    flex-direction: column;
    padding: 40px 32px;
    text-align: left;
  }
  .request-content {
    max-width: 100%;
  }
  .request-image {
    max-width: 220px;
    align-self: center;
  }

  .footer-contacts {
    gap: 40px;
  }
}

/* Mobile 320-767 */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 24px;
  }

  .header-inner {
    height: 62px;
  }
  .logo {
    font-size: 17px;
  }

  .mobile-nav {
    top: 62px;
  }

  .hero {
    padding: 32px 0 36px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .hero-text h1 {
    font-size: 27px;
    margin-bottom: 14px;
  }
  .hero-text h1 br {
    display: none;
  }
  .hero-desc {
    font-size: 14.5px;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .btn {
    font-size: 14px;
    padding: 12px 22px;
  }

  .app-block {
    padding: 44px 0;
  }
  .app-content h2 br {
    display: none;
  }
  .app-content h2 {
    font-size: 24px;
  }
  .app-phone {
    max-width: 100%;
    order: 2;
  }
  .store-badges {
    flex-wrap: wrap;
  }

  .advantages {
    padding: 20px 0 44px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .goals {
    padding: 44px 0;
  }
  .goals-grid {
    gap: 36px;
  }

  .solutions {
    padding: 44px 0;
  }
  .solutions-grid {
    gap: 14px;
  }
  .solutions .section-title {
    font-size: 24px;
  }

  .new-level {
    padding: 44px 0 40px;
  }
  .new-level .section-title br {
    display: none;
  }
  .slide {
    width: 168px;
  }
  .slider-track {
    gap: 16px;
    padding: 0 20px;
  }

  .steps {
    padding: 44px 0;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .step-card {
    padding: 20px 18px 24px;
  }

  .request {
    padding: 36px 0;
  }
  .request-inner {
    padding: 32px 22px;
    border-radius: 20px;
  }
  .request-content h2 {
    font-size: 26px;
  }
  .form-row--split {
    flex-direction: column;
  }
  .request-image {
    display: none;
  }

  .footer-top {
    flex-direction: column;
  }
  .footer-contacts {
    gap: 30px;
  }
  .footer-links {
    gap: 20px 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

@use "abstracts/variables" as *;

// ==========================================================================
// Bitrix24 embed overrides
// The Bitrix24 lead-form script (see src/components/LeadForm.vue) injects
// its own markup and class names (b24-form-*) into the page at runtime, so
// these selectors are not part of our BEM system and are kept literal.
// ==========================================================================

.b24-form-header-padding {
  padding: 0 !important;
}

.b24-form-padding-side {
  padding: 0 !important;
}

.b24-form-control-alert.b24-form-control-checkbox,
.b24-form-control-alert.b24-form-control-file,
.b24-form-control-alert.b24-form-control-list .b24-form-control,
.b24-form-control-alert.b24-form-control-radiobox,
.b24-form-control-alert.b24-form-control-string .b24-form-control,
.b24-form-control-alert.b24-form-control-text .b24-form-control {
}

.b24-form-wrapper.b24-form-border-bottom {
  background-color: transparent !important;
  border-bottom: none !important;
}

input.b24-form-control {
  background-color: #fff !important;
  border-radius: 0.7rem !important;
}

// `.frame2` here is a class Bitrix's own embed script generates on its
// selector-list items — coincidentally the same name the pre-refactor
// Form.vue used for an unrelated wrapper div (now renamed to
// `.lead-form__widget`). Left as-is since it targets Bitrix's own markup.
.frame2.b24-form-control-list-selector-item {
  width: auto !important;
}

button.b24-form-btn {
  cursor: pointer;
  border: none;
  padding: 0.75rem 1rem;
  background-color: var(--red);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  flex-shrink: 0;

  &:hover {
    background-color: #fff;
    color: #000;
  }
}

.b24-form-content form > div:first-child {
  display: flex;
  flex-wrap: wrap;
}

.b24-form-control-list .b24-form-control:focus:not([readonly]),
.b24-form-control-select .field-item:focus:not([readonly]),
.b24-form-control-string .b24-form-control:focus:not([readonly]),
.b24-form-control-text .b24-form-control:focus:not([readonly]) {
  border-color: #fff !important;
}

.b24-form-content form > div {
  width: calc(100% + 0.5rem);
}

.b24-form-content form > div:first-child > * {
  width: calc(50% - 0.5rem);
  margin-right: 0.5rem;
}

.development-page__bitrix-form {
  .b24-form-content form > div:first-child > * {
    width: calc(100% - 0.5rem);
    margin-right: 0.5rem;
  }

  .b24-form-control-list .b24-form-control:focus:not([readonly]),
  .b24-form-control-select .field-item:focus:not([readonly]),
  .b24-form-control-string .b24-form-control:focus:not([readonly]),
  .b24-form-control-text .b24-form-control:focus:not([readonly]) {
    border-color: #b5a9a9 !important;
  }
}
input.b24-form-control:-webkit-autofill {
  -webkit-background-clip: padding-box !important;
  background-color: #fff !important;
}

.b24-form-control-list .b24-form-control:-webkit-autofill,
.b24-form-control-select .field-item:-webkit-autofill,
.b24-form-control-string .b24-form-control:-webkit-autofill,
.b24-form-control-text .b24-form-control:-webkit-autofill {
  background-color: #fff !important;
}

@media (max-width: 767px) {
  .b24-form-content form > div:first-child > * {
    width: calc(100% - 0.5rem);
    margin-right: 0.5rem;
  }
}

.b24-form-state-container .b24-form-loader,
.b24-form-state-container .b24-form-state,
.b24-from-state-on .b24-form-state-container {
  background-color: #0a0a0a !important;
}

.b24-form-success .b24-form-state-text p {
  color: #fff !important;
}

.b24-form-state-container .b24-form-success {
  background-color: #0a0a0a !important;
}

.b24-form-loader-icon svg g > path {
  /* fill:; */
}



.b24-form-control-not-empty+.b24-form-control-label, .b24-form-control-select-label, .b24-form-control:focus+.b24-form-control-label {
  top: 2px !important;
  font-size: 11px !important;
}




.brand-logo__image {
  height: 2rem;
}
.site-footer {
    align-self: stretch;
    background-color: #0a0a0a;
    /* display: flex; */
    flex-direction: column;
    align-items: flex-end;
    padding: 50px 0 ;
    /* padding: 2.5rem var(--container-padding); */
    gap: 1.5rem;
    text-align: left;
    font-size: .875rem;
    color: #fffc;
    font-family: Inter
}

@media(max-width: 767px) {
    .site-footer {
        align-items:stretch;
        padding-top: 2rem;
        padding-bottom: 2rem;
        gap: 1.5rem
    }
}

.contact-info-block__item svg {
  margin-right: 10px;
}

.contact-info-block__list{
  margin-top: 1rem;
}
.contact-info-block__item{
  display: flex;
  font-weight: 600;
  align-items: center;
  margin-bottom: 0.5rem;
}
.site-footer__top {
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    flex-shrink: 0
}

.site-footer__divider {
  margin: 1rem 0;
}

@media(max-width: 767px) {
    .site-footer__top {
        flex-direction:column;
        gap: 1.5rem
    }
}

.site-footer__nav {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-shrink: 0
}

@media(max-width: 767px) {
    .site-footer__nav {
        flex-direction:column;
        align-items: flex-start;
        gap: .875rem
    }
}

.site-footer__nav-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: #fff
}

.site-footer__nav-link--hidden,.site-footer__nav-link--mobile-only {
    display: none
}

@media(max-width: 767px) {
    .site-footer__nav-link--mobile-only {
        display:flex
    }
}

.site-footer__nav-link-text {
    position: relative;
    line-height: 145%
}

.site-footer__nav-link-icon {
    height: 1rem;
    width: 1rem;
    position: relative
}

.site-footer__divider {
    align-self: stretch;
    height: .063rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,.1);
    box-sizing: border-box;
    flex-shrink: 0
}

.site-footer__bottom {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 14rem;
    flex-shrink: 0;
    color: #fff9
}

@media(max-width: 767px) {
    .site-footer__bottom {
        flex-direction:column;
        align-items: flex-start;
        gap: 1rem
    }
}

.site-footer__copyright {
    flex: 1;
    position: relative
}

.site-footer__oferta-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s ease
}

.site-footer__oferta-link:hover {
    color: #e50914
}

.site-footer__social {
    display: flex;
    align-items: flex-start;
    gap: .75rem
}

@media(max-width: 767px) {
    .site-footer__social {
        gap:.5rem
    }
}

.site-footer__social-item {
    height: 2rem;
    width: 2rem;
    position: relative;
    filter: contrast(.8)
}

.site-footer__social-item--instagram {
    object-fit: cover
}

.site-footer__social-icon-frame {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%
}

.site-footer__social-icon-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    border-radius: 10px;
    background-color: #1f1f1f
}

.site-footer__social-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem 2rem;
    min-width: 0;
    text-align: left;
    font-size: .875rem;
    color: #fffc;
    font-family: Inter
}

@media(max-width: 767px) {
    .contact-info-block {
        flex-direction:column
    }
}

.contact-info-block__department {
    display: flex;
    align-items: flex-start
}
