:root{
  --c-primary:#3171EE;
  --c-white:#FFFFFF;
  --c-hero:#8F9FF9;
  --c-black:#000000;
  --c-dark:#1E1E1E;
  --c-gray:#808080;
  --c-deep:#100E0C;
  --c-bg:#F5F5F5;

  --W_DESKTOP: 90rem;
  --W_MOBILE: 24.375rem;

  --pad-desktop: 1.875rem;
  --pad-mobile: 1rem;

  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 420ms;

  --headerH: 5.75rem;

  --shadowSoft: 0 0.65rem 1.6rem rgba(0,0,0,.08);
  --borderSoft: 1px solid rgba(255,255,255,.92);
}

html{
  font-size: calc(100vw / 90);
  scroll-behavior: smooth;
}

@media (max-width: 1000px){
  html{
    font-size: calc(100vw / 24.375);
  }
}

html,
body{
  overflow-x: hidden;
}

@supports (overflow: clip){
  html,
  body{
    overflow-x: clip;
  }
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p{
  margin: 0;
}

ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img,
svg{
  display: block;
  max-width: 100%;
  height: auto;
}

button{
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

input{
  font: inherit;
}

:focus-visible{
  outline: 0.18rem solid rgba(255,255,255,.45);
  outline-offset: 0.18rem;
  border-radius: 0.4rem;
}

body{
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--c-dark);
  background: var(--c-bg);
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  position: relative;
}

.container{
  width: 100%;
  max-width: var(--W_DESKTOP);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
}

@media (max-width: 1000px){
  .container{
    max-width: var(--W_MOBILE);
    padding-left: var(--pad-mobile);
    padding-right: var(--pad-mobile);
  }
}

.sr-only{
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== REVEAL ===================== */
[data-reveal]{
  opacity: 0;
  will-change: transform, opacity;
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="fade"]{
  transform: none;
  transition: opacity 1.2s var(--ease);
}

[data-reveal].is-visible{
  opacity: 1;
  transform: none;
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #6f88d6;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__inner{
  position: relative;
  z-index: 1;
}

/* ===================== HEADER ===================== */
.header{
  position: relative;
  width: 100%;
  z-index: 20;
  background: var(--c-primary);
}

.header__row{
  display: grid;
  grid-template-columns: 12rem 1fr 18rem;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--headerH);
}

.logo{
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--c-white);
  font-size: 2rem;
  line-height: 1;
}

.nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1rem;
  color: var(--c-white);
  font-weight: 500;
}

.nav a{
  position: relative;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}

.nav a:hover::after{
  transform: scaleX(1);
}

.header__right{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.header-search{
  position: relative;
  width: 14.3rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  overflow: hidden;
  flex: 0 0 auto;
}

.header-search__input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c-dark);
  padding: 0 3.2rem 0 1.1rem;
  font-size: 1rem;
  font-weight: 400;
}

.header-search__input::placeholder{
  color: rgba(30,30,30,.55);
}

.header-search__button{
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.header-search__button svg{
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 2.85rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255,255,255,.94);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.lang--m{
  display: none;
}

.burger{
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadowSoft);
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  user-select: none;
}

.burger:active{
  transform: translateY(0.08rem);
}

.burger__icon{
  position: relative;
  width: 1.35rem;
  height: 0.12rem;
  background: var(--c-primary);
  display: block;
  border-radius: 999px;
}

.burger__icon::before,
.burger__icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.12rem;
  background: var(--c-primary);
  border-radius: 999px;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.burger__icon::before{
  top: -0.42rem;
}

.burger__icon::after{
  top: 0.42rem;
}

/* ===================== DECOR ===================== */
.hero__decor{
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__decor img{
  width: 100%;
  height: auto;
}

.hero__decor--globe-top-left{
  top: 7.5rem;
  left: -0.5rem;
  width: 6.2rem;
}

.hero__decor--shape-left{
  top: 14.8rem;
  left: 9rem;
  width: 8.2rem;
  opacity: .28;
}

.hero__decor--globe-right{
  top: 8.5rem;
  right: 11.5rem;
  width: 5em;
}

.hero__decor--globe-small-right{
  top: 22.3rem;
  right: 3rem;
  width: 4.8rem;
}

.hero__decor--globe-bottom-left{
  left: 25rem;
  bottom: 3.2rem;
  width: 4.6rem;
}

.hero__decor--group-bottom-right{
  right: 11.2rem;
  bottom: 1.8rem;
  width: 11.2rem;
  opacity: .45;
}

/* ===================== HERO CONTENT ===================== */
.hero__content{
  min-height: calc(100vh - var(--headerH));
  padding-top: 2.6rem;
  padding-bottom: 7.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__title{
  max-width: 70rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 0.95;
  font-size: 5.4rem;
  color: var(--c-white);
  text-transform: uppercase;
}

.hero__title span{
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
}

.hero-search{
  position: relative;
  width: 31.8rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
  box-shadow: 0 0.8rem 1.8rem rgba(0,0,0,.08);
  margin-top: 2.4rem;
}

.hero-search__input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c-dark);
  padding: 0 3.8rem 0 1.35rem;
  font-size: 1.08rem;
  font-weight: 400;
}

.hero-search__input::placeholder{
  color: rgba(30,30,30,.52);
}

.hero-search__button{
  position: absolute;
  top: 50%;
  right: 1.15rem;
  transform: translateY(-50%);
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.hero-search__button svg{
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-links{
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.hero-link{
  min-width: 7.4rem;
  height: 3rem;
  padding: 0 1.15rem;
  border-radius: 0.5rem;
  border: var(--borderSoft);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.hero-link--wide{
  min-width: 13.4rem;
}

.hero-link:hover{
  transform: translateY(0.08rem);
  background: rgba(255,255,255,.12);
}

/* ===================== WAVE ===================== */
.hero__wave{
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  line-height: 0;
}

.hero__wave svg{
  width: 100%;
  height: 9rem;
}

.hero__wave path{
  fill: var(--c-bg);
}

/* ===================== DRAWER ===================== */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 18.5rem;
  background: rgba(49,113,238,.97);
  backdrop-filter: blur(0.6rem);
  border-left: 1px solid rgba(255,255,255,.14);
  box-shadow: -1.2rem 0 2.4rem rgba(0,0,0,.16);
  transform: translateX(105%);
  transition: transform var(--dur) var(--ease);
  padding: 1.2rem 1.2rem 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  will-change: transform;
}

.drawer__top{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0.2rem;
}

.drawer__close{
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.drawer__close:active{
  transform: translateY(0.08rem);
}

.drawer__close svg{
  width: 1.1rem;
  height: 1.1rem;
  stroke: rgba(255,255,255,.9);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer__nav{
  display: grid;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.drawer__nav a{
  display: block;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.94);
  font-weight: 700;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.drawer__nav a:active{
  transform: translateY(0.08rem);
  background: rgba(255,255,255,.14);
}

.drawer__search{
  margin-top: 0.55rem;
  position: relative;
  width: 100%;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
}

.drawer__search input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 3.4rem 0 1.1rem;
  color: var(--c-dark);
  font-size: 1rem;
}

.drawer__search button{
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  color: #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer__search svg{
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer__lang{
  margin-top: 0.2rem;
  width: 100%;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--c-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.is-drawer-open .drawer{
  pointer-events: auto;
}

.is-drawer-open .drawer__backdrop{
  opacity: 1;
}

.is-drawer-open .drawer__panel{
  transform: translateX(0);
}

.is-drawer-open .burger__icon{
  background: transparent;
}

.is-drawer-open .burger__icon::before{
  top: 0;
  transform: rotate(45deg);
}

.is-drawer-open .burger__icon::after{
  top: 0;
  transform: rotate(-45deg);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  .header__row{
    grid-template-columns: 1fr auto;
    min-height: 4.6rem;
  }

  .nav{
    display: none;
  }

  .header-search,
  .lang--d{
    display: none;
  }

  .lang--m{
    display: inline-flex;
    height: 2.9rem;
    padding: 0 1.15rem;
    background: rgba(255,255,255,.94);
  }

  .burger{
    display: inline-flex;
  }

  .header__right{
    gap: 0.55rem;
  }

  .logo{
    font-size: 2rem;
  }

  .hero__decor--globe-top-left{
    top: 5rem;
    left: -0.9rem;
    width: 4rem;
  }

  .hero__decor--shape-left{
    top: 10.8rem;
    left: 0.4rem;
    width: 3.6rem;
    opacity: .2;
  }

  .hero__decor--globe-right{
    top: 13.5rem;
    right: -0.35rem;
    width: 5.2rem;
  }

  .hero__decor--globe-small-right{
    right: -0.35rem;
    bottom: 6.8rem;
    top: auto;
    width: 3.2rem;
  }

  .hero__decor--globe-bottom-left{
    left: 0.3rem;
    bottom: 9rem;
    width: 2.6rem;
  }

  .hero__decor--group-bottom-right{
    right: 11.35rem;
    bottom: 3.5rem;
    width: 4rem;
    opacity: .28;
  }

  .hero__content{
    min-height: calc(100vh - 4.6rem);
    padding-top: 2.8rem;
    padding-bottom: 5.5rem;
  }

  .hero__title{
    font-size: 2.25rem;
    max-width: 21rem;
    line-height: 1.03;
  }

  .hero__title span{
    margin-top: 0.3rem;
  }

  .hero-search{
    width: 100%;
    height: 3.25rem;
    margin-top: 1.5rem;
  }

  .hero-search__input{
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 3.3rem;
  }

  .hero-search__button{
    right: 0.95rem;
  }

  .hero-search__button svg{
    width: 1.35rem;
    height: 1.35rem;
  }

  .hero-links{
    margin-top: 1.35rem;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-link,
  .hero-link--wide{
    width: 100%;
    min-width: 100%;
    height: 2.95rem;
    font-size: 1rem;
  }

  .hero__wave svg{
    height: 6rem;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
  }
}












/* ===================== REVEAL UP ===================== */
[data-reveal="up"]{
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  will-change: transform, opacity;
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible{
  opacity: 1;
  transform: none;
}

/* ===================== TOOLS OF THE MONTH ===================== */
.tools-month{
  padding: 2.1rem 0 1.3rem;
  background: var(--c-bg);
}

.tools-month__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.tools-month__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tools-month__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.tools-month__all{
  min-width: 14.8rem;
  height: 3.1rem;
  padding: 0 1.2rem;
  border-radius: 0.22rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.tools-month__all:hover{
  opacity: .94;
}

.tools-month__all:active{
  transform: translateY(0.08rem);
}

.tools-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.tool-card{
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  background: transparent;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  min-height: 21rem;
}

.tool-card__media{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14.6rem;
  background:
    linear-gradient(180deg, rgba(54,149,210,.96) 0%, rgba(54,149,210,.92) 100%);
  border-radius: 0.08rem;
  overflow: hidden;
}

.tool-card__logo{
  color: rgba(255,255,255,.95);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.tool-card__title{
  margin-top: 0.55rem;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 500;
}

.tool-card__btn{
  margin-top: auto;
  width: 100%;
  height: 2.1rem;
  border-radius: 0.15rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.tool-card__btn:hover{
  opacity: .94;
}

.tool-card__btn:active{
  transform: translateY(0.08rem);
}

/* ===================== VIDEO REVIEWS ===================== */
.video-month{
  padding: 1.1rem 0 2.1rem;
  background: var(--c-bg);
}

.video-month__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.video-month__top{
  margin-bottom: 1rem;
}

.video-month__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
}

.video-card{
  min-width: 0;
}

.video-card__link{
  display: block;
}

.video-card__thumb{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  overflow: hidden;
  background: #d8d8d8;
}

.video-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(49,113,238,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.65rem 1.4rem rgba(0,0,0,.18);
}

.video-card__play svg{
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
  stroke: none;
  transform: translateX(0.08rem);
}

.video-card__name{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  min-height: 4.2rem;
  padding: 0.8rem 0.5rem;
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  background: transparent;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.video-card__link:hover .video-card__name{
  transform: translateY(0.05rem);
  color: var(--c-primary);
  border-color: rgba(49,113,238,1);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  [data-reveal="up"]{
    transform: translate3d(0, 1.6rem, 0);
  }

  .tools-month{
    padding: 1.25rem 0 0.8rem;
  }

  .video-month{
    padding: 0.8rem 0 1.4rem;
  }

  .tools-month__frame,
  .video-month__frame{
    padding: 1rem;
  }

  .tools-month__top{
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.9rem;
  }

  .tools-month__title,
  .video-month__title{
    font-size: 1.9rem;
  }

  .tools-month__all{
    width: 100%;
    min-width: 100%;
    height: 3rem;
  }

  .tools-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .tool-card{
    min-height: 15.8rem;
    padding: 0.55rem;
  }

  .tool-card__media{
    height: 9.4rem;
  }

  .tool-card__logo{
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }

  .tool-card__title{
    margin-top: 0.45rem;
    font-size: 1rem;
  }

  .tool-card__btn{
    height: 2.25rem;
    font-size: 0.92rem;
  }

  .video-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .video-card__play{
    width: 2.55rem;
    height: 2.55rem;
  }

  .video-card__play svg{
    width: 1.05rem;
    height: 1.05rem;
  }

  .video-card__name{
    min-height: 3.35rem;
    margin-top: 0.55rem;
    font-size: 0.95rem;
    padding: 0.65rem 0.4rem;
  }
}
/* 3 */
/* ===================== VIDEO REVIEWS (IFRAMES) ===================== */
.video-month{
  padding: 1.1rem 0 2.1rem;
  background: var(--c-bg);
}

.video-month__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.video-month__top{
  margin-bottom: 1rem;
}

.video-month__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
}

.video-embed{
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  overflow: hidden;
  background: #d8d8d8;
  aspect-ratio: 16 / 9;
}

.video-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===================== TOOLS MONTH IMAGE FIX ===================== */
.tool-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== NEWEST OF TOOLS ===================== */
.newest-tools{
  padding: 2.2rem 0 1.6rem;
  background: var(--c-bg);
}

.newest-tools__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.newest-tools__title{
  font-size: 3.1rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.newest-tools__text{
  margin-top: 1.35rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(30,30,30,.72);
  max-width: 36rem;
}

.newest-tools__btn{
  margin-top: 2.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.1rem;
  padding: 0 2.1rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.2rem;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.newest-tools__btn:hover{ opacity: .94; }
.newest-tools__btn:active{ transform: translateY(0.08rem); }

.newest-tools__right{
  border-radius: 0.18rem;
  overflow: hidden;
}

.newest-tools__right img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== PARTNERS (AUTO LOOP) ===================== */
.partners{
  padding: 1.6rem 0 2.6rem;
  background: var(--c-bg);
}

.partners__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.partners__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1.2rem;
}

.partners__carousel{
  overflow: hidden;
  position: relative;
}

.partners__track{
  display: flex;
  gap: 1.25rem;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.partner{
  width: 11.8rem;
  height: 11.8rem;
  border-radius: 0.18rem;
  overflow: hidden;
  border: 1px solid rgba(49,113,238,.35);
  background: #fff;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partners__dots{
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.dot{
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
}

.dot.is-active{
  background: rgba(0,0,0,.22);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  .video-month__frame,
  .partners__frame{
    padding: 1rem;
  }

  .video-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .newest-tools{
    padding: 1.5rem 0 1.2rem;
  }

  .newest-tools__grid{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .newest-tools__title{
    font-size: 2.35rem;
    text-align: left;
  }

  .newest-tools__text{
    font-size: 1.05rem;
    max-width: 22rem;
  }

  .newest-tools__btn{
    width: 12.8rem;
  }

  .partner{
    width: 9.6rem;
    height: 9.6rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .partners__track{ transform: none !important; }
}

/* ===================== BENEFITS ===================== */
.benefits{
  padding: 2.2rem 0 2.8rem;
  background: var(--c-bg);
}

.benefits__head{
  text-align: center;
}

.benefits__title{
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.benefits-top{
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  overflow: hidden;
  background: rgba(255,255,255,.45);
}

.benefits-top .benefit-card{
  border-right: 1px solid rgba(49,113,238,.45);
}

.benefits-top .benefit-card:last-child{
  border-right: 0;
}

.benefit-card{
  min-width: 0;
}

.benefit-card--icon{
  padding: 1.2rem 1.15rem 1.2rem;
  min-height: 13.7rem;
}

.benefit-card__icon{
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: 1.25rem;
}

.benefit-card__icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.benefit-card__title{
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 800;
  color: #222;
}

.benefit-card__text{
  margin-top: 0.7rem;
  max-width: 23rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(30,30,30,.68);
}

.benefits-list{
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.benefit-card--number{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.45);
  padding: 1.1rem 1.1rem 1.1rem;
  min-height: 8.55rem;
}

.benefit-card--wide{
  grid-column: 1 / -1;
  min-height: auto;
}

.benefit-card__number-title{
  font-size: 1.05rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.benefit-card__number-text{
  margin-top: 0.8rem;
  max-width: 39rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(30,30,30,.72);
}

.benefits__bottom{
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
}

.benefits__btn{
  min-width: 11.2rem;
  height: 2.55rem;
  padding: 0 1.4rem;
  border-radius: 0.18rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.benefits__btn:hover{
  opacity: .94;
}

.benefits__btn:active{
  transform: translateY(0.08rem);
}

/* ===================== BENEFITS MOBILE ===================== */
@media (max-width: 1000px){
  .benefits{
    padding: 1.5rem 0 1.9rem;
  }

  .benefits__title{
    font-size: 2.35rem;
  }

  .benefits-top{
    margin-top: 1rem;
    grid-template-columns: 1fr;
  }

  .benefits-top .benefit-card{
    border-right: 0;
    border-bottom: 1px solid rgba(49,113,238,.45);
  }

  .benefits-top .benefit-card:last-child{
    border-bottom: 0;
  }

  .benefit-card--icon{
    min-height: auto;
    padding: 1rem;
  }

  .benefit-card__icon{
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.95rem;
  }

  .benefit-card__title{
    font-size: 1.25rem;
  }

  .benefit-card__text{
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
  }

  .benefits-list{
    margin-top: 1rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .benefit-card--number{
    min-height: auto;
    padding: 1rem;
  }

  .benefit-card__number-title{
    font-size: 1.18rem;
    line-height: 1.28;
  }

  .benefit-card__number-text{
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
  }

  .benefits__bottom{
    margin-top: 1rem;
  }

  .benefits__btn{
    width: 100%;
    max-width: 14rem;
    height: 2.9rem;
  }
}

/* ===================== BLOG LATEST ===================== */
.blog-latest{
  padding: 2.2rem 0 1.6rem;
  background: var(--c-bg);
}

.blog-latest__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.blog-latest__grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

.blog-latest__title{
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  max-width: 22rem;
}

.blog-latest__text{
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(30,30,30,.72);
  max-width: 30rem;
}

.blog-latest__right{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.blog-card{
  border: 1px solid rgba(49,113,238,.65);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.35);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.blog-card__media{
  border-radius: 0.12rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #d9d9d9;
}

.blog-card__media img{
  width: 100%;
  height: auto;
  display: block;
}

.blog-card__title{
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.blog-card__title a{
  color: var(--c-primary);
}

.blog-card__excerpt{
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(30,30,30,.7);
}

.blog-card__btn{
  margin-top: 0.2rem;
  width: 13.4rem;
  height: 2.7rem;
  border-radius: 0.18rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.blog-card__btn:hover{ opacity: .94; }
.blog-card__btn:active{ transform: translateY(0.08rem); }

/* ===================== REVIEWS ===================== */
.reviews{
  padding: 1.4rem 0 2.6rem;
  background: var(--c-bg);
}

.reviews__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.reviews__title{
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1.25rem;
}

.reviews__scroller{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.3rem;
  cursor: grab;
}

.reviews__scroller:active{
  cursor: grabbing;
}

.reviews__track{
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding-bottom: 0.2rem;
}

.review-card{
  width: 22.8rem;
  min-height: 16.5rem;
  background: rgba(245,245,245,.9);
  border-radius: 0.2rem;
  padding: 1.1rem 1.1rem 1.15rem;
  border: 1px solid rgba(0,0,0,.06);
}

.review-card__stars{
  color: #8F9FF9;
  letter-spacing: 0.18rem;
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.review-card__top{
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.review-card__name{
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.review-card__rate{
  font-size: 0.95rem;
  color: rgba(0,0,0,.8);
  font-weight: 700;
}

.review-card__text{
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(0,0,0,.45);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  .blog-latest{
    padding: 1.5rem 0 1.1rem;
  }

  .blog-latest__frame,
  .reviews__frame{
    padding: 1rem;
  }

  .blog-latest__grid{
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .blog-latest__title{
    font-size: 2.35rem;
    max-width: none;
  }

  .blog-latest__text{
    margin-top: 0.9rem;
    max-width: 22rem;
    font-size: 1rem;
  }

  .blog-latest__right{
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .blog-card__btn{
    width: 100%;
    height: 2.9rem;
  }

  .reviews{
    padding: 1.1rem 0 2.1rem;
  }

  .reviews__title{
    font-size: 2.35rem;
    margin-bottom: 0.9rem;
  }

  .review-card{
    width: 18.8rem;
    min-height: 15.5rem;
  }

  .review-card__name{
    font-size: 1.8rem;
  }
}


/* ===================== SEO ABOUT (SCROLL) ===================== */
.seo-about{
  padding: 1.6rem 0 1.2rem;
  background: var(--c-bg);
}

.seo-about__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.25rem 1.25rem 1.25rem;
}

.seo-about__title{
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.seo-about__scroll{
  margin-top: 0.9rem;
  max-height: 7.8rem;              /* невисокий блок */
  overflow: auto;
  padding-right: 0.6rem;           /* щоб текст не впирався в скрол */
  color: rgba(0,0,0,.62);
  font-size: 1.02rem;
  line-height: 1.55;
  scrollbar-width: thin;
}

.seo-about__scroll::-webkit-scrollbar{ width: 0.5rem; }
.seo-about__scroll::-webkit-scrollbar-track{ background: rgba(0,0,0,.06); border-radius: 999px; }
.seo-about__scroll::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.28); border-radius: 999px; }

/* ===================== FAQ ===================== */
.faq{
  padding: 1.2rem 0 1.6rem;
  background: var(--c-bg);
}

.faq__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.25rem;
}

.faq__title{
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1rem;
}

.faq__list{
  display: grid;
  gap: 0.75rem;
}

.faq__item{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.35);
  overflow: hidden;
}

.faq__q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  text-align: left;
  color: rgba(0,0,0,.78);
  font-size: 1.02rem;
  font-weight: 600;
}

.faq__chev{
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  transition: transform var(--dur) var(--ease);
}

.faq__chev svg{
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(0,0,0,.65);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__a{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height .55s var(--ease),
    opacity .35s var(--ease);
}

.faq__a-inner{
  padding: 0 1rem 1rem;
  color: rgba(0,0,0,.62);
  font-size: 1rem;
  line-height: 1.55;
}

.faq__item.is-open .faq__a{
  max-height: 20rem;
  opacity: 1;
}

.faq__item.is-open .faq__chev{
  transform: rotate(180deg);
}

/* ===================== FOOTER ===================== */
.site-footer{
  background: var(--c-primary);
  color: rgba(255,255,255,.92);
  padding: 2.4rem 0 1.2rem;
}

.site-footer__top{
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 2.2rem;
  align-items: start;
}

.site-footer__logo img{
  width: 10.5rem;
  height: auto;
  display: block;
}

.site-footer__cols{
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2.2rem;
}

.site-footer__h{
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.95);
}

.site-footer__col a{
  display: block;
  padding: 0.4rem 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  transition: opacity var(--dur) var(--ease);
  width: fit-content;
}

.site-footer__col a:hover{ opacity: .88; }

.site-footer__social{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.sf-ico{
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.6rem;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.sf-ico:hover{ opacity: .9; }
.sf-ico:active{ transform: translateY(0.08rem); }

.sf-ico svg{
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__mail{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.sf-mail-ico svg{
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__line{
  margin-top: 2rem;
  height: 1px;
  background: rgba(255,255,255,.22);
}

.site-footer__bottom{
  padding-top: 1.1rem;
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
}

/* MOBILE */
@media (max-width: 1000px){
  .seo-about__frame,
  .faq__frame{
    padding: 1rem;
  }

  .seo-about__scroll{
    max-height: 10.5rem;
  }

  .site-footer__top{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .site-footer__cols{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .site-footer__bottom{
    text-align: left;
  }
}