/* @import url("fonts.css");
@import url("hero.css");
@import url("painpoints.css");
@import url("steps.css");
@import url("cases.css"); */

:root {
  --bg-dark: #191919;
  --text-primary: #ffffff;
  --text-secondary: #7D7EFF;
  --primary: #4648ED;
  --primary-hover: #4a5af0;
  --border-soft: rgba(255, 255, 255, 0.08);
  --container-width: 1440px;
  --green: #18C78C;
  /* --container-width: 1200px; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "p2ALaNy060gO", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.4;
}

body em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
  /* padding: 0 24px; */
}

/* FONTS */
.instrument-serif-regular-italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

@font-face {
    font-family: 'p2ALaNy060gO';
    src: url('../p2ALaNy060gO/l-i4OBqLY7T641.woff2') format('woff2'),
        url('../p2ALaNy060gO/l-i4OBqLY7T641.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'p2ALaNy060gO';
    src: url('../p2ALaNy060gO/r-uGp118yy5Fws.woff2') format('woff2'),
        url('../p2ALaNy060gO/r-uGp118yy5Fws.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'p2ALaNy060gO';
    src: url('../p2ALaNy060gO/sb-OrOZax64494W.woff2') format('woff2'),
        url('../p2ALaNy060gO/sb-OrOZax64494W.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'v9uSQ6X9xMx5';
    src: url('../p2ALaNy060gO/h-v9uSQ6X9xMx5.woff2') format('woff2'),
        url('../p2ALaNy060gO/h-v9uSQ6X9xMx5.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

p {
  font-size: 1rem;
  color: var(--text-primary);
}

p strong {
  font-weight: 600;
}

.strong-hightlight {
  color: var(--green) !important;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(2.0rem, 4.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 30px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 10px;
}

.btn svg {
    transition: 0.2s;
}

.btn-primary:hover svg,
.btn-link:hover svg {
  transform: translateX(3px);
  transition: 0.2s;
}

.btn__icon {
  display: block;
  flex-shrink: 0;
}
.btn__icon_small {
  width: 14px;
  height: 13px;
}
.btn__icon_long {
  width: 25px;
  height: 15px;
}

.btn-primary,
.btn-outline {
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-primary);
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--primary), var(--primary)) padding-box,
    linear-gradient(
      42deg,
      #7D7EFF 0%,
      #7D7EFF 22%,
      #4B4C99 50%,
      #7D7EFF 78%,
      #7D7EFF 100%
    ) border-box;
}

.btn-primary::before,
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  /* box-shadow: 0 0 20px rgba(70, 72, 237, 0.4); */
  background: 
    linear-gradient(var(--primary-hover), var(--primary-hover)) padding-box,
    linear-gradient(
      42deg,
      #7D7EFF 0%,
      #7D7EFF 22%,
      #4B4C99 50%,
      #7D7EFF 78%,
      #7D7EFF 100%
    ) border-box;
}

.btn-primary:hover::before,
.btn-outline:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  /* border: 1px solid var(--border-soft); */
  color: var(--text-primary);
  background: transparent;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(
      325deg,
      #ffffff11 0%,
      #ffffff11 22%,
      #ffffffcb 50%,
      #ffffff11 78%,
      #ffffff11 100%
    ) border-box;
}

.btn-link {
  color: var(--text-primary);
  padding: 0;
  height: auto;
  letter-spacing: 2.5px;
}




/* MENU */
@media (min-width: 769px) {
  #menu {
    display: none !important;
  }
}
.hamburger {
  padding: 0 !important;
  margin-top: -5px !important;
  scale: 0.9 !important;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: #fff !important;
  width: 30px !important;
  height: 3px !important;
}
.js-MenuChef {
    background-color: #252525fc !important;
}
.MenuChefOpen--dir--right, .MenuChefOpen, .MenuChef-close {
  right: 0 !important;
}
.MenuChef-close {
  top: 55px !important;
  right: 20px !important;
}
.MenuChefOpen.is-active, .is-active.MenuChef-close {
  /* position: absolute !important; */
  position: fixed !important;
  top: 55px;
  right: 12px !important;
}
.hamburger-box {
  width: 30px !important;
}
.MenuChef-wrapper {
  vertical-align: top !important;
}
.MenuChef-links {
  padding-top: 110px !important;
  color: var(--text-primary) !important;
}
.MenuChef-links-link {
    color: var(--text-primary) !important;
    font-family: "p2ALaNy060gO", sans-serif !important;
}



/* RESPOSIVE */
@media (max-width: 600px) {

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  p {
    font-size: 0.9rem;
  }

  .btn-link {
    letter-spacing: 0;
  }

}

/* IMG */
.hero-images-bg__img1.img1-book-a-call {
  width: 641px;
  /* bottom: -170px;
  left: -60px; */
  bottom: -95px;
  left: calc(50% - 26.5%);
  transform: rotate(8deg);
}
@media (max-width: 600px) {
  .hero-images-bg__img1.img1-book-a-call {
    width: 80%;
    bottom: -70px;
    left: calc(50% - 40%);
  }
}

