/*
Theme Name: Udl Theme
Author: Radius
Description: Custom ACF Theme
Version: 1.0
*/
  @import url("https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
  * {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
    background: none;
    border: none;
    text-decoration: none;
    font-family: Roboto, sans-serif;
  }
  html {
    width: 100%;
    overflow: hidden auto;
  }
  body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F6F6
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Geologica, sans-serif;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span {
    margin: 0px;
  }
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background-color: rgb(54, 53, 71);
  }
  ::-webkit-scrollbar-thumb {
    background-color: rgb(53, 44, 166);
    border-radius: 10px;
  }
.text-blue {
   color: #2855A3;
}
.single-post ul {
	list-style: disc;
    padding-left: 20px;
    margin: 10px 0;
}
.single-post ul li{
	list-style: disc;
}
  .header-banner {
    width: 100%;
    background-color: rgb(43, 87, 154);
    color: white;
    padding: 0.8vw 8.56vw;
    box-sizing: border-box;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header-section {
    display: flex;
    align-items: center;
    gap: 0.8vw;
  }
  .location-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
    cursor: pointer;
  }
  .icon-small {
    width: 1.2vw;
    margin-top: 0.1vw;
  }
  .text-block {
    display: flex;
    flex-direction: column;
  }
  .city-bottom-row {
    display: flex;
    align-items: center;
    gap: 0.4vw;
    margin-top: 0.1vw;
  }
  .city-name {
    font-size: 1.15vw;
    font-weight: 500;
    line-height: 1;
  }
  .city-label {
    font-size: 0.85vw;
    opacity: 0.8;
    line-height: 1;
  }
  .arrow-icon {
    font-size: 0.5vw;
    color: rgb(255, 255, 255);
  }
  .phone-number {
    font-family: Roboto, sans-serif;
    font-size: 1.2vw;
    font-weight: 500;
    line-height: 1;
  }
  .phone-label {
    font-size: 0.8vw;
    opacity: 0.8;
    margin-top: 0.2vw;
    line-height: 1;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1.5vw;
  }
  .social-wrapper {
    display: flex;
    gap: 0.8vw;
  }
  .callback-btn {
    background-color: white;
    border: none;
    padding: 0.6vw 1.2vw;
    border-radius: 2vw;
    font-size: 0.9vw;
    display: flex;
    align-items: center;
    gap: 0.5vw;
    cursor: pointer;
    transition: 0.2s;
    height: 2.5vw;
  }
  .callback-btn:hover {
    background-color: #f0f8ff;
  }
  .btn-icon {
    width: 0.85vw;
  }
  .social-icon svg {
    width: 2.0vw;
    height: 2.0vw;
  }
  .dropdown-container {
    position: relative;
    cursor: pointer;
  }
  .city-list {
    position: absolute;
    top: 110%;
    left: 0px;
    background: white;
    color: rgb(51, 51, 51);
    padding: 0.5vw 0px;
    border-radius: 0.4vw;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    z-index: 100;
    min-width: 10vw;
    list-style: none;
  }
  .city-list.show {
    display: block;
  }
  .city-list li {
    padding: 0.5vw 1vw;
    font-size: 0.85vw;
  }
  .city-list li:hover {
    background: rgb(238, 238, 238);
  }
  .main-logo {
    width: 4.8vw;
  }
  .main-title {
    color: #fff;
    font-size: 1.2vw;
    text-transform: uppercase;
    margin: 0px;
  }
  .sub-title {
    color: #fff;
    font-size: 0.85vw;
    opacity: 0.8;
  }
  .icon-small {
    width: 1.2vw;
    margin-top: 0.1vw;
  }
.personal-social-block {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.personal-account a {
	color: #fff;
}

.personal-account a:hover {
	text-decoration: underline;
}
  
  
  /* MENU START */
  
  .main-nav {
    width: 100%;
    padding: 0.8vw 8.56vw;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid #eee;
  }
  
  .nav-container { display: flex; justify-content: space-between; align-items: center; }
  .nav-main-area { display: flex; align-items: center; gap: 3vw; }
  
  .services-btn {
    background: #f4f8ff; border: 1px solid #dce7f3;
    padding: 0.8vw 1.6vw; border-radius: 0.8vw;
    font-size: 0.95vw; color: #333; display: flex; align-items: center; gap: 0.7vw; cursor: pointer;
    transition: 0.2s;
  }
  .services-btn:hover {
    background: #e8f0ff;
    border-color: #2855A3;
    color: #2855A3;
  }
  
  .nav-links { display: flex; list-style: none; gap: 2vw; padding: 0; margin: 0; }
  .nav-links li a { text-decoration: none; color: #333; font-size: 0.9vw; }
  .nav-links li a:hover { color: #2855A3; }
  
  /* MEGA MENU STYLES */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 8.56vw;
    right: 8.56vw;
    background: #fff;
    border-radius: 0 0 1vw 1vw;
    box-shadow: 0 1.5vw 4vw rgba(0,0,0,0.1);
    display: none;
    padding: 2.5vw;
    z-index: 1000;
    border-top: 3px solid #00ff84;
  }
  .mega-menu.active { display: block; }
  
  .mega-menu-header {
    display: flex; gap: 1vw; margin-bottom: 2.5vw;
    border-bottom: 1px solid #f0f0f0; padding-bottom: 1.5vw;
  }
  
  .cat-tab {
    padding: 0.8vw 1.5vw;
    border-radius: 0.8vw;
    border: none;
    font-weight: 700;
    font-size: 0.75vw;
    cursor: pointer;
    background: #e8f4ff;
    color: #332A2B;
    transition: 0.3s;
  }
  .cat-tab:hover:not(.active) {
    background: #d0ebff;
  }
  .cat-tab.active { background: #00ff84; color: #004a27; }
  
  .tab-panel { display: none; }
  .tab-panel.active { display: block; }
  
  .mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw; }
  .mega-col h3 {
    font-size: 0.75vw;
    font-weight: 600;
    color: #332A2B;
    margin-bottom: 1.2vw;
    text-transform: uppercase;
  }
  
  .link-list { display: flex; flex-direction: column; gap: 0.6vw; }
  .link-list a {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    text-decoration: none;
    color: #332A2B;
    font-size: 0.85vw;
    padding: 0.3vw 0;
    gap: 2vw;
  }
  .link-list a:hover { color: #2855A3; }
  .link-list a i { font-size: 0.7vw; color: #ccc; }
  .link-list a:hover i { color: #2855A3; transform: translateX(3px); }
  
  .consultation-btn {
    background-color: #00FF80;
    color: #332A2B;
    border: none;
    padding: 0.9vw 1.8vw;
    border-radius: 5vw;
    font-weight: 600;
    font-size: 0.85vw;
    cursor: pointer;
    transition: 0.2s;
  }
  .consultation-btn:hover {
    background-color: #1bdc82;
    transform: translateY(-0.12vw);
  }
  
  .mt-2 { margin-top: 2vw; }
  
  /* BANNER START */
  .banner-container {
    width: 100%;
    padding: 0 8.56vw;
    margin-top: 1vw;
    box-sizing: border-box;
  }
  .banner-content {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.94vw;
  }
  .banner-top {
    display: flex;
    align-items: stretch;
    /* gap: 2.22vw; */
  }
  .banner-right {
    /* flex: 0 0 50%; */
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.4vw;
    /* max-width: 52vw; */
    position: relative;
    z-index: 2;
    justify-content: center;
  }
  .banner-br-mobile {
    display: none;
  }
  .banner-tittle {
    font-size: 2.2vw;
    line-height: 1.18;
    text-transform: uppercase;
    color: #2855A3;
    font-weight: 800;
    /* max-width: 48vw; */
    letter-spacing: 0.02em;
  }
  .banner-t-blue {
    color: #2855A3;
  }
  .banner-t-gray {
    color: #2c2c2c;
  }
  .banner-tittle span {
    font-weight: 700;
  }
  .banner-buttons {
    display: flex;
    gap: 1.05vw;
    align-items: center;
  }
  .banner-btn {
    padding: 0.8vw 1.5vw;
    border-radius: 999px;
    font-size: 0.92vw;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    height: 2.9vw;
    display: inline-flex;
    align-items: center;
    border: 4px solid #FFFFFF;
  }
  .banner-btn1 {
    background: #00e57f;
    color: #0d3b2a;
    box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
  }
  .banner-btn1:hover {
    background: #1bdc82;
    transform: translateY(-0.12vw);
    box-shadow: 0 0.7vw 1.6vw rgba(0, 229, 127, 0.35);
  }
  .banner-btn2 {
    background: #2855A3;
    color: #ffffff;
    box-shadow: 0 0.56vw 1.39vw rgba(43, 93, 159, 0.25);
  }
  .banner-btn2:hover {
    background: #1e4a8a;
    transform: translateY(-0.12vw);
    box-shadow: 0 0.7vw 1.6vw rgba(40, 85, 163, 0.35);
  }
  .banner-list {
    display: flex;
    flex-direction: column;
    gap: 0.9vw;
    max-width: 50vw;
  }
  .banner-item {
    background: #ffffff;
    border-radius: 1vw;
    padding: 0.9vw 1.6vw;
    display: flex;
    align-items: center;
    gap: 0.9vw;
    box-shadow: 0 0.42vw 1.11vw rgba(0, 0, 0, 0.05);
    border: 0.06vw solid #eef1f6;
    width: fit-content;
  }
  .item-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .item-icon {
    width: 1.1vw;
    height: 1.1vw;
    flex-shrink: 0;
  }
  .item-text {
    font-size: 0.95vw;
    color: #2b2b2b;
  }
  .banner-left {
    /* flex: 0 0 50%; */
    width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
  .banner-hero {
    position: relative;
    width: 100%;
    min-height: 24vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
  }
  .banner-icon {
    position: absolute;
    width: 5.2vw;
    height: 5.2vw;
    z-index: 2;
    /* mix-blend-mode: multiply; */
    object-fit: contain;
  }
  .banner-icon-1 {
    right: 22.4vw;
    top: 4.6vw;
    transform: rotate(287deg);
  }
  .banner-icon-2 {
    right: 5.8vw;
    top: 4.9vw;
    transform: rotate(10deg);
  }
  .banner-icon-3 {
    right: 0.8vw;
    top: 14.2vw;
    transform: rotate(22deg);
  }
  .banner-icon-4 {
    right: -0.6vw;
    /* top: 1.6vw; */
    bottom: 0;
    transform: rotate(-8deg);
  }
  .banner-emblem {
    position: absolute;
    /* right: -1.6vw; */
    left: 0;
    /* bottom: -1.2vw; */
    width: auto;
    height: 100%;
    /* opacity: 0.08; */
    z-index: 1;
    mix-blend-mode: multiply;
  }
  .banner-hero-person {
    position: relative;
    width: auto;
    display: flex;
    justify-content: flex-end;
    z-index: 3;
    height: 100%;
  }
  .banner-person {
    width: 100%;
    height: auto;
    display: block;
  }
  .banner-speech {
    position: absolute;
    left: -27%;
    top: 46%;
    width: 13.5vw;
    /* background: #ffffff; */
    border-radius: 0.8vw;
    padding: 0.75vw 0.9vw;
    font-size: 0.78vw;
    line-height: 1.25;
    color: #4b4b4b;
    box-shadow: 0 0.69vw 1.67vw rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(11.9px);
    background: rgba(255, 255, 255, 0.4);
  }
  .banner-name-tag {
    position: absolute;
    right: 5.2vw;
    bottom: 1.4vw;
    background: #dfffee;
    color: #1a4732;
    padding: 0.65vw 0.8vw;
    border-radius: 0.65vw;
    box-shadow: 0 0.56vw 1.39vw rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.25vw;
    max-width: 10vw;
  }
  .banner-name-tag .name {
    font-size: 0.78vw;
    font-weight: 700;
  }
  .banner-name-tag .role {
    font-size: 0.72vw;
    opacity: 0.8;
  }
  .banner-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2vw;
  }
  .stat-card {
    background: #ffffff;
    border-radius: 0.9vw;
    padding: 1.2vw 1.05vw;
    text-align: center;
    box-shadow: 0 0.42vw 1.11vw rgba(0, 0, 0, 0.05);
  }
  .stat-number {
    font-size: 1.28vw;
    font-weight: 800;
    color: #2855A3;
  }
  .stat-label {
    font-size: 0.7vw;
    color: #332A2B;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 0.4vw;
  }
  
  /* BANNER END */
  
  /* STRESS SECTION START */
  .stress-section {
    width: 100%;
    padding: 0 8.56vw;
    box-sizing: border-box;
    margin-top: 6vw;
  }
  .stress-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    gap: 2.4vw;
    align-items: stretch;
    background: #FBFAFA;
    border-radius: .75vw;
    padding: 2vw;
  }
  .stress-left {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }
  .stress-title {
    font-size: 1.75vw;
    line-height: 1.22;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 700;
    letter-spacing: 0.02em;
    max-width: 75%;
  }
  .stress-title span {
    color: #2855A3;
    font-weight: 900;
  }
  .stress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
  }
  .stress-card {
    background: #ffffff;
    border-radius: 0.8vw;
    padding: 1vw 1.1vw;
    font-size: 0.85vw;
    line-height: 1.22;
    color: #332A2B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    box-shadow: 0 0.42vw 1.11vw rgba(0, 0, 0, 0.05);
    border: 0.06vw solid #eef1f6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 5vw;
  }
  .stress-card--primary {
    background: #2855A3;
    color: #ffffff;
    border-color: #2855A3;
    box-shadow: 0 0.56vw 1.39vw rgba(43, 93, 159, 0.25);
    font-size: 1.2vw;
  }
  .stress-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2vw;
  }
  .stress-note {
    font-size: 1.2vw;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
    line-height: 1.25;
    max-width: 24vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stress-solution {
    background: #2855A3;
    color: #ffffff;
    border-radius: 1vw;
    padding: 3.1vw 3.2vw;
    font-size: 1.2vw;
    line-height: 1.32;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 0.69vw 1.67vw rgba(43, 93, 159, 0.25);
    min-height: 14.8vw;
    display: flex;
    align-items: center;
  }
  /* STRESS SECTION END */
  
  /* PROCEDURE SECTION START */
  .procedure-section {
    width: 100%;
    padding: 2.4vw 8.56vw 0vw;
    box-sizing: border-box;
    margin-top: 6vw;
  }
  .procedure-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    gap: 2.6vw;
    align-items: stretch;
  }
  .procedure-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.4vw;
  }
  .procedure-title {
    font-size: 1.6vw;
    line-height: 1.25;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 800;
    letter-spacing: 0.02em;
    max-width: 36vw;
  }
  .procedure-title span {
    color: #2855A3;
    font-weight: 900;
  }
  .procedure-image {
    width: 24vw;
    height: auto;
    margin-left: 3vw;
  }
  .procedure-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.4vw;
  }
  .procedure-list {
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
  }
  .procedure-item {
    border: 0.08vw solid #2855A3;
    border-radius: 0.8vw;
    padding: 0.85vw 1vw;
    display: flex;
    gap: 0.8vw;
    align-items: flex-start;
    background: #ffffff;
    width: fit-content;
  }
  .procedure-item img {
    width: 1vw;
    height: 1vw;
    margin-top: 0.2vw;
    flex-shrink: 0;
  }
  .procedure-item span {
    font-size: .9vw;
    line-height: 1.35;
    color: #332A2B;
    font-weight: 600;
  }
  .procedure-cta {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    margin-top: 1vw;
  }
  .procedure-cta-title {
    font-size: 1.22vw;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
  }
  .procedure-btn {
    background: #00FF80;
    color: #0d3b2a;
    border-radius: 999px;
    padding: 0.9vw 1.8vw;
    font-size: 0.85vw;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
    transition: 0.2s;
  }
  .procedure-btn:hover {
    background: #1bdc82;
    transform: translateY(-0.12vw);
    box-shadow: 0 0.7vw 1.6vw rgba(0, 229, 127, 0.35);
  }
  /* PROCEDURE SECTION END */
  
  /* SERVICES SLIDER START */
  .services-section {
    width: 100%;
    padding: 0vw 8.56vw;
    box-sizing: border-box;
    margin-top: 6vw;
  }
  .services-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    position: relative;
  }
  .services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .services-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    max-width: 42vw;
  }
  .services-title {
    font-size: 1.7vw;
    line-height: 1.2;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .services-title span {
    color: #2855A3;
    font-weight: 900;
  }
  .services-subtitle {
    font-size: 0.82vw;
    line-height: 1.35;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 600;
  }
  .services-carousel {
    width: 100%;
  }
  .service-item {
    /* padding: 0 0.7vw; */
    box-sizing: border-box;
  }
  .service-card {
    background: #ffffff;
    border-radius: 1vw;
    padding: 1.5vw 1.4vw;
    min-height: 16.5vw;
    /* box-shadow: 0 0.42vw 1.11vw rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    gap: 1vw;
  }
  .service-card h3 {
    font-size: 0.92vw;
    line-height: 1.25;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
  }
  .service-tag {
    background: #F6F6F6;
    border-radius: 0.8vw;
    padding: 0.8vw 0.9vw;
    font-size: 0.75vw;
    line-height: 1.25;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 400;
  }
  .service-card p {
    font-size: 0.78vw;
    line-height: 1.35;
    color: #332A2B;
  }
  .services-section .owl-stage-outer {
    padding: 0.6vw 0;
  }
  .services-section .owl-nav {
    display: flex;
    gap: 0.7vw;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    top: -4.8vw;
  }
  .services-section .owl-nav button {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 999px;
    background: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  .services-section .owl-nav button:hover {
    background: #2855A3 !important;
  }
  .services-section .owl-nav button svg {
    width: 1.1vw;
    height: 1.1vw;
  }
  .services-section .owl-nav button svg path {
    stroke: #2855A3;
  }
  .services-section .owl-nav button:hover svg path {
    stroke: #ffffff;
  }
  .services-section .owl-nav button.disabled {
    opacity: 0.5;
    cursor: default;
  }
  .services-section .owl-nav button.disabled:hover {
    background: #f1f3f7 !important;
  }
  .services-section .owl-dots {
    display: none;
  }
  /* SERVICES SLIDER END */
  
  /* DEBTS SLIDER START */
  .debts-section {
    width: 100%;
    padding: 4vw 8.6vw;
    box-sizing: border-box;
    background: #FBFAFA;
    margin-top: 6vw;
  }
  .debts-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8vw;
    position: relative;
  }
  .debts-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    max-width: 38vw;
  }
  .debts-title {
    font-size: 1.7vw;
    line-height: 1.2;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .debts-title span {
    color: #2855A3;
    font-weight: 900;
  }
  .debts-subtitle {
    font-size: 0.78vw;
    line-height: 1.35;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 600;
  }
  .debts-carousel {
    width: 100%;
  }
  .debts-item {
    /* padding: 0 0.7vw; */
    box-sizing: border-box;
  }
  .debts-card {
    border-radius: 1vw;
    padding: 2.4vw 1.3vw;
    height: 19.8vw;
    display: flex;
    flex-direction: column;
    gap: 0.9vw;
    /* box-shadow: 0 0.42vw 1.11vw rgba(0, 0, 0, 0.05); */
    border: 0.08vw solid transparent;
    transition: 0.2s;
  }
  .debts-card:hover {
    border: 0.08vw solid #2855A3;
  }
  .debts-card--green {
    background: #D1FBDC;
    /* border: 0.08vw solid #2855A3; */
  }
  .debts-card--blue {
    background: #D3E5FF;
  }
  .debts-card--beige {
    background: #ECE4DB;
  }
  .debts-card h3 {
    font-size: 0.92vw;
    line-height: 1.25;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
    margin-bottom: .5vw;
  }
  .debt-chip {
    background: #ffffff;
    border-radius: 0.7vw;
    padding: 0.7vw 0.9vw;
    font-size: 0.9vw;
    line-height: 1.3;
    color: #332A2B;
    font-weight: 400;
    box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.04);
  }
  .debts-note {
    font-size: 0.65vw;
    line-height: 1.35;
    color: #332A2B;
    opacity: 0.8;
  }
  .debts-section .owl-stage-outer {
    padding: 0.6vw 0;
  }
  .debts-section .owl-nav {
    display: flex;
    gap: 0.7vw;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    top: -4.8vw;
  }
  .debts-section .owl-nav button {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 999px;
    background: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  .debts-section .owl-nav button:hover {
    background: #2855A3 !important;
  }
  .debts-section .owl-nav button svg {
    width: 1.1vw;
    height: 1.1vw;
  }
  .debts-section .owl-nav button svg path {
    stroke: #2855A3;
  }
  .debts-section .owl-nav button:hover svg path {
    stroke: #ffffff;
  }
  .debts-section .owl-nav button.disabled {
    opacity: 0.5;
    cursor: default;
  }
  .debts-section .owl-nav button.disabled:hover {
    background: #f1f3f7 !important;
  }
  .debts-section .owl-dots {
    display: none;
  }
  /* DEBTS SLIDER END */
  
  /* LIFE CHANGES START */
  .life-section {
    width: 100%;
    padding: 0 8.56vw;
    box-sizing: border-box;
    margin-top: 6vw;
  }
  .life-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    gap: 2.6vw;
    align-items: flex-start;
  }
  .life-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.4vw;
  }
  .life-title {
    font-size: 1.7vw;
    line-height: 1.2;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .life-title span {
    color: #2b5d9f;
    font-weight: 900;
  }
  .life-image {
    width: 80%;
    height: auto;
  }
  .life-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
  }
  .life-group {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
  }
  .life-group-title {
    font-size: 1.15vw;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
  }
  .life-row {
    display: flex;
    gap: 0.8vw;
    flex-wrap: wrap;
  }
  .life-pill {
    border-radius: 0.8vw;
    padding: 1vw 1.2vw;
    font-size: .9vw;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 700;
    color: #332A2B;
    flex: 1;
    /* min-width: 12vw; */
    /* min-height: 7vw; */
  }
  .life-pill--green {
    background: #B8FFCA;
  }
  .life-pill--purple {
    background: #F2EDFF;
  }
  .life-pill--blue {
    background: #D3E5FF;
  }
  /* LIFE CHANGES END */
  
  /* REVIEWS SLIDER START */
  .reviews-section {
    width: 100%;
    padding: 0 0 0 8.6vw;
    box-sizing: border-box;
    margin-top: 6vw;
  }
  .reviews-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8vw;
    position: relative;
  }
  .reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .reviews-heading {
    display: flex;
    flex-direction: column;
    gap: 0.35vw;
    max-width: 34vw;
  }
  .reviews-title {
    font-size: 1.7vw;
    line-height: 1.18;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .reviews-title span {
    color: #2855A3;
    font-weight: 700;
  }
  .reviews-subtitle {
    font-size: .85vw;
    line-height: 1.4;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 600;
  }
  .reviews-carousel {
    width: 100%;
  }
  .reviews-item {
    /* padding: 0 0.55vw; */
    box-sizing: border-box;
  }
  .review-card {
    background: #ffffff;
    border-radius: 1vw;
    padding: 0.95vw;
    box-shadow: 0 0.42vw 1.11vw rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
  }
  .review-media {
    position: relative;
    display: block;
    border-radius: 0.8vw;
    overflow: hidden;
  }
  .review-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
  }
  .review-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4.2vw !important;
    height: 4.2vw;
    transform: translate(-50%, -50%);
    transition: 0.2s;
    /* background: #00e57f; */
    border-radius: 50%;
    padding: 0.55vw;
    box-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
  }
  .review-media:hover .review-play {
    transform: translate(-50%, -50%) scale(1.06);
  }
  .review-body {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
  }
  .review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8vw;
  }
  .review-name {
    font-size: .85vw;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 800;
  }
  .review-date {
    font-size: 0.6vw;
    color: #332A2B;
    display: flex;
    gap: 0.3vw;
    white-space: nowrap;
  }
  .review-accent {
    color: #2855A3;
    font-weight: 700;
  }
  .review-bottom {
    display: flex;
    gap: 0.6vw;
    justify-content: space-between;
  }
  .review-chip {
    background: #ffffff;
    border-radius: 0.6vw;
    padding: 1vw 1vw;
    font-size: .9vw;
    color: #332A2B;
    display: flex;
    gap: 0.3vw;
    align-items: center;
    box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.04);
    border: 0.06vw solid #eef1f6;
  }
  .review-chip--blue {
    background: #d7f0ff;
    border-color: #d7f0ff;
    color: #332A2B;
    font-weight: 700;
  }
  .reviews-cta {
    display: flex;
    justify-content: center;
  }
  .reviews-btn {
    background: #00FF80;
    color: #332A2B;
    border-radius: 999px;
    padding: 0.9vw 1.8vw;
    font-size: 0.85vw;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
    transition: 0.2s;
  }
  .reviews-btn:hover {
    background: #1bdc82;
    transform: translateY(-0.12vw);
    box-shadow: 0 0.7vw 1.6vw rgba(0, 229, 127, 0.35);
  }
  .reviews-section .owl-stage-outer {
    padding: 0.6vw 0;
  }
  .reviews-section .owl-nav {
    display: flex;
    gap: 0.7vw;
    justify-content: flex-end;
    position: absolute;
    right: 8.56vw;
    top: -3.9vw;
  }
  .reviews-section .owl-nav button {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 999px;
    background: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  .reviews-section .owl-nav button:hover {
    background: #2b5d9f !important;
  }
  .reviews-section .owl-nav button svg {
    width: 1.1vw;
    height: 1.1vw;
  }
  .reviews-section .owl-nav button svg path {
    stroke: #2b5d9f;
  }
  .reviews-section .owl-nav button:hover svg path {
    stroke: #ffffff;
  }
  .reviews-section .owl-nav button.disabled {
    opacity: 0.5;
    cursor: default;
  }
  .reviews-section .owl-nav button.disabled:hover {
    background: #f1f3f7 !important;
  }
  .reviews-section .owl-dots {
    display: none;
  }
  /* REVIEWS SLIDER END */
  
  /* PRICING TABS START */
  .pricing-section {
    width: 100%;
    padding: 0 8.56vw;
    box-sizing: border-box;
  }
  .pricing-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
    margin-top: 6vw;
  }
  .pricing-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    max-width: 42vw;
  }
  .pricing-title {
    font-size: 1.7vw;
    line-height: 1.2;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .pricing-title span {
    color: #2855A3;
    font-weight: 900;
  }
  .pricing-subtitle {
    font-size: 0.82vw;
    line-height: 1.35;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 600;
  }
  .pricing-tabs {
    display: flex;
    gap: 0.8vw;
  }
  .pricing-tab {
    background: #2855A3;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.6vw 2.7vw;
    font-size: 0.85vw;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
    flex: 0 0 auto;
  }
  
  
  
  .pricing-tab:nth-child(2),
  .pricing-tab:nth-child(3) {
    background: #2855A3;
    color: #ffffff;
  }
  .pricing-tab:hover:not(.active) {
    background: #1e4a8a;
    transform: translateY(-0.08vw);
  }
  .pricing-tab.active {
    background: #00FF80;
    color: #0d3b2a;
  }
  .pricing-tab.active:hover {
    background: #1bdc82;
    transform: translateY(-0.08vw);
  }
  .pricing-panels {
    width: 100%;
  }
  .pricing-panel {
    display: none;
  }
  .pricing-panel.active {
    display: block;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
  }
  .pricing-col {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
  }
  .pricing-item {
    background: #ffffff;
    border-radius: 0.7vw;
    padding: 0.7vw 0.9vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1vw;
    box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.04);
    border: 0.06vw solid #eef1f6;
    font-size: 0.9vw;
    color: #332A2B;
    font-weight: 400;
  }
  .pricing-price {
    background: #d7f0ff;
    color: #2855A3;
    font-weight: 700;
    font-size: 0.9vw;
    padding: 0.35vw 0.6vw;
    border-radius: 0.5vw;
    white-space: nowrap;
  }
  .pricing-note {
    background: #B8FFCA;
    border-radius: 0.7vw;
    padding: 1.8vw 1.5vw;
    font-size: 0.9vw;
    line-height: 1.4;
    color: #332A2B;
    font-weight: 500;
  }
  /* PRICING TABS END */
  
  /* CALCULATOR SLIDER START */
  .calc-section {
    width: 100%;
    padding: 0 18vw;
    box-sizing: border-box;
    background: #F6F6F6;
    margin-top: 6vw;
  }
  .calc-box {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    gap: 2.4vw;
    align-items: stretch;
    border: 1px solid #2855A3;
    border-radius: 1.2vw;
    padding: 1.8vw 2vw;
    align-items: center;
    /* background: #ffffff; */
  }
  .calc-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
  }
  .calc-title {
    font-size: 1.7vw;
    line-height: 1.25;
    text-transform: uppercase;
    color: #2855A3;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  .calc-title span {
    display: block;
    color: #2855A3;
    font-weight: 900;
  }
  .calc-text {
    font-size: 0.85vw;
    line-height: 1.3;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .calc-subtext {
    font-size: 0.9vw;
    line-height: 1.4;
    color: #332A2B;
    font-weight: 400;
  }
  .calc-note {
    font-size: 0.9vw;
    line-height: 1.35;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.6vw;
    letter-spacing: 0.01em;
  }
  .calc-right {
    width: 55%;
    display: flex;
    justify-content: flex-end;
   
  }
  .calc-form {
    width: 100%;
  }
  .calc-card {
    width: 100%;
   
    border: none;
    border-radius: 0.8vw;
    padding: 1.3vw 1.5vw 1.1vw;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.1vw;
  }
  .calc-card-questions {
    background: #FFFFFF;
    border-radius: 0.8vw;
    padding: 1.5vw 1.5vw 3vw 1.5vw;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 2.1vw;
  }
  
  
  .calc-step-title {
    font-size: 1.1vw;
    text-transform: uppercase;
    color: #2855A3;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .calc-slides {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    min-height: 10vw;
  }
  .calc-slide {
    display: none;
    flex-direction: column;
    gap: 2vw;
  }
  .calc-slide.active {
    display: flex;
  }
  .calc-question {
    display: flex;
    flex-direction: column;
    gap: 1vw;
  }
  .calc-question-title {
    font-size: 0.9vw;
    color: #332A2B;
    font-weight: 400;
    line-height: 1.3;
  }
  .calc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7vw 1.4vw;
  }
  .calc-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    font-size: 0.85vw;
    color: #332A2B;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .calc-option:hover {
    color: #2855A3;
  }
  .calc-option input {
    display: none;
  }

  .error input,
  input.error {
      border-color: red !important;
  }

  .calc-options.error {
      outline: 2px solid red;
      padding: 8px;
      border-radius: 8px;
  }

  .calc-error-message {
      color: red;
      font-size: 14px;
      margin-top: 6px;
  }
  
  .calc-check {
    width: 1.25vw;
    height: 1.25vw;
    border-radius: 50%;
    border: 0.14vw solid #a8b8d8;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: #ffffff;
  }
  .calc-option:hover .calc-check {
    border-color: #2855A3;
  }
  .calc-option input:checked + .calc-check {
    border-color: #2855A3;
  }
  .calc-option input:checked + .calc-check::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: .8vw;
    height: .8vw;
    background: #2855A3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .calc-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
    margin-top: 0.3vw;
  }
  .calc-btn {
    border: none;
    border-radius: 999px;
    font-size: 0.85vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65vw;
    white-space: nowrap;
  }
  .calc-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .calc-btn--ghost {
    background: transparent;
    color: #2855A3;
    border: none;
    padding: 0;
    align-items: center;
  }
  .calc-btn--ghost:hover:not(:disabled) {
    color: #1e4380;
  }
  .calc-btn--primary {
    background: #2855A3;
    color: #ffffff;
    padding: 0.35vw 1.2vw;
  }
  .calc-btn--primary:hover:not(:disabled) {
    background: #1e4380;
  }
  .calc-progress {
    font-size: 0.9vw;
    color: #332A2B;
    font-weight: 600;
  }
  .calc-current {
    color: inherit;
    font-weight: 600;
  }
  .calc-arrow {
    font-size: 1.5vw;
    /* line-height: 1; */
    font-weight: 700;
  }
  .calc-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
    margin-bottom: 0.5vw;
  }
  .calc-input {
    width: 100%;
    padding: 0.7vw 0.9vw;
    border: 0.08vw solid #d0d8e8;
    border-radius: 0.4vw;
    font-size: 0.85vw;
    color: #332A2B;
    transition: all 0.2s ease;
    background: #ffffff;
  }
  .calc-input:focus {
    outline: none;
    border-color: #2855A3;
  }
  .calc-input::placeholder {
    color: #9ba8c5;
  }
  /* CALCULATOR SLIDER END */
  
  /* STEPS SLIDER START */
  .steps-section {
    width: 100%;
    padding: 4vw 0 4vw 8.56vw;
    box-sizing: border-box;
    margin-top: 6vw;
    background: #FBFAFA;
  }
  .steps-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
    position: relative;
  }
  .steps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .steps-title {
    font-size: 1.7vw;
    line-height: 1.2;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .steps-title span {
    color: #2855A3;
    font-weight: 900;
  }
  .steps-carousel {
    width: 100%;
  }
  .steps-item {
    /* padding: 0 0.6vw; */
    box-sizing: border-box;
  }
  .step-card {
    position: relative;
    border-radius: 0.9vw;
    padding: 1.5vw 1.5vw 0vw 0;
    min-height: 18vw;
    display: flex;
    gap: 0.9vw;
    align-items: flex-start;
    border: 0.08vw solid #dfe7f5;
    flex-direction: column;
  }
  .step-card--green {
    background: #B8FFCA;
  }
  .step-card--blue {
    background: #D3E5FF;
  }
  .step-card--beige {
    background: #ECE4DB;
  }
  .step-label {
    position: static;
    background: #ffffff;
    color: #332A2B;
    font-size: 0.85vw;
    font-weight: 700;
    padding: 0.35vw 0.6vw;
    border-radius: 999px;
    box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.06);
    width: fit-content;
    margin-left: 1vw;
  }
  .step-body {
    display: flex;
    gap: 0.9vw;
    align-items: center;
  }
  .step-media {
    /* flex: 0 0 auto; */
    width: auto;
    height: 10.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .step-media img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    transform: rotate(
  359deg);
  }
  .step-content {
    display: flex;
    flex-direction: column;
    gap: 0.35vw;
  }
  .step-content h3 {
    font-size: 1.1vw;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
    line-height: 1.25;
  }
  .step-content p {
    font-size: 0.9vw;
    color: #332A2B;
    line-height: 1.2;
  }
  .steps-section .owl-stage-outer {
    padding: 0.6vw 0;
  }
  .steps-section .owl-nav {
    display: flex;
    gap: 0.7vw;
    justify-content: flex-end;
    position: absolute;
    right: 8.56vw;
    top: -4.8vw;
  }
  .steps-section .owl-nav button {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 999px;
    background: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  .steps-section .owl-nav button:hover {
    background: #2855A3 !important;
  }
  .steps-section .owl-nav button svg {
    width: 1.1vw;
    height: 1.1vw;
  }
  .steps-section .owl-nav button svg path {
    stroke: #2855A3;
  }
  .steps-section .owl-nav button:hover svg path {
    stroke: #ffffff;
  }
  .steps-section .owl-nav button.disabled {
    opacity: 0.5;
    cursor: default;
  }
  .steps-section .owl-nav button.disabled:hover {
    background: #f1f3f7 !important;
  }
  .steps-section .owl-dots {
    display: none;
  }
  /* STEPS SLIDER END */
  
  /* COSTS SECTION START */
  .costs-section {
    width: 100%;
    padding: 0 8.56vw;
    box-sizing: border-box;
    margin-top: 6vw;
  }
  .costs-container {
    width: 100%;
    /* max-width: 88vw; */
    margin: 0 auto;
    display: flex;
    gap: 2.2vw;
    align-items: stretch;
  }
  .costs-left {
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
  }
  .costs-title {
    font-size: 1.7vw;
    line-height: 1.2;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .costs-title span {
    color: #2855A3;
    font-weight: 900;
  }
  
  .costs-subtitle {
    font-size: 0.9vw;
    line-height: 1.35;
    color: #332A2B;
    text-transform: uppercase;
    font-weight: 600;
  }
  .costs-note {
    background: #B8FFCA;
    border-radius: 0.7vw;
    padding: 0.8vw 1vw;
    font-size: 1vw;
    line-height: 1.35;
    color: #332A2B;
    font-weight: 400;
  }
  .costs-right {
    width: 58%;
    display: flex;
    align-items: center;
  }
  .costs-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
  }
  .cost-card {
    background: #ffffff;
    border-radius: 0.9vw;
    padding: 1vw 1vw 1.1vw;
    box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
  }
  .cost-title {
    font-size: 1.1vw;
    text-transform: uppercase;
    color: #332A2B;
    font-weight: 700;
  }
  .cost-tag {
    background: #d7f0ff;
    color: #332A2B;
    font-size: 0.9vw;
    font-weight: 400;
    padding: 0.3vw 0.55vw;
    border-radius: 0.45vw;
    width: fit-content;
  }
  /* COSTS SECTION END */
  

.costs-note {
  background: #B8FFCA;
  border-radius: 0.7vw;
  padding: 0.8vw 1vw;
  font-size: 1vw;
  line-height: 1.35;
  color: #332A2B;
  font-weight: 400;
}
.costs-right {
  width: 58%;
  display: flex;
  align-items: center;
}
.costs-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}
.cost-card {
  background: #ffffff;
  border-radius: 0.9vw;
  padding: 1vw 1vw 1.1vw;
  box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}
.cost-title {
  font-size: 1.1vw;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
}
.cost-tag {
  background: #d7f0ff;
  color: #332A2B;
  font-size: 0.9vw;
  font-weight: 400;
  padding: 0.3vw 0.55vw;
  border-radius: 0.45vw;
  width: fit-content;
}
/* COSTS SECTION END */

/* APP CONTROL START */
.app-section {
  width: 100%;
  padding: 0 18vw;
  box-sizing: border-box;
  margin-top: 9vw;
}
.app-container {
  width: 100%;
  /* max-width: 88vw; */
  margin: 0 auto;
}
.app-card {
  background: #2f5fb2;
  border-radius: 1vw;
  padding: 2.6vw 0 2.6vw 2.6vw;
  display: flex;
  align-items: center;
  /* gap: 2.4vw; */
  position: relative;
  /* overflow: hidden; */
}
.app-left {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 1.1vw;
  color: #ffffff;
}
.app-title {
  font-size: 1.45vw;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
}
.app-title span {
  display: block;
}
.app-title-accent {
  color: #d7e7ff;
}
.app-points {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.app-point {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  padding: 1.6vw 1vw;
  border-radius: 0.7vw;
  font-size: 0.85vw;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 700;
  color: #332A2B;
}
.app-point img {
  width: 2.3vw;
  height: 2.3vw;
}
.app-point--green {
  background: #B8FFCA;
}
.app-point--light {
  background: #D3E5FF;
}
.app-point--outline {
  background: #ECE4DB;
  border: 0.08vw solid #6bbcff;
}
.app-right {
  width: 75%;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  position: relative;
  /* margin-top: -2vw; */
  margin-bottom: -100px;
}
.app-phone {
  width: 110%;
  /* height: 33vw; */
  /* transform: rotate(8deg) translateX(0); */
  margin-right: 0;
  filter: drop-shadow(0 0.6vw 1.4vw rgba(0, 0, 0, 0.25));
  position: absolute;
  right: -4vw;
  margin-top: -2vw;
}
/* APP CONTROL END */

/* CONTACT FORM START - görsele uygun */
.contact-section {
  width: 100%;
  padding: 0 5.27vw;
  box-sizing: border-box;
  margin-top: 12vw;
}
.contact-container {
  width: 100%;
  margin: 0 auto;
}
.contact-card {
  background: #dceef9;
  border-radius: 16px;
  padding: 2.5vw 2.5vw 2.5vw;
  display: flex;
  gap: 2vw;
  align-items: flex-start;
}
.contact-left {
  width: 48%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5vw;
  position: relative;
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  flex: 1;
  min-width: 0;
}
.contact-title {
  font-size: 1.75vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #1a3a6e;
  font-weight: 800;
}
.contact-title span {
  color: #2855A3;
  display: block;
  font-weight: 800;
}
.contact-subtitle {
  font-size: 0.9vw;
  line-height: 1.4;
  color: #2c2c2c;
  font-weight: 500;
}
.contact-person {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}
.contact-photo {
  width: 100%;
  max-width: 16vw;
  flex-shrink: 0;
}
.contact-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-tag {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 1vw 1.2vw;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: absolute;
  bottom: 8%;
  left: 35%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-tag-row {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.contact-name {
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
}
.contact-role {
  font-size: 13px;
  color: #555;
  font-weight: 400;
}
.contact-right {
  width: 48%;
  flex: 1;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}
.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid #e0e8f0;
  border-radius: 10px;
  padding: 1vw 1.2vw;
  font-size: 0.9vw;
  color: #2c2c2c;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2855A3;
}
.contact-form textarea {
  min-height: 6vw;
  resize: none;
}
.contact-form button {
  background: linear-gradient(135deg, #00e57f, #00c96d);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1vw 1.5vw;
  font-size: 0.95vw;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0,229,127,0.35);
  transition: 0.2s;
}
.contact-form button:hover {
  background: linear-gradient(135deg, #00c96d, #00b35d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,229,127,0.4);
}
.contact-consent {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 0.75vw;
  color: #555;
  font-weight: 400;
  cursor: pointer;
}
.contact-consent input {
  width: 1.1vw;
  height: 1.1vw;
  min-width: 18px;
  min-height: 18px;
  border: 1px solid #c5d0e0;
  border-radius: 4px;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 0.2vw;
  cursor: pointer;
}
.contact-consent input:checked {
  background-color: #2855A3;
  border-color: #2855A3;
  accent-color: #2855A3;
}
/* CONTACT FORM END */

/* TV EXPERTS START */
.tv-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  margin-top: 6vw;
}
.tv-container {
  width: 100%;
  /* max-width: 88vw; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4vw;
}
.tv-header {
  display: flex;
  justify-content: flex-start;
}
.tv-title {
  font-size: 1.7vw;
  line-height: 1.2;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tv-title span {
  color: #2855A3;
  font-weight: 900;
}
.tv-content {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.tv-media-row {
  display: flex;
  gap: 2.2vw;
  align-items: stretch;
  width: 100%;
}
.tv-main {
  width: 80%;
  /* aspect-ratio: 16 / 9; */
}
.tv-main,
.tv-mini {
  position: relative;
  display: block;
  border-radius: 0.8vw;
  overflow: hidden;
  /* width: 70%; */
}
.tv-main .tv-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tv-cover {
  width: 100%;
  height: auto;
  display: block;
}
.tv-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3vw;
  height: 3vw;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.tv-main:hover .tv-play,
.tv-mini:hover .tv-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.tv-caption {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.tv-caption-title {
  font-size: 0.85vw;
  color: #332A2B;
  font-weight: 700;
  text-transform: uppercase;
}
.tv-caption-subtitle {
  font-size: 0.75vw;
  color: #332A2B;
  font-weight: 400;
}
.tv-right {
  width: 25%;
  display: flex;
  flex-direction: row;
  gap: 0.9vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.tv-right::-webkit-scrollbar {
  display: none;
}
.tv-mini {
  flex-shrink: 0;
  min-width: 8vw;
}
.tv-mini .tv-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tv-mini img {
  border-radius: 0.8vw;
}
/* TV EXPERTS END */

/* FAQ START */
.faq-section {
  width: 100%;
  padding: 0 18vw;
  box-sizing: border-box;
  margin-top: 6vw;
}
.faq-container {
  width: 100%;
  /* max-width: 88vw; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4vw;
}
.faq-title {
  font-size: 1.7vw;
  line-height: 1.2;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7vw;
}
.faq-item {
  background: #ffffff;
  border: 0.08vw solid #dfe7f5;
  border-radius: 0.8vw;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9vw 1.2vw;
  font-size: 0.85vw;
  font-weight: 700;
  text-transform: uppercase;
  color: #332A2B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-icon {
  font-size: 1.5vw;
  color: #2855A3;
  transition: 0.2s;
}
.faq-answer {
  display: none;
  padding: 0 1.2vw 1vw;
  font-size: 0.9vw;
  line-height: 1.4;
  color: #332A2B;
  font-weight: 400;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* FAQ END */

/* INFO SLIDER START */
.info-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  margin-top: 6vw;
}
.info-container {
  width: 100%;
  /* max-width: 88vw; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  position: relative;
}
.info-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2vw;
}
.info-title {
  font-size: 1.7vw;
  line-height: 1.2;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.info-tabs {
  display: flex;
  gap: 0.6vw;
}
.info-tab {
  background: #e7f1ff;
  color: #2855A3;
  border-radius: 999px;
  padding: 0.65vw 0.9vw;
  font-size: 0.85vw;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.info-tab:hover:not(.active) {
  background: #cfe9ff;
}
.info-tab.active {
  background: #cfe9ff;
}
.info-panels {
  width: 100%;
}
.info-panel {
  display: none;
}
.info-panel.active {
  display: block;
}
.info-carousel {
  width: 100%;
}
.info-item {
  /* padding: 0 0.6vw; */
  box-sizing: border-box;
}
.info-card {
  position: relative;
  border-radius: 0.9vw;
  padding: 1vw 1vw 1.1vw;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  min-height: 32vw;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.info-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.9vw;
  object-fit: cover;
}
.info-card--blue {
  background: #cfe9ff;
}
.info-card--green {
  background: #c9f7da;
}
.info-card--teal {
  background: #a8f0d2;
}
.info-tag {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.25vw 0.6vw;
  font-size: 0.85vw;
  font-weight: 400;
  color: #332A2B;
  width: fit-content;
  position: relative;
  z-index: 2;
}
.info-text {
  margin-top: auto;
  font-size: 0.85vw;
  color: #332A2B;
  font-weight: 600;
  position: relative;
  z-index: 2;
  width: 75%;
}
.info-date {
  font-size: 0.65vw;
  color: #332A2B;
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.info-section .owl-nav {
  position: absolute;
  right: 0;
  top: -4.8vw;
  display: flex;
  gap: 0.7vw;
  justify-content: flex-end;
}
.info-section .owl-nav button {
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 999px;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.info-section .owl-nav button:hover {
  background: #2855A3 !important;
}
.info-section .owl-nav button svg {
  width: 1.1vw;
  height: 1.1vw;
}
.info-section .owl-nav button svg path {
  stroke: #2855A3;
}
.info-section .owl-nav button:hover svg path {
  stroke: #ffffff;
}
.info-section .owl-nav button.disabled {
  opacity: 0.5;
  cursor: default;
}
.info-section .owl-nav button.disabled:hover {
  background: #f1f3f7 !important;
}
.info-section .owl-dots {
  display: none;
}
/* INFO SLIDER END */

/* POPUP FORM START */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup-overlay.is-open {
  display: flex;
}
.popup-modal {
  width: 26vw;
  background: #cfe9ff;
  border-radius: 1vw;
  padding: 4vw 2vw 2vw 2vw;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 0.8vw;
  right: 0.8vw;
/*   width: 2.2vw; */
/*   height: 2.2vw; */
  border-radius: 0.6vw;
  background: #ffffff;
  font-size: 1.2vw;
  cursor: pointer;
}
.popup-title {
  font-size: 1.4vw;
  text-transform: uppercase;
  color: #2855A3;
  font-weight: 800;
}
.popup-subtitle {
  margin-top: 0.6vw;
  font-size: 0.85vw;
  line-height: 1.35;
  color: #2b2b2b;
  font-weight: 600;
  text-transform: uppercase;
}
.popup-form {
  margin-top: 1.2vw;
  display: flex;
  flex-direction: column;
  gap: 0.7vw;
}
.popup-form input {
  background: #ffffff;
  border-radius: 0.85vw;
  border: 0.08vw solid #e6ebf5;
  padding: 0.8vw 1.2vw;
  font-size: 0.7vw;
  color: #D4ADB2;
  outline: none;
  font-weight: 400;
}
.popup-form button {
  background: #00FF80;
  color: #0d3b2a;
  border-radius: 999px;
  padding: 0.9vw 1.8vw;
  font-size: 0.85vw;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
  transition: 0.2s;
  border: 4px solid #FFFFFF;
}
.popup-form button:hover {
  background: #1bdc82;
  transform: translateY(-0.12vw);
  box-shadow: 0 0.7vw 1.6vw rgba(0, 229, 127, 0.35);
}
.popup-consent {
  display: flex;
  align-items: center;
  gap: 0.4vw;
  font-size: 0.5vw;
  color: #6d6d6d;
  width: 100%;
}
.popup-consent input {
 width: 1.2vw;
    height: 1.2vw;
    border: 1px solid #D1FBDC;
    border-radius: 4px;
    background: #ffffff;
    /* appearance: none; */
    /* -webkit-appearance: none; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.popup-consent input:checked::after {
  content: "";
  width: 0.55vw;
  height: 0.55vw;
  background: #00FF80;
  border-radius: 2px;
}
/* POPUP FORM END */
/* FOOTER START */
.site-footer {
  width: 100%;
  background: #1f3e73;
  color: #ffffff;
  padding: 3vw 8.56vw;
  box-sizing: border-box;
  margin-top: 6vw;
}
.footer-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8vw;
}
.footer-main {
  display: flex;
  width: 100%;
  gap: 1.6vw;
  justify-content: space-between;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.footer-brand {
  width: 21%;
}
.footer-links {
  width: 44%;
  display: flex;
  gap: 5.6vw;
  flex-direction: row;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
}
.footer-info {
  width: 28%;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8vw;
}
.footer-logo img {
  width: 4.6vw;
  height: auto;
}
.footer-logo-title {
  font-size: 0.9vw;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-logo-subtitle {
  font-size: 0.8vw;
  font-weight: 400;
}
.footer-phone {
  font-size: 1.1vw;
  font-weight: 600;
  color: #fff;
}
.footer-branch {
  font-size: 0.8vw;
  font-weight: 600;
  color: #fff;
}
.footer-phone-note {
  font-size: 0.8vw;
  font-weight: 400;
  color: #fff;
}
.footer-socials {
  display: flex;
  gap: 0.6vw;
}
.footer-social img {
  width: 2.3vw;
  height: 2.3vw;
  transition: 0.2s;
}
.footer-social:hover img {
  transform: translateY(-0.1vw);
}
.footer-btn {
  background: #e7f1ff;
  color: #1f3e73;
  border-radius: 0.8vw;
  padding: 0.6vw 1.2vw;
  font-size: 0.85vw;
  font-weight: 700;
  width: fit-content;
  cursor: pointer;
  transition: 0.2s;
}
.footer-btn:hover {
  background: #ffffff;
  transform: translateY(-0.1vw);
}
.footer-title {
  font-size: 0.95vw;
  font-weight: 500;
  color: #ffffff;
}
.footer-links-col a {
  font-size: 0.85vw;
  color: #8896AB;
  font-weight: 400;
  line-height: 1.35;
  transition: 0.2s;
}
.footer-links-col a:hover {
  color: #ffffff;
}
.footer-text {
  font-size: 0.6vw;
  opacity: 0.75;
  line-height: 1.4;
}
.footer-mt {
  margin-top: 0.8vw;
}
.footer-bottom {
  border-top: 0.06vw solid rgba(255, 255, 255, 0.2);
  padding-top: 0.8vw;
  font-size: 0.55vw;
  opacity: 0.7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
/* FOOTER END */

/* PAGE HERO START */
.page-breadcrumbs {
  width: 100%;
  padding: .85vw 8.56vw;
  /* margin: 1.2vw 5.56vw 0.8vw; */
  font-size: 0.7vw;
  color: #8a8a8a;
  display: flex;
  gap: 0.8vw;
  align-items: center;
}
.page-crumb {
  color: #715D5F;
  position: relative;
  /* padding-right: 0.8vw; */
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: .5vw;
}
.page-crumb:hover {
  color: #2855A3;
}
.page-crumb::after {
  content: "›";
  /* position: absolute; */
  right: 0.2vw;
  top: 0;
  color: #715D5F;
  font-size: 1vw;
}
.page-crumb:last-child::after {
  content: "";
}
.page-breadcrumbs .page-crumb:last-child {
  color: #2855A3;
}
.page-current {
  color: #2855A3;
  font-weight: 400;
  /* padding-right: 0; */
}

/* COST PAGE TITLE (page7) START */
.cost-page-title {
  width: 100%;
  padding: 0 8.56vw;
  background: #F5F5F5;
  margin-bottom: -4vw;
}
.cost-page-title-line {
  font-family: Geologica, sans-serif;
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 700;
  color: #332A2B;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.cost-page-title-line--blue {
  color: #2855A3;
}
/* COST PAGE TITLE END */

/* COST INFO BLOCK (page7 - popup üstü sayfa bölümü) START */
.cost-info-section {
  width: 100%;
  padding: 0 18vw;
  background: #F5F5F5;
  box-sizing: border-box;
  margin-top: 6vw;
}
.cost-info-container {
  /* max-width: 60vw; */
  margin: 0 auto;
}
.cost-info-item {
  font-size: 1.7vw;
  line-height: 1.5;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 1.5vw;
  text-align: left;
}
.cost-info-item:last-child {
  margin-bottom: 0;
}
/* COST INFO BLOCK END */

/* ARTICLE PAGE (page6) START */
.article-page {
  width: 100%;
  padding: 0 18vw;
  box-sizing: border-box;
  /* background: #fff; */
  margin-top: 3vw;
}
.article-container {
  max-width: 60vw;
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.6vw;
  padding: 0.7vw 1.2vw;
  background: #F5F5F5;
  border: 1px solid #C6E3F8;
  border-radius: 999px;
  font-size: clamp(13px, 1vw, 16px);
  color: #332A2B;
  font-weight: 500;
  margin-bottom: 0.6vw;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.article-back:hover {
  background: #EDEDED;
  border-color: #2855A3;
  color: #2855A3;
}
.article-back:hover .article-back-arrow {
  color: #2855A3;
}
.article-back-arrow {
  flex-shrink: 0;
  color: #2855A3;
  font-size: clamp(12px, 0.85vw, 14px);
}
.article-date {
  font-size: clamp(12px, 0.9vw, 15px);
  color: #332A2B;
  margin-bottom: 1vw;
}
.article-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 700;
  color: #332A2B;
  line-height: 1.3;
  margin: 0 0 1.2vw;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.article-title span {
  color: #1A56C4;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vw;
  margin-bottom: 1.5vw;
}
.article-tag {
  padding: 0.4vw 0.9vw;
  background: #F0F0F0;
  border-radius: 999px;
  font-size: clamp(11px, 0.8vw, 14px);
  color: #332A2B;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.article-tag:hover {
  background: #e0e0e0;
}
.article-hero {
  width: 100%;
  margin-bottom: 2vw;
  border-radius: 0.8vw;
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body {
  margin-bottom: 2vw;
}
.article-subtitle {
  font-family: Geologica, sans-serif;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 1vw;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.article-body p {
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.6;
  color: #332A2B;
  margin: 0 0 1vw;
}
.article-body p:last-child {
  margin-bottom: 0;
}
.article-price-section {
  margin-bottom: 2vw;
}
.article-price-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 1vw;
}
.article-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.article-price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2vw 1.5vw;
  background: #fff;
  border-radius: 0.6vw;
  box-shadow: 0 0.1vw 0.3vw rgba(0, 0, 0, 0.08);
  border: 0.06vw solid #eee;
}
.article-price-service {
  font-size: clamp(13px, 1vw, 16px);
  color: #332A2B;
  font-weight: 500;
}
.article-price-value {
  padding: 0.4vw 1vw;
  background: #2855A3;
  color: #fff;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 700;
  border-radius: 999px;
}
.article-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1.2vw;
  padding: 1vw 1.8vw;
  background: #00CC66;
  color: #fff;
  font-family: Geologica, sans-serif;
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.article-price-btn:hover {
  opacity: 0.9;
}
.article-info-box {
  background: #B8FFCA;
  border-radius: 0.8vw;
  padding: 1.8vw;
}
.article-info-box p {
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.6;
}
/* ARTICLE PAGE END */

/* INFO ARTICLES SECTION (page5 - ПОЛЕЗНАЯ ИНФОРМАЦИЯ) START */
.info-articles-section {
  width: 100%;
  padding: 2.5vw 8.56vw 3.5vw;
  box-sizing: border-box;
  background: #fff;
}
.info-articles-container {
  width: 100%;
}
.info-articles-header {
  margin-bottom: 2vw;
}
.info-articles-label {
  font-family: Roboto, sans-serif;
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 500;
  color: #332A2B;
  margin: 0 0 0.4vw;
}
.info-articles-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(22px, 1.9vw, 34px);
  font-weight: 700;
  color: #332A2B;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.info-articles-tabs {
  display: flex;
  gap: 1vw;
  margin-bottom: 2.5vw;
  flex-wrap: wrap;
}
.info-articles-tab {
  padding: 0.8vw 1.5vw;
  background: #DDEEFF;
  color: #332A2B;
  font-family: Roboto, sans-serif;
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 500;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s;
}
.info-articles-tab:hover,
.info-articles-tab.active {
  background: #2855A3;
  color: #fff;
}
.info-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.info-articles-card {
  flex: 0 0 calc(33.333% - 1vw);
  position: relative;
  border-radius: 0.9vw;
  padding: 1.2vw;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  min-height: 16vw;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.info-articles-card.hidden {
  display: none !important;
}
.info-articles-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9vw;
  /* opacity: 0.4; */
}
.info-articles-card--blue {
  background: linear-gradient(135deg, #cfe9ff 0%, #c9f7da 100%);
}
.info-articles-card--green {
  background: #c9f7da;
}
.info-articles-card--teal {
  background: #a8f0d2;
}
.info-articles-tag {
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 0.3vw 0.7vw;
  font-size: 0.75vw;
  font-weight: 500;
  color: #332A2B;
  width: fit-content;
  position: relative;
  z-index: 2;
}
.info-articles-card-title {
  margin-top: auto;
  font-size: 0.95vw;
  color: #332A2B;
  font-weight: 600;
  position: relative;
  z-index: 2;
  line-height: 1.35;
}
.info-articles-date {
  font-size: 0.7vw;
  color: #332A2B;
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.info-articles-show-more {
  display: block;
  width: fit-content;
  margin: 2.5vw auto 0;
  padding: 1.2vw 2.5vw;
  background: #00CC66;
  color: #fff;
  font-family: Geologica, sans-serif;
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: opacity 0.2s;
}
.info-articles-show-more:hover {
  opacity: 0.9;
}
/* INFO ARTICLES SECTION END */

/* DOCS SECTION (page4 - ПОЛЕЗНЫЕ ДОКУМЕНТЫ) START */
.docs-section {
  width: 100%;
  padding: 2.5vw 8.56vw 3.5vw;
  box-sizing: border-box;
  background: #F9F9F9;
}
.docs-container {
  width: 100%;
}
.docs-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 2.5vw;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.docs-title span {
  display: block;
  color: #2A76D2;
}
.docs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.doc-card {
  flex: 0 0 calc(33.333% - 1vw);
  background: #fff;
  border-radius: 0.8vw;
  padding: 1.8vw;
  box-sizing: border-box;
  box-shadow: 0 0.15vw 0.6vw rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}
.doc-card-title {
  font-family: Roboto, sans-serif;
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 600;
  color: #332A2B;
  text-transform: uppercase;
  line-height: 1.4;
}
.doc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6vw;
  width: fit-content;
  padding: 0.8vw 1.2vw;
  background: #E0F2FE;
  color: #2A76D2;
  font-family: Roboto, sans-serif;
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 700;
  border-radius: 0.5vw;
  text-decoration: none;
  transition: opacity 0.2s;
}
.doc-download-btn:hover {
  opacity: 0.9;
}
.doc-download-btn svg {
  width: 1.2vw;
  height: 1.2vw;
  flex-shrink: 0;
}
/* DOCS SECTION END */

/* CONTACT INFO CARDS (page3) START */
.contact-info-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
}
.contact-info-cards {
  display: flex;
  gap: 1.5vw;
}
.contact-info-card {
  flex: 1;
  background: #fff;
  border-radius: 1.1vw;
  padding: 2.2vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: .5vw;
}
.contact-info-card .contact-info-line:first-child {
  font-family: Geologica, Roboto, sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  color: #332A2B;
  line-height: 1.4;
}
.contact-info-line {
  font-family: Roboto, sans-serif;
  font-size: clamp(13px, 1.1vw, 18px);
  color: #332A2B;
  font-weight: 400;
  line-height: 1.55;
}
.contact-info-heading {
  font-family: Geologica, Roboto, sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.contact-info-link {
  font-family: Roboto, sans-serif;
  font-size: 1.1vw;
  color: #332A2B;
  font-weight: 700;
  line-height: 1.55;
  transition: color 0.2s;
}
.contact-info-link:hover {
  color: #2855A3;
}
.contact-info-card--green .contact-info-line {
  font-family: Roboto, sans-serif;
}
.contact-info-card--green .contact-info-heading {
  font-family: Geologica, sans-serif;
}
.contact-info-card--green {
  background: #E0FFE0;
}
/* CONTACT INFO CARDS END */

/* BRANCHES SECTION (page3) START */
.branches-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* background: #F5F5F5; */
  margin-top: 6vw;
}
.branches-container {
  width: 100%;
  background: #FBFAFA;
  padding: 2vw 1.5vw;
  border-radius: 14px;
}
.branches-header {
  margin-bottom: 2.5vw;
}
.branches-label {
  font-family: Roboto, sans-serif;
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 500;
  color: #2855A3;
  margin: 0 0 0.5vw;
}
.branches-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 700;
  color: #1a3a6e;
  margin: 0;
  line-height: 1.25;
}
.branches-region {
  margin-bottom: 3vw;
}
.branches-region:last-child {
  margin-bottom: 0;
}
.branches-region-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(14px, 1.15vw, 20px);
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 1.5vw;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.branches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  margin-bottom: 2vw;
}
.branch-card {
  flex: 0 0 calc(33.333% - 0.8vw);
  background: #fff;
  border-radius: 0.8vw;
  padding: 1.8vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.branch-city {
  font-family: Geologica, sans-serif;
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 700;
  color: #332A2B;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.9vw;
}
.branch-info {
  display: flex;
  flex-direction: column;
  /* gap: 0.5vw; */
}
.branch-phone {
  font-family: Roboto, sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 400;
  color: #332A2B;
  line-height: 1.5;
  transition: color 0.2s;
}
.branch-phone:hover {
  color: #2855A3;
}
.branch-address {
  font-family: Roboto, sans-serif;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 400;
  color: #332A2B;
  line-height: 1.55;
  transition: color 0.2s;
}
.branch-address:hover {
  color: #2855A3;
}
.branches-show-more {
  display: block;
  width: fit-content;
  margin: 2.5vw auto 0;
  padding: 1.2vw 2.5vw;
  background: #00CC66;
  color: #fff;
  font-family: Geologica, sans-serif;
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: opacity 0.2s;
}
.branches-show-more:hover {
  opacity: 0.9;
}
/* BRANCHES SECTION END */

/* ABOUT HERO (page2) START */
.about-hero-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* background: #FBFAFA; */
  display: flex;
  flex-direction: column;
  /* gap: 2.8vw; */
}
.about-hero-top {
  width: 100%;
  display: flex;
  gap: 3vw;
  /* align-items: center; */
  justify-content: space-between;
}
.about-hero-left {
  /* flex: 1; */
  max-width: 47%;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}
.about-hero-chip {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.9vw;
  color: #332A2B;
  font-weight: 400;
  width: fit-content;
  background: #fff;
  padding: 1.1vw 1.4vw;
  border-radius: 14px;
}
.about-hero-chip img {
  width: 0.9vw;
  height: 0.9vw;
}
.about-hero-title {
  font-size: 2vw;
  line-height: 1.2;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 800;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.about-hero-title span {
  color: #2855A3;
  font-weight: 800;
}
.about-hero-text {
  font-size: 0.85vw;
  line-height: 1.55;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
}
.about-hero-right {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-right img {
  width: 100%;
  height: auto;
  display: block;
}
.about-hero-stats {
  width: 100%;
  display: flex;
  gap: 3vw;
  padding-top: 0.5vw;
  /* border-top: 0.06vw solid #e8e8e8; */
  justify-content: space-between;
}
.about-hero-stat {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 0.4vw;
  background: #FBFAFA;
  align-items: center;
  padding: 1vw 2vw;
  border-radius: 14px;
  gap: 1vw;
}
.about-hero-stat-num {
  font-size: 2vw;
  font-weight: 800;
  color: #2855A3;
}
.about-hero-stat-label {
  font-size: 0.72vw;
  color: #332A2B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.about-hero-stat--highlight {
  /* padding: 1vw 1.5vw; */
  /* border: 0.08vw solid #2855A3; */
  /* border-radius: 0.5vw; */
}
/* ABOUT HERO END */

/* PRINCIPLE SECTION (НАШ ПРИНЦИП / ЧЕМ МЫ ПОМОГАЕМ) START */
.principle-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* background: #e8e8e8; */
  margin-top: 6vw;
}
.principle-card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 2.5vw 2.8vw;
  box-sizing: border-box;
  display: flex;
  gap: 6vw;
  align-items: center;
}
.principle-left {
  /* flex: 1; */
  /* min-width: 0; */
  width: 40%;
}
.principle-title {
  font-size: 1.8vw;
  font-weight: 700;
  text-transform: uppercase;
  color: #332A2B;
  margin: 0 0 1.2vw;
  letter-spacing: 0.02em;
}
.principle-text {
  font-size: 0.85vw;
  line-height: 1.6;
  color: #332A2B;
  margin: 0;
  font-weight: 600;
}
.principle-right {
  flex: 1;
  min-width: 0;
}
.principle-subtitle {
  font-size: 1.4vw;
  font-weight: 700;
  text-transform: uppercase;
  color: #332A2B;
  margin: 0 0 1.2vw;
  letter-spacing: 0.02em;
}
.principle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9vw;
}
.principle-list-item {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  padding: 1vw 1.2vw;
  background: #fff;
  border: 0.06vw solid rgba(40, 85, 163, 0.6);
  border-radius: 14px;
  font-size: 0.9vw;
  color: #332A2B;
  font-weight: 400;
  width: fit-content;
}
.principle-check {
  width: 1vw;
  height: 1vw;
  flex-shrink: 0;
}
/* PRINCIPLE SECTION END */

/* HOW WE WORK (КАК МЫ РАБОТАЕМ) START */
.how-we-work-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* background: #FBFAFA; */
  position: relative;
  margin-top: 6vw;
}
.how-we-work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2vw;
  position: relative;
}
.how-we-work-title {
  font-size: 1.8vw;
  font-weight: 700;
  text-transform: uppercase;
  color: #332A2B;
  margin: 0;
  letter-spacing: 0.02em;
}
.how-we-work-title span {
  color: #2855A3;
  text-decoration: underline;
  text-underline-offset: 0.3vw;
}
.how-we-work-section .owl-nav {
  display: flex;
  gap: 0.7vw;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: -4.8vw;
}
.how-we-work-section .owl-nav button {
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 999px;
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.15vw 0.4vw rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.2s;
}
.how-we-work-section .owl-nav button.owl-prev {
  background: #F5F5F5 !important;
}
.how-we-work-section .owl-nav button.owl-prev:hover {
  opacity: 0.9;
}
.how-we-work-section .owl-nav button.owl-prev svg {
  width: 1.1vw;
  height: 1.1vw;
}
.how-we-work-section .owl-nav button.owl-prev path {
  stroke: #332A2B;
}
.how-we-work-section .owl-nav button.owl-next {
  background: #2855A3 !important;
}
.how-we-work-section .owl-nav button.owl-next:hover {
  opacity: 0.9;
}
.how-we-work-section .owl-nav button.owl-next svg {
  width: 1.1vw;
  height: 1.1vw;
}
.how-we-work-section .owl-nav button.owl-next path {
  stroke: #fff;
}
.how-we-work-section .owl-nav button.disabled {
  opacity: 0.5;
  cursor: default;
}
.how-we-work-section .owl-dots {
  display: none;
}
.how-we-work-main {
  display: flex;
  gap: 1.5vw;
  align-items: stretch;
}
.how-we-work-slider-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.how-we-work-carousel {
  width: 100%;
}
.how-we-work-card--guarantee {
  width: 28%;
  flex-shrink: 0;
}
.how-we-work-carousel.owl-carousel .owl-stage-outer {
  padding: 0.3vw 0;
}
.how-we-work-carousel .owl-item {
  /* padding: 0 0.5vw; */
}
.how-we-work-card {
  background: #fff;
  border-radius: 0.8vw;
  padding: 1.8vw;
  box-sizing: border-box;
  box-shadow: 0 0.2vw 0.8vw rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 14vw;
}
.how-we-work-num {
  width: 1.8vw;
  height: 1.8vw;
  background: #F5F5F5;
  border-radius: 0.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95vw;
  font-weight: 700;
  color: #332A2B;
  margin-bottom: 1.2vw;
}
.how-we-work-card-title {
  font-size: 1.1vw;
  font-weight: 700;
  text-transform: uppercase;
  color: #332A2B;
  margin: 0 0 0.8vw;
  line-height: 1.3;
}
.how-we-work-card-text {
  font-size: 0.85vw;
  line-height: 1.5;
  color: #332A2B;
  margin: 0;
  font-weight: 400;
}
.how-we-work-card--guarantee {
  background: #F2EDFF;
  min-height: 14vw;
  height: 100%;
}
.how-we-work-card--guarantee .how-we-work-card-title {
  margin-top: 0;
}
.how-we-work-guarantee-text {
  font-size: 0.82vw;
  line-height: 1.5;
  color: #332A2B;
  margin: 0 0 1vw;
  font-weight: 400;
}
.how-we-work-guarantee-box {
  background: #FFFFFF;
  border-radius: 0.5vw;
  padding: 1vw 1.2vw;
  margin-bottom: 1vw;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.how-we-work-guarantee-box span {
  font-size: 0.95vw;
  font-weight: 700;
  color: #332A2B;
}
.how-we-work-guarantee-highlight {
  font-size: 1.2vw !important;
  font-weight: 800 !important;
}
.how-we-work-guarantee-note {
  font-size: 0.75vw;
  line-height: 1.5;
  color: #332A2B;
  margin: 0;
  font-weight: 400;
}
.how-we-work-banner {
  background: #B8FFCA;
  border-radius: 0.6vw;
  padding: 1.2vw 1.8vw;
  font-size: 1.1vw;
  font-weight: 700;
  text-transform: uppercase;
  color: #332A2B;
  text-align: center;
  width: fit-content;
}
/* HOW WE WORK END */

/* TEAM SECTION (НАША КОМАНДА ЮРИСТОВ) START */
.team-section {
  width: 100%;
  padding: 0vw 8.56vw;
  box-sizing: border-box;
  /* background: #fff; */
  margin-top: 6vw;
}
.team-container {
  display: flex;
  gap: 3vw;
  align-items: center;
  border-radius: 14px;
  background: #fff;
  padding: 2.5vw 1.5vw 0 2.5vw;
}
.team-left {
  /* flex: 1; */
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  padding-bottom: 2vw;
}
.team-title {
  font-size: 1.8vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0;
  line-height: 1.2;
}
.team-title span {
  color: #2855A3;
  display: block;
}
.team-text {
  font-size: 0.9vw;
  line-height: 1.55;
  color: #332A2B;
  margin: 0;
  font-weight: 400;
}
.team-stats-box {
  background: #B8FFCA;
  border-radius: 0.6vw;
  padding: 1.5vw 2vw;
  text-align: center;
  width: fit-content;
}
.team-stats-num {
  font-size: 1.1vw;
  font-weight: 700;
  color: #332A2B;
  margin-bottom: 0.3vw;
}
.team-stats-label {
  font-size: .85vw;
  color: #332A2B;
  font-weight: 600;
  background: #FFFFFF;
  padding: 1vw 1.1vw;
  border-radius: 14px;
}
.team-right {
  /* flex: 1; */
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  width: 63%;
  flex-shrink: 0;
}
.team-right img {
  width: 100%;
  max-width: 45vw;
  height: auto;
  display: block;
}
/* TEAM SECTION END */

/* SPECIALISTS CARDS START */
.specialists-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* background: #F5F5F5; */
  margin-top: 6vw;
}
.specialists-container {
  width: 100%;
}
.specialists-grid {
  display: flex;
  /* gap: 1.5vw; */
  justify-content: space-between;
  flex-wrap: wrap;
}
.specialist-card {
  /* flex: 0 0 calc(20% - 1.2vw); */
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 19%;
}
.specialist-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 1vw;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 1vw;
}
.specialist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist-name {
  font-size: 0.85vw;
  font-weight: 700;
  color: #332A2B;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.4vw;
}
.specialist-title {
  font-size: 0.75vw;
  color: #332A2B;
  font-weight: 400;
}
/* SPECIALISTS CARDS END */

/* CTA CONSULT BANNER (ortalanmış, mavi kutu) START */
.cta-consult-section {
  width: 100%;
  padding: 0 18vw;
  box-sizing: border-box;
  margin-top: 6vw;
}
.cta-consult-box {
  width: 100%;
  background: #C7E8F9;
  border-radius: 1.2vw;
  padding: 3vw 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2vw;
}
.cta-consult-title {
  font-family: Geologica, sans-serif;
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 700;
  color: #332A2B;
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
}
.cta-consult-text {
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.5;
  color: #332A2B;
  margin: 0;
  font-weight: 500;
  max-width: 42vw;
}
.cta-consult-btn {
  display: inline-block;
  background: #00FF80;
  color: #fff;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.2vw 2.5vw;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 0.5vw;
  transition: background 0.2s;
  border: 3px solid #FFFFFF;
}
.cta-consult-btn:hover {
  background: #00E673;
}
.cta-consult-note {
  font-size: clamp(11px, 0.8vw, 14px);
  color: #332A2B;
  margin: 0;
  font-weight: 500;
}
/* CTA CONSULT BANNER END */

.page-hero {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* border: 1px solid red; */
}
.page-hero-container {
  width: 100%;
  margin: 0;
  display: flex;
  gap: 1vw;
  /* align-items: center; */
}
.page-hero-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.page-hero-chip {
  background: #FBFAFA;
  border-radius: 10px;
  padding: 1.1vw 1.6vw;
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.9vw;
  color: #332A2B;
  width: fit-content;
}
.page-hero-chip img {
  width: 0.9vw;
  height: 0.9vw;
}
.page-hero-title {
  font-size: 1.8vw;
  line-height: 1.2;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
}
.page-hero-title span {
  color: #2855A3;
  font-weight: 900;
}
.page-hero-text {
  width: 85%;
  font-size: 0.85vw;
  line-height: 1.35;
  color: #332A2B;
  text-transform: uppercase;
  font-weight: 600;
}
.page-hero-actions {
  display: flex;
  gap: 0.8vw;
  align-items: center;
  margin-top: 1vw;
}
.page-hero-btn {
  border-radius: 999px;
  padding: 0.8vw 1.6vw;
  font-size: 0.85vw;
  font-weight: 600;
  cursor: pointer;
  border: 4px solid #FFFFFF;
  transition: 0.2s;
}
.page-hero-btn:hover {
  transform: translateY(-0.12vw);
}
.page-hero-btn--green {
  background: #00FF80;
  color: #0d3b2a;
  box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
}
.page-hero-btn--green:hover {
  background: #1bdc82;
  box-shadow: 0 0.7vw 1.6vw rgba(0, 229, 127, 0.35);
}
.page-hero-btn--blue {
  background: #2855A3;
  color: #ffffff;
  box-shadow: 0 0.56vw 1.39vw rgba(43, 93, 159, 0.25);
}
.page-hero-btn--blue:hover {
  background: #1e4a8a;
  box-shadow: 0 0.7vw 1.6vw rgba(40, 85, 163, 0.35);
}
.page-hero-note {
  font-size: 0.9vw;
  color: #332A2B;
  font-weight: 400;
  margin-top: 1vw;
}

.page-hero-right {
  width: 50%;
  position: relative;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
}
.page-hero-image {
  width: 82%;
  height: auto;
  margin-top: -3vw;
}
.page-hero-badge {
  position: absolute;
  width: fit-content;
  right: 0;
  bottom: 6%;
  background: #F2EDFF;
  border-radius: 0.8vw;
  padding: 1.5vw 1.8vw;
  /* width: 16vw; */
  box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: .5vw;
}
.page-hero-badge-title {
  font-size: 1.125vw;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
}
.page-hero-badge-text {
  /* margin-top: 0.3vw; */
  font-size: 0.85vw;
  color: #332A2B;
  font-weight: 600;
  background: #FFFFFF;
  padding: 1vw 1.2vw;
  border-radius: 10px;
}
/* PAGE HERO END */

/* SITUATION SECTION START */
.situation-section {
  width: 100%;
  padding: 0 8.56vw;
  margin-top: 6vw;
  box-sizing: border-box;
}
.situation-container {
  width: 100%;
  margin: 0 auto;
  background: #FBFAFA;
  border-radius: 0.9vw;
  padding: 2.5vw 2.8vw 2.8vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.situation-title {
  font-size: 1.75vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.situation-title span {
  color: #2855A3;
  font-weight: 700;
}
.situation-subtitle {
  font-size: 0.85vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
}
.situation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
}
.situation-card {
  background: #F6F6F6;
  border-radius: 0.8vw;
  padding: 1.5vw 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  min-height: 10vw;
  box-shadow: 0 0.1vw 0.3vw rgba(0, 0, 0, 0.04);
}
.situation-card-title {
  font-size: 1vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
  line-height: 1.25;
}
.situation-card-text {
  font-size: 0.85vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
}
.situation-banner {
  background: #B8FFCA;
  border-radius: 0.8vw;
  padding: 1.8vw 2vw;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  width: fit-content;
}
.situation-banner-title {
  font-size: 1.15vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
}
.situation-banner-text {
  background: #FFFFFF;
  padding: 1vw 1.2vw;
  font-size: 0.85vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
  border-radius: 14px;
}
/* SITUATION SECTION END */

/* DEBTS WRITE-OFF SECTION START */
.debts-writeoff-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  margin-top: 6vw;
}
.debts-writeoff-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2.5vw;
  align-items: stretch;
}
.debts-writeoff-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.debts-writeoff-title {
  font-size: 1.6vw;
  line-height: 1.2;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.debts-writeoff-title span {
  display: block;
  color: #2855A3;
  font-weight: 700;
  font-size: 1.75vw;
}
.debts-writeoff-intro {
  font-size: 0.85vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
}
.debts-writeoff-list-title {
  font-size: 1.1vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.debts-writeoff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.debts-writeoff-item {
  /* flex: 0 1 calc((100% - 2vw) / 3); */
  display: flex;
  align-items: center;
  gap: 0.8vw;
  background: #fff;
  border: 0.06vw solid #dce7f3;
  border-radius: 0.6vw;
  padding: 1vw 1.2vw;
  /* min-height: 4.2vw; */
}
.debts-writeoff-check {
  width: 1.2vw;
  height: 1.2vw;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.debts-writeoff-text {
  font-size: 0.85vw;
  line-height: 1.35;
  color: #332A2B;
  font-weight: 400;
}
.debts-writeoff-right {
  width: 28%;
  flex-shrink: 0;
}
.debts-writeoff-box {
  background: #F2EDFF;
  border-radius: 0.8vw;
  padding: 2vw 1.8vw;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  height: 100%;
}
.debts-writeoff-box-title {
  font-size: 1.1vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.debts-writeoff-box-text {
  font-size: 0.9vw;
  line-height: 1.2;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
}
.debts-writeoff-box-warning {
  font-size: 0.85vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1vw 1.2vw;
}
/* DEBTS WRITE-OFF SECTION END */

/* BANKRUPTCY PROCESS SLIDER START */
.bankruptcy-process-section {
  width: 100%;
  padding: 0 8.56vw;
  margin-top: 6vw;
  box-sizing: border-box;
}
.bankruptcy-process-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  position: relative;
}
.bankruptcy-process-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.bankruptcy-process-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  max-width: 55vw;
}
.bankruptcy-process-title {
  font-size: 1.7vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.bankruptcy-process-subtitle {
  font-size: 0.9vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
}
.bankruptcy-process-carousel {
  width: 100%;
}
.bankruptcy-process-item {
  box-sizing: border-box;
}
.bankruptcy-process-card {
  background: #ffffff;
  border-radius: 0.9vw;
  padding: 1.8vw;
  /* min-height: 12vw; */
  display: flex;
  flex-direction: column;
  gap: 1vw;
  box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.06);
  border: 0.06vw solid #eef1f6;
  position: relative;
}
.bankruptcy-process-num {
  position: absolute;
  top: 1.2vw;
  left: 1.5vw;
  /* width: 2vw; */
  /* height: 2vw; */
  border-radius: 14px;
  background: #F6F6F6;
  color: #332A2B;
  font-size: .9vw;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 1.2vw;
}
.bankruptcy-process-card-title {
  font-size: 1vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  padding-top: 2.8vw;
}
.bankruptcy-process-card-text {
  font-size: 0.88vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
}
.bankruptcy-process-banner {
  background: #B8FFCA;
  border-radius: 0.9vw;
  padding: 1.8vw 2vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 65%;
}
.bankruptcy-process-banner-title {
  font-size: 1.15vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
}
.bankruptcy-process-banner-text {
  font-size: 0.9vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
  background: #FFFFFF;
  padding: 1vw 1.2vw;
  border-radius: 0.6vw;
}
.bankruptcy-process-section .owl-stage-outer {
  padding: 0.6vw 0;
}
.bankruptcy-process-section .owl-nav {
  display: flex;
  gap: 0.7vw;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: -4.8vw;
}
.bankruptcy-process-section .owl-nav button {
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 999px;
  background: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.bankruptcy-process-section .owl-nav button:hover {
  background: #2855A3 !important;
}
.bankruptcy-process-section .owl-nav button svg {
  width: 1.1vw;
  height: 1.1vw;
}
.bankruptcy-process-section .owl-nav button svg path {
  stroke: #2855A3;
}
.bankruptcy-process-section .owl-nav button:hover svg path {
  stroke: #ffffff;
}
.bankruptcy-process-section .owl-nav button.disabled {
  opacity: 0.5;
  cursor: default;
}
.bankruptcy-process-section .owl-nav button.disabled:hover {
  background: #f1f3f7 !important;
}
/* BANKRUPTCY PROCESS SLIDER END */

/* CHANGES AFTER WRITE-OFF SECTION START */
.changes-after-section {
  width: 100%;
  padding: 3vw 8.56vw 4vw;
  box-sizing: border-box;
  background: #FBFAFA;
  margin-top: 6vw;
}
.changes-after-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.changes-after-title {
  font-size: 1.7vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.changes-after-title span {
  color: #2855A3;
  font-weight: 700;
}
.changes-after-subtitle {
  font-size: 0.85vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
}
.changes-after-cards {
  display: flex;
  gap: 1.2vw;
  align-items: stretch;
}
.changes-after-card {
  flex: 1;
  border-radius: 0.9vw;
  padding: 2vw 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.changes-after-card--green {
  background: #D1FBDC;
}
.changes-after-card--blue {
  background: #D3E5FF;
}
.changes-after-card--purple {
  background: #FBCDFF;
}
.changes-after-card-title {
  font-size: 1vw;
  line-height: 1.3;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
}
.changes-after-card-text {
  font-size: 0.9vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
  background: #FFFFFF;
  padding: 1vw 1.2vw;
  border-radius: 0.6vw;
}
/* CHANGES AFTER WRITE-OFF SECTION END */

/* WHY TRUST US SECTION START */
.trust-section {
  width: 100%;
  padding: 0 8.56vw;
  box-sizing: border-box;
  /* background: #FBFAFA; */
  margin-top: 6vw;
}
.trust-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2.5vw;
  align-items: stretch;
}
.trust-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.trust-title {
  font-size: 1.7vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.trust-title span {
  display: block;
  color: #2855A3;
  font-weight: 700;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.trust-item {
  /* flex: 0 1 calc(50% - 0.5vw); */
  display: flex;
  align-items: center;
  gap: 0.8vw;
  /* background: #FFFFFF; */
  border: 0.06vw solid #d1dae9;
  border-radius: 0.6vw;
  padding: 1vw 1.2vw;
  width: fit-content;
}
.trust-check {
  width: 1.2vw;
  height: 1.2vw;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.trust-text {
  font-size: 0.85vw;
  line-height: 1.35;
  color: #332A2B;
  font-weight: 400;
}
.trust-right {
  width: 32%;
  flex-shrink: 0;
}
.trust-guarantee-box {
  background: #F0EBF8;
  border-radius: 0.9vw;
  padding: 2vw 1.8vw;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  height: 100%;
}
.trust-guarantee-title {
  font-size: 1.15vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.trust-guarantee-text {
  font-size: 0.9vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
}
.trust-guarantee-badge {
  background: #FFFFFF;
  border-radius: 0.7vw;
  padding: 1.2vw 1.5vw;
  font-size: 0.95vw;
  font-weight: 700;
  color: #332A2B;
  text-align: center;
}
.trust-guarantee-note {
  font-size: 0.75vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
  opacity: 0.9;
}
/* WHY TRUST US SECTION END */

/* COST & PAYMENT SECTION START */
.cost-payment-section {
  width: 100%;
  padding: 3vw 8.56vw 4vw;
  box-sizing: border-box;
  /* background: #FBFAFA; */
}
.cost-payment-container {
  width: 100%;
  margin: 0 auto;
}
.cost-payment-card {
  background: #FFFFFF;
  border-radius: 0.9vw;
  padding: 2.5vw 2.5vw;
  display: flex;
  gap: 2.5vw;
  align-items: flex-end;
  box-shadow: 0 0.28vw 0.7vw rgba(0, 0, 0, 0.06);
  margin-top: 6vw;
}
.cost-payment-left {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.cost-payment-title {
  font-size: 1.6vw;
  line-height: 1.25;
  text-transform: uppercase;
  color: #332A2B;
  font-weight: 700;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.cost-payment-title span {
  display: block;
  color: #2855A3;
  font-weight: 700;
  font-size: 1.75vw;
}
.cost-payment-desc {
  font-size: .85vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
}
.cost-payment-subtitle {
  font-size: 1vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cost-payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  width: 90%;
}
.cost-payment-item {
  /* flex: 0 1 calc(50% - 0.5vw); */
  display: flex;
  align-items: center;
  gap: 0.8vw;
  background: #FFFFFF;
  border: 0.06vw solid #d1dae9;
  border-radius: 0.6vw;
  padding: 1vw 1.2vw;
  width: fit-content;
}

.cost-payment-check {
  width: 1.2vw;
  height: 1.2vw;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.cost-payment-text {
  font-size: 0.9vw;
  line-height: 1.35;
  color: #332A2B;
  font-weight: 400;
}
.cost-payment-buttons {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}
.cost-payment-btn {
  padding: 0.9vw 1.6vw;
  border-radius: 999px;
  font-size: 0.85vw;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.cost-payment-btn--green {
  background: #00FF80;
  color: #0d3b2a;
  box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
}
.cost-payment-btn--green:hover {
  background: #1bdc82;
  transform: translateY(-0.12vw);
}
.cost-payment-btn--blue {
  background: #2855A3;
  color: #ffffff;
  box-shadow: 0 0.56vw 1.39vw rgba(43, 93, 159, 0.25);
}
.cost-payment-btn--blue:hover {
  background: #1e4a8a;
  transform: translateY(-0.12vw);
}
.cost-payment-right {
  width: 35%;
  flex-shrink: 0;
}
.cost-payment-box {
  background: #B8FFCA;
  border-radius: 0.9vw;
  padding: 2vw 1.8vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  height: 100%;
}
.cost-payment-box-title {
  font-size: 1.1vw;
  font-weight: 700;
  color: #332A2B;
  margin: 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cost-payment-box-text {
  font-size: 0.85vw;
  line-height: 1.4;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 600;
  background: #FFFFFF;
  padding: .65vw;
  border-radius: 14px;
}
.cost-payment-box-note {
  font-size: 0.75vw;
  line-height: 1.35;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 400;
  opacity: 0.85;
  font-style: italic;
}
/* COST & PAYMENT SECTION END */

/* CONSULTATION REQUEST SECTION START */
.consult-request-section {
  width: 100%;
  padding: 0 18vw;
  box-sizing: border-box;
  /* background: #FBFAFA; */
  margin-top: 6vw;
}
.consult-request-container {
  width: 100%;
  margin: 0 auto;
}
.consult-request-card {
  background: #C7E8F9;
  border-radius: 1vw;
  padding: 3vw 3vw;
  display: flex;
  gap: 3vw;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0.35vw 0.9vw rgba(0, 0, 0, 0.08);
}
.consult-request-left {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  width: 50%;
}
.consult-request-title {
  font-size: 1.7vw;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0 0 0;
  letter-spacing: 0.02em;
}
.consult-request-base {
  color: #332A2B;
  font-weight: 700;
}
.consult-request-accent {
  color: #2855A3;
  font-weight: 700;
}
.consult-request-desc {
  font-size: 1.1vw;
  line-height: 1.5;
  color: #332A2B;
  margin: 0 0 0;
  font-weight: 700;
}
.consult-request-badge {
  background: #B8FFCA;
  border-radius: 0.6vw;
  padding: 1.2vw 1.8vw;
  font-size: 0.88vw;
  font-weight: 700;
  color: #332A2B;
  text-transform: uppercase;
  width: fit-content;
}
.consult-request-right {
  width: 45%;
  flex-shrink: 0;
  /* min-width: 22vw; */
}
.consult-request-form {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}
.consult-request-form input,
.consult-request-form textarea {
  background: #ffffff;
  border: none;
  border-radius: 0.6vw;
  padding: 1.1vw 1.3vw;
  font-size: 0.88vw;
  color: #332A2B;
  outline: none;
}
.consult-request-form input::placeholder {
  color: #999;
}
.consult-request-form textarea::placeholder {
  color: #D4ADB2;
}
.consult-request-form textarea {
  min-height: 5.5vw;
  resize: none;
}
.consult-request-form button {
  background: #00FF80;
  color: #0d3b2a;
  border: none;
  border-radius: 999px;
  padding: 1.1vw 1.8vw;
  font-size: 0.82vw;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0.56vw 1.39vw rgba(0, 229, 127, 0.25);
  transition: 0.2s;
}
.consult-request-form button:hover {
  background: #1bdc82;
  transform: translateY(-0.12vw);
}
.consult-request-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5vw;
  font-size: 0.68vw;
  color: #332A2B;
}
.consult-request-consent input {
  width: 1vw;
  height: 1vw;
  min-width: 1vw;
  min-height: 1vw;
  border: 1px solid #D1FBDC;
  border-radius: 4px;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 0.15vw;
}
/* CONSULTATION REQUEST SECTION END */

/* 404 ERROR PAGE (eror.html) START */
.error-404-section {
  width: 100%;
  padding: 0 18vw;
  /* background: #FAFAFA; */
  box-sizing: border-box;
  /* min-height: 40vw; */
}
.error-404-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 1vw; */
  max-width: 100%;
}
.error-404-left {
  /* flex: 1; */
  max-width: 33%;
}
.error-404-title {
  font-family: Geologica, sans-serif;
  font-size: 1.7vw;
  font-weight: 700;
  color: #2855A3;
  margin: 0 0 1.2vw;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.error-404-text {
  font-size: .85vw;
  line-height: 1.5;
  color: #332A2B;
  /* margin: 0 0 2.5vw; */
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.error-404-btn {
  display: inline-block;
  background: #00FF80;
  color: #332A2B;
  font-size: .85vw;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.3vw 2.8vw;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 0.3vw 0.8vw rgba(0, 255, 128, 0.35);
  border: 4px solid #FFFFFF;
  margin-top: 2vw;
}
.error-404-btn:hover {
  background: #00E673;
}
.error-404-right {
  /* flex: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 55%; */
  width: 66%;
}
.error-404-image {
  width: 100%;
  /* max-width: 35vw; */
  height: auto;
  object-fit: contain;
}

/* 404 ERROR PAGE END */

/* SUCCESS THANK YOU PAGE (succues.html) START */
.success-thank-section {
  width: 100%;
  padding: 0 18vw;
  box-sizing: border-box;
}
.success-thank-container {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  max-width: 100%;
}
.success-thank-left {
  max-width: 33%;
}
.success-thank-title {
  font-family: Geologica, sans-serif;
  font-size: 1.7vw;
  font-weight: 700;
  color: #2855A3;
  margin: 0 0 1.2vw;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.success-thank-text {
  font-size: 0.85vw;
  line-height: 1.5;
  color: #332A2B;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.success-thank-btn {
  display: inline-block;
  background: #00FF80;
  color: #332A2B;
  font-size: 0.85vw;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.3vw 2.8vw;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 0.3vw 0.8vw rgba(0, 255, 128, 0.35);
  border: 4px solid #FFFFFF;
  margin-top: 2vw;
}
.success-thank-btn:hover {
  background: #00E673;
}
.success-thank-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.success-thank-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* SUCCESS THANK YOU PAGE END */

/* QUIZ START */
.quiz {
    max-width: 800px;
    background: #f3f3f3;
    border-radius: 12px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.quiz__header {
    background: linear-gradient(90deg,#2e1df4,#2116f2);
    color: white;
    padding: 20px;
    position: relative;
    display: flex;
}

.quiz__progress {
    height: 4px;
    background: rgba(255,255,255,0.3);
}

.quiz__progress-bar {
    height: 100%;
    width: 0;
    background: #48bb78;
    transition: 0.3s;
}

.quiz__step-counter {
  margin-left: auto;
}

.quiz__step {
    display: none;
    padding: 40px;
}

.quiz__step.active {
    display: block;
}

.quiz__step h3 {
    margin-bottom: 20px;
    font-weight: 500;
}

.quiz__step label {
    display: block;
    margin-bottom: 20px;
}

.quiz__buttons {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

.quiz__input-tel,
.quiz__input-tel:focus,
.quiz__input-tel:active {
    border-bottom: 1px solid;
    width: 100%;
    padding-bottom: 10px;
    outline: none;
}

button {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

#quiz-next,
#quiz-submit {
    background: #2116f2;
    color: white;
}

#quiz-prev {
    background: #ccc;
}
/* ===== FLOAT BUTTON ===== */

.quiz-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 300px;
  cursor: pointer;
  z-index: 9998;
}

.quiz-tab {
  position: absolute;
  top: -12px;
  left: 15px;
  background: green;
  color: #fff;
  padding: 4px 26px;
  border-radius: 12px;
}

.quiz-tab::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 7px;
}

.quiz-title {
  position: absolute;
  top: 28px;
  left: 15px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.quiz-float img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.quiz-float-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: linear-gradient(90deg,#3b2bff,#2413e8);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 40px;
    font-weight: 600;
}

/* ===== POPUP ===== */

.quiz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.quiz-overlay.active {
    display: flex;
}

.quiz-modal {
    width: 800px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    position: relative;
}

.quiz-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

/* QUIZ END */

/* ========== 1440px MEDIA - Responsive ========== */
@media (max-width: 1440px) {

  .banner-speech {
    position: absolute;
    left: -11%;
    top: 46%;
    width: 13.5vw;
    /* background: #ffffff; */
    border-radius: 0.8vw;
    padding: 0.75vw 0.9vw;
    font-size: 0.936vw;
    line-height: 1.25;
    color: #4b4b4b;
    box-shadow: 0 0.69vw 1.67vw rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(11.9px);
    background: rgba(255, 255, 255, 0.4);
}

.header-banner {
  padding: 0.96vw 5.27vw;
}

.header-section {
  gap: 0.96vw;
}

.location-group {
  gap: 0.6vw;
}

.icon-small {
  width: 1.44vw;
  margin-top: 0.12vw;
}

.city-bottom-row {
  gap: 0.48vw;
  margin-top: 0.12vw;
}

.city-name {
  font-size: 1.38vw;
}

.city-label {
  font-size: 1.02vw;
}

.arrow-icon {
  font-size: 0.6vw;
}

.phone-number {
  font-size: 1.44vw;
}

.phone-label {
  font-size: 0.96vw;
  margin-top: 0.24vw;
}

.header-actions {
  gap: 1.8vw;
}

.social-wrapper {
  gap: 0.96vw;
}

.callback-btn {
  padding: 0.72vw 1.44vw;
  border-radius: 2.4vw;
  font-size: 1.08vw;
  gap: 0.6vw;
  height: 3vw;
}

.btn-icon {
  width: 1.02vw;
}

.social-icon svg {
  width: 3vw;
  height: 3vw;
}

.city-list {
  padding: 0.6vw 0px;
  border-radius: 0.48vw;
  min-width: 12vw;
}

.city-list li {
  padding: 0.6vw 1.2vw;
  font-size: 1.02vw;
}

.main-logo {
  width: 5.76vw;
}

.main-title {
  font-size: 1.44vw;
}

.sub-title {
  font-size: 1.02vw;
}



/* MENU START */

.main-nav {
  padding: 0.96vw 5.27vw;
}

.nav-main-area {
  gap: 3.6vw;
}

.services-btn {
  padding: 0.96vw 1.92vw;
  border-radius: 0.96vw;
  font-size: 1.14vw;
  gap: 0.84vw;
}

.nav-links {
  gap: 2.4vw;
}

.nav-links li a {
  font-size: 1.08vw;
}

.mega-menu {
  left: 5.27vw;
  right: 5.27vw;
  border-radius: 0 0 1.2vw 1.2vw;
  box-shadow: 0 1.8vw 4.8vw rgba(0,0,0,0.1);
  padding: 3vw;
}

.mega-menu-header {
  gap: 1.2vw;
  margin-bottom: 3vw;
  padding-bottom: 1.8vw;
}

.cat-tab {
  padding: 0.96vw 1.8vw;
  border-radius: 0.96vw;
  font-size: 0.9vw;
}

.mega-grid {
  gap: 3.6vw;
}

.mega-col h3 {
  font-size: 0.9vw;
  margin-bottom: 1.44vw;
}

.link-list {
  gap: 0.72vw;
}

.link-list a {
  font-size: 1.02vw;
  padding: 0.36vw 0;
  gap: 2.4vw;
}

.link-list a i {
  font-size: 0.84vw;
}

.consultation-btn {
  padding: 1.08vw 2.16vw;
  border-radius: 6vw;
  font-size: 1.02vw;
}

.consultation-btn:hover {
  transform: translateY(-0.144vw);
}

.mt-2 {
  margin-top: 2.4vw;
}



/* BANNER START */

.banner-container {
  margin-top: 1.2vw;
  padding: 0 5.27vw;
}

.banner-content {
  gap: 2.328vw;
}

.banner-right {
  gap: 1.68vw;
}

.banner-tittle {
  font-size: 2.64vw;
}

.banner-buttons {
  gap: 1.26vw;
}

.banner-btn {
  padding: 0.96vw 1.8vw;
  font-size: 1.104vw;
  height: 3.48vw;
}

.banner-btn1 {
  box-shadow: 0 0.672vw 1.668vw rgba(0, 229, 127, 0.25);
}

.banner-btn1:hover {
  transform: translateY(-0.144vw);
  box-shadow: 0 0.84vw 1.92vw rgba(0, 229, 127, 0.35);
}

.banner-btn2 {
  box-shadow: 0 0.672vw 1.668vw rgba(43, 93, 159, 0.25);
}

.banner-btn2:hover {
  transform: translateY(-0.144vw);
  box-shadow: 0 0.84vw 1.92vw rgba(40, 85, 163, 0.35);
}

.banner-list {
  gap: 1.08vw;
}

.banner-item {
  border-radius: 1.2vw;
  padding: 1.08vw 1.92vw;
  gap: 1.08vw;
  box-shadow: 0 0.504vw 1.332vw rgba(0, 0, 0, 0.05);
  border: 0.072vw solid #eef1f6;
}

.item-icon {
  width: 1.32vw;
  height: 1.32vw;
}

.item-text {
  font-size: 1.14vw;
}

.banner-hero {
  min-height: 28.8vw;
}

.banner-icon {
  width: 6.24vw;
  height: 6.24vw;
}

.banner-icon-1 {
  right: 26.88vw;
  top: 5.52vw;
}

.banner-icon-2 {
  right: 6.96vw;
  top: 5.88vw;
}

.banner-icon-3 {
  right: 0.96vw;
  top: 17.04vw;
}

.banner-icon-4 {
  right: -0.72vw;
}

.banner-speech {
  width: 16.2vw;
  border-radius: 0.96vw;
  padding: 0.9vw 1.08vw;
  font-size: 0.936vw;
  box-shadow: 0 0.828vw 2.004vw rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5.88px);
}

.banner-name-tag {
  right: 6.24vw;
  bottom: 1.68vw;
  padding: 0.78vw 0.96vw;
  border-radius: 0.78vw;
  box-shadow: 0 0.672vw 1.668vw rgba(0, 0, 0, 0.08);
  gap: 0.3vw;
  max-width: 12vw;
}

.banner-name-tag .name {
  font-size: 0.936vw;
}

.banner-name-tag .role {
  font-size: 0.864vw;
}

.banner-stats {
  gap: 1.44vw;
}

.stat-card {
  border-radius: 1.08vw;
  padding: 1.44vw 1.26vw;
  box-shadow: 0 0.504vw 1.332vw rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 1.536vw;
}

.stat-label {
  font-size: 0.84vw;
  margin-top: 0.48vw;
}




.stress-section {
  margin-top: 7.2vw;
}

.stress-container {
  gap: 2.88vw;
  border-radius: 0.9vw;
  padding: 2.4vw;
}

.stress-left {
  gap: 2.4vw;
}

.stress-title {
  font-size: 2.1vw;
}

.stress-grid {
  gap: 1.2vw;
}

.stress-card {
  border-radius: 0.96vw;
  padding: 1.2vw 1.32vw;
  font-size: 1.02vw;
  box-shadow: 0 0.504vw 1.332vw rgba(0, 0, 0, 0.05);
  border: 0.072vw solid #eef1f6;
  min-height: 6vw;
}

.stress-card--primary {
  box-shadow: 0 0.672vw 1.668vw rgba(43, 93, 159, 0.25);
  font-size: 1.44vw;
}

.stress-right {
  gap: 2.4vw;
}

.stress-note {
  font-size: 1.44vw;
  max-width: 28.8vw;
}

.stress-solution {
  border-radius: 1.2vw;
  padding: 3.72vw 3.84vw;
  font-size: 1.44vw;
  box-shadow: 0 0.828vw 2.004vw rgba(43, 93, 159, 0.25);
  min-height: 17.76vw;
}



.procedure-section {
  padding: 2.88vw 5.27vw 0vw;
  margin-top: 7.2vw;
}

.procedure-container {
  gap: 3.12vw;
}

.procedure-left {
  gap: 1.68vw;
}

.procedure-title {
  font-size: 1.92vw;
  max-width: 43.2vw;
}

.procedure-image {
  width: 28.8vw;
  margin-left: 2vw;
}

.procedure-right {
  gap: 1.68vw;
}

.procedure-list {
  gap: 0.84vw;
}

.procedure-item {
  border: 0.096vw solid #2855A3;
  border-radius: 0.96vw;
  padding: 1.02vw 1.2vw;
  gap: 0.96vw;
}

.procedure-item img {
  width: 1.2vw;
  height: 1.2vw;
  margin-top: 0.24vw;
}

.procedure-item span {
  font-size: 1.08vw;
}

.procedure-cta {
  gap: 1.2vw;
  margin-top: 1.2vw;
}

.procedure-cta-title {
  font-size: 1.464vw;
}

.procedure-btn {
  padding: 1.3vw 2.16vw;
  font-size: 1.02vw;
  box-shadow: 0 0.672vw 1.668vw rgba(0, 229, 127, 0.25);
}

.procedure-btn:hover {
  transform: translateY(-0.144vw);
  box-shadow: 0 0.84vw 1.92vw rgba(0, 229, 127, 0.35);
}




.services-section {
  margin-top: 7.2vw;
}

.services-container {
  gap: 2.4vw;
}

.services-heading {
  gap: 0.72vw;
  max-width: 50.4vw;
}

.services-title {
  font-size: 2.04vw;
}

.services-subtitle {
  font-size: 0.984vw;
}

.service-card {
  border-radius: 1.2vw;
  padding: 1.8vw 1.68vw;
  min-height: 19.8vw;
  gap: 1.2vw;
}

.service-card h3 {
  font-size: 1.104vw;
}

.service-tag {
  border-radius: 0.96vw;
  padding: 0.96vw 1.08vw;
  font-size: 0.9vw;
}

.service-card p {
  font-size: 0.936vw;
}

.services-section .owl-stage-outer {
  padding: 0.72vw 0;
}

.services-section .owl-nav {
  right: 5.27vw;
  gap: 0.84vw;
  top: -5.76vw;
}

.services-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}

.services-section .owl-nav button svg {
  width: 1.32vw;
  height: 1.32vw;
}


.debts-section {
  padding: 4.8vw 5.27vw;
  margin-top: 7.2vw;
}

.debts-container {
  gap: 2.16vw;
}

.debts-heading {
  gap: 0.72vw;
  max-width: 45.6vw;
}

.debts-title {
  font-size: 2.04vw;
}

.debts-subtitle {
  font-size: 0.936vw;
}

.debts-card {
  border-radius: 1.2vw;
  padding: 2.88vw 1.56vw;
  height: 23.76vw;
  gap: 1.08vw;
  border: 0.096vw solid transparent;
}

.debts-card:hover {
  border: 0.096vw solid #2855A3;
}

.debts-card h3 {
  font-size: 1.104vw;
  margin-bottom: 0.6vw;
}

.debt-chip {
  border-radius: 0.84vw;
  padding: 0.84vw 1.08vw;
  font-size: 1.08vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.04);
}

.debts-note {
  font-size: 0.95vw;
}

.debts-section .owl-stage-outer {
  padding: 0.72vw 0;
}

.debts-section .owl-nav {
  right: 5.27vw;
  gap: 0.84vw;
  top: -5.76vw;
}

.debts-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}

.debts-section .owl-nav button svg {
  width: 1.32vw;
  height: 1.32vw;
}

.life-section {
  margin-top: 7.2vw;
}

.life-container {
  gap: 3.12vw;
}

.life-left {
  gap: 1.68vw;
}

.life-title {
  font-size: 2.04vw;
}

.life-right {
  gap: 1.92vw;
}

.life-group {
  gap: 0.96vw;
}

.life-group-title {
  font-size: 1.38vw;
}

.life-row {
  gap: 0.96vw;
}

.life-pill {
  border-radius: 0.96vw;
  padding: 1.2vw 1.44vw;
  font-size: 1.08vw;
  /* min-width: 14.4vw; */
  /* min-height: 8.4vw; */
}



.reviews-section {
  margin-top: 7.2vw;
  padding: 0 5.27vw;
}

.reviews-container {
  gap: 2.16vw;
}

.reviews-heading {
  gap: 0.42vw;
  max-width: 40.8vw;
}

.reviews-title {
  font-size: 2.04vw;
}

.reviews-subtitle {
  font-size: 1.02vw;
}

.reviews-item {
  /* padding: 0 0.66vw; */
}

.review-card {
  border-radius: 1.2vw;
  padding: 1.14vw;
  box-shadow: 0 0.504vw 1.332vw rgba(0, 0, 0, 0.05);
  gap: 0.84vw;
}

.review-media {
  border-radius: 0.96vw;
}

.review-play {
  width: 5.04vw !important;
  height: 5.04vw;
  padding: 0.66vw;
  box-shadow: 0 0.48vw 1.2vw rgba(0, 0, 0, 0.18);
}

.review-body {
  gap: 0.72vw;
}

.review-top {
  gap: 0.96vw;
}

.review-name {
  font-size: 1.02vw;
}

.review-date {
  font-size: 0.72vw;
  gap: 0.36vw;
}

.review-bottom {
  gap: 0.72vw;
}

.review-chip {
  border-radius: 0.72vw;
  padding: 1.2vw 1.2vw;
  font-size: 1.08vw;
  gap: 0.36vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.04);
  border: 0.072vw solid #eef1f6;
}

.reviews-btn {
  padding: 1.08vw 2.16vw;
  font-size: 1.02vw;
  box-shadow: 0 0.672vw 1.668vw rgba(0, 229, 127, 0.25);
}

.reviews-btn:hover {
  transform: translateY(-0.144vw);
  box-shadow: 0 0.84vw 1.92vw rgba(0, 229, 127, 0.35);
}

.reviews-section .owl-stage-outer {
  padding: 0.72vw 0;
}

.reviews-section .owl-nav {
  gap: 0.84vw;
  top: -4.68vw;
}

.reviews-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}

.reviews-section .owl-nav button svg {
  width: 1.32vw;
  height: 1.32vw;
}

.pricing-container {
  gap: 1.92vw;
  margin-top: 7.2vw;
}

.pricing-heading {
  gap: 0.72vw;
  max-width: 50.4vw;
}

.pricing-title {
  font-size: 2.04vw;
}

.pricing-subtitle {
  font-size: 0.984vw;
}

.pricing-tabs {
  gap: 0.96vw;
}

.pricing-tab {
  padding: 1vw 3.24vw;
  font-size: 1.02vw;
}

.pricing-tab:hover:not(.active) {
  transform: translateY(-0.096vw);
}

.pricing-tab.active:hover {
  transform: translateY(-0.096vw);
}

.pricing-grid {
  gap: 1.2vw;
}

.pricing-col {
  gap: 0.72vw;
}

.pricing-item {
  border-radius: 0.84vw;
  padding: 0.84vw 1.08vw;
  gap: 1.2vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.04);
  border: 0.072vw solid #eef1f6;
  font-size: 1.08vw;
}

.pricing-price {
  font-size: 1.08vw;
  padding: 0.42vw 0.72vw;
  border-radius: 0.6vw;
}

.pricing-note {
  border-radius: 0.84vw;
  padding: 2.16vw 1.8vw;
  font-size: 1.08vw;
}



.calc-section {
  margin-top: 7.2vw;
  padding: 0px 10.54vw;
}

.calc-box {
  gap: 2.88vw;
  border-radius: 1.44vw;
  padding: 2.16vw 2.4vw;
}

.calc-left {
  gap: 0.96vw;
}

.calc-title {
  font-size: 2.04vw;
}

.calc-text {
  font-size: 1.02vw;
}

.calc-subtext {
  font-size: 1.08vw;
}

.calc-note {
  font-size: 1.08vw;
  margin-top: 0.72vw;
}

.calc-card {
  border-radius: 0.96vw;
  padding: 1.56vw 1.8vw 1.32vw;
  gap: 1.32vw;
}

.calc-card-questions {
  border-radius: 0.96vw;
  padding: 1.8vw 1.8vw 3.6vw 1.8vw;
  gap: 2.52vw;
}

.calc-step-title {
  font-size: 1.32vw;
}

.calc-slides {
  gap: 1.2vw;
  min-height: 12vw;
}

.calc-slide {
  gap: 2.4vw;
}

.calc-question {
  gap: 1.2vw;
}

.calc-question-title {
  font-size: 1.08vw;
}

.calc-options {
  gap: 0.84vw 1.68vw;
}

.calc-option {
  gap: 0.6vw;
  font-size: 1.02vw;
}

.calc-check {
  width: 1.5vw;
  height: 1.5vw;
  border: 0.168vw solid #a8b8d8;
}

.calc-option input:checked + .calc-check::after {
  width: 0.96vw;
  height: 0.96vw;
}

.calc-controls {
  gap: 2.4vw;
  margin-top: 0.36vw;
}

.calc-btn {
  font-size: 1.02vw;
  gap: 0.78vw;
}

.calc-btn--primary {
  padding: 0.42vw 1.44vw;
}

.calc-progress {
  font-size: 1.08vw;
}

.calc-arrow {
  font-size: 1.8vw;
}

.calc-form-inputs {
  gap: 0.84vw;
  margin-bottom: 0.6vw;
}

.calc-input {
  padding: 0.84vw 1.08vw;
  border: 0.096vw solid #d0d8e8;
  border-radius: 0.48vw;
  font-size: 1.02vw;
}


.steps-section {
  padding: 4.8vw 0 4.8vw 5.27vw;
  margin-top: 7.2vw;
}

.steps-container {
  gap: 1.92vw;
}

.steps-title {
  font-size: 2.04vw;
}

.step-card {
  border-radius: 1.08vw;
  padding: 1.8vw 1.8vw 0vw 0;
  min-height: 21.6vw;
  gap: 1.08vw;
  border: 0.096vw solid #dfe7f5;
}

.step-label {
  font-size: 1.02vw;
  padding: 0.42vw 0.72vw;
  box-shadow: 0 0.24vw 0.72vw rgba(0, 0, 0, 0.06);
  margin-left: 1.2vw;
}

.step-body {
  gap: 1.08vw;
}

.step-media {
  height: 12.24vw;
}

.step-content {
  gap: 0.42vw;
}

.step-content h3 {
  font-size: 1.32vw;
}

.step-content p {
  font-size: 1.08vw;
}

.steps-section .owl-stage-outer {
  padding: 0.72vw 0;
}

.steps-section .owl-nav {
  gap: 0.84vw;
  top: -5.76vw;
}

.steps-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}

.steps-section .owl-nav button svg {
  width: 1.32vw;
  height: 1.32vw;
}





.costs-section {
  margin-top: 7.2vw;
}

.costs-container {
  gap: 2.64vw;
}

.costs-left {
  gap: 0.84vw;
}

.costs-title {
  font-size: 2.04vw;
}

.costs-subtitle {
  font-size: 1.08vw;
}

.costs-note {
  border-radius: 0.84vw;
  padding: 0.96vw 1.2vw;
  font-size: 1.2vw;
}

.costs-grid {
  gap: 1.2vw;
}

.cost-card {
  border-radius: 1.08vw;
  padding: 1.2vw 1.2vw 1.32vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.04);
  gap: 0.72vw;
}

.cost-title {
  font-size: 1.32vw;
}

.cost-tag {
  font-size: 1.08vw;
  padding: 0.36vw 0.66vw;
  border-radius: 0.54vw;
}


.costs-note {
  border-radius: 0.84vw;
  padding: 0.96vw 1.2vw;
  font-size: 1.2vw;
}

.costs-grid {
  gap: 1.2vw;
}

.cost-card {
  border-radius: 1.08vw;
  padding: 1.2vw 1.2vw 1.32vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.04);
  gap: 0.72vw;
}

.cost-title {
  font-size: 1.32vw;
}

.cost-tag {
  font-size: 1.08vw;
  padding: 0.36vw 0.66vw;
  border-radius: 0.54vw;
}



/* APP CONTROL START */

.app-section {
  margin-top: 10.8vw;
  padding: 0px 10.54vw;
}

.app-card {
  border-radius: 1.2vw;
  padding: 3.12vw 0 3.12vw 3.12vw;
}

.app-left {
  gap: 1.32vw;
}

.app-title {
  font-size: 1.74vw;
}

.app-points {
  gap: 0.96vw;
}

.app-point {
  gap: 0.96vw;
  padding: 1.92vw 1.2vw;
  border-radius: 0.84vw;
  font-size: 1.02vw;
}

.app-point img {
  width: 2.76vw;
  height: 2.76vw;
}

.app-point--outline {
  border: 0.096vw solid #6bbcff;
}

.app-phone {
  filter: drop-shadow(0 0.72vw 1.68vw rgba(0, 0, 0, 0.25));
  right: -4.8vw;
  margin-top: -2.4vw;
}





.contact-section {
  margin-top: 7.2vw;
  padding: 0px 10.54vw;
}

.contact-card {
  border-radius: 1.2vw;
  padding: 1.2vw 2.4vw 0 2.4vw;
  gap: 1.2vw;
}

.contact-left {
  gap: 0.84vw;
}

.contact-text {
  gap: 0.72vw;
  width: 18vw;
  margin-top: 3vw;
}

.contact-title {
  font-size: 2.04vw;
}

.contact-subtitle {
  font-size: 1.02vw;
}

.contact-person {
  gap: 1.2vw;
  margin-top: 0.48vw;
  margin-left: -3.6vw;
}

.contact-tag {
  border-radius: 0.84vw;
  padding: 0.78vw 1.2vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.08);
}

.contact-tag-row {
  gap: 0.48vw;
}

.contact-name {
  font-size: 13px;
}

.contact-role {
  font-size: 13px;
}

.contact-form {
  gap: 1.2vw;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.72vw;
  padding: 1.2vw;
  font-size: 1.02vw;
}

.contact-form textarea {
  min-height: 6.72vw;
}

.contact-form button {
  padding: 0.96vw 1.92vw;
  font-size: 1.02vw;
  box-shadow: 0 0.672vw 1.668vw rgba(0, 229, 127, 0.25);
}

.contact-form button:hover {
  transform: translateY(-0.144vw);
  box-shadow: 0 0.84vw 1.92vw rgba(0, 229, 127, 0.35);
}

.contact-consent {
  gap: 0.48vw;
  font-size: 0.9vw;
}

.contact-consent input {
  width: 1.44vw;
  height: 1.44vw;
}

.tv-section {
  margin-top: 7.2vw;
}

.tv-container {
  gap: 1.68vw;
}

.tv-title {
  font-size: 2.04vw;
}

.tv-content {
  gap: 0.96vw;
}

.tv-media-row {
  gap: 2.64vw;
}

.tv-main,
.tv-mini {
  border-radius: 0.96vw;
}

.tv-play {
  width: 3.6vw;
  height: 3.6vw;
}

.tv-caption {
  gap: 0.36vw;
}

.tv-caption-title {
  font-size: 1.02vw;
}

.tv-caption-subtitle {
  font-size: 0.9vw;
}

.tv-right {
  gap: 1.08vw;
}

.tv-mini img {
  border-radius: 0.96vw;
}



.faq-section {
  margin-top: 7.2vw;
  padding: 0 10.54vw;
}

.faq-container {
  gap: 1.68vw;
}

.faq-title {
  font-size: 2.04vw;
}

.faq-list {
  gap: 0.84vw;
}

.faq-item {
  border: 0.096vw solid #dfe7f5;
  border-radius: 0.96vw;
}

.faq-question {
  padding: 1.08vw 1.44vw;
  font-size: 1.02vw;
}

.faq-icon {
  font-size: 1.8vw;
}

.faq-answer {
  padding: 0 1.44vw 1.2vw;
  font-size: 1.08vw;
}



.info-section {
  margin-top: 7.2vw;
  padding: 0 5.27vw;
}

.info-container {
  gap: 2.4vw;
}

.info-header {
  gap: 2.4vw;
}

.info-title {
  font-size: 2.04vw;
}

.info-tabs {
  gap: 0.72vw;
}

.info-tab {
  padding: 0.78vw 1.08vw;
  font-size: 1.02vw;
}

.info-card {
  border-radius: 1.08vw;
  padding: 1.2vw 1.2vw 1.32vw;
  gap: 0.72vw;
  min-height: 38.4vw;
}

.info-card img {
  border-radius: 1.08vw;
}

.info-tag {
  padding: 0.3vw 0.72vw;
  font-size: 1.02vw;
}

.info-text {
  font-size: 1.02vw;
}

.info-date {
  font-size: 0.78vw;
}

.info-section .owl-nav {
  right: 5.27vw;
  top: -5.76vw;
  gap: 0.84vw;
}

.info-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}

.info-section .owl-nav button svg {
  width: 1.32vw;
  height: 1.32vw;
}


.popup-modal {
  width: 31.2vw;
  border-radius: 1.2vw;
  padding: 4.8vw 2.4vw 2.4vw 2.4vw;
}

.popup-close {
  top: 0.96vw;
  right: 0.96vw;
  width: 2.64vw;
  height: 2.64vw;
  border-radius: 0.72vw;
  font-size: 1.44vw;
}

.popup-title {
  font-size: 1.68vw;
}

.popup-subtitle {
  margin-top: 0.72vw;
  font-size: 1.02vw;
}

.popup-form {
  margin-top: 1.44vw;
  gap: 0.84vw;
}

.popup-form input {
  border-radius: 1.02vw;
  border: 0.096vw solid #e6ebf5;
  padding: 0.96vw 1.44vw;
  font-size: 0.84vw;
}

.popup-form button {
  padding: 1.08vw 2.16vw;
  font-size: 1.02vw;
  box-shadow: 0 0.672vw 1.668vw rgba(0, 229, 127, 0.25);
}

.popup-form button:hover {
  transform: translateY(-0.144vw);
  box-shadow: 0 0.84vw 1.92vw rgba(0, 229, 127, 0.35);
}

.popup-consent {
  gap: 0.48vw;
  font-size: 0.6vw;
}

.popup-consent input {
  width: 1.44vw;
  height: 1.44vw;
}

.popup-consent input:checked::after {
  width: 0.66vw;
  height: 0.66vw;
}


.site-footer {
  padding: 3.6vw 5.27vw;
  margin-top: 7.2vw;
}

.footer-container { gap: 2.16vw; }
.footer-links { gap: 2vw; }
.footer-links-col { gap: 0.54vw; }
.footer-logo { gap: 0.96vw; }
.footer-logo img { width: 5.52vw; }
.footer-logo-title { font-size: 1.08vw; }
.footer-logo-subtitle { font-size: 0.96vw; }
.footer-phone { font-size: 1.32vw; }
.footer-branch { font-size: 0.96vw; }
.footer-phone-note { font-size: 0.96vw; }
.footer-socials { gap: 0.72vw; }
.footer-social img { width: 2.76vw; height: 2.76vw; }
.footer-title { font-size: 1.14vw; }
.footer-links-col a { font-size: 1.02vw; }
.footer-text { font-size: 0.72vw; }
.footer-mt { margin-top: 0.96vw; }
.footer-bottom { border-top: 0.072vw solid rgba(255,255,255,0.2); padding: 1.02vw 0 0; font-size: 0.66vw; }

/* PAGE-SPECIFIC: page1-7, eror, succues */
.page-breadcrumbs {
  padding: 1.02vw 5.27vw;
  font-size: 0.84vw;
}
.page-hero {
  padding: 0 5.27vw;
}
.situation-section {
  padding: 0 5.27vw;
  margin-top: 7.2vw;
}
.situation-container {
  border-radius: 1.08vw;
  padding: 3vw 3.36vw 3.36vw;
  gap: 2.4vw;
}
.situation-cards {
  gap: 1.8vw;
}
.situation-card {
  border-radius: 0.96vw;
  padding: 1.8vw 1.68vw;
  gap: 0.96vw;
  min-height: 12vw;
}
.situation-banner {
  border-radius: 0.96vw;
  padding: 2.16vw 2.4vw;
  gap: 0.72vw;
}
.debts-writeoff-section {
  padding: 0 5.27vw;
  margin-top: 7.2vw;
}
.debts-writeoff-container {
  gap: 2.4vw;
}
.debts-writeoff-left {
  gap: 1.8vw;
}
.debts-writeoff-list {
  gap: 1.2vw;
}
.debts-writeoff-item {
  gap: 0.96vw;
  padding: 1.2vw 1.44vw;
  border-radius: 0.72vw;
}
.debts-writeoff-check {
  width: 1.44vw;
  height: 1.44vw;
}
.debts-writeoff-box {
  border-radius: 1.08vw;
  padding: 2.4vw 2.16vw;
  gap: 1.2vw;
}
.bankruptcy-process-section {
  padding: 0 5.27vw;
  margin-top: 7.2vw;
}
.bankruptcy-process-container {
  gap: 2.4vw;
}
.bankruptcy-process-heading {
  gap: 0.72vw;
  max-width: 55vw;
}
.bankruptcy-process-title {
  font-size: 2.04vw;
}
.bankruptcy-process-subtitle {
  font-size: 1.08vw;
}
.bankruptcy-process-card {
  border-radius: 1.08vw;
  padding: 2.16vw;
  gap: 1.2vw;
  box-shadow: 0 0.336vw 0.84vw rgba(0, 0, 0, 0.06);
  border: 0.072vw solid #eef1f6;
}
.bankruptcy-process-num {
  top: 1.44vw;
  left: 1.8vw;
  font-size: 1.08vw;
  padding: 1.2vw 1.44vw;
}
.bankruptcy-process-card-title {
  font-size: 1.2vw;
  padding-top: 3.36vw;
}
.bankruptcy-process-card-text {
  font-size: 1.06vw;
}
.bankruptcy-process-banner {
  border-radius: 1.08vw;
  padding: 2.16vw 2.4vw;
  gap: 1.2vw;
}
.bankruptcy-process-banner-title {
  font-size: 1.38vw;
}
.bankruptcy-process-banner-text {
  font-size: 1.08vw;
  padding: 1.2vw 1.44vw;
  border-radius: 0.72vw;
}
.cost-page-title {
  padding: 0 5.27vw;
}
.cost-info-section {
  padding: 0 10.54vw;
}
.article-page {
  padding: 0 10.54vw;
}
.info-articles-section {
  padding: 3vw 5.27vw 4.2vw;
}
.docs-section {
  padding: 3vw 5.27vw 4.2vw;
}
.contact-info-section {
  padding: 0 5.27vw;
}
.branches-section {
  padding: 0 5.27vw;
}
.about-hero-section {
  padding: 0 5.27vw;
}
.principle-section {
  padding: 0 5.27vw;
}
.how-we-work-section {
  padding: 0 5.27vw;
}
.team-section {
  padding: 0 5.27vw;
}
.specialists-section {
  padding: 0 5.27vw;
}
.changes-after-section {
  padding: 3.6vw 5.27vw 4.8vw;
  margin-top: 7.2vw;
}
.changes-after-container {
  gap: 2.4vw;
}
.changes-after-cards {
  gap: 1.44vw;
}
.changes-after-card {
  border-radius: 1.08vw;
  padding: 2.4vw 1.68vw;
  gap: 1.2vw;
}
.changes-after-card-title {
  font-size: 1.2vw;
}
.changes-after-card-text {
  font-size: 1.08vw;
  padding: 1.2vw 1.44vw;
  border-radius: 0.72vw;
}
.trust-section {
  padding: 0 5.27vw;
  margin-top: 7.2vw;
}
.trust-container {
  gap: 2.88vw;
}
.trust-left {
  gap: 1.8vw;
}
.trust-list {
  gap: 1.2vw;
}
.trust-item {
  border: 0.072vw solid #d1dae9;
  border-radius: 0.72vw;
  padding: 1.2vw 1.44vw;
  gap: 0.96vw;
}
.trust-check {
  width: 1.44vw;
  height: 1.44vw;
}
.trust-text {
  font-size: 1.02vw;
}
.trust-right {
  width: 32%;
}
.trust-guarantee-box {
  border-radius: 1.08vw;
  padding: 2.4vw 2.16vw;
  gap: 1.44vw;
}
.trust-guarantee-title {
  font-size: 1.38vw;
}
.trust-guarantee-text {
  font-size: 1.08vw;
}
.trust-guarantee-badge {
  border-radius: 0.84vw;
  padding: 1.44vw 1.8vw;
  font-size: 1.14vw;
}
.trust-guarantee-note {
  font-size: 0.9vw;
}
.cost-payment-section {
  padding: 3.6vw 5.27vw 4.8vw;
}
.cost-payment-container {
  gap: 2.88vw;
}
.cost-payment-card {
  padding: 3vw 3vw;
  gap: 2.88vw;
  border-radius: 1.08vw;
  margin-top: 7.2vw;
}
.cost-payment-left {
  gap: 1.8vw;
}
.cost-payment-subtitle {
  font-size: 1.2vw;
}
.cost-payment-list {
  gap: 1.2vw;
}
.cost-payment-item {
  border: 0.072vw solid #d1dae9;
  border-radius: 0.72vw;
  padding: 1.2vw 1.44vw;
  gap: 0.96vw;
}
.cost-payment-check {
  width: 1.44vw;
  height: 1.44vw;
}
.cost-payment-buttons {
  gap: 1.2vw;
}
.cost-payment-btn {
  padding: 1.08vw 1.92vw;
  border-radius: 999px;
  font-size: 1.02vw;
}
.cost-payment-box {
  border-radius: 1.08vw;
  padding: 2.4vw 2.16vw;
  gap: 1.2vw;
}
.bankruptcy-process-section .owl-stage-outer {
  padding: 0.72vw 0;
}
.bankruptcy-process-section .owl-nav {
  right: 5.27vw;
  top: -5.76vw;
  gap: 0.84vw;
}
.bankruptcy-process-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}
.bankruptcy-process-section .owl-nav button svg {
  width: 1.32vw;
  height: 1.32vw;
}
.how-we-work-section .owl-nav {
  right: 5.27vw;
  top: -5.76vw;
  gap: 0.84vw;
}
.how-we-work-section .owl-nav button {
  width: 2.88vw;
  height: 2.88vw;
}
.how-we-work-section .owl-nav button.owl-prev svg,
.how-we-work-section .owl-nav button.owl-next svg {
  width: 1.32vw;
  height: 1.32vw;
}
.how-we-work-carousel.owl-carousel .owl-stage-outer {
  padding: 0.36vw 0;
}
.how-we-work-carousel .owl-item {
  /* padding: 0 0.6vw; */
}
.how-we-work-card {
  border-radius: 0.96vw;
  padding: 2.16vw;
  min-height: 16.8vw;
}
.how-we-work-num {
  width: 2.16vw;
  height: 2.16vw;
  font-size: 1.14vw;
  margin-bottom: 1.44vw;
}
.how-we-work-card--guarantee {
  min-height: 16.8vw;
}
.how-we-work-guarantee-box {
  border-radius: 0.6vw;
  padding: 1.2vw 1.44vw;
  gap: 0.36vw;
  margin-bottom: 1.2vw;
}
.how-we-work-banner {
  border-radius: 0.72vw;
  padding: 1.44vw 2.16vw;
  font-size: 1.32vw;
}
.cta-consult-section {
  padding: 0 10.54vw;
}
.consult-request-section {
  padding: 0 10.54vw;
}
.error-404-section {
  padding: 0 10.54vw;
}
.success-thank-section {
  padding: 0 10.54vw;
}
.stress-section {
  padding: 0 5.27vw;
}
.pricing-section {
  padding: 0 5.27vw;
}
.services-section {
  padding: 0 5.27vw;
}
.life-section {
  padding: 0 5.27vw;
}
.costs-section {
  padding: 0 5.27vw;
}
.tv-section {
  padding: 0 5.27vw;
}
.reviews-section .owl-nav {
  right: 5.27vw;
}
.steps-section .owl-nav {
  right: 5.27vw;
}

/* Page-specific font +20% */
.page-hero-title {
  font-size: 2.16vw;
}
.page-hero-text {
  font-size: 1.02vw;
}
.page-hero-btn {
  font-size: 1.02vw;
  padding: 0.96vw 1.92vw;
}
.page-hero-note {
  font-size: 1.08vw;
}
.page-hero-badge-title {
  font-size: 1.35vw;
}
.page-hero-badge-text {
  font-size: 1.02vw;
}
.situation-title {
  font-size: 2.1vw;
}
.situation-subtitle {
  font-size: 1.02vw;
}
.situation-card-title {
  font-size: 1.2vw;
}
.situation-card-text {
  font-size: 1.02vw;
}
.situation-banner-title {
  font-size: 1.38vw;
}
.situation-banner-text {
  font-size: 1.02vw;
}
.debts-writeoff-title {
  font-size: 1.92vw;
}
.debts-writeoff-intro {
  font-size: 1.02vw;
}
.debts-writeoff-list-title {
  font-size: 1.32vw;
}
.debts-writeoff-text {
  font-size: 1.02vw;
}
.debts-writeoff-box-title {
  font-size: 1.32vw;
}
.debts-writeoff-box-text {
  font-size: 1.08vw;
}
.debts-writeoff-box-warning {
  font-size: 1.02vw;
}
.changes-after-title {
  font-size: 2.04vw;
}
.changes-after-subtitle {
  font-size: 1.02vw;
}
.changes-after-card-title {
  font-size: 1.2vw;
}
.changes-after-card-text {
  font-size: 1.08vw;
}
.trust-section .trust-title,
.cost-payment-title {
  font-size: 1.92vw;
}
.cost-payment-desc {
  font-size: 1.02vw;
}
.cost-payment-subtitle {
  font-size: 1.2vw;
}
.cost-payment-text {
  font-size: 1.08vw;
}
.cost-payment-box-title {
  font-size: 1.32vw;
}
.cost-payment-box-text {
  font-size: 1.02vw;
}
.about-hero-title {
  font-size: 2.4vw;
}
.about-hero-text {
  font-size: 1.02vw;
}
.about-hero-stat-num {
  font-size: 2.4vw;
}
.about-hero-stat-label {
  font-size: 0.864vw;
}
.about-hero-chip {
  font-size: 1.08vw;
  padding: 1.32vw 1.68vw;
  gap: 0.6vw;
}
.about-hero-chip img {
  width: 1.08vw;
  height: 1.08vw;
}
.info-articles-tag {
  font-size: 0.9vw;
  padding: 0.36vw 0.84vw;
}
.cost-page-title-line {
  font-size: 2.4vw;
}
.cost-info-item {
  font-size: 2.04vw;
}
.article-title {
  font-size: 1.92vw;
}
.article-subtitle {
  font-size: 1.44vw;
}
.article-body p,
.article-info-box p {
  font-size: 1.26vw;
}
.article-tags {
  gap: 0.72vw;
  margin-bottom: 1.8vw;
}
.article-tag {
  font-size: 0.96vw;
  padding: 0.48vw 1.08vw;
}
.article-price-title {
  font-size: 1.32vw;
}
.article-price-service {
  font-size: 1.2vw;
}
.article-price-value {
  font-size: 1.08vw;
}
.article-price-btn {
  font-size: 1.14vw;
}
.info-articles-title {
  font-size: 2.28vw;
}
.info-articles-tab {
  font-size: 1.14vw;
  padding: 0.96vw 1.8vw;
}
.info-articles-card-title {
  font-size: 1.14vw;
}
.doc-card-title {
  font-size: 1.14vw;
}
.doc-download-btn {
  font-size: 1.08vw;
}
.contact-info-line,
.contact-info-heading {
  font-size: 1.44vw;
}
.contact-info-link {
  font-size: 1.32vw;
}
.error-404-title,
.success-thank-title {
  font-size: 2.04vw;
}
.error-404-text,
.success-thank-text {
  font-size: 1.02vw;
}
.error-404-btn,
.success-thank-btn {
  font-size: 1.02vw;
  padding: 1.56vw 3.36vw;
}
.cta-consult-title {
  font-size: 2.04vw;
}
.cta-consult-text {
  font-size: 1.14vw;
}
.cta-consult-btn {
  font-size: 1.26vw;
}
.cta-consult-note {
  font-size: 0.96vw;
}

/* Eksik fontlar +20% */
.page-hero-chip {
  font-size: 1.08vw;
}
.page-hero-chip img {
  width: 1.08vw;
  height: 1.08vw;
}
.banner-name-tag .name {
  font-size: 0.936vw;
}
.banner-name-tag .role {
  font-size: 0.864vw;
}
.arrow-icon {
  font-size: 0.6vw;
}
.debts-card h3 {
  font-size: 1.104vw;
}
.review-name {
  font-size: 1.02vw;
}
.review-date {
  font-size: 0.72vw;
}
.review-chip {
  font-size: 1.08vw;
}
.principle-title {
  font-size: 2.16vw;
}
.principle-text {
  font-size: 1.02vw;
}
.principle-subtitle {
  font-size: 1.68vw;
}
.principle-list-item {
  font-size: 1.08vw;
}
.how-we-work-title {
  font-size: 2.16vw;
}
.how-we-work-card-title {
  font-size: 1.32vw;
}
.how-we-work-card-text {
  font-size: 1.02vw;
}
.how-we-work-guarantee-text {
  font-size: 0.984vw;
}
.how-we-work-guarantee-box span {
  font-size: 1.14vw;
}
.how-we-work-guarantee-highlight {
  font-size: 1.44vw !important;
}
.how-we-work-guarantee-note {
  font-size: 0.9vw;
}
.team-title {
  font-size: 2.16vw;
}
.team-text {
  font-size: 1.02vw;
}
.team-stats-num {
  font-size: 1.32vw;
}
.team-stats-label {
  font-size: 1.08vw;
}
.specialist-name {
  font-size: 1.08vw;
}
.specialist-title {
  font-size: 0.9vw;
}
.contact-form input,
.contact-form textarea {
  font-size: 1.02vw;
}
.contact-form button {
  font-size: 1.02vw;
}
.contact-consent {
  font-size: 1.02vw;
}
.contact-tag {
  font-size: 1.02vw;
}
.article-back {
  font-size: 1.2vw;
}
.article-back-arrow {
  font-size: 1.02vw;
}
.article-date {
  font-size: 1.08vw;
}
.info-articles-date {
  font-size: 0.84vw;
}
.page-crumb::after {
  font-size: 1.2vw;
}
.service-card h3 {
  font-size: 1.104vw;
}
.service-tag {
  font-size: 1.08vw;
}
.service-card p {
  font-size: 1.02vw;
}
.services-subtitle {
  font-size: 0.984vw;
}
.debts-subtitle {
  font-size: 0.984vw;
}
.consult-request-title {
  font-size: 2.04vw;
}
.consult-request-desc {
  font-size: 1.32vw;
}
.consult-request-badge {
  font-size: 1.056vw;
}
.consult-request-form input,
.consult-request-form textarea {
  font-size: 1.056vw;
}
.consult-request-form button {
  font-size: 0.984vw;
}
.consult-request-consent {
  font-size: 0.816vw;
}
.branches-title {
  font-size: 2.04vw;
}
.branches-region-title {
  font-size: 1.32vw;
}
.branches-label {
  font-size: 1.14vw;
}
.branch-city {
  font-size: 1.26vw;
}
.branch-phone {
  font-size: 1.2vw;
}
.branch-address {
  font-size: 1.08vw;
}
}
/* ========== 1024px MEDIA - Responsive (fontlar 1440px'ten %20 büyük) ========== */
@media (max-width: 1024px) {
.quiz-float { display: none;}
/* HEADER */
.header-banner { padding: 1.35vw 20px; }
.header-section { gap: 1.35vw; }
.location-group { gap: 0.84vw; }
.icon-small { width: 2.03vw; margin-top: 0.17vw; }
.city-bottom-row { gap: 0.68vw; margin-top: 0.17vw; }
.city-name { font-size: 1.66vw; }
.city-label { font-size: 1.22vw; }
.arrow-icon { font-size: 0.72vw; }
.phone-number { font-size: 1.73vw; }
.phone-label { font-size: 1.15vw; margin-top: 0.34vw; }
.header-actions { gap: 2.53vw; }
.social-wrapper { gap: 1.35vw; }
.callback-btn { padding: 1.01vw 2.03vw; border-radius: 3.38vw; font-size: 1.3vw; gap: 0.84vw; height: 4.22vw; }
.btn-icon { width: 1.44vw; }
.social-icon svg { width: 4.22vw; height: 4.22vw; }
.city-list { padding: 0.84vw 0; border-radius: 0.68vw; min-width: 16.9vw; }
.city-list li { padding: 0.84vw 1.69vw; font-size: 1.22vw; }
.main-logo { width: 8.11vw; }
.main-title {font-size: 0;}
.sub-title {font-size: 0;}

/* NAV */
.main-nav { padding: 1.35vw 20px; }
.nav-main-area {gap: 2.07vw;}
.services-btn { padding: 1.35vw 2.7vw; border-radius: 1.35vw; font-size: 1.37vw; gap: 1.18vw; }
.nav-links {gap: 2.38vw;}
.nav-links li a { font-size: 1.3vw; }
.mega-menu { left: 20px; right: 20px; border-radius: 0 0 1.69vw 1.69vw; box-shadow: 0 2.53vw 6.76vw rgba(0,0,0,0.1); padding: 4.22vw; }
.mega-menu-header { gap: 1.69vw; margin-bottom: 4.22vw; padding-bottom: 2.53vw; }
.cat-tab { padding: 1.35vw 2.53vw; border-radius: 1.35vw; font-size: 1.08vw; }
.mega-grid { gap: 5.07vw; }
.mega-col h3 { font-size: 1.08vw; margin-bottom: 2.03vw; }
.link-list { gap: 1.01vw; }
.link-list a {font-size: 1.22vw;padding: 0.51vw 0;gap: 2vw;}
.link-list a i { font-size: 1.01vw; }
.consultation-btn { padding: 1.52vw 3.04vw; border-radius: 8.45vw; font-size: 1.22vw; }
.consultation-btn:hover { transform: translateY(-0.2vw); }
.mt-2 { margin-top: 3.38vw; }

/* BANNER */
.banner-speech {left: -3%;top: 46%;width: 19vw;border-radius: 1.13vw;padding: 1.06vw 1.27vw;font-size: 1.12vw;box-shadow: 0 0.97vw 2.35vw rgba(0,0,0,0.08);}
.banner-container {margin-top: 1.69vw;padding: 0 20px;}
.banner-content { gap: 3.28vw; }
.banner-right { gap: 2.37vw; }
.banner-tittle { font-size: 3.17vw; }
.banner-buttons { gap: 1.77vw; }
.banner-btn { padding: 1.35vw 2.53vw; font-size: 1.32vw; height: 4.9vw; }
.banner-btn1 { box-shadow: 0 0.95vw 2.35vw rgba(0,229,127,0.25); }
.banner-btn2 { box-shadow: 0 0.95vw 2.35vw rgba(43,93,159,0.25); }
.banner-list { gap: 1.52vw; }
.banner-item { border-radius: 1.69vw; padding: 1.52vw 2.7vw; gap: 1.52vw; box-shadow: 0 0.71vw 1.88vw rgba(0,0,0,0.05); border: 0.1vw solid #eef1f6; }
.item-icon { width: 1.86vw; height: 1.86vw; }
.item-text { font-size: 1.37vw; }
.banner-hero { min-height: 40.5vw; }
.banner-icon { width: 8.79vw; height: 8.79vw; }
.banner-icon-1 { right: 37.84vw; top: 7.77vw; }
.banner-icon-2 { right: 9.8vw; top: 8.28vw; }
.banner-icon-3 { right: 1.35vw; top: 23.98vw; }
.banner-icon-4 { right: -1.01vw; }
.banner-name-tag { right: 8.79vw; bottom: 2.37vw; padding: 1.1vw 1.35vw; border-radius: 1.1vw; box-shadow: 0 0.95vw 2.35vw rgba(0,0,0,0.08); gap: 0.42vw; max-width: 16.9vw; }
.banner-name-tag .name { font-size: 1.12vw; }
.banner-name-tag .role { font-size: 1.04vw; }
.banner-stats { gap: 2.03vw; }
.stat-card { border-radius: 1.52vw; padding: 2.03vw 1.77vw; box-shadow: 0 0.71vw 1.88vw rgba(0,0,0,0.05); }
.stat-number { font-size: 1.84vw; }
.stat-label { font-size: 1.01vw; margin-top: 0.68vw; }

/* SECTIONS - PADDING */
.stress-section { margin-top: 10.14vw; padding: 0 20px; }
.stress-container { gap: 4.06vw; border-radius: 1.27vw; padding: 3.38vw; }
.stress-left { gap: 3.38vw; }
.stress-title { font-size: 2.52vw; }
.stress-grid { gap: 1.69vw; }
.stress-card { border-radius: 1.35vw; padding: 1.69vw 1.86vw; font-size: 1.22vw; box-shadow: 0 0.71vw 1.88vw rgba(0,0,0,0.05); border: 0.1vw solid #eef1f6; min-height: 8.45vw; }
.stress-card--primary { box-shadow: 0 0.95vw 2.35vw rgba(43,93,159,0.25); font-size: 1.73vw; }
.stress-right { gap: 3.38vw; }
.stress-note { font-size: 1.73vw; max-width: 40.55vw; }
.stress-solution { border-radius: 1.69vw; padding: 5.24vw 5.41vw; font-size: 1.73vw; box-shadow: 0 1.17vw 2.82vw rgba(43,93,159,0.25); min-height: 25vw; }

.procedure-section { padding: 4.06vw 20px 0; margin-top: 10.14vw; }
.procedure-container { gap: 4.39vw; }
.procedure-left { gap: 2.37vw; }
.procedure-title { font-size: 2.3vw; max-width: 60.8vw; }
.procedure-image { width: 40.55vw; margin-left: 2.82vw; }
.procedure-right { gap: 2.37vw; }
.procedure-list { gap: 1.18vw; }
.procedure-item { border: 0.14vw solid #2855A3; border-radius: 1.35vw; padding: 1.44vw 1.69vw; gap: 1.35vw; }
.procedure-item img { width: 1.69vw; height: 1.69vw; margin-top: 0.34vw; }
.procedure-item span { font-size: 1.3vw; }
.procedure-cta { gap: 1.69vw; margin-top: 1.69vw; }
.procedure-cta-title { font-size: 1.76vw; }
.procedure-btn { padding: 1.83vw 3.04vw; font-size: 1.22vw; box-shadow: 0 0.95vw 2.35vw rgba(0,229,127,0.25); }

.services-section { margin-top: 10.14vw; padding: 0 20px; }
.services-container { gap: 3.38vw; }
.services-heading { gap: 1.01vw; max-width: 70.96vw; }
.services-title { font-size: 2.45vw; }
.services-subtitle { font-size: 1.18vw; }
.service-card { border-radius: 1.69vw; padding: 2.53vw 2.37vw; min-height: 27.88vw; gap: 1.69vw; }
.service-card h3 { font-size: 1.32vw; }
.service-tag { border-radius: 1.35vw; padding: 1.35vw 1.52vw; font-size: 1.08vw; }
.service-card p { font-size: 1.12vw; }
.services-section .owl-stage-outer { padding: 1.01vw 0; }
.services-section .owl-nav { right: 20px; gap: 1.18vw; top: -8.11vw; }
.services-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.services-section .owl-nav button svg { width: 1.86vw; height: 1.86vw; }

.debts-section { padding: 6.76vw 20px; margin-top: 10.14vw; }
.debts-container { gap: 3.04vw; }
.debts-heading { gap: 1.01vw; max-width: 64.2vw; }
.debts-title { font-size: 2.45vw; }
.debts-subtitle { font-size: 1.12vw; }
.debts-card { border-radius: 1.69vw; padding: 4.06vw 2.2vw; height: 33.46vw; gap: 1.52vw; border: 0.14vw solid transparent; }
.debts-card:hover { border: 0.14vw solid #2855A3; }
.debts-card h3 { font-size: 1.32vw; margin-bottom: 0.84vw; }
.debt-chip { border-radius: 1.18vw; padding: 1.18vw 1.52vw; font-size: 1.3vw; box-shadow: 0 0.47vw 1.18vw rgba(0,0,0,0.04); }
.debts-note { font-size: 1.14vw; }
.debts-section .owl-stage-outer { padding: 1.01vw 0; }
.debts-section .owl-nav { right: 20px; gap: 1.18vw; top: -8.11vw; }
.debts-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.debts-section .owl-nav button svg { width: 1.86vw; height: 1.86vw; }

.life-section { margin-top: 10.14vw; padding: 0 20px; }
.life-container { gap: 4.39vw; }
.life-left { gap: 2.37vw; }
.life-title { font-size: 2.45vw; }
.life-right { gap: 2.7vw; }
.life-group { gap: 1.35vw; }
.life-group-title { font-size: 1.66vw; }
.life-row { gap: 1.35vw; }
.life-pill { border-radius: 1.35vw; padding: 1.69vw 2.03vw; font-size: 1.3vw; }

.reviews-section { margin-top: 10.14vw; padding: 0 20px; }
.reviews-container { gap: 3.04vw; }
.reviews-heading { gap: 0.59vw; max-width: 57.45vw; }
.reviews-title { font-size: 2.45vw; }
.reviews-subtitle { font-size: 1.22vw; }
.reviews-item {/* padding: 0 0.93vw; */}
.review-card { border-radius: 1.69vw; padding: 1.61vw; box-shadow: 0 0.71vw 1.88vw rgba(0,0,0,0.05); gap: 1.18vw; }
.review-media { border-radius: 1.35vw; }
.review-play { width: 7.1vw !important; height: 7.1vw; padding: 0.93vw; box-shadow: 0 0.68vw 1.69vw rgba(0,0,0,0.18); }
.review-body { gap: 1.01vw; }
.review-top { gap: 1.35vw; }
.review-name { font-size: 1.22vw; }
.review-date { font-size: 0.86vw; gap: 0.51vw; }
.review-bottom { gap: 1.01vw; }
.review-chip { border-radius: 1.01vw; padding: 1.69vw 1.69vw; font-size: 1.3vw; gap: 0.51vw; box-shadow: 0 0.47vw 1.18vw rgba(0,0,0,0.04); border: 0.1vw solid #eef1f6; }
.reviews-btn { padding: 1.52vw 3.04vw; font-size: 1.22vw; box-shadow: 0 0.95vw 2.35vw rgba(0,229,127,0.25); }
.reviews-section .owl-stage-outer { padding: 1.01vw 0; }
.reviews-section .owl-nav { right: 20px; gap: 1.18vw; top: -6.59vw; }
.reviews-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.reviews-section .owl-nav button svg { width: 1.86vw; height: 1.86vw; }

.pricing-container { gap: 2.7vw; margin-top: 10.14vw; }
.pricing-section { padding: 0 20px; }
.pricing-heading { gap: 1.01vw; max-width: 70.96vw; }
.pricing-title { font-size: 2.45vw; }
.pricing-subtitle { font-size: 1.18vw; }
.pricing-tabs { gap: 1.35vw; }
.pricing-tab { padding: 1.41vw 4.56vw; font-size: 1.22vw; }
.pricing-grid { gap: 1.69vw; }
.pricing-col { gap: 1.01vw; }
.pricing-item { border-radius: 1.18vw; padding: 1.18vw 1.52vw; gap: 1.69vw; box-shadow: 0 0.47vw 1.18vw rgba(0,0,0,0.04); border: 0.1vw solid #eef1f6; font-size: 1.3vw; }
.pricing-price { font-size: 1.3vw; padding: 0.59vw 1.01vw; border-radius: 0.84vw; }
.pricing-note { border-radius: 1.18vw; padding: 3.04vw 2.53vw; font-size: 1.3vw; }

.calc-section { margin-top: 10.14vw; padding: 0 20px; }
.calc-box { gap: 4.06vw; border-radius: 2.03vw; padding: 3.04vw 3.38vw; }
.calc-left { gap: 1.35vw; }
.calc-title { font-size: 2.45vw; }
.calc-text { font-size: 1.22vw; }
.calc-subtext { font-size: 1.3vw; }
.calc-note { font-size: 1.3vw; margin-top: 1.01vw; }
.calc-card { border-radius: 1.35vw; padding: 2.2vw 2.53vw 1.86vw; gap: 1.86vw; }
.calc-card-questions { border-radius: 1.35vw; padding: 2.53vw 2.53vw 5.07vw 2.53vw; gap: 3.55vw; }
.calc-step-title { font-size: 1.58vw; }
.calc-slides { gap: 1.69vw; min-height: 16.9vw; }
.calc-slide { gap: 3.38vw; }
.calc-question { gap: 1.69vw; }
.calc-question-title { font-size: 1.3vw; }
.calc-options { gap: 1.18vw 2.37vw; }
.calc-option { gap: 0.84vw; font-size: 1.22vw; }
.calc-check { width: 2.11vw; height: 2.11vw; border: 0.24vw solid #a8b8d8; }
.calc-option input:checked + .calc-check::after { width: 1.35vw; height: 1.35vw; }
.calc-controls { gap: 3.38vw; margin-top: 0.51vw; }
.calc-btn { font-size: 1.22vw; gap: 1.1vw; }
.calc-btn--primary { padding: 0.59vw 2.03vw; }
.calc-progress { font-size: 1.3vw; }
.calc-arrow { font-size: 2.53vw; }
.calc-form-inputs { gap: 1.18vw; margin-bottom: 0.84vw; }
.calc-input { padding: 1.18vw 1.52vw; border: 0.14vw solid #d0d8e8; border-radius: 0.68vw; font-size: 1.22vw; }

.steps-section { padding: 6.76vw 0 6.76vw 20px; margin-top: 10.14vw; }
.steps-container { gap: 2.7vw; }
.steps-title { font-size: 2.45vw; }
.step-card { border-radius: 1.52vw; padding: 2.53vw 2.53vw 0 0; min-height: 30.41vw; gap: 1.52vw; border: 0.14vw solid #dfe7f5; }
.step-label { font-size: 1.22vw; padding: 0.59vw 1.01vw; box-shadow: 0 0.34vw 1.01vw rgba(0,0,0,0.06); margin-left: 1.69vw; }
.step-body { gap: 1.52vw; }
.step-media { height: 17.24vw; }
.step-content { gap: 0.59vw; }
.step-content h3 { font-size: 1.58vw; }
.step-content p { font-size: 1.3vw; }
.steps-section .owl-stage-outer { padding: 1.01vw 0; }
.steps-section .owl-nav { right: 20px; gap: 1.18vw; top: -8.11vw; }
.steps-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.steps-section .owl-nav button svg { width: 1.86vw; height: 1.86vw; }

.costs-section { margin-top: 10.14vw; padding: 0 20px; }
.costs-container { gap: 3.72vw; }
.costs-left { gap: 1.18vw; }
.costs-title { font-size: 2.45vw; }
.costs-subtitle { font-size: 1.3vw; }
.costs-note { border-radius: 1.18vw; padding: 1.35vw 1.69vw; font-size: 1.44vw; }
.costs-grid { gap: 1.69vw; }
.cost-card { border-radius: 1.52vw; padding: 1.69vw 1.69vw 1.86vw; box-shadow: 0 0.47vw 1.18vw rgba(0,0,0,0.04); gap: 1.01vw; }
.cost-title { font-size: 1.58vw; }
.cost-tag { font-size: 1.3vw; padding: 0.51vw 0.93vw; border-radius: 0.76vw; }

.app-section { margin-top: 15.21vw; padding: 0 20px; }
.app-card { border-radius: 1.69vw; padding: 4.39vw 0 4.39vw 4.39vw; }
.app-left { gap: 1.86vw; }
.app-title { font-size: 2.09vw; }
.app-points { gap: 1.35vw; }
.app-point { gap: 1.35vw; padding: 2.7vw 1.69vw; border-radius: 1.18vw; font-size: 1.22vw; }
.app-point img { width: 3.89vw; height: 3.89vw; }
.app-point--outline { border: 0.14vw solid #6bbcff; }
.app-phone {filter: drop-shadow(0 1.01vw 2.37vw rgba(0,0,0,0.25));right: -3.76vw;margin-top: -3.38vw;}

.contact-section { margin-top: 10.14vw; padding: 0 20px; }
.contact-card {border-radius: 1.69vw;padding: 1.69vw 3.38vw 0 3.38vw;gap: 1.69vw;}
.contact-left { gap: 1.18vw; }
.contact-text { gap: 1.01vw; width: 25.35vw; margin-top: 4.22vw; }
.contact-title { font-size: 2.45vw; }
.contact-subtitle { font-size: 1.22vw; }
.contact-person { gap: 1.69vw; margin-top: 0.68vw; margin-left: -5.07vw; }
.contact-tag { border-radius: 1.18vw; padding: 1.1vw 1.69vw; box-shadow: 0 0.47vw 1.18vw rgba(0,0,0,0.08); font-size: 1.22vw; }
.contact-tag-row { gap: 0.68vw; }
.contact-name { font-size: 13px; }
.contact-role { font-size: 13px; }
.contact-form { gap: 1.69vw; }
.contact-form input, .contact-form textarea { border-radius: 1.01vw; padding: 1.69vw; font-size: 1.22vw; }
.contact-form textarea { min-height: 9.46vw; }
.contact-form button { padding: 1.35vw 2.7vw; font-size: 1.22vw; box-shadow: 0 0.95vw 2.35vw rgba(0,229,127,0.25); }
.contact-consent { gap: 0.68vw; font-size: 1.08vw; }
.contact-consent input { width: 2.03vw; height: 2.03vw; }
.tv-section { margin-top: 10.14vw; padding: 0 20px; }
.tv-container { gap: 2.37vw; }
.tv-title { font-size: 2.45vw; }
.tv-content { gap: 1.35vw; }
.tv-media-row { gap: 3.72vw; }
.tv-main, .tv-mini { border-radius: 1.35vw; }
.tv-play { width: 5.07vw; height: 5.07vw; }
.tv-caption { gap: 0.51vw; }
.tv-caption-title { font-size: 1.22vw; }
.tv-caption-subtitle { font-size: 1.08vw; }
.tv-right { gap: 1.52vw; }
.tv-mini img { border-radius: 1.35vw; }

.faq-section { margin-top: 10.14vw; padding: 0 20px; }
.faq-container { gap: 2.37vw; }
.faq-title { font-size: 2.45vw; }
.faq-list { gap: 1.18vw; }
.faq-item { border: 0.14vw solid #dfe7f5; border-radius: 1.35vw; }
.faq-question { padding: 1.52vw 2.03vw; font-size: 1.22vw; }
.faq-icon { font-size: 2.53vw; }
.faq-answer { padding: 0 2.03vw 1.69vw; font-size: 1.3vw; }

.info-section { margin-top: 10.14vw; padding: 0 20px; }
.info-container { gap: 3.38vw; }
.info-header { gap: 3.38vw; }
.info-title { font-size: 2.45vw; }
.info-tabs { gap: 1.01vw; }
.info-tab { padding: 1.1vw 1.52vw; font-size: 1.22vw; }
.info-card {border-radius: 1.52vw;padding: 1.69vw 1.69vw 1.86vw;gap: 1.01vw;min-height: 48.06vw;}
.info-card img { border-radius: 1.52vw; }
.info-tag { padding: 0.42vw 1.01vw; font-size: 1.22vw; }
.info-text {font-size: 1.42vw;}
.info-date {font-size: 1vw;}
.info-section .owl-nav { right: 20px; top: -8.11vw; gap: 1.18vw; }
.info-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.info-section .owl-nav button svg { width: 1.86vw; height: 1.86vw; }

.popup-modal { width: 43.92vw; border-radius: 1.69vw; padding: 6.76vw 3.38vw 3.38vw 3.38vw; }
.popup-close { top: 1.35vw; right: 1.35vw; width: 3.72vw; height: 3.72vw; border-radius: 1.01vw; font-size: 1.73vw; }
.popup-title { font-size: 2.02vw; }
.popup-subtitle { margin-top: 1.01vw; font-size: 1.22vw; }
.popup-form { margin-top: 2.03vw; gap: 1.18vw; }
.popup-form input { border-radius: 1.44vw; border: 0.14vw solid #e6ebf5; padding: 1.35vw 2.03vw; font-size: 1.01vw; }
.popup-form button { padding: 1.52vw 3.04vw; font-size: 1.22vw; box-shadow: 0 0.95vw 2.35vw rgba(0,229,127,0.25); }
.popup-consent { gap: 0.68vw; font-size: 0.72vw; }
.popup-consent input { width: 2.03vw; height: 2.03vw; }
.popup-consent input:checked::after { width: 0.93vw; height: 0.93vw; }

/* FOOTER */
.site-footer { padding: 40px 20px 24px; margin-top: 10.14vw; }
.footer-container { gap: 32px; }
.footer-links { gap: 24px; width: 100%; }
.footer-links-col { gap: 10px; }
.footer-logo { gap: 12px; }
.footer-logo img { width: 56px; }
.footer-logo-title { font-size: 18px; }
.footer-logo-subtitle { font-size: 14px; }
.footer-phone { font-size: 22px; }
.footer-branch { font-size: 14px; }
.footer-phone-note { font-size: 13px; }
.footer-socials { gap: 12px; }
.footer-social img { width: 24px; height: 24px; }
.footer-title { font-size: 14px; }
.footer-links-col a { font-size: 14px; }
.footer-text { font-size: 13px; }
.footer-mt { margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; font-size: 12px; }

/* PAGE-SPECIFIC */
.page-breadcrumbs { padding: 1.44vw 20px; font-size: 1.01vw; }
.page-hero { padding: 0 20px; }
.situation-section { padding: 0 20px; margin-top: 10.14vw; }
.situation-container { border-radius: 1.52vw; padding: 4.22vw 4.73vw 4.73vw; gap: 3.38vw; }
.situation-cards { gap: 2.53vw; }
.situation-card { border-radius: 1.35vw; padding: 2.53vw 2.37vw; gap: 1.35vw; min-height: 16.9vw; }
.situation-banner { border-radius: 1.35vw; padding: 3.04vw 3.38vw; gap: 1.01vw; }
.debts-writeoff-section { padding: 0 20px; margin-top: 10.14vw; }
.debts-writeoff-container { gap: 3.38vw; }
.debts-writeoff-left { gap: 2.53vw; }
.debts-writeoff-list { gap: 1.69vw; }
.debts-writeoff-item { gap: 1.35vw; padding: 1.69vw 2.03vw; border-radius: 1.01vw; }
.debts-writeoff-check { width: 2.03vw; height: 2.03vw; }
.debts-writeoff-box { border-radius: 1.52vw; padding: 3.38vw 3.04vw; gap: 1.69vw; }
.bankruptcy-process-section { padding: 0 20px; margin-top: 10.14vw; }
.bankruptcy-process-container { gap: 3.38vw; }
.bankruptcy-process-heading { gap: 1.01vw; max-width: 55vw; }
.bankruptcy-process-title { font-size: 2.45vw; }
.bankruptcy-process-subtitle { font-size: 1.3vw; }
.bankruptcy-process-card { border-radius: 1.52vw; padding: 3.04vw; gap: 1.69vw; box-shadow: 0 0.47vw 1.18vw rgba(0,0,0,0.06); border: 0.1vw solid #eef1f6; }
.bankruptcy-process-num { top: 2.03vw; left: 2.53vw; font-size: 1.44vw; padding: 1.69vw 2.03vw; }
.bankruptcy-process-card-title { font-size: 1.44vw; padding-top: 4.73vw; }
.bankruptcy-process-card-text { font-size: 1.27vw; }
.bankruptcy-process-banner { border-radius: 1.52vw; padding: 3.04vw 3.38vw; gap: 1.69vw; }
.bankruptcy-process-banner-title { font-size: 1.66vw; }
.bankruptcy-process-banner-text { font-size: 1.3vw; padding: 1.69vw 2.03vw; border-radius: 1.01vw; }
.cost-page-title { padding: 0 20px; }
.cost-info-section { padding: 0 20px; }
.article-page { padding: 0 20px; }
.info-articles-section { padding: 4.22vw 20px 5.91vw; }
.docs-section { padding: 4.22vw 20px 5.91vw; }
.contact-info-section {padding: 0 20px;margin-top: 20px;}
.branches-section { padding: 0 20px; }
.about-hero-section { padding: 0 20px; }
.principle-section { padding: 0 20px; }
.how-we-work-section { padding: 0 20px; }
.team-section { padding: 0 20px; }
.specialists-section { padding: 0 20px; }
.changes-after-section { padding: 5.07vw 20px 6.76vw; margin-top: 10.14vw; }
.changes-after-container { gap: 3.38vw; }
.changes-after-cards { gap: 2.03vw; }
.changes-after-card { border-radius: 1.52vw; padding: 3.38vw 2.37vw; gap: 1.69vw; }
.changes-after-card-title { font-size: 1.44vw; }
.changes-after-card-text { font-size: 1.3vw; padding: 1.69vw 2.03vw; border-radius: 1.01vw; }
.trust-section { padding: 0 20px; margin-top: 10.14vw; }
.trust-container { gap: 4.06vw; }
.trust-left { gap: 2.53vw; }
.trust-list { gap: 1.69vw; }
.trust-item { border: 0.1vw solid #d1dae9; border-radius: 1.01vw; padding: 1.69vw 2.03vw; gap: 1.35vw; }
.trust-check { width: 2.03vw; height: 2.03vw; }
.trust-text { font-size: 1.22vw; }
.trust-right { width: 32%; }
.trust-guarantee-box { border-radius: 1.52vw; padding: 3.38vw 3.04vw; gap: 2.03vw; }
.trust-guarantee-title { font-size: 1.66vw; }
.trust-guarantee-text { font-size: 1.3vw; }
.trust-guarantee-badge { border-radius: 1.18vw; padding: 2.03vw 2.53vw; font-size: 1.37vw; }
.trust-guarantee-note { font-size: 1.08vw; }
.cost-payment-section { padding: 5.07vw 20px 6.76vw; }
.cost-payment-container { gap: 4.06vw; }
.cost-payment-card { padding: 4.22vw 4.22vw; gap: 4.06vw; border-radius: 1.52vw; margin-top: 10.14vw; }
.cost-payment-left { gap: 2.53vw; }
.cost-payment-subtitle { font-size: 1.69vw; }
.cost-payment-list { gap: 1.69vw; }
.cost-payment-item { border: 0.1vw solid #d1dae9; border-radius: 1.01vw; padding: 1.69vw 2.03vw; gap: 1.35vw; }
.cost-payment-check { width: 2.03vw; height: 2.03vw; }
.cost-payment-buttons { gap: 1.69vw; }
.cost-payment-btn { padding: 1.52vw 2.7vw; font-size: 1.44vw; }
.cost-payment-box { border-radius: 1.52vw; padding: 3.38vw 3.04vw; gap: 1.69vw; }
.bankruptcy-process-section .owl-stage-outer { padding: 1.01vw 0; }
.bankruptcy-process-section .owl-nav { right: 20px; top: -8.11vw; gap: 1.18vw; }
.bankruptcy-process-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.bankruptcy-process-section .owl-nav button svg { width: 1.86vw; height: 1.86vw; }
.how-we-work-section .owl-nav { right: 20px; top: -8.11vw; gap: 1.18vw; }
.how-we-work-section .owl-nav button { width: 4.06vw; height: 4.06vw; }
.how-we-work-section .owl-nav button.owl-prev svg,
.how-we-work-section .owl-nav button.owl-next svg { width: 1.86vw; height: 1.86vw; }
.how-we-work-carousel.owl-carousel .owl-stage-outer { padding: 0.51vw 0; }
.how-we-work-carousel .owl-item {/* padding: 0 0.84vw; */}
.how-we-work-card { border-radius: 1.35vw; padding: 3.04vw; min-height: 23.65vw; }
.how-we-work-num { width: 3.04vw; height: 3.04vw; font-size: 1.61vw; margin-bottom: 2.03vw; }
.how-we-work-card--guarantee { min-height: 23.65vw; }
.how-we-work-guarantee-box { border-radius: 0.84vw; padding: 1.69vw 2.03vw; gap: 0.51vw; margin-bottom: 1.69vw; }
.how-we-work-banner { border-radius: 1.01vw; padding: 2.03vw 3.04vw; font-size: 1.86vw; }
.cta-consult-section { padding: 0 20px; }
.consult-request-section { padding: 0 20px; }
.error-404-section { padding: 0 20px; }
.success-thank-section { padding: 0 20px; }

/* PAGE-SPECIFIC FONTS (1440px × 1.2) */
.page-hero-title { font-size: 2.59vw; }
.page-hero-text { font-size: 1.22vw; }
.page-hero-btn { font-size: 1.22vw; padding: 1.35vw 2.7vw; }
.page-hero-note { font-size: 1.3vw; }
.page-hero-chip { font-size: 1.3vw; }
.page-hero-chip img { width: 1.3vw; height: 1.3vw; }
.page-hero-badge-title { font-size: 1.62vw; }
.page-hero-badge-text { font-size: 1.22vw; }
.situation-title { font-size: 2.52vw; }
.situation-subtitle { font-size: 1.22vw; }
.situation-card-title { font-size: 1.44vw; }
.situation-card-text { font-size: 1.22vw; }
.situation-banner-title { font-size: 1.66vw; }
.situation-banner-text { font-size: 1.22vw; }
.debts-writeoff-title { font-size: 2.3vw; }
.debts-writeoff-intro { font-size: 1.22vw; }
.debts-writeoff-list-title { font-size: 1.58vw; }
.debts-writeoff-text { font-size: 1.22vw; }
.debts-writeoff-box-title { font-size: 1.58vw; }
.debts-writeoff-box-text { font-size: 1.3vw; }
.debts-writeoff-box-warning { font-size: 1.22vw; }
.changes-after-title { font-size: 2.45vw; }
.changes-after-subtitle { font-size: 1.22vw; }
.changes-after-card-title { font-size: 1.44vw; }
.changes-after-card-text { font-size: 1.3vw; }
.trust-section .trust-title, .cost-payment-title { font-size: 2.3vw; }
.cost-payment-desc { font-size: 1.22vw; }
.cost-payment-subtitle { font-size: 1.44vw; }
.cost-payment-text { font-size: 1.3vw; }
.cost-payment-box-title { font-size: 1.58vw; }
.cost-payment-box-text { font-size: 1.22vw; }
.about-hero-title { font-size: 2.88vw; }
.about-hero-text { font-size: 1.22vw; }
.about-hero-stat-num { font-size: 2.88vw; }
.about-hero-stat-label { font-size: 1.04vw; }
.about-hero-chip { font-size: 1.3vw; padding: 1.58vw 2vw; gap: 0.72vw; }
.about-hero-chip img { width: 1.3vw; height: 1.3vw; }
.info-articles-tag { font-size: 1.08vw; padding: 0.43vw 1vw; }
.article-tags { gap: 0.86vw; margin-bottom: 2.16vw; }
.article-tag {padding: 1vw 1.3vw;}
.cost-page-title-line { font-size: 2.88vw; }
.cost-info-item { font-size: 2.45vw; }
.article-title { font-size: 2.3vw; }
.article-subtitle { font-size: 1.73vw; }
.article-body p, .article-info-box p { font-size: 1.51vw; }
.article-tag { font-size: 1.15vw; }
.article-back { font-size: 1.44vw; }
.article-back-arrow { font-size: 1.22vw; }
.article-date { font-size: 1.3vw; }
.article-price-title { font-size: 1.58vw; }
.article-price-service { font-size: 1.44vw; }
.article-price-value { font-size: 1.3vw; }
.article-price-btn { font-size: 1.37vw; }
.info-articles-title { font-size: 2.74vw; }
.info-articles-tab { font-size: 1.37vw; padding: 1.35vw 2.53vw; }
.info-articles-card-title { font-size: 1.37vw; }
.info-articles-date { font-size: 1.01vw; }
.doc-card-title { font-size: 1.37vw; }
.doc-download-btn { font-size: 1.3vw; }
.contact-info-line, .contact-info-heading { font-size: 1.73vw; }
.contact-info-link { font-size: 1.58vw; }
.error-404-title, .success-thank-title { font-size: 2.45vw; }
.error-404-text, .success-thank-text { font-size: 1.22vw; }
.error-404-btn, .success-thank-btn { font-size: 1.22vw; padding: 2.2vw 4.73vw; }
.cta-consult-title { font-size: 2.45vw; }
.cta-consult-text { font-size: 1.37vw; }
.cta-consult-btn { font-size: 1.51vw; }
.cta-consult-note { font-size: 1.15vw; }
.principle-title { font-size: 2.59vw; }
.principle-text { font-size: 1.22vw; }
.principle-subtitle { font-size: 2.02vw; }
.principle-list-item { font-size: 1.3vw; }
.how-we-work-title { font-size: 2.59vw; }
.how-we-work-card-title { font-size: 1.58vw; }
.how-we-work-card-text { font-size: 1.22vw; }
.how-we-work-guarantee-text { font-size: 1.18vw; }
.how-we-work-guarantee-box span { font-size: 1.37vw; }
.how-we-work-guarantee-highlight { font-size: 1.73vw !important; }
.how-we-work-guarantee-note { font-size: 1.08vw; }
.team-title { font-size: 2.59vw; }
.team-text { font-size: 1.22vw; }
.team-stats-num { font-size: 1.58vw; }
.team-stats-label { font-size: 1.3vw; }
.specialist-name { font-size: 1.3vw; }
.specialist-title { font-size: 1.08vw; }
.consult-request-title { font-size: 2.45vw; }
.consult-request-desc { font-size: 1.58vw; }
.consult-request-badge { font-size: 1.27vw; }
.consult-request-form input, .consult-request-form textarea { font-size: 1.27vw; }
.consult-request-form button { font-size: 1.18vw; }
.consult-request-consent { font-size: 0.98vw; }
.branches-title { font-size: 2.45vw; }
.branches-region-title { font-size: 1.58vw; }
.branches-label { font-size: 1.37vw; }
.branch-city { font-size: 1.51vw; }
.branch-phone { font-size: 1.44vw; }
.branch-address { font-size: 1.3vw; }
.page-crumb::after { font-size: 1.44vw; }
.article-container {
  max-width: 80%;
  margin: 0 auto;
}

.team-right {
  /* flex: 1; */
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  width: 50%;
  flex-shrink: 0;
}
.success-thank-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.error-404-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 1vw; */
  max-width: 100%;
}

}

/* ========== MOBILE HEADER & MENU - Hidden by default ========== */
.mobile-header { display: none; }
.mobile-menu-overlay { display: none; }

/* ========== 768px MEDIA - Mobile ========== */
@media (max-width: 768px) {

/* Fixed header için içeriği aşağı it */
body {/* padding-top: 120px; */}

/* Hide desktop header & nav */
.header-banner { display: none; }
.main-nav { display: none; }

/* Mobile Header Bar - sabit, sayfa ile kaymasın */
.mobile-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}

/* Top row: logo + hamburger (blue bg) */
.mobile-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgb(43, 87, 154);
}
.mobile-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mobile-header-logo img {
  height: 54px;
  width: auto;
}
.mobile-hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: #F6F6F6;
  border: none;
  border-radius: 10px;
  padding: 8px;
}
.mobile-hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: #2855A3;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.mobile-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Bottom row: callback btn + socials (white bg) */
.mobile-header-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #fff;
  border-bottom: 1px solid #eef1f6;
  gap: 30px;
}
.mobile-callback-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid #dce7f3;
  border-radius: 20px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  font-weight: 500;
}
.mobile-callback-btn img {
  width: 16px;
  height: 16px;
}
.mobile-social-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-social-icon svg {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.open .mobile-menu {
  transform: translateX(0);
}

/* Mobile Menu Head */
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #eef1f6;
  background: rgb(43, 87, 154);
}
.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mobile-menu-logo img {
  height: 53px;
  width: auto;
}
.mobile-menu-title {
  font-family: Geologica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.mobile-menu-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  display: block;
}
.mobile-menu-close {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* Mobile Menu Body */
.mobile-menu-body {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}

/* Mobile Menu Links */
.mobile-menu-link {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f2f5;
  font-weight: 500;
}
.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: #f4f8ff;
  color: #2855A3;
}

/* Dropdown - Услуги */
.mobile-menu-dropdown {
  border-bottom: 1px solid #f0f2f5;
}
.mobile-menu-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #2855A3;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-menu-dropdown-toggle i {
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #2855A3;
}
.mobile-menu-dropdown-toggle.active i {
  transform: rotate(180deg);
}
.mobile-menu-dropdown-content {
  display: none;
  padding: 0 0 8px;
}
.mobile-menu-dropdown-content.open {
  display: block;
}

/* Category Sub-dropdown */
.mobile-menu-category {
  border-top: 1px solid #f5f6f8;
}
.mobile-menu-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px 12px 32px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #f9fbff;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-menu-cat-toggle i {
  font-size: 13px;
  transition: transform 0.3s ease;
  color: #999;
}
.mobile-menu-cat-toggle.active i {
  transform: rotate(180deg);
}
.mobile-menu-cat-content {
  display: none;
  padding: 4px 0 8px;
}
.mobile-menu-cat-content.open {
  display: block;
}
.mobile-menu-cat-content strong {
  display: block;
  padding: 10px 20px 4px 44px;
  font-size: 11px;
  text-transform: uppercase;
  color: #2855A3;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.mobile-menu-cat-content a {
  display: block;
  padding: 8px 20px 8px 44px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}
.mobile-menu-cat-content a:active,
.mobile-menu-cat-content a:hover {
  color: #2855A3;
  background: #f4f8ff;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid #eef1f6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-phone {
  font-size: 17px;
  font-weight: 700;
  color: #2855A3;
  text-decoration: none;
  margin-top: 8px;
}
.mobile-menu-phone-label {
  font-size: 12px;
  color: #888;
}
.mobile-menu-cta {
  margin-top: 12px;
  padding: 15px 26px;
  background: linear-gradient(135deg, #00e57f, #00c96d);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,229,127,0.3);
}
.mobile-menu-cta:active {
  transform: scale(0.97);
}

/* BANNER 768px - Dikey layout (görsele uygun) */
.banner-container {
  margin-top: 30px;
  padding: 0 20px 24px;
}
.banner-content {
  display: grid;
  grid-template-areas:
    "title"
    "image"
    "list"
    "buttons"
    "stats";
  gap: 20px;
}
.banner-top {
  display: contents;
}
.banner-right {
  display: contents;
  width: 100%;
}
.banner-br-mobile {
  display: block;
}
.banner-right .banner-tittle {
  grid-area: title;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.banner-right .banner-tittle .banner-t-blue {
  color: #2855A3;
}
.banner-right .banner-tittle .banner-t-gray {
  color: #2c2c2c;
}
.banner-left {
  grid-area: image;
  width: 100%;
  display: flex;
  justify-content: center;
}
.banner-hero {
  position: relative;
  width: 100%;
  /* max-width: 280px; */
  /* min-height: 200px; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
  overflow: visible;
}
.banner-icon {
  width: 32px;
  height: 32px;
}
.banner-icon-1 { right: 55%; top: 15%; }
.banner-icon-2 { right: 15%; top: 18%; }
.banner-icon-3 { right: 5%; top: 45%; }
.banner-icon-4 { right: -5%; bottom: 5%; }
.banner-emblem {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* max-width: 200px; */
  height: auto;
  /* opacity: 0.15; */
  z-index: 1;
  pointer-events: none;
}
.banner-hero-person {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}
.banner-person {
  width: 100%;
  /* max-width: 220px; */
  height: auto;
  display: block;
}
.banner-speech {
  position: absolute;
  left: 0%;
  top: 64%;
  width: 52%;
  padding: 15px 20px;
  font-size: 11px;
  line-height: 1.35;
  color: #332A2B;
  background: #f5f6f8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.banner-name-tag {
  position: absolute;
  right: 8%;
  bottom: 8%;
  background: #dfffee;
  color: #332A2B;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 150px;
}
.banner-name-tag .name {
  font-size: 12px;
  font-weight: 700;
  display: block;
  color: #332A2B;
}
.banner-name-tag .role {
  font-size: 11px;
  color: #555;
  display: block;
  margin-top: 2px;
}
.banner-right .banner-list {
  grid-area: list;
  max-width: 100%;
  gap: 10px;
}
.banner-item {
  padding: 12px 16px;
  border-radius: 12px;
  gap: 12px;
  background: #f5f6f8;
  border: 1px solid #eee;
}
.item-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: #e8eef5;
  border-radius: 8px;
  flex-shrink: 0;
}
.banner-item .item-icon {
  width: 20px;
  height: 20px;
}
.item-text {
  font-size: 13px;
  color: #2b2b2b;
  font-weight: 500;
}
.banner-right .banner-buttons {
  grid-area: buttons;
  flex-direction: column;
  gap: 12px;
}
.banner-btn {
  width: 100%;
  justify-content: center;
  padding: 19px 24px;
  font-size: 14px;
  height: auto;
  border-radius: 30px;
}
.banner-btn1 {
  background: #00e57f;
  color: #fff;
  font-weight: 700;
}
.banner-btn2 {
  background: #2855A3;
  color: #fff;
  font-weight: 700;
}
.banner-stats {
  grid-area: stats;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
}
.stat-number {
  font-size: 18px;
  font-weight: 800;
  color: #2855A3;
}
.stat-label {
  font-size: 11px;
  margin-top: 4px;
  color: #332A2B;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* STRESS SECTION 768px - dikey layout (görsele uygun) */
.stress-section {
  margin-top: 24px;
  padding: 0 20px;
}
.stress-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 24px 0px;
}
.stress-left {
  width: 100%;
  gap: 16px;
}
.stress-title {
  font-size: 28px;
  line-height: 1.35;
  max-width: 100%;
  text-align: center;
}
.stress-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
.stress-card {
  padding: 16px 20px;
  font-size: 14px;
  min-height: auto;
  text-align: center;
}
.stress-card--primary {
  font-size: 16px;
  padding: 18px 24px;
}
.stress-right {
  width: 100%;
  gap: 16px;
  align-items: center;
}
.stress-note {
  font-size: 15px;
  max-width: 100%;
  text-align: center;
}
.stress-solution {
  font-size: 15px;
  padding: 20px 24px;
  min-height: auto;
  text-align: center;
}

/* PROCEDURE SECTION 768px - dikey layout (görsele uygun) */
.procedure-section {
  margin-top: 50px;
  padding: 0 20px;
}
.procedure-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 24px 0px;
}
.procedure-left {
  width: 100%;
  gap: 20px;
  align-items: center;
}
.procedure-title {
  font-size: 28px;
  line-height: 1.35;
  max-width: 100%;
  text-align: center;
}
.procedure-image {
  width: 70%;
  /* max-width: 200px; */
  margin-left: 0;
}
.procedure-right {
  width: 100%;
  gap: 16px;
}
.procedure-list {
  flex-direction: column;
  gap: 12px;
}
.procedure-item {
  width: 100%;
  padding: 14px 18px;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.procedure-item img {
  width: 20px;
  height: 20px;
  margin-top: 0;
  flex-shrink: 0;
  padding: 6px;
  /* background: #e8eef5; */
  border-radius: 50%;
  box-sizing: content-box;
}
.procedure-item span {
  font-size: 14px;
  color: #2c2c2c;
}
.procedure-cta {
  gap: 16px;
  margin-top: 8px;
  align-items: center;
}
.procedure-cta-title {
  font-size: 15px;
  text-align: center;
}
.procedure-btn {
  width: 100%;
  max-width: 100%;
  padding: 18px 24px;
  font-size: 14px;
  background: linear-gradient(135deg, #00e57f, #00c96d);
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0,229,127,0.3);
}

/* SERVICES SLIDER 768px - font ve stil */
.services-section {
  margin-top: 70px;
  padding: 0 20px;
}
.services-container {
  gap: 20px;
}
.services-heading {
  max-width: 100%;
  gap: 8px;
}
.services-title {
  font-size: 28px;
  line-height: 1.3;
}
.services-subtitle {
  font-size: 14px;
  line-height: 1.35;
}
.service-card {
  border-radius: 12px;
  padding: 18px 16px;
  min-height: auto;
  gap: 12px;
}
.service-card h3 {
  font-size: 14px;
  line-height: 1.3;
}
.service-tag {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13px;
  line-height: 1.4;
}
.services-section .owl-stage-outer {
  padding: 12px 0;
}
.services-section .owl-nav {
  display: none;
}
.services-section .owl-nav button svg {
  width: 18px;
  height: 18px;
}

.services-carousel{
  margin-top: 40px;
}

/* DEBTS SLIDER 768px - services ile aynı yapı */
.debts-section {
  margin-top: 50px;
  padding: 24px 20px;
}
.debts-container {
  gap: 20px;
}
.debts-heading {
  max-width: 100%;
  gap: 8px;
}
.debts-title {
  font-size: 28px;
  line-height: 1.3;
}
.debts-subtitle {
  font-size: 14px;
  line-height: 1.35;
}
.debts-carousel {
  margin-top: 40px;
}
.debts-card {
  border-radius: 12px;
  padding: 18px 16px;
  /* height: 100%; */
  min-height: auto;
  gap: 12px;
}
.debts-card h3 {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.debt-chip {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
}
.debts-note {
  font-size: 11px;
  line-height: 1.4;
}
.debts-section .owl-stage-outer {
  padding: 12px 0;
}
.debts-section .owl-nav { display: none; }

/* LIFE SECTION 768px - services/debts ile aynı yapı */
.life-section {
  margin-top: 70px;
  padding: 0 20px;
}
.life-container {
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.life-left {
  width: 100%;
  gap: 16px;
  align-items: center;
}
.life-title {
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
}
.life-image {
  width: 70%;
  max-width: 220px;
}
.life-right {
  width: 100%;
  gap: 20px;
}
.life-group {
  gap: 12px;
}
.life-group-title {
  font-size: 14px;
}
.life-row {
  gap: 10px;
}
.life-pill {
  font-size: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1.3;
}

/* REVIEWS SLIDER 768px */
.reviews-section {
  margin-top: 70px;
  padding: 0 20px;
}
.reviews-container { gap: 20px; }
.reviews-heading { max-width: 100%; gap: 8px; }
.reviews-title { font-size: 28px; line-height: 1.3; }
.reviews-subtitle { font-size: 14px; line-height: 1.35; }
.reviews-carousel {margin-top: 10px;}
.review-card { border-radius: 12px; padding: 12px; gap: 10px; }
.review-name { font-size: 13px; }
.review-date { font-size: 11px; }
.review-chip { font-size: 11px; padding: 8px 10px; border-radius: 8px; }
.review-play { width: 63px !important; height: 63px; padding: 8px; }
.reviews-btn { padding: 16px 24px; font-size: 14px; }
.reviews-section .owl-stage-outer { padding: 12px 0; }
.reviews-section .owl-nav { display: none; }

/* PRICING 768px */
.pricing-section { margin-top: 50px; padding: 0 20px; }
.pricing-container { gap: 24px; }
.pricing-heading { max-width: 100%; gap: 8px; }
.pricing-title { font-size: 28px; line-height: 1.3; }
.pricing-subtitle { font-size: 14px; line-height: 1.35; }
.pricing-tabs {
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pricing-tabs::-webkit-scrollbar {
  display: none;
}
.pricing-tab {
  padding: 12px 16px;
  font-size: 13px;
  flex-shrink: 0;
}
.pricing-grid { flex-direction: column; gap: 16px; }
.pricing-col { gap: 10px; }
.pricing-item { padding: 14px 16px; font-size: 13px; gap: 8px; border-radius: 10px; }
.pricing-price { font-size: 13px; padding: 6px 10px; border-radius: 8px; }
.pricing-note { padding: 20px 18px; font-size: 13px; border-radius: 10px; }

/* CALC 768px */
.calc-section {margin-top: 70px;padding: 0 20px;}
.calc-box { flex-direction: column; gap: 24px; padding: 20px; border-radius: 12px; }
.calc-left {gap: 12px;width: 100%;}
  .calc-right{width: 100%;}
.calc-title { font-size: 28px; line-height: 1.3; }
.calc-text { font-size: 14px; }
.calc-subtext { font-size: 15px; }
.calc-note { font-size: 13px; margin-top: 8px; }
.calc-card {padding: 18px 0px;gap: 16px;border-radius: 12px;}
.calc-card-questions { padding: 18px 16px; gap: 20px; border-radius: 12px; }
.calc-step-title { font-size: 16px; }
.calc-slides { gap: 16px; min-height: auto; }
.calc-slide { gap: 20px; }
.calc-question-title { font-size: 14px; }
.calc-options { gap: 10px; flex-wrap: wrap; }
.calc-option { font-size: 13px; gap: 10px; }
.calc-check { width: 22px; height: 22px; border-width: 2px; }
.calc-option input:checked + .calc-check::after { width: 12px; height: 12px; }
.calc-controls { gap: 16px; margin-top: 8px; }
.calc-btn { font-size: 14px; gap: 8px; }
.calc-btn--primary {padding: 5px 20px;}
.calc-progress { font-size: 13px; }
.calc-arrow { font-size: 24px; }
.calc-form-inputs { gap: 12px; margin-bottom: 12px; }
.calc-input { padding: 14px 16px; font-size: 14px; border-radius: 8px; }

/* STEPS 768px */
.steps-section {margin-top: 70px;padding: 30px 20px 24px;}
.steps-container { gap: 24px; }
.steps-title { font-size: 28px; line-height: 1.3; }
.step-card {/* padding: 16px; */min-height: auto;gap: 12px;border-radius: 12px;}
.step-label {font-size: 13px;padding: 8px 12px;margin-left: 10px;}
.step-body { gap: 12px; }
.step-content h3 { font-size: 14px; }
.step-content p { font-size: 13px; }
.step-media { height: 140px; }
.steps-section .owl-stage-outer { padding: 12px 0; }
.steps-section .owl-nav { display: none; }

/* COSTS 768px */
.costs-section {margin-top: 70px;padding: 0 20px;}
.costs-container { flex-direction: column; gap: 24px; }
.costs-left {gap: 12px;width: 100%;}
.costs-title { font-size: 28px; line-height: 1.3; }
.costs-subtitle { font-size: 14px; }
.costs-note { font-size: 13px; }
.costs-right { width: 100%; }
.costs-grid {/* grid-template-columns: 1fr; */gap: 12px;}
.cost-card { padding: 18px 16px; gap: 12px; border-radius: 12px; }
.cost-title { font-size: 15px; }
.cost-tag { font-size: 14px; padding: 8px 12px; border-radius: 8px; }

/* APP 768px */
.app-section {margin-top: 70px;padding: 0 20px;}
.app-card { flex-direction: column; gap: 24px; padding: 24px 20px; border-radius: 12px; }
.app-left {gap: 16px;width: 100%;}
.app-title { font-size: 28px; line-height: 1.3; }
.app-points { gap: 12px; }
.app-point { font-size: 14px; padding: 12px 16px; gap: 10px; border-radius: 10px; }
.app-point img {width: 43px;height: auto;}
.app-phone {/* max-width: 180px; */margin: 0 auto;position: static;}

/* CONTACT 768px - mobil tasarım: contact-left yanyana */
.contact-section {margin-top: 130px;padding: 0 20px;}
.contact-card {
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
  border-radius: 12px;
  background: #dceef9;
}
.contact-left {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.contact-text {flex: 1;min-width: 0;width: 50%;gap: 30px;}
.contact-title { font-size: 22px; line-height: 1.3; }
.contact-subtitle { font-size: 13px; line-height: 1.4; }
.contact-person {
  flex-shrink: 0;
  align-items: flex-end;
  position: relative;
  width: 50%;
}
.contact-photo {width: 100%;max-width: none;}
.contact-photo img { width: 100%; height: auto; }
.contact-tag {
  position: absolute;
  bottom: 8%;
  left: -87%;
  padding: 11px 19px;
  font-size: 14px;
  border-radius: 8px;
}
.contact-right { width: 100%; }
.contact-form { gap: 16px; }
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #e0e8f0;
}
.contact-form textarea { min-height: 100px; }
.contact-form button {
  padding: 16px 24px;
  font-size: 14px;
  border-radius: 12px;
  color: #fff;
}
.contact-consent { font-size: 12px; gap: 10px; }
.contact-consent input { min-width: 18px; min-height: 18px; }

/* TV 768px - küçük videolar yanyana, kaymalı, scrollbar yok */
.tv-section {margin-top: 70px;padding: 0 20px;}
.tv-container { gap: 24px; }
.tv-title { font-size: 28px; line-height: 1.3; }
.tv-content { flex-direction: column; gap: 20px; }
.tv-media-row { flex-direction: column; gap: 16px; }
.tv-main { width: 100%; }
.tv-right {
  width: 100%;
  flex-direction: row;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
  gap: 12px;
}
.tv-right::-webkit-scrollbar { display: none; }
.tv-mini {
  flex-shrink: 0;
  min-width: 252px;
  width: 252px;
}
.tv-main, .tv-mini { border-radius: 12px; }
.tv-main .tv-play { width: 63px; height: 63px; }
.tv-right .tv-play {width: 42px;height: 42px;}
.tv-caption-title { font-size: 16px; }
.tv-caption-subtitle { font-size: 13px; }

/* FAQ 768px */
.faq-section {margin-top: 80px;padding: 0 20px;}
.faq-container { gap: 24px; }
.faq-title { font-size: 28px; line-height: 1.3; }
.faq-question {font-size: 12px;padding: 16px 18px;}
.faq-answer { font-size: 13px; padding: 0 18px 16px; }
.faq-icon {width: 24px;height: 24px;font-size: 30px;}

/* INFO 768px */
.info-section {margin-top: 70px;padding: 0 20px;}
.info-container { gap: 24px; }
.info-header { width: 100%; min-width: 0; }
.info-title { font-size: 28px; line-height: 1.3; }
.info-tabs {
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 10px;
}
.info-tabs::-webkit-scrollbar { display: none; }
.info-tab {
  padding: 12px 16px;
  font-size: 13px;
  flex-shrink: 0;
}
.info-card {padding: 16px;gap: 12px;border-radius: 12px;height: 389px;}
.info-card img { border-radius: 8px; }
.info-tag { font-size: 11px; padding: 6px 10px; }
.info-text { font-size: 13px; }
.info-date { font-size: 12px; }
.info-section .owl-nav {right: 0;top: -48px;gap: 8px;display: none;}
.info-section .owl-nav button { width: 40px; height: 40px; }
.info-section .owl-nav button svg { width: 18px; height: 18px; }

/* FOOTER 768px - görsele uygun dikey layout, hepsi ortalanmış */
.site-footer {
  padding: 40px 20px 24px;
  margin-top: 70px;
  background: #1a3a6e;
}
.footer-container {
  gap: 32px;
  align-items: center;
}
.footer-main {
  flex-direction: column;
  gap: 28px;
  align-items: center;
  width: 100%;
}
.footer-brand {
  width: 100%;
  order: 1;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.footer-links {
  width: 100%;
  flex-direction: column;
  gap: 24px;
  order: 3;
  align-items: center;
  text-align: center;
}
.footer-links-col {
  gap: 10px;
  align-items: center;
  text-align: center;
}
.footer-info {
  width: 100%;
  order: 2;
  align-items: center;
  text-align: center;
}
.footer-logo {
  gap: 12px;
  order: 1;
  justify-content: center;
  align-items: center;
}
.footer-socials {
  order: 2;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.footer-contact {
  order: 3;
  align-items: center;
  text-align: center;
  width: 100%;
}
.footer-logo img {
  width: 92px;
  filter: brightness(0) invert(1);
}
.footer-logo-title { font-size: 18px; }
.footer-logo-subtitle { font-size: 14px; }
.footer-branch { font-size: 14px; }
.footer-phone { font-size: 22px; }
.footer-phone-note { font-size: 13px; }
.footer-socials {
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  /* background: rgba(255,255,255,0.15); */
  border-radius: 50%;
}
.footer-social img {width: 46px;height: 46px;}
.footer-btn { display: none; }
.footer-title { font-size: 14px; }
.footer-links-col a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-text { font-size: 13px; opacity: 1; color: rgba(255,255,255,0.9); }
.footer-mt { margin-top: 16px; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  width: 100%;
}

/* PAGE PAGINATION + PAGE HERO 768px - index mantığı, görsele uygun */
.page-breadcrumbs {
  padding: 16px 20px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 6px;
}
.page-crumb { font-size: 12px; }
.page-hero {
  padding: 0 20px 24px;
  margin-top: 24px;
}
.page-hero-container {
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.page-hero-left {
  display: contents;
}
.page-hero-right {
  display: contents;
}
.page-hero-chip {
  order: 1;
  font-size: 13px;
  padding: 12px 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.page-hero-title { order: 2; font-size: 22px; line-height: 1.3; }
.page-hero-text {
  order: 3;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
}
.page-hero-image {
  order: 4;
  width: 80%;
  /* max-width: 220px; */
  margin: 0 auto;
  margin-top: 0;
  display: block;
  align-self: center;
}
.page-hero-badge {
  order: 5;
  position: static;
  width: 100%;
  /* max-width: 320px; */
  /* margin: 0 auto; */
  padding: 18px 20px;
  background: #F2EDFF;
  border-radius: 12px;
  align-self: center;
  margin-top: -126px;
}
.page-hero-actions {
  order: 6;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 0;
}
.page-hero-note {
  order: 7;
  font-size: 13px;
  margin-top: 0;
  text-align: left;
}
.page-hero-chip img { width: 18px; height: 18px; }
.page-hero-badge-title { font-size: 14px; }
.page-hero-badge-text {
  font-size: 15px;
  padding: 14px 18px;
  margin-top: 8px;
}
.page-hero-btn {
  width: 100%;
  /* max-width: 320px; */
  padding: 16px 24px;
  font-size: 14px;
  justify-content: center;
}

/* ABOUT HERO (page2) 768px - tasarıma uygun dikey layout */
.about-hero-section {
  padding: 0 20px;
  margin-top: 20px;
}
.about-hero-top {
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.about-hero-left {
  max-width: 100%;
  width: 100%;
  gap: 16px;
  order: 1;
}
.about-hero-chip {
  font-size: 13px;
  padding: 12px 16px;
  gap: 8px;
}
.about-hero-chip img {
  width: 18px;
  height: 18px;
}
.about-hero-title {
  font-size: 22px;
  line-height: 1.35;
}
.about-hero-title span {
  display: block;
  margin-top: 4px;
}
.about-hero-text {
  font-size: 14px;
  line-height: 1.5;
}
.about-hero-right {
  width: 100%;
  order: 2;
  display: flex;
  justify-content: center;
}
.about-hero-right img {
  max-width: 320px;
  width: 80%;
}
.about-hero-stats {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -35px;
  order: 3;
}
.about-hero-stat {
  width: calc(50% - 6px);
  padding: 20px 18px;
  border-radius: 12px;
}
.about-hero-stat:nth-child(3) {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-stat-num {
  font-size: 24px;
}
.about-hero-stat-label {
  font-size: 12px;
}

/* PRINCIPLE SECTION (НАШ ПРИНЦИП / ЧЕМ МЫ ПОМОГАЕМ) 768px */
.principle-section {
  padding: 0 20px;
  margin-top: 70px;
}
.principle-card {
  flex-direction: column;
  gap: 28px;
  padding: 24px 20px;
  align-items: stretch;
}
.principle-left {
  width: 100%;
}
.principle-title {
  font-size: 20px;
  margin-bottom: 12px;
}
.principle-text {
  font-size: 14px;
  line-height: 1.55;
}
.principle-right {
  width: 100%;
}
.principle-subtitle {
  font-size: 18px;
  margin-bottom: 16px;
}
.principle-list {
  gap: 12px;
}
.principle-list-item {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  font-size: 14px;
  border-width: 1px;
  border-radius: 12px;
}
.principle-check {
  width: 18px;
  height: 18px;
}

/* HOW WE WORK (КАК МЫ РАБОТАЕМ) 768px */
.how-we-work-section {
  padding: 0 20px;
  margin-top: 50px;
}
.how-we-work-main {
  flex-direction: column;
  gap: 20px;
}
.how-we-work-slider-wrap {
  width: 100%;
}
.how-we-work-title {
  font-size: 22px;
  line-height: 1.3;
}
.how-we-work-title span {
  display: block;
  margin-top: 2px;
}
.how-we-work-card {
  min-height: auto;
  padding: 20px 18px;
  border-radius: 12px;
}
.how-we-work-num {
  width: 36px;
  height: 36px;
  font-size: 16px;
  margin-bottom: 12px;
  background: #C7E8F9;
  color: #fff;
  border-radius: 14px;
}
.how-we-work-card-title {
  font-size: 14px;
  margin-bottom: 8px;
}
.how-we-work-card-text {
  font-size: 13px;
  line-height: 1.5;
}
.how-we-work-banner {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 12px;
  text-align: center;
}
.how-we-work-card--guarantee {
  width: 100%;
  min-height: auto;
  padding: 24px 20px;
  border-radius: 12px;
}
.how-we-work-guarantee-text {
  font-size: 14px;
  margin-bottom: 16px;
}
.how-we-work-guarantee-box {
  padding: 16px 18px;
  gap: 6px;
  margin-bottom: 16px;
  border-radius: 12px;
}
.how-we-work-guarantee-box span {
  font-size: 14px;
}
.how-we-work-guarantee-highlight {
  font-size: 16px !important;
}
.how-we-work-guarantee-note {
  font-size: 13px;
  line-height: 1.5;
}

/* TEAM SECTION (НАША КОМАНДА ЮРИСТОВ) 768px */
.team-section {
  padding: 0 20px;
  margin-top: 70px;
}
.team-container {
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px 0;
  align-items: stretch;
}
.team-left {
  order: 1;
  gap: 16px;
}
.team-title {
  font-size: 22px;
  line-height: 1.3;
}
.team-title span {
  display: block;
  margin-top: 2px;
}
.team-text {
  font-size: 14px;
  line-height: 1.55;
}
.team-stats-box {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  border-radius: 12px;
}
.team-stats-num {
  font-size: 18px;
  margin-bottom: 10px;
}
.team-stats-label {
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 12px;
}
.team-right {
  order: 2;
  width: 100%;
  justify-content: center;
}
.team-right img {
  max-width: 100%;
  width: 100%;
}

/* SPECIALISTS 768px */
.specialists-section {
  padding: 0 20px;
  margin-top: 70px;
}
.specialists-grid {
  /* flex-wrap: nowrap; */
  overflow-x: auto;
  gap: 2%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
}
.specialists-grid::-webkit-scrollbar {
  display: none;
}
.specialist-card {
  flex-shrink: 0;
  width: 32%;
  min-width: 0;
  margin-bottom: 30px;
}
.specialist-photo {
  border-radius: 10px;
  margin-bottom: 10px;
}
.specialist-name {
  font-size: 11px;
  margin-bottom: 4px;
}
.specialist-title {
  font-size: 10px;
}

/* CTA CONSULT 768px */
.cta-consult-section {
  padding: 0 20px;
  margin-top: 70px;
}
.cta-consult-box {
  padding: 24px 20px;
  gap: 16px;
  border-radius: 12px;
}
.cta-consult-title {
  font-size: 18px;
  line-height: 1.35;
}
.cta-consult-text {
  font-size: 14px;
  line-height: 1.5;
}
.cta-consult-btn {
  padding: 16px 24px;
  font-size: 14px;
}
.cta-consult-note {
  font-size: 12px;
}

/* CONTACT INFO SECTION (page3) 768px */
.contact-info-section {
  padding: 0 20px;
  margin-top: 30px;
}
.contact-info-cards {
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  padding: 20px 18px;
  border-radius: 12px;
}
.contact-info-card:first-child .contact-info-line:first-child {
  font-size: 16px;
}
.contact-info-line {
  font-size: 14px;
}
.contact-info-heading {
  font-size: 14px;
}
.contact-info-link {
  font-size: 14px;
}

/* BRANCHES SECTION (page3) 768px */
.branches-section {
  padding: 0 20px;
  margin-top: 40px;
}
.branches-container {
  padding: 24px 20px;
  border-radius: 12px;
}
.branches-header {
  margin-bottom: 20px;
}
.branches-label {
  font-size: 13px;
  margin-bottom: 8px;
}
.branches-title {
  font-size: 22px;
  line-height: 1.3;
}
.branches-region {
  margin-bottom: 24px;
}
.branches-region-title {
  font-size: 16px;
  margin-bottom: 14px;
}
.branches-grid {
  flex-direction: row;
  gap: 2%;
  margin-bottom: 16px;
}
.branch-card {
  flex: none;
  width: 49%;
  padding: 18px 16px;
  border-radius: 12px;
  margin-bottom: 2%;
}
.branch-city {
  font-size: 14px;
  margin-bottom: 10px;
}
.branch-phone {
  font-size: 14px;
}
.branch-address {
  font-size: 13px;
  line-height: 1.5;
}
.branches-show-more {
  padding: 14px 24px;
  font-size: 14px;
  margin-top: 20px;
}

/* DOCS SECTION (page4) 768px */
.docs-section {
  padding: 30px 20px 40px;
}
.docs-title {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.docs-title span {
  display: block;
  margin-top: 2px;
}
.docs-grid {
  gap: 12px;
}
.doc-card {
  flex: 0 0 100%;
  padding: 18px 16px;
  border-radius: 12px;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.doc-card-title {
  font-size: 13px;
  color: #332A2B;
  font-weight: 700;
}
.doc-download-btn {
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 8px;
  gap: 8px;
}
.doc-download-btn svg {
  width: 24px;
  height: 24px;
}

/* INFO ARTICLES SECTION (page5) 768px */
.info-articles-section {
  padding: 30px 20px 40px;
}
.info-articles-header {
  width: 100%;
  min-width: 0;
  margin-bottom: 20px;
}
.info-articles-label {
  font-size: 13px;
}
.info-articles-title {
  font-size: 22px;
  line-height: 1.3;
}
.info-articles-tabs {
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 10px;
  margin-bottom: 20px;
}
.info-articles-tabs::-webkit-scrollbar {
  display: none;
}
.info-articles-tab {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 13px;
  border-radius: 8px;
}
.info-articles-grid {
  gap: 12px;
}
.info-articles-card {
  flex: 0 0 calc(50% - 6px);
  min-height: 214px;
  height: 214px;
  padding: 14px 12px;
  border-radius: 12px;
  gap: 8px;
}
.info-articles-tag {
  font-size: 11px;
  padding: 6px 10px;
}
.info-articles-card-title {
  font-size: 12px;
  line-height: 1.35;
}
.info-articles-date {
  font-size: 11px;
}
.info-articles-show-more {
  padding: 14px 24px;
  font-size: 14px;
  margin-top: 20px;
}

/* ARTICLE PAGE (page6) 768px */
.article-page {
  padding: 0 20px;
  margin-top: 20px;
}
.article-container {
  max-width: 100%;
}
.article-back {
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 12px;
}
.article-back-arrow {
  font-size: 12px;
}
.article-date {
  font-size: 13px;
  margin-bottom: 12px;
}
.article-title {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 16px;
}
.article-title span {
  display: block;
  margin-top: 2px;
}
.article-tags {
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 10px;
  margin-bottom: 20px;
}
.article-tags::-webkit-scrollbar {
  display: none;
}
.article-tag {
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 12px;
  border-radius: 999px;
}
.article-hero {
  margin-bottom: 20px;
  border-radius: 12px;
}
.article-subtitle {
  font-size: 18px;
  margin-bottom: 12px;
}
.article-body p,
.article-info-box p {
  font-size: 14px;
  line-height: 1.55;
}
.article-price-section {
  margin-bottom: 24px;
}
.article-price-title {
  font-size: 18px;
  margin-bottom: 14px;
}
.article-price-list {
  gap: 10px;
}
.article-price-card {
  padding: 14px 16px;
  border-radius: 10px;
}
.article-price-service {
  font-size: 13px;
}
.article-price-value {
  font-size: 13px;
  padding: 8px 12px;
  flex-shrink: 0;
}
.article-price-btn {
  padding: 14px 24px;
  font-size: 14px;
  margin-top: 16px;
}
.article-info-box {
  padding: 20px 18px;
  border-radius: 12px;
}

/* COST INFO SECTION (page7) 768px */
.cost-info-section {
  padding: 30px 20px 40px;
  margin-top: 40px;
}
.cost-info-container {
  padding: 0;
}
.cost-info-item {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.cost-info-item:last-child {
  margin-bottom: 0;
}

/* SITUATION SECTION 768px - görsele uygun */
.situation-section {
  margin-top: 50px;
  padding: 0 20px;
}
.situation-container {
  border-radius: 12px;
  padding: 24px 20px;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.situation-title {
  font-size: 24px;
  line-height: 1.3;
}
.situation-subtitle {
  font-size: 14px;
  line-height: 1.4;
}
.situation-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.situation-cards::-webkit-scrollbar { display: none; }
.situation-card {
  flex-shrink: 0;
  min-width: 260px;
  max-width: 280px;
  border-radius: 12px;
  padding: 18px 16px;
  gap: 10px;
  min-height: auto;
  background: #f2f2f2;
}
.situation-card-title {
  font-size: 14px;
}
.situation-card-text {
  font-size: 13px;
  color: #666;
}
.situation-banner {
  width: 100%;
  border-radius: 12px;
  padding: 20px 18px;
  gap: 12px;
  background: #e6ffe6;
}
.situation-banner-title {
  font-size: 16px;
}
.situation-banner-text {
  font-size: 14px;
  padding: 14px 16px;
}

/* CHANGES AFTER 768px - tasarıma uygun */
.changes-after-section {
  margin-top: 70px;
  padding: 40px 20px 50px;
  background: #F5F5F5;
}
.changes-after-container {
  gap: 20px;
}
.changes-after-title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #332A2B;
}
.changes-after-title span {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #2855A3;
  margin-top: 4px;
}
.changes-after-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #332A2B;
  line-height: 1.5;
}
.changes-after-cards {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.changes-after-cards::-webkit-scrollbar {
  display: none;
}
.changes-after-card {
  flex-shrink: 0;
  min-width: 260px;
  max-width: 280px;
  border-radius: 12px;
  padding: 20px 18px;
  gap: 14px;
}
.changes-after-card--green {
  background: #e6ffe6;
}
.changes-after-card--blue {
  background: #D3E5FF;
}
.changes-after-card--purple {
  background: #FBCDFF;
}
.changes-after-card-title {
  font-size: 15px;
  line-height: 1.3;
}
.changes-after-card-text {
  font-size: 13px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #FFFFFF;
  font-weight: 400;
}

/* DEBTS WRITEOFF 768px */
.debts-writeoff-section {
  margin-top: 70px;
  padding: 0 20px;
}
.debts-writeoff-container {
  flex-direction: column;
  gap: 24px;
}
.debts-writeoff-left { gap: 16px; }
.debts-writeoff-title { font-size: 24px; line-height: 1.3; }
.debts-writeoff-title span { font-size: 24px; }
.debts-writeoff-intro { font-size: 14px; }
.debts-writeoff-list-title { font-size: 16px; }
.debts-writeoff-list {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
}
.debts-writeoff-item { gap: 12px; padding: 14px 16px; border-radius: 10px; }
.debts-writeoff-check { width: 22px; height: 22px; }
.debts-writeoff-text { font-size: 14px; }
.debts-writeoff-right { width: 100%; }
.debts-writeoff-box {
  border-radius: 12px;
  padding: 20px 18px;
  gap: 12px;
}
.debts-writeoff-box-title { font-size: 16px; }
.debts-writeoff-box-text { font-size: 14px; }
.debts-writeoff-box-warning { font-size: 13px; }

/* BANKRUPTCY PROCESS 768px - tasarıma uygun */
.bankruptcy-process-section {
  margin-top: 70px;
  padding: 0 20px;
}
.bankruptcy-process-container { gap: 24px; }
.bankruptcy-process-heading { max-width: 100%; gap: 8px; }
.bankruptcy-process-title { font-size: 24px; line-height: 1.3; }
.bankruptcy-process-subtitle { font-size: 14px; }
.bankruptcy-process-card {
  border-radius: 12px;
  padding: 20px 18px;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.bankruptcy-process-num {
  font-size: 16px;
  font-weight: 700;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  top: 16px;
  left: 16px;
  border-radius: 50%;
  background: #d7f0ff;
  color: #2855A3;
  box-shadow: 0 2px 8px rgba(40, 85, 163, 0.12);
}
.bankruptcy-process-card-title { font-size: 15px; padding-top: 36px; }
.bankruptcy-process-card-text { font-size: 13px; }
.bankruptcy-process-banner {
  width: 100%;
  border-radius: 12px;
  padding: 20px 18px;
  gap: 12px;
}
.bankruptcy-process-banner-title { font-size: 16px; }
.bankruptcy-process-banner-text {
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 10px;
  background: #FFFFFF;
}
.bankruptcy-process-section .owl-stage-outer { padding: 12px 0; }
.bankruptcy-process-section .owl-nav { display: none; }

/* TRUST SECTION 768px - sığmayan alta kaysın, flex-wrap */
.trust-section {
  margin-top: 70px;
  padding: 0 20px;
}
.trust-container {
  flex-direction: column;
  gap: 24px;
}
.trust-left {
  width: 100%;
  gap: 16px;
}
.trust-title {
  font-size: 24px;
  line-height: 1.3;
}
.trust-title span {
  font-size: 24px;
  color: #2855A3;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.trust-item {
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #2855A3;
  border-radius: 10px;
  padding: 12px 16px;
  gap: 10px;
  background: #F5F5F5;
}
.trust-check {
  width: 20px;
  height: 20px;
}
.trust-text {
  font-size: 13px;
}
.trust-right {
  width: 100%;
}
.trust-guarantee-box {
  background: #F0EBF8;
  border-radius: 12px;
  padding: 20px 18px;
  gap: 14px;
}
.trust-guarantee-title {
  font-size: 16px;
}
.trust-guarantee-text {
  font-size: 14px;
}
.trust-guarantee-badge {
  background: #FFFFFF;
  border: 1px solid #d4c8e8;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
}
.trust-guarantee-note {
  font-size: 12px;
  font-style: italic;
}

/* COST PAYMENT SECTION 768px - tasarıma uygun dikey layout */
.cost-payment-section {
  padding: 40px 20px 50px;
  margin-top: 70px;
}
.cost-payment-container {
  gap: 0;
}
.cost-payment-card {
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin-top: 0;
  box-shadow: none;
  background: transparent;
}
.cost-payment-left {
  width: 100%;
  gap: 20px;
}
.cost-payment-title {
  font-size: 24px;
  line-height: 1.3;
  color: #332A2B;
}
.cost-payment-title span {
  display: block;
  font-size: 24px;
  color: #2855A3;
  margin-top: 4px;
}
.cost-payment-desc {
  font-size: 14px;
  line-height: 1.5;
}
.cost-payment-subtitle {
  font-size: 16px;
  margin-top: 4px;
}
.cost-payment-list {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
}
.cost-payment-item {
  width: 100%;
  border: 1px solid #2855A3;
  border-radius: 999px;
  padding: 14px 18px;
  gap: 12px;
}
.cost-payment-check {
  width: 20px;
  height: 20px;
}
.cost-payment-text {
  font-size: 14px;
}
.cost-payment-buttons {
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cost-payment-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 14px;
}
.cost-payment-right {
  width: 100%;
}
.cost-payment-box {
  background: #B8FFCA;
  border-radius: 12px;
  padding: 20px 18px;
  gap: 14px;
}
.cost-payment-box-title {
  font-size: 16px;
}
.cost-payment-box-text {
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 10px;
  background: #FFFFFF;
}
.cost-payment-box-note {
  font-size: 12px;
}

/* CONSULT REQUEST SECTION 768px - tasarıma uygun */
.consult-request-section {
  padding: 40px 20px 50px;
}
.consult-request-card {
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
  border-radius: 12px;
}
.consult-request-left {
  width: 100%;
  gap: 16px;
}
.consult-request-title {
  font-size: 22px;
  line-height: 1.35;
}
.consult-request-title br {
  display: none;
}
.consult-request-base {
  color: #1a3a6e;
  font-weight: 700;
}
.consult-request-accent {
  color: #2855A3;
  font-weight: 800;
}
.consult-request-desc {
  font-size: 14px;
  line-height: 1.5;
}
.consult-request-badge {
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #B8FFCA;
  color: #1a5c3a;
  font-weight: 700;
}
.consult-request-right {
  width: 100%;
}
.consult-request-form {
  gap: 14px;
}
.consult-request-form input,
.consult-request-form textarea {
  padding: 14px 18px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #a8d4ed;
  background: #ffffff;
}
.consult-request-form textarea {
  min-height: 100px;
}
.consult-request-form button {
  padding: 16px 24px;
  font-size: 14px;
  width: 100%;
  justify-content: center;
}
.consult-request-consent {
  font-size: 12px;
  gap: 10px;
}
.consult-request-consent input {
  min-width: 18px;
  min-height: 18px;
}

/* ERROR 404 & SUCCESS THANK (eror.html / succues.html) 768px - ikisi aynı layout */
.error-404-section,
.success-thank-section {
  padding: 40px 20px 60px;
}
.error-404-container,
.success-thank-container {
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.error-404-left,
.success-thank-left {
  max-width: 100%;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-404-right,
.success-thank-right {
  width: 100%;
  max-width: 320px;
  order: 1;
}
.error-404-image,
.success-thank-image {
  width: 100%;
}
.error-404-title,
.success-thank-title {
  font-size: 24px;
  margin-bottom: 12px;
}
.error-404-text,
.success-thank-text {
  font-size: 14px;
  line-height: 1.5;
}
.error-404-btn,
.success-thank-btn {
  font-size: 14px;
  padding: 16px 32px;
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-sizing: border-box;
}

/* POPUP FORM 768px - mobil uyumlu */
.popup-overlay {
  padding: 20px;
  align-items: flex-start;
  overflow-y: auto;
}
.popup-modal {
  width: 100% !important;
  max-width: 400px;
  margin: auto !important;
  padding: 60px 20px  20px 20px !important;
  border-radius: 12px !important;
  box-sizing: border-box;
}
.popup-close {
  top: 12px !important;
  right: 12px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 28px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.popup-title {
  font-size: 20px !important;
  padding-right: 36px;
}
.popup-subtitle {
  margin-top: 10px !important;
  font-size: 14px !important;
  line-height: 1.4;
}
.popup-form {
  margin-top: 18px !important;
  gap: 12px !important;
}
.popup-form input {
  padding: 14px 18px !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  border: 1px solid #a8d4ed !important;
  color: #332A2B !important;
}
.popup-form button {
  padding: 16px 24px !important;
  font-size: 14px !important;
  width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
}
.popup-consent {
  font-size: 12px !important;
  gap: 10px !important;
}
.popup-consent input {
  min-width: 18px !important;
  min-height: 18px !important;
  width: 18px !important;
  height: 18px !important;
}

/* Tüm slider okları 768px altında gizle */
.how-we-work-section .owl-nav { display: none; }

} /* end 768px */

/* ========== 550px - Küçük mobil ========== */
@media (max-width: 550px) {

/* Ana başlıklar 20px */
.stress-title, .procedure-title, .services-title, .debts-title,
.life-title, .reviews-title, .pricing-title, .calc-title,
.steps-title, .costs-title, .app-title, .contact-title,
.tv-title, .faq-title, .info-title, .info-articles-title,
.docs-title, .branches-title, .about-hero-title, .principle-title,
.how-we-work-title, .team-title, .cta-consult-title,
.situation-title, .changes-after-title, .trust-title,
.cost-payment-title, .consult-request-title,
.bankruptcy-process-title, .debts-writeoff-title,
.cost-page-title-line, .article-title,
.error-404-title, .success-thank-title, .page-hero-title,
.about-hero-title span, .team-title span, .how-we-work-title span,
.changes-after-title span, .trust-title span,
.cost-payment-title span, .debts-writeoff-title span,
.docs-title span, .article-title span, .page-hero-title span {
  font-size: 18px !important;
  line-height: 1.35;
}

/* pricing-grid içindeki column'lar 100% genişlik, column layout */
.pricing-grid {
  flex-direction: column;
  gap: 12px;
  display: flex;
}
.pricing-col {
  width: 100%;
  flex-direction: column;
}

/* life-right 100% genişlik, column */
.life-right {
  width: 100%;
  flex-direction: column;
}

/* life-row içindekiler tek satırı kaplasın */
.life-row {
  flex-direction: column;
  gap: 10px;
}
.life-pill {
  width: 100%;
  box-sizing: border-box;
}

/* specialists-grid 2 öge tek satırda */
.specialists-grid {
  flex-wrap: wrap;
  overflow-x: visible;
  gap: 12px;
}
.specialist-card {
  width: calc(50% - 6px);
  min-width: 0;
  flex-shrink: 0;
}

/* branch-info 12px */
.branch-info,
.branch-phone,
.branch-address {
  font-size: 12px;
}

/* branches-container gap ve sol padding 0 */
.branches-container {
  gap: 0;
  padding-left: 0;
}

/* info-articles-grid 1 kart satırı kaplasın */
.info-articles-card {
  flex: 0 0 100%;
  height: 281px;
}


.banner-name-tag {
  position: absolute;
  right: 0%;
  bottom: 8%;
  background: #dfffee;
  color: #332A2B;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 150px;
}



.banner-right .banner-tittle {
  grid-area: title;
  font-size: 18px;
  
}

.info-articles-tag {
  font-size: 13px;
  padding: 6px 10px;
}



.info-articles-card-title {
  font-size: 14px;
  line-height: 1.35;
}


.contact-subtitle {
  font-size: 11px;
  line-height: 1.4;
}


.contact-tag {
  position: absolute;
  bottom: -5%;
  left: -100%;
  padding: 11px 19px;
  font-size: 12px;
  border-radius: 8px;
  /* width: 197px; */
}


.contact-card {
  flex-direction: column;
  gap: 60px;
  padding: 24px 20px;
  border-radius: 12px;
  background: #dceef9;
}

.contact-text {
  flex: 1;
  min-width: 0;
  width: 50%;
  gap: 10px;
}






















} /* end 550px */

/* Body scroll lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}













































  

