/* ==========================================================================
   FONTS
   ========================================================================== */
@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/SegoeUI.eot");
  src: local("Segoe UI"), local("SegoeUI"), url("../fonts/SegoeUI.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI.woff2") format("woff2"), url("../fonts/SegoeUI.woff") format("woff"), url("../fonts/SegoeUI.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/SegoeUI-Bold.eot");
  src: local("Segoe UI Bold"), local("SegoeUI-Bold"), url("../fonts/SegoeUI-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI-Bold.woff2") format("woff2"), url("../fonts/SegoeUI-Bold.woff") format("woff"), url("../fonts/SegoeUI-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
/* ==========================================================================
   VARIABLES
   ========================================================================== */
/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", Inter, Arial, sans-serif;
  color: #111;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
}

/* ==========================================================================
   UI: BUTTON
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 34px;
  height: 59px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Segoe UI", "Roboto", Inter, Arial, sans-serif;
}
.btn--primary {
  background: #7F00FF;
  color: #ffffff;
}
.btn--outline {
  background: transparent;
  border: 1px solid #7F00FF;
  color: #7F00FF;
}
.btn--light {
  background: #ffffff;
  color: #7F00FF;
}
.btn--full {
  width: 100%;
}

/* ==========================================================================
   BLOCK: HEADER
   ========================================================================== */
.header {
  padding: 24px 0;
  border-bottom: 1px solid #F8F8F8;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-weight: 700;
  font-size: 18px;
  max-width: 186px;
}
.header__nav {
  display: flex;
  gap: 28px;
}
.header__nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s;
}
.header__nav a:hover {
  color: #7F00FF;
}

.burger {
  display: none;
}

/* ==========================================================================
   BLOCK: MAIN
   ========================================================================== */
.main {
  margin-top: 73px;
  padding: 60px 0 630px;
  background: url("../../img/clickflick/main.jpg") no-repeat center bottom/cover;
  text-align: center;
}
.main__title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}
.main__description {
  max-width: 720px;
  margin: 0 auto 32px;
  color: #000;
  line-height: 1.5;
  font-size: 18px;
}
.main__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.main__image {
  margin-top: 60px;
}

/* ==========================================================================
   BLOCK: SERVICES
   ========================================================================== */
.services {
  padding: 100px 0 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 14px;
  margin-bottom: 16px;
}
.service-card img {
  border-radius: 10px;
  margin-bottom: 16px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: bold;
}
.service-card p {
  margin: 0;
  font-size: 18px;
  color: #000;
  line-height: 1.5;
}

/* ==========================================================================
   BLOCK: PARTNERS
   ========================================================================== */
.partners {
  padding: 80px 0 100px;
}
.partners__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.partners__cta {
  margin-top: 100px;
  padding: 50px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  background: #1F003D;
  background: linear-gradient(90deg, rgb(31, 0, 61) 0%, rgb(127, 0, 255) 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.partners__cta span {
  max-width: 800px;
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;
}

.partner {
  display: flex;
  gap: 24px;
}
.partner img {
  width: 384px;
  border-radius: 12px;
  flex-shrink: 0;
}
.partner__content h3 {
  margin: 0 0 5px;
  font-size: 24px;
  line-height: 1.5;
}
.partner__content p {
  margin: 0;
  color: #000;
  line-height: 1.5;
  font-size: 18px;
}

/* ==========================================================================
   BLOCK: CONTACT
   ========================================================================== */
.contact {
  padding: 60px 0 140px;
  background: #1C1722;
  color: #ffffff;
}
.contact__title {
  font-size: 60px;
  margin-bottom: 8px;
  margin-top: 0;
}
.contact__status {
  color: #7F00FF;
  font-weight: bold;
  font-size: 24px;
}
.contact__form {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
.contact__form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #BABABA;
  padding: 12px 0px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Segoe UI", "Roboto", Inter, Arial, sans-serif;
}
.contact__form input::-moz-placeholder {
  color: #BABABA;
}
.contact__form input::placeholder {
  color: #BABABA;
}
.contact__form input:focus, .contact__form input:active {
  outline: none;
}
.contact__form button {
  grid-column: span 2;
}

/* ==========================================================================
   BLOCK: FOOTER
   ========================================================================== */
.footer {
  background: #000;
  color: #BABABA;
  padding: 80px 0 80px;
  /* top row */
  /* privacy / legal links */
  /* legal text */
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  width: auto;
  max-width: 186px;
}
.footer__nav {
  display: flex;
  gap: 32px;
}
.footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}
.footer__nav a:hover {
  opacity: 0.8;
}
.footer__nav a:focus, .footer__nav a:active, .footer__nav a:target {
  opacity: 1;
}
.footer__links {
  display: flex;
  gap: 32px;
}
.footer__links a {
  font-size: 16px;
  line-height: 1.5;
  color: #BABABA;
  text-decoration: none;
}
.footer__links a:hover {
  color: #ffffff;
}
.footer__legal {
  font-size: 16px;
  line-height: 1.5;
  color: #BABABA;
}

/* SLIDER BASE */
.services-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: none;
}

/* row */
.services-track {
  display: flex;
  transition: transform 0.3s ease;
}

/* 1 card per screen */
.services-track .service-card {
  flex: 0 0 100%;
  box-sizing: border-box;
}

/* dots */
.services-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.services-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #D9D9D9;
  cursor: pointer;
}

.services-dots button.active {
  background: #545454;
  opacity: 1;
}

/* ==========================================================================
   MOBILE PIXEL PERFECT
   ========================================================================== */
@media (max-width: 768px) {
  /* SYSTEM LAYOUT */
  .container {
    max-width: 392px;
    padding: 0 16px;
    margin: 0 auto;
  }
  .btn {
    font-size: 14px;
    height: 53px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  /* HEADER */
  .header {
    padding: 16px 0;
    background: #fff;
    border-color: #D9D9D9;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    z-index: 1;
  }
  .header__nav {
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: 0.3s;
    padding: 80px 20px 20px;
    gap: 10px;
  }
  .header__nav.open {
    transform: translateX(0);
  }
  .header__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .header__nav a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #000;
  }
  /* BURGER */
  .burger {
    width: 18px;
    height: 13px;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1;
    cursor: pointer;
  }
  .burger.active {
    height: 20px;
  }
  .burger span {
    display: block;
    height: 2px;
    background: #000;
    border-radius: 2px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* MAIN */
  .main {
    margin-top: 0px;
    padding: 20px 16px 85.33vw;
    background: url("../../img/clickflick/main-mob.jpg") no-repeat center bottom/cover;
    text-align: center;
  }
  .main__title {
    font-size: 26px;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .main__description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 26px;
    padding: 0 4px;
  }
  .main__actions {
    flex-direction: column;
    gap: 10px;
  }
  /* SERVICES */
  .services {
    padding: 48px 0 0;
  }
  .services__grid {
    display: none;
  }
  .services-slider {
    display: block;
  }
  .service-card {
    margin: 0 0 36px;
  }
  .service-card img {
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .service-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .service-card p {
    font-size: 15px;
    line-height: 1.45;
  }
  /* PARTNERS */
  .partners {
    padding: 60px 0 50px;
  }
  .partner {
    flex-direction: column;
    gap: 0;
  }
  .partner img {
    max-width: 164px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .partner h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .partner p {
    font-size: 14px;
  }
  .partners__cta {
    margin-top: 40px;
    padding: 20px 24px 24px;
    flex-direction: column;
    border-radius: 20px;
    gap: 20px;
  }
  .partners__cta span {
    font-size: 16px;
    line-height: 1.45;
    max-width: none;
  }
  .partners__cta .btn {
    width: 100%;
  }
  /* CONTACT */
  .contact {
    padding: 30px 0 40px;
    text-align: left;
  }
  .contact__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .contact__status {
    font-size: 16px;
  }
  .contact__btn {
    margin-top: 15px;
  }
  .contact__form {
    display: block;
    margin-top: 15px;
  }
  .contact__form input {
    font-size: 14px;
    width: 100%;
    border-color: #ffffff;
    margin-bottom: 15px;
  }
  .contact__form input::-moz-placeholder {
    color: #ffffff;
  }
  .contact__form input::placeholder {
    color: #ffffff;
  }
  .contact__form button {
    height: 52px;
    font-size: 16px;
  }
  /* FOOTER */
  .footer {
    padding: 30px 0 80px;
    text-align: center;
  }
  .footer .footer__inner {
    gap: 36px;
    padding: 0 16px;
  }
  .footer__brand {
    margin-bottom: 12px;
  }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer__nav, .footer__links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer a {
    font-size: 14px;
    width: 40%;
    text-align: left;
  }
  .footer a:hover {
    opacity: 1;
  }
  .footer__legal {
    padding-top: 5px;
    font-size: 14px;
    text-align: left;
  }
}/*# sourceMappingURL=main.css.map */