﻿/* ==========================================================================
   SharpLogic VideoPlatform — Landing Page Styles
   Consolidated from Tilda base + custom overrides.
   Two modes only: desktop (>960px) and mobile (≤960px).
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. CSS Variables
   --------------------------------------------------------------------------- */

:root {
  --landing-text-dark: #000000;
  --landing-text-light: #ffffff;
  --landing-accent: #469ad0;
  --landing-menu-bg: #292929;
  --landing-placeholder-light: rgba(255, 255, 255, 0.5);
  --policy-text: #111111;
  --policy-muted: #555555;
  --policy-link: #469ad0;
}

/* ---------------------------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------------------------- */

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

div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, code, img, b, u, i, center, table, tr, th, td, video {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: #000;
  background-color: transparent;
}

input, textarea, button, select {
  font-family: inherit;
  color: inherit;
}

#landing {
  -webkit-font-smoothing: antialiased;
  background-color: transparent;
  overflow-x: hidden;
}

#landing a {
  color: #ff8562;
  text-decoration: none;
}

#landing a,
#landing button,
#landing .checkbox {
  outline: none;
}

#landing a:focus-visible,
#landing button:focus-visible {
  outline-color: #2015ff;
  outline-offset: 4px;
  outline-style: auto;
}

#landing .descr a:focus-visible {
  outline-offset: 2px;
}

#landing a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

#landing ol {
  padding-left: 22px;
  margin-top: 0;
  margin-bottom: 10px;
}

#landing ul {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

#landing b,
#landing strong {
  font-weight: 700;
}

/* ---------------------------------------------------------------------------
   3. Grid System
   --------------------------------------------------------------------------- */

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
}

.container::before,
.container::after {
  display: table;
  content: " ";
  width: 0;
}

.container::after {
  clear: both;
}

.container--flex {
  display: flex;
}

.col {
  display: inline;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  width: 100%;
}

.col-4  { max-width: 360px; }
.col-5  { max-width: 460px; }
.col-6  { max-width: 560px; }
.col-12 { max-width: 1160px; }

.col-offset-1 {
  padding-left: 100px;
}

.cell {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ---------------------------------------------------------------------------
   4. Typography Scale
   --------------------------------------------------------------------------- */

.text, .descr {
  font-weight: 300;
}

.label, .heading, .title {
  font-weight: 600;
}

.text-xs { font-size: 15px; line-height: 1.55; }
.text-sm { font-size: 18px; line-height: 1.55; }
.text-md { font-size: 20px; line-height: 1.55; }

.label-xs { font-size: 16px; line-height: 1.35; }
.label-md { font-size: 20px; line-height: 1.35; }
.label-lg { font-size: 22px; line-height: 1.35; }

.heading-md { font-size: 30px; line-height: 1.17; }

.title-xs { font-size: 42px; line-height: 1.23; }
.title-md { font-size: 52px; line-height: 1.23; }

.descr-xxs  { font-size: 14px; line-height: 1.55; }
.descr-xs   { font-size: 16px; line-height: 1.55; }
.descr-sm   { font-size: 18px; line-height: 1.55; }
.descr-lg   { font-size: 22px; line-height: 1.55; }
.descr-xl   { font-size: 24px; line-height: 1.5; }
.descr-xxxl { font-size: 30px; line-height: 1.45; letter-spacing: 0.45px; }

/* ---------------------------------------------------------------------------
   5. Layout Utilities
   --------------------------------------------------------------------------- */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.align-top {
  vertical-align: top;
}

/* ---------------------------------------------------------------------------
   6. Section Spacing
   --------------------------------------------------------------------------- */

.pt-120  { padding-top: 120px; }
.pt-135  { padding-top: 135px; }
.pb-60   { padding-bottom: 60px; }
.pb-120  { padding-bottom: 120px; }
.pb-135  { padding-bottom: 135px; }

/* ---------------------------------------------------------------------------
   7. Buttons
   --------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 0 none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 700;
  background-image: none;
  cursor: pointer;
  appearance: none;
  user-select: none;
  box-sizing: border-box;
}

.btn-flex,
.btn.btn-flex,
.submit-btn.btn-flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  max-width: 100%;
  height: unset;
  padding: 0;
  overflow: hidden;
  font-weight: 600;
  line-height: var(--line-height, 1.4);
  padding-top: calc(
    ((var(--height, 0px) - 1em * var(--line-height, 1.4)) / 2) -
      var(--border-width, 0px)
  );
  padding-bottom: calc(
    ((var(--height, 0px) - 1em * var(--line-height, 1.4)) / 2) -
      var(--border-width, 0px)
  );
  box-sizing: border-box;
  border-style: solid;
  border-color: transparent;
  border-width: var(--border-width, 0);
  background-image: none;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  white-space: nowrap;
}

.btn-flex__text {
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  white-space: inherit;
  text-overflow: ellipsis;
}

.btn-flex--md,
.btn.btn-flex--md,
.submit-btn.btn-flex--md {
  --height: 60px;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
}

/* ---------------------------------------------------------------------------
   8. Forms — Base
   --------------------------------------------------------------------------- */

.submit-btn {
  appearance: none;
  background-image: none;
  background: transparent;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  margin: 0;
  outline: none;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  white-space: nowrap;
}

.input {
  appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  margin: 0;
  outline: none;
  padding: 0 20px;
  width: 100%;
}

.input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.input:invalid {
  box-shadow: none;
}

.input-group--textarea textarea.input {
  resize: vertical;
}

/* ---------------------------------------------------------------------------
   9. Forms — Checkbox
   --------------------------------------------------------------------------- */

.checkbox__control {
  cursor: pointer;
  display: table;
  position: relative;
}

.checkbox__control.checkbox__control--flex {
  align-items: center;
  display: flex;
  gap: 10px;
}

.checkbox__control .checkbox {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.checkbox__control > span {
  word-break: break-word;
}

.checkbox__indicator {
  border: 2px solid #000;
  box-sizing: border-box;
  display: inline-block;
  height: 20px;
  opacity: 0.6;
  position: relative;
  transition: all 0.2s;
  vertical-align: middle;
  width: 20px;
  flex-shrink: 0;
}

.checkbox__indicator::after {
  border-color: inherit;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 8px;
  left: 6px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 3px;
}

.checkbox__control .checkbox:checked ~ .checkbox__indicator {
  opacity: 1;
}

.checkbox__control .checkbox:checked ~ .checkbox__indicator::after {
  display: block;
}

@media screen and (min-width: 961px) {
  .checkbox:focus-visible + .checkbox__indicator {
    box-shadow: 0 0 0 3px #0096ff;
  }
}

/* ---------------------------------------------------------------------------
   10. Card Link
   --------------------------------------------------------------------------- */

#landing .card .card__link:not(.btn, .btn-flex, .submit-btn) {
  color: inherit !important;
  outline: none;
}

/* ---------------------------------------------------------------------------
   11. Navigation (Header)
   --------------------------------------------------------------------------- */

.nav-header {
  width: 100%;
  height: 80px;
  z-index: 990;
  position: fixed;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0);
  transition: background-color 0.3s linear;
}

.nav-header.nav-header--static {
  position: static;
}

.nav-header__inner {
  width: 100%;
  height: 80px;
  display: table;
  position: relative;
}

.nav-header__logo {
  display: block;
  height: auto;
  margin-right: 30px;
  max-width: 180px;
  width: 180px;
}

.nav-header__left {
  display: table-cell;
  vertical-align: middle;
  padding-left: 40px;
  min-width: 180px;
  width: 180px;
}

.nav-header__logo-wrap {
  display: block;
}

.nav-header__right {
  display: table-cell;
  vertical-align: middle;
  padding-right: 40px;
  width: 100%;
}

.nav-header__right--end {
  text-align: right;
}

.nav-header__line-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.nav-header__line {
  border: 0;
  background-color: #c2c2c2;
  height: 1px;
  right: 0;
  bottom: 0;
  margin: 0 40px;
}

.nav-header__list {
  list-style-type: none;
  margin: 0 !important;
  padding: 0 !important;
  margin-left: 20px;
}

.nav-header__item {
  clear: both;
  font-size: 16px;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  white-space: nowrap;
}

.nav-header__item:first-child {
  padding-left: 0;
}

.nav-header__item:last-child {
  padding-right: 0;
}

.nav-header a {
  text-decoration: none;
  color: #000000;
}

#section-nav .nav-header__logo-wrap a,
#section-nav a.nav-link {
  color: var(--landing-text-light);
}

#section-nav a.nav-link {
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   12. Mobile Menu & Burger
   --------------------------------------------------------------------------- */

.burger {
  position: relative;
  z-index: 999;
  flex-shrink: 0;
  width: 28px;
  height: 20px;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--landing-text-light);
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2),
.burger span:nth-child(3) { top: 8px; }
.burger span:nth-child(4) { top: 16px; }

.burger--open span:nth-child(1) {
  top: 8px;
  left: 50%;
  width: 0;
}

.burger--open span:nth-child(2) {
  transform: rotate(45deg);
}

.burger--open span:nth-child(3) {
  transform: rotate(-45deg);
}

.burger--open span:nth-child(4) {
  top: 8px;
  left: 50%;
  width: 0;
}

.mobile-menu {
  display: none;
}

/* ---------------------------------------------------------------------------
   13. Hero Section
   --------------------------------------------------------------------------- */

.hero .container--flex {
  margin-top: 10px;
}

.hero__descr + .hero__buttons {
  margin-top: 30px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

.hero .container {
  box-sizing: border-box;
  padding: 0 20px;
}

/* ---------------------------------------------------------------------------
   14. Features Section
   --------------------------------------------------------------------------- */

.features__grid {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 90px;
}

.features__card {
  float: none;
}

.features__content {
  padding-right: 20px;
  padding-left: 20px;
}

.features__icon {
  width: 100px;
  height: auto;
  max-width: 100%;
  margin-bottom: 25px;
}

.features .heading-md {
  margin-top: 12px;
  margin-bottom: 25px;
}

.features .card__title,
.features .card__descr {
  overflow-wrap: break-word;
}

/* ---------------------------------------------------------------------------
   15. Benefits Section
   --------------------------------------------------------------------------- */

.benefits__list {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.benefits .list-item {
  margin-top: 55px;
}

.benefits .list-item:nth-child(-n + 2) {
  margin-top: 0 !important;
}

.benefits__icon {
  width: 30px;
  height: 30px;
  max-width: 100%;
  margin-right: 20px;
  background-image: url("/images/benefit-check.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.benefits__label {
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------------
   16. Gallery Section (Examples)
   --------------------------------------------------------------------------- */

.gallery__grid {
  min-height: 1px;
  padding: 0 10px;
  font-size: 0;
  box-sizing: border-box;
}

.gallery__card {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  box-sizing: border-box;
}

.gallery__card--third {
  width: 33.3333%;
}

.gallery__row:not(:first-child) {
  margin-top: 20px;
}

.gallery__inner {
  position: relative;
  width: calc(100% + 1px);
  min-height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.gallery__inner.gallery__inner--4x3 {
  padding-bottom: 75%;
}

.gallery__inner:hover .gallery__image--zoom {
  transform: scale(1.05);
}

.gallery__inner[data-card-url] {
  cursor: pointer;
}

.gallery__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gallery__overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.gallery__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery .card__title {
  margin: 30px 60px 30px 30px;
  color: #fff;
}

.gallery .card__descr {
  color: #fff;
  margin: 0 30px 30px;
  margin-top: auto;
}

.gallery__arrow {
  position: absolute;
  right: 30px;
  top: 35px;
  z-index: 1;
}

.anim-slow {
  transition: all ease-in-out 0.45s;
}

/* ---------------------------------------------------------------------------
   17. Pricing Section
   --------------------------------------------------------------------------- */

.pricing .card__title {
  margin-bottom: 10px;
}

.pricing .card__subtitle {
  color: #777;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__price {
  margin-top: 30px;
}

.pricing .card__descr {
  margin: 25px auto 0;
}

.pricing .card__descr ul {
  padding-left: 0 !important;
  margin-bottom: 0;
  list-style: none;
}

.pricing .card__descr li {
  padding: 10px;
}

.pricing__box {
  width: 100%;
  padding: 40px 30px;
  box-sizing: border-box;
  border: 1px solid #7093a9;
  background-color: var(--landing-menu-bg);
}

.pricing__row {
  display: flex;
}

.pricing .col {
  display: inline-block;
  float: none;
}

/* ---------------------------------------------------------------------------
   18. Contact / Lead Form Section
   --------------------------------------------------------------------------- */

.contact .contact__info {
  display: table-cell;
  vertical-align: middle;
}

.contact .contact__box {
  display: table;
  width: 100%;
  color: #fff;
}

.contact .contact__details {
  margin-bottom: 40px;
}

.contact .form__inputs {
  transition: max-height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  max-height: 10000px;
}

.contact .input-group {
  margin-bottom: 25px;
}

.contact .input {
  color: var(--landing-text-light);
  border: 1px solid var(--landing-text-light);
  background-color: transparent;
  appearance: none;
}

.contact .input-group--phone .input-block {
  overflow: visible;
}

.contact .input-group--textarea .input {
  height: 102px;
}

.contact .checkbox__control {
  color: var(--landing-text-light);
}

.contact .checkbox__indicator {
  border-color: var(--landing-text-light);
}

#section-contact .contact__details a {
  color: var(--landing-text-light);
  text-decoration: none;
}

.contact .input-block textarea {
  padding-top: 17px;
  background-color: transparent;
}

.contact .form__submit {
  display: block;
  vertical-align: middle;
  height: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------------------
   19. Footer
   --------------------------------------------------------------------------- */

.footer-bar {
  overflow: hidden;
}

.footer-bar__inner {
  width: 100%;
  height: 100px;
  display: table;
  position: relative;
}

.footer-bar__line-wrap {
  position: absolute;
  top: 0;
  width: 100%;
}

.footer-bar__line {
  border: 0;
  background-color: #000000;
  height: 1px;
  opacity: 0.2;
  right: 0;
  bottom: 0;
  margin: 0 40px;
}

.footer-bar__content {
  padding: 2px 40px 0;
  display: table-cell;
  vertical-align: middle;
}

.footer-bar__col {
  display: table-cell;
  vertical-align: middle;
}

.footer-bar__col--center {
  width: 100%;
  padding: 0 16px;
}

.footer-bar__copyright,
.footer-bar__scroll {
  width: 250px;
}

.footer-bar__text {
  font-size: 14px;
}

.footer-bar__col--mobile {
  display: none;
}

.footer-bar__scroll-top {
  position: relative;
  padding-right: 12px;
  display: inline-block;
}

.footer-bar__icon {
  position: absolute;
  right: 0;
  top: 2px;
}

.footer-bar__copyright,
.footer-bar__scroll-top {
  color: #222;
}

/* ---------------------------------------------------------------------------
   20. Section-Specific Overrides
   --------------------------------------------------------------------------- */

/* -- Section backgrounds -- */

#section-nav { background-color: var(--landing-menu-bg); }
#section-hero { background-color: #ffffff; }
#section-features { background-color: var(--landing-menu-bg); }
#section-benefits { background-color: #ffffff; }
#section-examples { background-color: var(--landing-menu-bg); }
#section-pricing { background-color: #ffffff; }
#section-contact { background-color: var(--landing-accent); }
#section-footer { background-color: #ffffff; }

/* -- Section description max-width -- */

.section__descr {
  max-width: 560px;
}

/* -- Server-side form error/success display -- */

.landing-server-form .input-error:empty {
  display: none;
}

.landing-server-form .input-error:not(:empty) {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #ff5a67;
  font-weight: 400;
}

.landing-server-form .form__error-middle {
  margin-top: 8px;
}

.landing-server-form .form__error-text {
  font-size: 14px;
  line-height: 1.4;
  color: #ff5a67;
  font-weight: 400;
}

.landing-server-form .submit-btn[disabled] {
  opacity: 0.75;
  cursor: wait;
}

/* -- Dark text sections -- */

#section-hero .hero__title,
#section-hero .hero__descr,
#section-benefits .section__title,
#section-benefits .section__descr,
#section-benefits .benefits__text .label,
#section-benefits .benefits__text .descr,
#section-pricing .section__title,
#section-footer .footer-bar__copyright,
#section-footer .footer-bar__scroll-top {
  color: var(--landing-text-dark);
}

/* -- Light text sections -- */

#section-features .section__title,
#section-features .section__descr,
#section-features .card__title,
#section-features .card__descr,
#section-examples .section__title,
#section-examples .section__descr,
#section-pricing .card__title,
#section-pricing .card__subtitle,
#section-pricing .pricing__price,
#section-pricing .card__descr,
#section-contact .section__title,
#section-contact .section__descr,
#section-contact .contact__details,
#section-contact .contact__address,
#section-contact .form__success {
  color: var(--landing-text-light);
}

/* -- Nav line -- */

#section-nav .nav-header__line {
  background-color: var(--landing-text-light);
  opacity: 0.2;
}

/* -- Section title spacing -- */

#section-features .section__title,
#section-benefits .section__title,
#section-examples .section__title,
#section-contact .section__title {
  margin-bottom: 40px;
}

/* -- Buttons -- */

#section-hero .btn-flex.btn-flex--action,
#section-contact .btn-flex.btn-flex--submit {
  color: var(--landing-text-light);
  --border-width: 0px;
  border-style: none !important;
  border-radius: 8px;
  box-shadow: none !important;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
}

#section-hero .btn-flex.btn-flex--action {
  background-color: var(--landing-accent);
  white-space: normal;
}

#section-contact .btn-flex.btn-flex--submit {
  background-color: var(--landing-text-dark);
}

/* -- Features "in development" note -- */

#section-features .card__descr em {
  color: #6e6e6e;
  font-style: italic;
}

/* -- Features section description -- */

#section-features .section__descr {
  max-width: 760px;
  margin-bottom: 105px;
}

/* -- Benefits section description -- */

#section-benefits .section__descr {
  max-width: 740px;
  margin-bottom: 90px;
}

/* -- Examples section -- */

#section-examples .section__descr {
  max-width: 750px;
  margin-bottom: 90px;
}

#section-examples .gallery__inner {
  border-radius: 15px;
}

#section-examples .gallery__image {
  background: url("/images/kyuneeye-example.jpeg") no-repeat center;
  background-size: cover;
}

/* -- Tariffs section -- */

#section-pricing .section__title {
  margin-bottom: 105px;
}

#section-pricing .pricing__box {
  border-radius: 9px;
}

/* -- Lead form section -- */

#section-contact .section__descr {
  margin-bottom: 90px;
}

#section-contact .input .phone-input,
#section-contact .phone-input {
  height: auto;
  padding: 0;
  background-color: transparent;
}

#section-contact .phone-input__wrap {
  position: relative;
  display: flex;
}

#section-contact .phone-input__select {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 5px;
  margin-left: 0;
  font-size: 16px;
  cursor: default;
}

#section-contact .phone-input__triangle {
  position: relative;
  margin-left: 6px;
  border-style: solid;
  border-width: 5px 4px 0;
  border-color: #9a9a9a transparent transparent;
}

#section-contact .phone-input__code {
  margin-left: 10px;
  white-space: nowrap;
}

#section-contact .phone-input__flag {
  width: 18px;
  min-width: 18px;
  height: 13px;
  display: inline-block;
  background-color: #c5c5c5;
  background-image: url("/images/flags7.png");
  background-repeat: no-repeat;
  background-position: -285px -281px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#section-contact .phone-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0 !important;
}

#section-contact input::placeholder,
#section-contact textarea::placeholder {
  color: var(--landing-placeholder-light);
}

#section-contact .checkbox__indicator::after {
  border-color: var(--landing-text-light);
}

/* -- Phone country dropdown -- */

.input-group--phone {
  position: relative;
}

.phone-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
}

.phone-dropdown--open {
  display: block;
}

.phone-dropdown__item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.phone-dropdown__item:hover,
.phone-dropdown__item--chosen {
  background-color: #f0f0f0;
}

.phone-dropdown__flag {
  width: 18px;
  min-width: 18px;
  height: 13px;
  display: inline-block;
  background-color: #c5c5c5;
  background-image: url("/images/flags7.png");
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.phone-dropdown__name {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-dropdown__code {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 8px;
  margin-right: 8px;
  color: #999;
}

/* ---------------------------------------------------------------------------
   21. Secondary Pages
   --------------------------------------------------------------------------- */

.policy-page {
  min-height: 100vh;
  padding: 80px 20px;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--policy-text);
  background: #ffffff;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--policy-link);
}

.section-title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.23;
  font-weight: 600;
  color: var(--policy-text);
}

.section-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--policy-muted);
}

.policy-card {
  padding-top: 8px;
}

/* ===========================================================================
   MOBILE — Single breakpoint: ≤960px
   =========================================================================== */

@media screen and (max-width: 960px) {

  /* -- Tap highlight -- */

  a:active,
  button:active {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  }

  /* -- Grid -- */

  .container {
    max-width: 640px;
  }

  .container--flex {
    display: block;
  }

  .col {
    display: block;
    float: none;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .col-4,
  .col-5,
  .col-6,
  .col-12 {
    width: 100%;
    max-width: 100%;
  }

  .col-offset-1 {
    padding-left: 0;
  }

  /* -- Typography -- */

  .text-xs { font-size: 12px; line-height: 1.45; }
  .text-sm { font-size: 14px; line-height: 1.45; }
  .text-md { font-size: 16px; line-height: 1.45; }

  .descr-xxs  { font-size: 12px; }
  .descr-xs   { font-size: 12px; line-height: 1.45; }
  .descr-sm   { font-size: 14px; line-height: 1.45; }
  .descr-lg   { font-size: 18px; line-height: 1.45; }
  .descr-xl   { font-size: 20px; line-height: 1.4; }
  .descr-xxxl { font-size: 22px; }

  .title-xs { font-size: 30px; }
  .title-md { font-size: 30px; }

  .label-xs { font-size: 12px; }
  .label-md { font-size: 16px; }
  .label-lg { font-size: 18px; }

  .heading-md { font-size: 24px; }

  /* -- Section spacing -- */

  .pt-120 { padding-top: 90px !important; }
  .pt-135 { padding-top: 90px !important; }
  .pb-60  { padding-bottom: 45px !important; }
  .pb-120 { padding-bottom: 90px !important; }
  .pb-135 { padding-bottom: 90px !important; }

  /* -- Buttons -- */

  .btn {
    white-space: normal;
  }

  .btn-flex,
  .btn.btn-flex,
  .submit-btn.btn-flex {
    white-space: normal;
  }

  .btn-flex--md,
  .btn.btn-flex--md,
  .submit-btn.btn-flex--md {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* -- Forms -- */

  .submit-btn {
    padding-left: 30px;
    padding-right: 30px;
    white-space: normal;
  }

  /* -- Navigation -- */

  .nav-header__left {
    padding-left: 20px;
  }

  .nav-header__right {
    padding-right: 20px;
  }

  .nav-header__line-wrap {
    display: none;
  }

  .nav-header {
    position: static;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
    height: auto !important;
  }

  .nav-header.nav-header--static {
    position: relative;
  }

  .nav-header__logo {
    width: auto !important;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
  }

  .nav-header img {
    float: inherit;
  }

  .nav-header .nav-header__item {
    display: block;
    text-align: center;
    padding: 10px !important;
    white-space: normal;
  }

  .nav-header__logo-wrap {
    position: static;
    display: block;
    width: 100%;
  }

  .nav-header__left,
  .nav-header__right {
    width: 100% !important;
    display: block;
  }

  .nav-header__left {
    padding: 20px;
    box-sizing: border-box;
  }

  .nav-header__right {
    padding: 20px 0 !important;
    box-sizing: border-box;
  }

  .nav-header__list {
    display: block;
    padding: 0 !important;
    margin-left: 0;
  }

  /* -- Mobile menu -- */

  .mobile-menu {
    display: block;
    position: relative;
    z-index: 990;
    background-color: var(--landing-menu-bg);
  }

  .mobile-menu__bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    padding: 20px;
    box-sizing: border-box;
  }

  .mobile-menu__logo-wrap {
    display: block;
    width: 180px;
    max-width: calc(100% - 48px);
  }

  .mobile-menu__logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
  }

  #nav-menu.mobile-menu__content--hidden {
    display: none;
  }

  .mobile-menu.mobile-menu--open
    + #nav-menu.mobile-menu__content--hidden {
    display: block;
  }

  #nav-menu .nav-header__logo-wrap {
    display: none !important;
  }

  /* -- Hero -- */

  .hero .col {
    padding-left: 0;
    padding-right: 0;
  }

  .hero .col + .col {
    margin-top: 20px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__descr + .hero__buttons {
    margin-top: 15px;
  }

  /* -- Features -- */

  .features__card {
    margin-bottom: 45px;
  }

  /* -- Benefits -- */

  .benefits .list-item,
  .benefits .list-item:nth-child(-n + 2) {
    margin-top: 40px !important;
  }

  .benefits .list-item:first-child {
    margin-top: 0 !important;
  }

  .benefits__icon {
    max-width: 40px;
    max-height: 40px;
    margin-right: 20px !important;
  }

  /* -- Gallery -- */

  .gallery__card {
    width: 100%;
    padding: 10px 10px 0;
  }

  .gallery__arrow {
    top: 30px;
    right: 25px;
  }

  .gallery__row:not(:first-child) {
    margin-top: 0 !important;
  }

  /* -- Pricing -- */

  .pricing__card {
    margin-bottom: 35px;
  }

  .pricing__row:last-child .pricing__card:last-child {
    margin-bottom: 0;
  }

  .pricing__row {
    display: block;
  }

  /* -- Contact -- */

  .contact .contact__info {
    padding: 0 0 40px;
    text-align: center;
  }

  .contact .col {
    float: none;
    width: 100%;
    min-height: auto !important;
  }

  .contact .contact__box {
    float: none;
    width: 100%;
    height: auto !important;
  }

  .contact .form__submit {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding-bottom: 20px;
    text-align: center;
  }

  .contact .input-block textarea {
    padding-top: 12px;
  }

  .contact .submit-btn {
    width: 100%;
  }

  .contact .contact__details {
    font-size: 18px;
  }

  /* -- Footer -- */

  .footer-bar__content {
    padding: 2px 20px 0;
  }

  .footer-bar__line {
    margin: 0 20px;
  }

  .footer-bar__col,
  .footer-bar__copyright,
  .footer-bar__scroll {
    width: 100%;
    display: block;
    text-align: center;
  }

  .footer-bar__inner {
    display: block;
    height: auto !important;
    padding: 40px 0;
  }

  .footer-bar__content {
    display: block;
  }

  .footer-bar__col--mobile {
    display: block;
  }

  .footer-bar__col--desktop {
    display: none;
  }

  .footer-bar__col {
    margin-bottom: 20px;
    padding: 0;
  }

  .footer-bar__col:last-child {
    margin-bottom: 0;
  }

  .footer-bar__text {
    font-size: 12px;
  }

  /* -- Section overrides -- */

  #section-features .section__title,
  #section-benefits .section__title,
  #section-examples .section__title,
  #section-contact .section__title {
    margin-bottom: 20px;
  }

  #section-features .section__descr {
    margin-bottom: 45px;
  }

  #section-benefits .section__descr {
    margin-bottom: 45px;
  }

  #section-examples .section__descr {
    margin-bottom: 75px;
  }

  #section-pricing .section__title {
    margin-bottom: 30px;
  }

  #section-contact .section__descr {
    margin-bottom: 45px;
  }

  /* -- Secondary pages -- */

  .policy-page {
    padding: 48px 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.45;
  }
}
