/* ===== Font Face Declarations ===== */
/* Commissioner Bold - for headings */
@font-face {
    font-family: 'Commissioner';
    src: 
         url('../fonts/Commissioner-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Commissioner Black';
    src: 
         url('../fonts/Commissioner-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* PT Astra Sans Regular - for body text */
@font-face {
    font-family: 'PT Astra Sans';
    src: 
         url('../fonts/pt-astra-sans_regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* PT Astra Sans Bold - for body text bold */
@font-face {
    font-family: 'PT Astra Sans';
    src: 
         url('../fonts/pt-astra-sans_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --bg-dark: #0a0a0f;
    --bg-dark-secondary: #111118;
    --bg-light: #ffffff;
    --bg-light-secondary: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --text-muted-light: #9ca3af;
    --border-color: #e5e7eb;
    --border-dark: #2a2a3a;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --gradient-start: #3b82f6;
    --gradient-end: #8b5cf6;
    --light-blue-accent: #9bdaff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Fonts */
    --font-heading: 'Commissioner', sans-serif;
    --font-heading-black: 'Commissioner Black', sans-serif;
    --font-body: 'PT Astra Sans', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {

     overflow-x: hidden!important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden!important;

}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 80px;
    }
}

/* ===== Section ===== */
.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 120px 0;
    }
}

/* ===== Fade In Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== Dark Section ===== */
.dark-section {
background: transparent;
    color: var(--text-light);
    position: relative;;
}

.dark-section .section-label {
    color: var(--text-muted-light);
}


.dark-video-container {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 200vh;
    z-index: -1;
    overflow: hidden;
    background-color: black;

}

.dark-video {
    width: 100%;
    height:100%;
    object-fit: cover;
    opacity: 1;
 
}



/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-light);
}

.btn-primary:hover {
    background: #333;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dark-section .btn-outline {
    color: var(--text-light);
    border-color: var(--border-dark);
}

.dark-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
    width: 100%;
    background: var(--text-dark);
    color: var(--light-blue-accent);
    padding: 16px 24px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-telegram {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
    background: var(--text-dark);
    color: var(--light-blue-accent);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-telegram:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-nav-cta {
    background: var(--text-dark);
    color: var(--light-blue-accent);
    padding: 12px 24px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-nav-cta:hover {
    background: #333;
    transform: translateY(-1px);
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 80vh;
background: #050205;
background: linear-gradient(302deg, rgba(5, 2, 5, 1) 0%, rgba(5, 2, 5, 1) 79%, rgba(0, 49, 79, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-container
{
    height: 60vh;
}

.hero-title {

    margin-bottom: -50px;
    margin-top: 20px;
    height: 250px;
    width: 102%;
 
   
    white-space: nowrap;
    overflow: visible;
    background:url("/images/logo2.svg");
    background-size: contain;
    background-repeat: no-repeat;
     background-blend-mode: exclusion;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(25px, 3.75vw, 40px);
    font-weight: 400;
    color: white;;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 25px;
    color: white;
    line-height: 1.2;
    max-width: 400px;
    position: absolute;
    bottom: 30px;
    font-weight: 400;
}

.hero-video-container {
    position: absolute;
    right: 0;
    bottom: -60vh;
    width: 50%;
    height: 200vh;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
    }
    
    .hero-subtitle
    {
        margin-top: -120px;
    }
    
    .hero-video-container {
             width: 150%;
        height: 150vh;
        opacity: 1;
        bottom: -50vh;
        right: -70%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 20px;
    }

    .hero-container
    {
    height: 100%;
    }
    
    .hero-content {
        padding-bottom: 100px;
    }
    
    .hero-video-container {
        width: 300%;
        height: 300vh;
        opacity: 1;
        bottom: -120vh;
    
    }
    
    .hero-title {
        font-size: clamp(36px, 14vw, 80px);
        margin-bottom: -180px;
    }

    .hero-subtitle {
     margin-top: 00px;
}



.hero-description 
{
    font-size: 18px;
    bottom: 40px!important;
}

}

/* ===== Navigation ===== */
.navbar-wrapper {
    position: relative;
    z-index: 1000;
    width: 100%;
    margin-top: -20px;
    padding: 0 20px;
}

.navbar {
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    
}

.navbar.sticky {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: slideDown 1.0s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: none;
}

.mobile-nav-bar {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-nav-cta-mobile {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 10px 16px;
    font-size: 13px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 1px solid rgba(26,26,26,0.2);
    white-space: nowrap;
    padding-bottom: 1px;
}

.nav-links a:hover {
    color: var(--accent-blue);
    border-bottom-color: transparent;
}

.nav-right {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: 12px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 120px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

body.menu-open .mobile-menu
{
      opacity: 1!important;
    visibility: visible!important; 
}


.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-links a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-blue);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1023px) {
    .logo-text {
        display: block;
    }
    
    .mobile-nav-bar {
        display: flex;
    }
}

@media (min-width: 768px) {
    .navbar-wrapper {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .navbar-wrapper {
        margin-top: -60px;
        padding: 0 60px;
    }
    
    .nav-links {
        display: flex;
    }
    
    .nav-right {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .mobile-nav-bar {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
}

@media (min-width: 1280px) {
    .navbar-wrapper {
        padding: 0 80px;
    }
}

/* ===== About Section ===== */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    gap: 48px;
}

.about-title {
    font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.founder {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.founder-name {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    font-size: 25px;

    
}

.founder-role {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    margin-top: -10px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 24px;
}

.about-mission {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-muted);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-light);
}

.services .container {
    overflow: visible;
}

/* Services Tabs */
.services-tabs-wrapper {
    margin-bottom: 48px;
    position: relative;
    width: 100%;
}

.services-tabs-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.services-tabs {
    display: flex;
    gap: 48px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

.service-tab {
    font-family: var(--font-heading);
    font-size: clamp(86px, 16vw, 200px);
    font-weight: 700;
    line-height: 1;
    color: #0b233e;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.1s ease;
    white-space: nowrap;
    opacity: 0.3;
    flex-shrink: 0;
}

.service-tab.active {
    color: var(--text-dark);
    opacity: 1;
}

.service-tab:hover {
    opacity: 0.6;
}

.service-tab.active:hover {
    opacity: 1;
}

/* Services Slider */
.services-slider {
    overflow: visible;
    width: 100%;
    position: relative;
    min-height: 500px;
}

.services-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-slide {
    display: none;
    gap: 48px;
    padding: 0 10px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.service-slide.active {
    display: grid;
    opacity: 1;
    visibility: visible;
    position: relative;
    animation: serviceFadeIn 0.5s ease;
}

@keyframes serviceFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.services 
{
    margin-top: -80px;
}

.service-content {
    order: 2;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(20px);
    padding: 20px 20px;
    border-radius: 15px;
    margin-left: -10px;
    margin-top: -10px;
}
.service-title {
    font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-price {
     font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: 24px;

    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;



}

.service-description {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    color: var(--accent-blue);
    font-size: 18px;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid #c2d6f0;
    width: 179px;
    white-space: nowrap;
    padding-bottom: 1px;
    line-height: 1;
}

.service-link:hover {
    color: #60a5fa;
    border-color: transparent;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

.service-image-wrapper {
    order: 1;
    position: relative;
    min-height: 300px;
}

.service-image {
    position: absolute;
    right: -40%;
    top: 56%;
    transform: translateY(-50%);
    max-width: none;
    width: 160%;
    height: auto;
    z-index: -1;
}

@media (min-width: 1024px) {
    .service-slide {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .service-content {
        order: 1;
    }
    
    .service-image-wrapper {
        order: 2;
        min-height: 400px;
    }
    
    .service-image {
        width: 160%;
        right: -20%;
    }
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Mobile Service Slider */
@media (max-width: 768px) {
    
.services
{
    margin-top: -70px;
}


    .service-image {
    position: absolute;
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
    max-width: none;
    width: 150%;
    height: auto;
    z-index: -1;
}
    
    
    .services-slider {
        min-height: 500px;
    
    }
    
    .service-slide {
        min-height: 500px;
    }
    
    .service-content {
        padding: 20px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 500px;
    }
    
    .service-text-box {
        padding: 24px;
    }
    
    .services-tabs {
        gap: 16px;
    }
    
    .service-tab {
        font-size: clamp(36px, 12vw, 64px);
    }
}

/* ===== Cases Section ===== */
.cases {
    padding-top: 80px;
}

/* Cases Tabs */
.cases-tabs-wrapper {
    position: relative;
    margin-bottom: 48px;
    overflow: hidden;
}

.cases-tabs-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
    //background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.cases-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.cases-tabs::-webkit-scrollbar {
    display: none;
}

.case-tab {

    font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px)!important;
    font-weight: 400;
    line-height: 1.0;
    padding-right: 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
     color: white;
     opacity: 0.5;
}

.case-tab:hover {
    border-color: var(--text-muted);
    color: var(--text-light);
}

.case-tab.active {
    
    opacity: 1;
   
}

/* Cases Slider */
.cases-slider-container {
    position: relative;
    margin-bottom: -20px;
}

.cases-slider {
    overflow: visible;
}

.cases-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-slide {
    flex: 0 0 100%;
    padding: 0 0px;
    display: none;
}

.case-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}


.case-grid {
  position: relative; /* для позиционирования псевдоэлемента */
  display: grid;
  gap: 48px;
  padding: 20px 20px 40px 20px;
  border-radius: 20px;
  background: linear-gradient(to right, transparent, rgba(13, 24, 38, 0.));
  /* backdrop-filter убран из основного блока */
}

.case-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit; /* наследует скругление родителя */
  backdrop-filter: blur(400px);
  -webkit-backdrop-filter: blur(400px); /* для Safari */
  mask: linear-gradient(to right, transparent, black);
  -webkit-mask: linear-gradient(to right, transparent, black);
  pointer-events: none; /* чтобы не мешать кликам по контенту */
  z-index: -1; /* размещаем под фоном родителя */
}



.case-grid-1 {
  position: relative; /* для позиционирования псевдоэлемента */

  gap: 48px;

  border-radius: 20px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1));
  /* backdrop-filter убран из основного блока */
}

.case-grid-1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit; /* наследует скругление родителя */
  backdrop-filter: blur(500px);
  -webkit-backdrop-filter: blur(500px); /* для Safari */
  mask: linear-gradient(to right, transparent, black);
  -webkit-mask: linear-gradient(to right, transparent, black);
  pointer-events: none; /* чтобы не мешать кликам по контенту */
  z-index: -1; /* размещаем под фоном родителя */
}







 
.case-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.case-image {
    max-width: 60%;
    height: auto;
    position: absolute;
    top: 0px;
    left: -10%;
    
}


/* Mobile Service Slider */
@media (max-width: 768px) {
    .case-image
    {
        max-width: 140%;
        top: -5%;
        left: -20%;
       
    }
}


.case-visual-placeholder {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-visual-placeholder.fintech {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.case-visual-placeholder.saas {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.fintech-icon,
.saas-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.case-nda {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--light-blue-accent);
    margin-bottom: 16px;
}

.case-problem {
      font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px)!important;
    font-weight: 400;
    line-height: 1.0;
 


 
     color: white;
    
   
   
    margin-bottom: 32px;
    
}

/* Case Inner Tabs */
.case-inner-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.case-inner-tab {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--light-blue-accent);
    background: transparent;
    border: 1px solid var(--light-blue-accent);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-inner-tab:hover {
    border-color: var(--text-muted);
    color: var(--text-light);
}

.case-inner-tab.active {
    background: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

.case-inner-content {
    position: relative;
}

.case-inner-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.case-inner-panel.active {
    display: block;
}

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

.case-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-list li {
    font-family: var(--font-body);
    font-size: 20px;
    color: white;
    line-height: 1.5;
   
}

/* Cases Navigation */
.cases-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.cases-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}

.cases-dots {
    display: flex;
    gap: 8px;
}

.cases-dots span {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--border-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-dots span.active {
    background: var(--text-light);
    width: 24px;
}

@media (min-width: 1024px) {
    .case-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ===== Reviews Section ===== */
.dark-section .reviews {
    background: transparent;
    padding-top: 0px;
    margin-top: -50px;
}

.reviews-grid {
    display: grid;
    gap: 48px;
}

.reviews-title {
    font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px) !important;
    font-weight: 400;
    line-height: 1.0;
    color: white;
    margin-bottom: 32px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 16px;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.team-name {
    font-family: var(--font-body);
    font-size: 25px;
    color: var(--text-light);
}

.team-role {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted-light);
    margin-top: -10px;
}

.review-card {
    background: #ffffff;

    border-radius: var(--radius-lg);
    padding: 32px;

}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    color: #ffffff;
}

.review-name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #111827;
}

.review-rating {
    display: flex;
    align-items: center;

    color: #fbbf24;
}

.review-date {
    font-family: var(--font-body);
    font-size: 16px;
    color: #6b7280;
    margin-left: 8px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 20px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 24px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    width: 24px;
    background: #3b82f6;
}

.review-next {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--accent-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-next:hover {
    color: #60a5fa;
}

.review-next svg {
    transition: transform 0.3s ease;
}

.review-next:hover svg {
    transform: translateX(4px);
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    gap: 64px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px) !important;
    font-weight: 400;
    line-height: 1.0;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.contact-text {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 32px;
}

.contact-alt-title {
  

    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 12px;
}

.contact-alt-item {
   font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
   
}

.contact-alt-item a {
    width: auto!important;
    
}

.contact-alt-item a:hover {
    
}

.contact-form {
    background: var(--bg-light-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 18px;
    color: #0d1c2a;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #a4a4a4;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-time {
    margin: 24px 0;
}

.form-time-label {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-slot {
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: var(--text-muted);
    color: var(--text-dark);
}

.time-slot.active {
    background: var(--accent-blue);
    color: var(--text-light);
    border-color: var(--accent-blue);
}

.form-agreement {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-agreement a {
   width: auto;
   white-space: normal;;
}

.form-agreement a:hover {
   
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    color: var(--text-light);
}

/* Footer Top */
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-cta-title {
    font-family: var(--font-body);
    font-size: clamp(35px, 4vw, 60px) !important;
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--text-light);
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--text-light);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background: var(--accent-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
}

.footer-contact-value {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-contact-value {
    color: var(--accent-blue);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-dark), transparent);
    margin-bottom: 48px;
}

/* Footer Main */
.footer-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-light);
}

.footer-address {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted-light);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-nav-column h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-nav-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-column a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted-light);
    transition: color 0.3s ease;
    border-bottom: 1px solid #545454;

}

.footer-nav-column a:hover {
    color: var(--text-light);
    border-bottom: 0px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
}

.footer-legal-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
    transition: color 0.3s ease;
    border-bottom: 1px solid #545454;
}

.footer-legal-links a:hover {
    color: var(--text-light);
    border-bottom: 1px solid transparent;
}

.footer-dot {
    color: var(--border-dark);
}

/* Footer Media Queries */
@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-contacts {
        justify-content: flex-end;
    }
    
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .footer-nav {
        gap: 80px;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

.dark-section ::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.dark-section ::-webkit-scrollbar-thumb {
    background: var(--border-dark);
}

/* ===== Selection ===== */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: inherit;
}
/* ===== Contact Form Date Slots ===== */
.form-date {
    margin: 24px 0;
}

.form-date-label {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.date-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.date-slot {
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-slot:hover {
    border-color: var(--text-muted);
    color: var(--text-dark);
}

.date-slot.active {
    background: var(--accent-blue);
    color: var(--text-light);
    border-color: var(--accent-blue);
}
/* ===== Notifications System ===== */
@import url('notifications.css');


/* ===== КАРТОЧКА ПРЕДЛОЖЕНИЙ AI ===== */
.pending-changes .message-content {
    background: linear-gradient(145deg, #2d2d2d, #252526);
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Заголовок */
.changes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.4);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.changes-header i {
    font-size: 20px;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.2);
    padding: 8px;
    border-radius: 50%;
}

/* Список файлов */
.changes-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
}

/* Элемент файла */
.file-change-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-family: 'Consolas', monospace;
    transition: all 0.2s;
    border-left: 5px solid transparent;
    background: rgba(30, 30, 30, 0.7);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.file-change-item:hover {
    transform: translateX(4px);
    background: rgba(40, 40, 40, 0.9);
}

.file-change-item:last-child {
    margin-bottom: 0;
}

/* Цвета для разных типов */
.file-change-item.create {
    border-left-color: #4ec9b0;
    background: rgba(78, 201, 176, 0.1);
}
.file-change-item.modify {
    border-left-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}
.file-change-item.delete {
    border-left-color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    opacity: 0.8;
}
.file-change-item.replace {
    border-left-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}
.file-change-item.append {
    border-left-color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

/* Иконка */
.file-change-item i {
    width: 24px;
    text-align: center;
    font-size: 16px;
    color: #ddd;
}

/* Путь к файлу */
.file-change-item .file-path {
    flex: 1;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

/* Бейдж (тип операции) */
.file-change-item .file-badge {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 30px;
    background: rgba(0,0,0,0.5);
    color: #ccc;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.file-change-item.create .file-badge {
    background: #4ec9b0;
    color: #000;
    border-color: #4ec9b0;
}
.file-change-item.modify .file-badge {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}
.file-change-item.delete .file-badge {
    background: #f44336;
    color: #fff;
    border-color: #f44336;
}
.file-change-item.replace .file-badge {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}
.file-change-item.append .file-badge {
    background: #2196f3;
    color: #fff;
    border-color: #2196f3;
}

/* Предпросмотр кода */
.code-preview {
    width: 100%;
    margin-top: 12px;
    background: #0a0c0e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px;
    font-size: 12px;
    line-height: 1.5;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
}

.code-preview pre {
    margin: 0;
    color: #d4d4d4;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.code-preview .code-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Специально для replace: два блока */
.file-change-item.replace .code-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.file-change-item.replace .old-code {
    border-left: 3px solid #f44336;
    padding-left: 12px;
}
.file-change-item.replace .new-code {
    border-left: 3px solid #4ec9b0;
    padding-left: 12px;
}

/* Кнопки внутри предпросмотра */
.code-preview .btn-sm {
    margin-top: 12px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #ccc;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.code-preview .btn-sm:hover {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}

/* ===== КНОПКИ ДЕЙСТВИЙ ===== */
.changes-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0 10px;
    flex-wrap: wrap;
}

/* Базовый стиль для всех кнопок */
.btn-apply, .btn-cancel, .btn-secondary, .btn-full-response {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
}

/* Кнопка "Применить" */
.btn-apply {
    background: linear-gradient(135deg, #4ec9b0, #2aa889);
    color: #000;
    box-shadow: 0 4px 14px rgba(78, 201, 176, 0.4);
}

.btn-apply:hover {
    background: linear-gradient(135deg, #5adfc4, #3bc0a0);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 201, 176, 0.6);
}

.btn-apply:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(78, 201, 176, 0.4);
}

/* Кнопка "Отклонить" */
.btn-cancel {
    background: transparent;
    color: #f44336;
    border: 2px solid #f44336;
    box-shadow: none;
}

.btn-cancel:hover {
    background: #f44336;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4);
}

.btn-cancel:active {
    transform: translateY(0);
}

/* Вторичная кнопка (например, "Повторить") */
.btn-secondary {
    background: #3a3a3a;
    color: #fff;
    border: 1px solid #555;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Кнопка "Показать полный ответ AI" */
.btn-full-response {
    background: transparent;
    border: 2px dashed #7c3aed;
    color: #7c3aed;
    box-shadow: none;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: normal;
    min-width: auto;
}

.btn-full-response:hover {
    background: #7c3aed;
    color: #fff;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

/* Контейнер для дополнительных действий (полный ответ) */
.full-response-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

/* ===== БЛОК РАССУЖДЕНИЙ (REASONING) ===== */
.reasoning-block {
    margin-top: 20px;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.reasoning-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #2a2a2a;
    cursor: pointer;
    font-weight: 600;
    color: #b388ff;
    transition: background 0.2s;
    user-select: none;
}

.reasoning-toggle:hover {
    background: #333;
}

.reasoning-toggle i.fa-chevron-down {
    margin-left: auto;
    transition: transform 0.3s;
}

.reasoning-toggle.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.reasoning-content {
    padding: 18px;
    background: #1e1e1e;
    color: #ce9178; /* цвет для рассуждений, можно другой */
    font-family: 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.6;
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #3a3a3a;
    white-space: pre-wrap;
}

/* ===== АДАПТАЦИЯ ПОД МОБИЛЬНЫЕ ===== */
@media (max-width: 768px) {
    .file-change-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .file-change-item .file-badge {
        align-self: flex-start;
    }
    
    .changes-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-apply, .btn-cancel, .btn-secondary, .btn-full-response {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    .full-response-container {
        justify-content: center;
    }
}
