    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

    :root {
      --red: #E8001D;
      --black: #000000;
      --dark: #1a1a1a;
      --white: #ffffff;
      --gray: #888888;
      --light-gray: #f5f5f5;
      --border: #2a2a2a;
      --grey: #282828;
      --light-grey: #DCDCDC;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #111;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 3px;
    }

    .navbar {
position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 217px;
    padding-right: 235px;
    height: 80px;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .logo-mk {
      font-size: 28px;
      font-weight: 900;
      color: var(--black);
      letter-spacing: -1px;
      line-height: 1;
    }

    .logo-right {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-agency {
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--black);
      text-transform: uppercase;
    }

    .logo-team {
      font-size: 22px;
      font-weight: 900;
      color: var(--red);
      letter-spacing: 2px;
    }

    .navbar-nav {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .navbar-nav a {
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      text-decoration: none;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .navbar-nav a:hover {
      color: var(--red);
    }

    .navbar-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .navbar-phone {
      font-size: 15px;
      font-weight: 700;
      color: var(--black);
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-red {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 12px 24px;
      font-size: 13px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }

    .navbar-logo-mobile{
      display: none;
    }

    .btn-red:hover {
      background: #c0001a;
      transform: translateY(-1px);
    }

    .btn-outline {
color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, 0.01);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--black);
    }

    .hero {
		background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.0) 100%), url(/img/head-banner.jpg);
		display: flex;
		align-items: center;
		padding: 210px 236px;
		position: relative;
		overflow: hidden;
		background-position: center 15px;
		background-size: cover;
    }

    .hero-content {
      max-width: 520px;
      animation: fadeInUp 0.9s ease both;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 80px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }

    .hero h1 span {
      color: var(--red);
    }

    .hero-desc {
font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
    }

    .ticker-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 10px 0;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-flex;
      animation: ticker 30s linear infinite;
    }

    .ticker-track span {
letter-spacing: 1px;
    padding: 0 24px;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    }

    .ticker-track span::after {
        content: '•';
        margin-left: 30px;
        opacity: 1;
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

@keyframes ticker-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

    .ticker-wrap.dark {
      background: var(--black);
    border: 1px solid var(--grey);
    padding: 25px 0;
    }

    .ticker-wrap.dark .ticker-track span {
      color: var(--white);
    }

    section {
    padding: 80px 236px;
    }

    .section-title {
      font-size: 42px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 40px;
      text-transform: uppercase;
    }

    .section-title span {
      color: var(--red);
    }

    .section-title.white {
      color: var(--white);
    }

#services {
  position: relative;
  background: var(--white);
}

#services::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/pattern.png);
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

#services > * {
  position: relative;
  z-index: 2;
}

#quiz {
  position: relative;
  background: var(--white);
}

#quiz::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/pattern.png);
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

#quiz > * {
  position: relative;
  z-index: 2;
}

#steps-section {
  position: relative;
  background: var(--white);
}

#steps-section::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/pattern.png);
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

#steps-section > * {
  position: relative;
  z-index: 2;
}

#cases {
  position: relative;
  background: var(--white);
}

#cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/pattern.png);
    background-repeat: repeat;
    background-position: left;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

#cases > * {
  position: relative;
  z-index: 2;
}

#partners-section {
  position: relative;
  background: var(--white);
}

#partners-section::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/pattern.png);
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

#partners-section > * {
  position: relative;
  z-index: 2;
}



    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }

    .slider-arrows {
      display: flex;
      gap: 8px;
    }

    .arrow-btn {
width: 44px;
    height: 44px;
    border: 2px solid var(--light-grey);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    color: var(--light-grey);
    }

    .arrow-btn:hover {
      border-color: var(--red);
    }

    .arrow-btn:hover svg{
      color: var(--red);
    }

    .services-slider-container {
      overflow: hidden;
    }

    .services-slider {
      display: flex;
      gap: 20px;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-card {
        height: 463px;
        min-width: calc((100%) / 3 - 14px);
        background: var(--black);
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }

    .service-card img {
        width: 100%;
        height: 335px;
        object-fit: cover;
        object-position: top;   
    }

    .service-card-img{
        position: relative;
        display: flex;
    }

    .service-card-body {
      background: var(--black);
      padding: 16px 20px 20px;
      position: relative;
    }

    .service-card-border{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 2px;
        background: var(--red);
    }

    .service-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .service-card-title span {
      color: var(--red);
      font-size: 18px;
    }

    .service-card-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
    }

    #quiz {
      background: var(--white);
    }

    .quiz-layout {
      display: grid;
      grid-template-columns: 1fr 600px;
      gap: 80px;
      align-items: start;
    }

    .quiz-left h2 {
      font-size: 52px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 24px;
    }

    .quiz-left h2 span {
      color: var(--red);
    }

    .quiz-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 380px;
    }

    .quiz-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .quiz-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: #333;
    }

    .quiz-stat-num {
      width: 32px;
      height: 32px;
      background: var(--red);
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
      #map {
    width: 100%;
    height: 300px;
    min-height: 300px;
    overflow: hidden;
  }

.quiz-widget {
    background: var(--black);
    padding: 60px;
    clip-path: polygon(85% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
    height: 600px;
}

    .quiz-progress-bar {
      display: flex;
      gap: 6px;
      margin-bottom: 28px;
    }

    .quiz-prog-seg {
      height: 3px;
      flex: 1;
      background: #333;
      transition: background 0.3s;
    }

    .quiz-prog-seg.active {
      background: var(--red);
    }

    .quiz-question-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .quiz-question-text {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 24px;
    }

    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .quiz-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 1px solid #333;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 14px;
      color: var(--white);
      font-weight: 500;
      font-family: 'Montserrat', sans-serif;
    }

    .quiz-option:hover {
      border-color: var(--red);
      background: rgba(232, 0, 29, 0.08);
    }

    .quiz-option.selected {
      border-color: var(--red);
      background: rgba(232, 0, 29, 0.15);
    }

    .quiz-option-checkbox {
      width: 18px;
      height: 18px;
      border: 2px solid #555;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .quiz-option.selected .quiz-option-checkbox {
      border-color: var(--red);
      background: var(--red);
    }

    .quiz-option.selected .quiz-option-checkbox::after {
      content: '✓';
      color: white;
      font-size: 11px;
      font-weight: 900;
    }

.quiz-nav {
    display: flex;
    gap: 12px;
    margin-top: auto;
    bottom: 0;
    position: absolute;
    width: 100%;
}

    .btn-quiz-back {
      flex: 1;
      padding: 14px;
      border: 1px solid #444;
      background: transparent;
      color: #aaa;
      font-size: 12px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-quiz-back:hover {
      border-color: #666;
      color: var(--white);
    }

    .btn-quiz-next {
      flex: 2;
      padding: 14px;
      background: var(--red);
      color: var(--white);
      border: none;
      font-size: 12px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-quiz-next:disabled {
    background-color: #fecaca;
    color: var(--light-gray);
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

#labelcheckbox{
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    user-select: none;
    cursor: pointer;
}

    .btn-quiz-next:hover {
      background: #c0001a;
    }

    .quiz-final {
      display: none;
    }

    .quiz-final.active {
      display: block;
    }

.quiz-steps-container {
    display: block;
    height: 100%;
    position: relative;
}

    .quiz-steps-container.hidden {
      display: none;
    }

    .quiz-final-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .quiz-final-desc {
      font-size: 13px;
      color: #aaa;
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .quiz-input {
      width: 100%;
      background: transparent;
      border: 1px solid #444;
      padding: 14px 16px;
      color: var(--white);
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 12px;
      outline: none;
      transition: border-color 0.2s;
    }

    .quiz-input:focus {
      border-color: var(--red);
    }

    .quiz-input::placeholder {
      color: #666;
    }

    /* ===== STEPS / 7 STEPS ===== */
    .steps-section {
      position: relative;
      background: #ffffff;
      overflow: hidden;
    }

    .steps-layout {
        display: flex;
        flex-direction: column;
    }

    .steps-heading {
        flex-shrink: 0;
        width: 406px;
        position: absolute;
    }

    .steps-heading h2 {
      font-weight: 800;
      line-height: 55px;
      font-size: 54px;
      letter-spacing: 0.54px;
      color: #ec1c24;
      margin-bottom: 0;
    }

    .steps-heading p {
      font-weight: 800;
      font-size: 36px;
      line-height: 55px;
      margin-top: 0;
    }

    .steps-heading p .black {
      color: #000000;
    }

    .steps-heading p .red {
      color: #ec1c24;
    }

    .steps-container {
      flex: 1;
      position: relative;
    }

    .steps-bars {
      display: flex;
      gap: 10px;
      align-items: flex-end;
      margin-bottom: 0;
    }
    
    .steps-rocket{
        position: absolute;
        top: 23%;
        left: 45%;
        transform: translate(-50%, -50%);
    }

    .step-bar {
      background: #000000;
      position: relative;
      flex-shrink: 0;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .step-bar:hover,
    .step-bar.active {
      background: #1a1a1a;
    }

    /* Развернутая карточка */
    .step-bar.expanded {
      width: 406px !important;
    }

    /* Свернутая карточка */
    .step-bar.collapsed {
      width: 164px !important;
    }

    .step-bar-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      padding: 30px;
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .step-bar-border {
      position: absolute;
      inset: 0;
      border-left: 2px solid #ec1c24;
      pointer-events: none;
    }

    /* Контент для развернутого состояния */
    .step-text-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
      color: #ffffff;
      width: 100%;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .step-bar.expanded .step-text-content {
      opacity: 1;
      max-height: 500px;
    }

    .step-title-large {
      font-weight: 800;
      font-size: 20px;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }

    .step-desc-large {
      font-weight: 400;
      font-size: 18px;
      width: 100%;
    }

    /* Контент для свернутого состояния */
    .step-title-vertical-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .steps-rocket-mobile{
      display: none;
    }

    .step-bar.collapsed .step-title-vertical-container {
      opacity: 1;
      max-height: 200px;
    }

    .step-title-vertical {
      transform: rotate(-90deg);
      flex: none;
    }

    .step-title-vertical p {
      font-weight: 800;
      font-size: 20px;
      color: #ffffff;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }

    .step-number {
      background: #ec1c24;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      flex-shrink: 0;
    }

    .step-number p {
      font-weight: 600;
      font-size: 18px;
      color: #ffffff;
      white-space: nowrap;
    }

    /* ===== CASES (семьи) ===== */
    #cases {
      background: var(--white);
      padding-bottom: 60px;
    }

    .cases-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 40px;
    }

    .cases-counter {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .cases-num {
      font-size: 96px;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
    }

    .cases-label {
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
      width: 100%;
      line-height: 1.3;
    }

    .cases-cta {
  background: var(--black);
    padding: 18px 70px;
    text-align: center;
    clip-path: polygon(88% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
    }

    .cases-cta p {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    }

    .cases-cta span {
      color: var(--red);
      font-weight: 700;
    }

    .cases-slider-container {
      overflow: hidden;
    }

    .cases-slider {
        display: flex;
        gap: 30px;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      margin-bottom: 80px;
    }

    .case-card {
      width: 100%;
      overflow: hidden;
    }

    .case-img-wrap {
      position: relative;
      overflow: hidden;
    }

    .case-img-wrap img {
      width: 100%;
      height: 463px;
      object-fit: cover;
      display: block;
     transition: transform 0.4s;
    }

    .case-img-wrap:hover img {
      transform: scale(1.04);
    }

    .partner-item svg{
      width: 200px;
    }
    .case-img-arrows {
position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.2s;
    display: none;
    }

    .case-card:hover .case-img-arrows {
      opacity: 1;
      pointer-events: all;
    }

    .case-img-arrow {
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, 0.7);
      border: none;
      color: white;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .case-img-arrow:hover {
      background: var(--red);
    }

    .case-title {
margin-top: 15px;
    background: var(--black);
    padding: 15px 30px;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.01em;
    color: var(--white);
    }

    .case-quote-icon {
position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .case-review {
line-height: 1.3;
    font-weight: 500;
    font-size: 13px;
    color: var(--grey);
    height: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .case-body{
      border: 1px solid var(--light-grey);
    padding: 30px;
    background: var(--white);
    margin-top: 15px;
    position: relative;
    transition: 0.3s ease;
    }

    .case-body:hover{
      border: 1px solid var(--red)
    }

    .case-author {
display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    }

    .case-author-img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
    }

    .case-author-name {
font-weight: 600;
    font-size: 13px;
    color: var(--black);
    }

    .case-author-role {
font-weight: 500;
    font-size: 11px;
    color: var(--grey);
    }

    /* ===== PARTNERS ===== */
    .partners-section {
      background: var(--white);
    padding: 0px 0 80px 0;
    }

    .partners-logos {
      display: flex;
      gap: 0;
      overflow: hidden;
      margin-top: 32px;
    }

        .partners-logos.right {
      margin-top: 15px;
    }

    .partners-track {
display: flex;
    gap: 15px;
    }

    .partners-track:hover {
  animation-play-state: paused;
}

    .partner-item {
border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 200px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    background: var(--white);
    padding: 10px;
    }

#ceo {
    background: var(--black);
    overflow: hidden;
  }

  .ceo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    min-height: 500px;
    padding: 60px 0px 60px 60px;
    box-sizing: border-box;
  }

  .ceo-text h2 {
  color: var(--red);
    font-weight: 700;
    font-size: 50px;
    margin: 0;
    line-height: 1.1;
  }

  .ceo-text h3 {
color: var(--white);
    line-height: 1.05;
    font-weight: 600;
    font-size: 46px;
    margin: 0;
  }

  .ceo-text p {
    line-height: 1.3;
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    margin-top: 24px;
  }

  #input-wrapper{
    display: flex;
    align-items: center;
    border: 1.5px solid var(--red);
    border-radius: 5px;
    background: var(--white);
    padding: 0 10px 0 14px;
    height: 44px;
    transition: border-color 0.15s;
  }

  #input-wrapper a{
    flex: 1; font-size: 14px; color: var(--grey); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-decoration: none; cursor: pointer;
  }

  .ceo-quote {
    border-left: 2px solid var(--red);
    padding: 15px 25px;
    margin: 35px 0;
    font-size: 14px;
    color: var(--black);
    font-style: italic;
    line-height: 1.6;
    background: var(--white);
    font-weight: 600;
    width: fit-content;
  }

  .btn-red {
    display: inline-block;
    background: var(--red);
    padding: 16px 25px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    z-index: 2;
    position: relative;
  }

          .btn-red:disabled {
            transition: 0.1s;
        }
                .checkbox-wrapper {
margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #dc2626;
            flex-shrink: 0;
        }

        .checkbox-label {
font-size: 14px;
    line-height: 1;
    color: var(--black);
    user-select: none;
    cursor: pointer;
        }

        .checkbox-label a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 500;
        }

        .checkbox-label a:hover {
            text-decoration: underline;
        }
                .btn-red:disabled {
background-color: #fecaca;
    color: var(--light-gray);
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
        }

  .ceo-img-col {
    position: relative;
    height: 500px;
    align-self: stretch;
  }

  .ceo-img-wrap {
    position: absolute;
    bottom: -80px;
    right: 0;
    left: 0;
    top: -60px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .ceo-img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.9);
    display: block;
  }

.ceo-name-badge {
    position: absolute;
    bottom: 65px;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 12px 20px;
    border-left: 3px solid var(--red);
}

  .ceo-name-badge p {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2px 0;
  }

  .ceo-name-badge span {
    font-size: 11px;
    color: #888;
  }


    #team {
      background: var(--black);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .team-card {
      overflow: hidden;
      position: relative;
    }

    .team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s, transform 0.4s;
    }

    .team-card:hover img {
      filter: grayscale(0%) brightness(1);
      transform: scale(1.03);
    }

    .steps-mobile-nav {
  display: none;
}

.steps-mobile-arrow,
.steps-mobile-next {
  font-family: 'Montserrat', sans-serif;
}

    .team-card-footer {
    padding-top: 15px;
    position: relative;
    }

    .team-card-meta {
display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    }

    .team-card-name {
font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--white);
    }

    .team-card-exp {
background: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 15px;
    display: none;
    }

    .team-card-exp a{
      font-weight: 600;
    font-size: 11px;
    color: var(--light-grey);
    text-decoration: none;
    transition: 0.3s ease;
    }
    
    .team-card-exp a:hover{
      color: var(--white)
    }

    .btn-team-more-container{
      display: flex;
      gap: 5px;
    }

    .team-card-role {
margin-bottom: 10px;
    font-weight: 600;
    font-size: 10px;
    color: var(--light-grey);
    }

    .email-wrapper {
position: relative;
    display: inline-block;
    width: 100%;
}

.media-link-icon{
  width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  white-space: nowrap;
}

.copy-tooltip.show {
  opacity: 1;
}
.btn-team-more {
    font-size: 11px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 10px 15px;
    background: var(--grey);
    width: 100%;
    font-family: 'Montserrat';
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-team-more:hover {
      background: var(--red);
    }

    .join-team {
      background: var(--black);
      min-height: 480px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 60px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .join-team-content {
      position: relative;
      z-index: 1;
    }

    .join-team h2 {
      font-size: 72px;
      font-weight: 900;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 20px;
    }

    .join-team h2 span {
      color: var(--red);
    }

    .join-team p {
font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    }

    #faq {
      background: var(--black);
    }

    #faq > .faq-layout > .faq-left h2{
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: 800;
      font-size: 50px;
      letter-spacing: 0.01em;
    }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 90px;
    align-items: start;
}

.faq-title {
  grid-column: 1;
  margin-bottom: 10px;
}
.faq-bottom {
  grid-column: 1;
}
.faq-bottom p {
  margin-bottom: 125px;
  line-height: 1.6;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--light-grey);
}

    .faq-left p {
margin-bottom: 125px;
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--light-grey);
    }

    .faq-btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    }

    .btn-faq {
padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border: none;
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .btn-faq.primary {
      background: var(--red);
      color: var(--white);
    }

    .btn-faq.secondary {
background: var(--white);
    border: 1px solid #444;
    color: var(--black);
    }

    .btn-faq.secondary:hover {
      border-color: var(--white);
    }

.faq-list {
  grid-column: 2;
  grid-row: 1 / span 2;
}

    .faq-item {
      border-bottom: 1px solid #222;
    }

    .faq-question {
display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    }

    .faq-arrow {
      width: 32px;
      height: 32px;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--white);
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(90deg);
    }

    .faq-answer {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding-bottom: 0;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: 20px;
    }

    /* ===== MEDIA ===== */
    #media {
      background: var(--black);
    }

    .media-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .media-left h2 {
      font-size: 52px;
      font-weight: 900;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 24px;
    }

    .media-left h2 span {
      color: var(--red);
    }

    .media-left p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .media-links {
display: flex;
    flex-direction: column;
    gap: 15px;
    }

    .media-link {
display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid var(--grey);
    height: 50px;
    }

    .media-phone img {
  transition: transform 0.2s ease-out;
  will-change: transform;
}

    .media-link:hover {
      color: var(--red);
    }

    .media-link:hover svg{
      color: var(--red);
    }


    .media-link-icon svg{
      width: 32px;
      height: 32px;
      transition: color 0.2s;
    }

    .media-phones {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .media-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s ease;
    }

    .media-phone img:hover{
      transform: translateY(-10px);
    }

    #contacts {
      background: var(--black);
    }

    .contacts-layout {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    }

    .contacts-form-wrap {
      background: var(--white);
      padding: 40px;
    }

    .contacts-form-wrap h2 {
      font-size: 28px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 6px;
    }

    .contacts-form-wrap h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 8px;
    }

    .contacts-form-wrap>p {
margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 13px;
    color: var(--grey);
    }

    .form-label {
      font-size: 12px;
      font-weight: 700;
      color: #333;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: block;
      margin-bottom: 6px;
    }

    .form-select,
    .form-input {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #ddd;
      background: var(--white);
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      color: var(--black);
      outline: none;
      margin-bottom: 20px;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

    .form-input:focus,
    .form-select:focus {
      border-color: var(--red);
    }

    .form-privacy {
      font-size: 11px;
      color: #999;
      margin-top: 12px;
      line-height: 1.5;
    }

    .contacts-info h2 {
      font-size: 42px;
      font-weight: 900;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .contact-item {
display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    }

    .contact-items{
      display: flex;
    gap: 80px;
    }

    .contact-icon {
width: 42px;
    height: 42px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(80% 0, 100% 20%, 100% 99%, 0 100%, 0 0);
    }

    .contact-details {
          line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    }

    .contact-type {
      font-size: 10px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .contact-value {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
    }

    .contact-value a {
      color: var(--white);
      text-decoration: none;
    }

    .contacts-info{
          display: flex;
    flex-direction: column;
    }

    .map-frame {
width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.1);
    }

    footer {
background: var(--black);
    }

    .footer-nav {
    padding: 30px 236px;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    gap: 60px;
    justify-content: center;
    }

    .footer-nav a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
      transition: color 0.2s;
    }

    .footer-nav a:hover {
      color: var(--white);
    }

    .footer-bottom {
    padding: 25px 230px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 30px;
    }

    .footer-logo {
      display: flex;
      flex-direction: column;
    }

    .footer-legal {
  line-height: 1.6;
    font-weight: 600;
    font-size: 13px;
    color: var(--grey);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    }

    .footer-legal > div span{
      white-space: nowrap;
    }

    .footer-legal div{
      display: flex;
      flex-direction: column;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-links a {
text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
    font-size: 12px;
    color: var(--grey);
    }

    .footer-links a:hover {
      color: var(--white);
    }

    /* Scroll to top */
    .scroll-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 48px;
      height: 48px;
      background: var(--red);
      border: none;
      color: var(--white);
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-top:hover {
      background: #c0001a;
    }

    /* Success message */
.success-msg {
    background: rgba(0, 200, 100, 0.15);
    border: 1px solid rgba(0, 200, 100, 0.4);
    color: #00c864;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    margin-top: 0;
    overflow: hidden;
    transition: all 0.25s ease;
}

.success-msg.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 120px;
    padding: 16px 20px;
    border-width: 1px;
    margin-top: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 520px;
  margin: 0 auto;
}

.cookie {
  transition: all 0.3s ease;
}

.cookie__text {
    line-height: 1.4;
    max-width: 70%;
    font-weight: 500;
    font-size: 13px;
    color: var(--white);
}

.cookie__text a{
  text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--white);
}

.cookie__btn {
background: #2b2b2b;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.cookie__btn:hover {
  background: #444;
}

.error-msg {
    background: #e0202005;
    border: 1px solid #e020206b;
    color: #e02020;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;

    width: 100%;
    box-sizing: border-box;

    /* скрытое состояние */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;

    overflow: hidden;
    transition: all 0.25s ease;
}

.error-msg.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    max-height: 120px;
    margin-top: 12px;
    padding: 16px 20px;
    border-width: 1px;
}

    /* Row for faq buttons */
    .faq-btns-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    /* Ticker 2 */
    .ticker-wrap2 {
      background: #0e0e0e;
    }

    .ticker-wrap2 .ticker-track span {
      color: var(--white);
      opacity: 0.4;
    }

.count-num { display: inline-block; }

.service-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.team-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover { transform: translateY(-6px); }

.partner-item {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.partner-item:hover {
  border: 1px solid #E8001D;
}

.partner-item:hover img{
    transform: scale(1.04);
}

.partner-item img{
  transition: 0.3s ease;
}

.scroll-progress {
  position: fixed;
  top: 80px;
  left: 0;
  height: 3px;
  background: #E8001D;
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

.services-slider-container {
  overflow: hidden;
  position: relative;
}

.services-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.services-dots {
display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 5px;
}

.services-dot {
width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.services-dot.active {
  background: #EC1C24;
  transform: scale(1.15);
}


.navbar-mobile-right { display: none; }
.mobile-menu { display: none; }

/* ===== МОБАЙЛ ===== */
@media (max-width: 768px) {

    .slider-arrows {
    display: none;
  }

  .services-dots {
    display: flex;
  }

  .services-slider-container {
    overflow: hidden;
  }

  .services-slider {
    gap: 0;
    touch-action: pan-y;
  }

  .service-card {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
  }

  .hero {
		display: flex;
        background: linear-gradient(to top, rgb(0 0 0 / 40%) 50%, rgba(0, 0, 0, 0.0) 100%), url(/img/head-banner-mobile.jpg);
        background-size: cover;
        align-items: center;
        background-position: center 60px;
        height: 740px;
        width: 100%;
        padding: 50px 20px;
}

.navbar-mobile-right-flex p{
  font-weight: 400;
    font-size: 14px;
}

section {
  padding: 60px 20px !important;
  scroll-margin-top: 105px;
}

.service-card {
  height: 100%;
        min-width: 100%;
}

.quiz-left h2 {
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 38px;
    line-height: 105%;
}

.quiz-widget {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.quiz-progress-bar {
    margin-top: 28px;
    order: 3;
}

.quiz-desc{
  display: none;
}

.quiz-layout {
    grid-template-columns: 1fr;
    gap: 30px;
}

.steps-heading {
flex-shrink: 0;
        width: auto;
        position: relative;
        z-index: 2;
        margin-bottom: 30px;
}

.steps-heading h2 {
    font-weight: 800;
    font-size: 38px;
    line-height: 105%;
    letter-spacing: 0.01em;
            width: 70%;
}

.steps-heading p {
    font-size: 20px;
    line-height: 150%;
}

.steps-bars {
        flex-direction: column;
    position: relative;
}

.steps-rocket{
  display: none;
}

.step-bar:not(:first-child) {
  display: none;
}

    .steps-rocket-mobile {
        position: absolute;
        display: block;
        top: 0%;
        left: 55%;
        transform: translate(-50%, -50%);
    }
    .step-bar.expanded {
    width: auto !important;
}

.step-bar {
    display: none;
    width: 100% !important;
    height: auto !important;
    min-height: 300px;
}

.step-bar.mobile-visible {
    display: block;
}

.step-bar.expanded {
    width: 100% !important;
}

.step-bar-content {
    padding: 40px 24px 24px;
    min-height: 300px;
}

.step-bar.expanded .step-text-content {
    opacity: 1;
    max-height: 500px;
}

.step-bar .step-title-vertical-container {
    display: none !important;
}

.step-bar .step-number {
    order: -1;
    margin-bottom: 30px;
}

.step-title-large {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

.step-desc-large {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.35;
}

.steps-mobile-nav {
display: flex;
        gap: 14px;
        margin-top: 16px;
        width: 100%;
}

.steps-mobile-arrow {
      width: 84px;
        height: 64px;
        border: 1px solid var(--grey);
        background: transparent;
        color: var(--grey);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.2s ease;
        flex-shrink: 0;
}

.steps-mobile-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.steps-mobile-next {
    flex: 1;
    height: 64px;
    border: none;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.steps-mobile-next:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.partners-inner .section-title {
    font-weight: 800;
    font-size: 38px;
    line-height: 105%;
    padding: 0 !important;
}

.partners-logos {
    margin-top: 30px;
}

.partner-item {
    width: 210px;
    height: 105px;
}

.team-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.join-team h2 {
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 38px;
    line-height: 105%;
    letter-spacing: 0.01em;
    text-align: center;
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .faq-title {
    margin-bottom: 0;
  }

  .faq-list {
    order: 2;
  }

  .faq-bottom {
    order: 3;
  }

  .faq-bottom p {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 18px;
  }

  .faq-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

.media-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.contacts-layout {
    grid-template-columns: 1fr;
}

.contact-items {
    gap: 0;
    flex-direction: column;
}

.contact-item {
    gap: 15px;
    margin-bottom: 30px;
}

.contact-value a {
    font-weight: 400;
    font-size: 18px;
}

.contact-value {
    font-weight: 400;
    font-size: 18px !important;
}

.footer-nav {
    display: none;
}

.footer-bottom {
padding: 60px 20px;
        grid-template-columns: 1fr;
        justify-items: start;
        padding-top: 0;
}

.footer-legal {
    order: 4;
    line-height: 2.2;
}

#ceo {
    padding-top: 25px !important;
}

.ceo-layout {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding: 0;
}

.ceo-text{
  z-index: 3;
}

.ceo-text h2 {
font-weight: 800;
        font-size: 38px;
        line-height: 105%;
        letter-spacing: 0.01em;
        z-index: 3;
        position: relative;
}

.ceo-text h3 {
    font-weight: 800;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: 0.01em;
}

.ceo-img {
    width: 100%;
    position: relative;
}

.ceo-name-badge{
  display: none;
}

.ceo-img-wrap::after {
content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(to top, black, transparent);
        z-index: 2;
        pointer-events: none;
}

.ceo-img-wrap {
position: relative;
        order: -1;
        bottom: 0;
        right: 0;
        left: 0;
        top: 50px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
}

.navbar-logo{
  display: none;
}

.media-left h2 {
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 38px;
    line-height: 105%;
}

.footer-links a {
    font-size: 14px;
}

.cases-cta{
  display: none;;
}

.cases-num {
    font-weight: 800;
    font-size: 86px;
    line-height: 87%;
}

.cases-counter {
    gap: 10px;
}

.cases-label {
    font-weight: 600;
    font-size: 14px;
}

.cases-slider {
    gap: 15px;
    margin-bottom: 0;
    flex-direction: column;
}

.service-card img {
    height: 255px;
}

.btn-outline {
    justify-content: center;
}

.btn-red {
display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
}

.hero-content {
    width: auto;
    margin-top: auto;
}

.hero h1{
  font-size: 40px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 15px;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    width: auto;
}

.navbar {
        padding: 0 20px;
        height: 105px;
        justify-content: space-between;
        gap: 30px;
    }

  .navbar-logo svg {
    width: 140px;
    height: 40px;
  }

  .navbar-nav,
  .navbar-right {
    display: none !important;
  }
  .navbar-mobile-right {
display: flex;
        align-items: center;
        gap: 30px;
  }

    .navbar-phone-mobile {
color: var(--black);
        text-decoration: none;
        white-space: nowrap;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        gap: 6px;
    }


    .navbar-logo-mobile{
      display: flex;
    }

  .burger-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    padding: 4px;
    flex-shrink: 0;
  }

  .burger-line {
    height: 2px;
    background: #EC1C24;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  .burger-line:nth-child(1) { width: 24px; }
  .burger-line:nth-child(2) { width: 16px; }
  .burger-line:nth-child(3) { width: 20px; }

  .burger-btn.active .burger-line:nth-child(1) {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
  }
  .burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .burger-btn.active .burger-line:nth-child(3) {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .mobile-menu.open {
    max-height: 500px;
  }

  .mobile-nav {
    list-style: none;
    padding: 8px 0;
  }

  .mobile-nav li a {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: color 0.2s, background 0.2s;
  }

  .mobile-nav li a:hover {
    color: #EC1C24;
    background: rgba(236,28,36,0.04);
  }

  .mobile-menu-footer {
    padding: 16px 20px 20px;
  }

  .mobile-btn-red {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 13px;
  }

  .scroll-progress {
    top: 102px;
  }

  #map{
    height: 400px !important
  }

  .contacts-info {
    order: -1;
}
.partner-item img {
    width: 200px;
}
.services-slider-wrapper {
  overflow: hidden;
  touch-action: pan-y;
}

#servicesSlider {
  display: flex;
  will-change: transform;
}

.service-card:hover {
    transform: translateY(0);
    box-shadow: none;
}

.btn-modal{
  white-space: normal;
}
  
}
