.red {
  border: 1px solid red;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: 100% 0% / 50%  50% no-repeat url(../images/background/Ellipse2.webp),
  0% 50% / 50% 50% no-repeat url(../images/background/Ellipse3.webp),
  100% 50% / 50% 50% no-repeat url(../images/background/Ellipse4.webp),
  50% 100% / 100% 50% no-repeat url(../images/background/Ellipse6.webp),
  0% 100% / 30% 20% no-repeat url(../images/background/Ellipse7.webp),
  100% 100% / 30% 10% no-repeat url(../images/background/Ellipse8.webp),
  linear-gradient(180deg, #043946 0%, #0a0e29 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  /* или тот шрифт, который у тебя */
}

/* =====================================Header===================================== */
.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.714);
  margin-left: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}

.navbar-nav .nav-link:hover {
  color: white;
}

.contentHeader {
  padding: 20px 0px;
}

.navbar-container {
    max-width: 100% !important;
    padding: 0 !important;
    padding: 0px 60px !important;
}

/* ======================================containerSection1================================== */

.main-content {
    background-image: url('../images/icon/Ellipse\ 240.webp');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 40%;
    
}

.hero-section {
  background: linear-gradient(90deg, #1cb59e 0%, #0a2943 100%);
  color: white;
  padding: 100px 60px;
  min-height: 900px;
  position: relative;
  background-image: url('../images/background/ai.webp');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  display: flex;
  align-items: flex-start;
}

.hero-content {
  max-width: 720px;
  z-index: 2;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-subtext {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 70%;
}

.hero-btn {
    display: inline-block;
    background-color: #30ffc9;
    color: #000;
    padding: 16px 48px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 80px;
}

/* Подзаголовок */
.help-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.underline {
  border-bottom: 3px solid #30ffc9;
  display: inline-block;
  padding-bottom: 4px;
}

.sub-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================cards-section======================== */

.Ellipse_239 {
    position: absolute;
    background: url('../images/icon/Ellipse\ 239.webp');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    width:100%;
    height: 100%;
    top: 60%;
    right: 0%;
    z-index: -1;
}

.cards-section {
    padding: 60px ;
}

.cards-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card-item {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  color: white;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(48, 255, 201, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(48, 255, 201, 0.4);
}

.card-number {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(54, 253, 190, 1);
  color: black;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 400;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-item h3 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-item p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================cisco-section======================================== */
.cisco-section {
    padding: 60px;
    width: 100%;
    margin: 0 auto;
}

.containerCiscoCard {
  width: 100%;
  display: flex;
  justify-content: end;
  margin: 0 auto;
  position: relative;
}

.cisco-card {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  background-color: #0b0f1d;
  border-radius: 28px;
  overflow: hidden;

}

.containerImages {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.cisco-img {
    top: -20px;
    left: 0px;
    width: auto;
    max-width: 560px;
    object-fit: cover;
    position: absolute;
}

.cisco-content {
  flex: 1;
  padding: 10px;
  color: white;
}

.cisco-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.cisco-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cisco-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.cisco-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cisco-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.cisco-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.cisco-list li strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.cisco-list li p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

/* Кнопка под блоком */
.cisco-btn-wrapper {
  margin-bottom: 20px;
}

.cisco-btn {
    display: block;
    padding: 12px 16px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(54, 253, 190, 1);
    color: rgba(54, 253, 190, 1);
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 20px;
    text-decoration: none;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -4%;
    box-shadow: 0 0 20px rgba(48, 255, 201, 0.3);
    transition: all 0.3s ease;
}

.cisco-btn:hover {
  background: #30ffc9;
  color: #0b0f1d;
}

/* =========================steps-section================================= */

.Ellipse_231 {
    position: absolute;
    background: url('../images/icon/Ellipse\ 231.webp');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    width:100%;
    height: 100%;
    top: 150%;
    right: 0%;
    z-index: -1;
}

.Ellipse_232 {
    position: absolute;
    background: url('../images/icon/Ellipse\ 231.webp');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    width:100%;
    height: 100%;
    top: 165%;
    z-index: -1;
    transform: rotate(180deg);
}

.steps-section {
    color: white;
    text-align: start;
    width: 100%;
    padding: 60px;
    margin: 0 auto;
}

.steps-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.steps-header .underlined {
  border-bottom: 3px solid #30ffc9;
  padding-bottom: 2px;
}

.steps-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 50px;
}

.steps-grid .step-card:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 400px;
}

.step-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(48, 255, 201, 0.3);
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  backdrop-filter: blur(8px);
  text-align: center;
}

.step-num {
    position: absolute;
    font-size: 96px;
    font-weight: 800;
    top: -20px;
    right: 10px;
    opacity: 0.25;
    user-select: none;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.step-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.steps-button {
  display: flex;
  justify-content: center;
}

.steps-button .cisco-btn {
    padding: 14px 32px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #30ffc9;
    color: #30ffc9;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(48, 255, 201, 0.3);
    transition: all 0.3s ease;
}

.cisco-btn:hover {
  background: #30ffc9;
  color: #0b0f1d;
}

/* ===================success-header=================== */
/* .Ellipse_238 {
    position: absolute;
    background: url('../images/icon/Ellipse\ 238.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width:100%;
    height: 100%;
    top: 300%;
    z-index: -1;
    transform: rotate(180deg);
    opacity: 0.3;
} */

.review-section {
  width: 90%;
  margin: 0 auto;
}

.success-header {
  text-align: left;
  padding: 60px 0px 40px;
  color: white;
  width: 100%;
}

.success-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.success-header .underlined {
  position: relative;
  display: inline-block;
}

.success-header .underlined::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 6px;
  width: 100%;
  background-color: #30ffc9;
  z-index: -1;
}

.success-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}


/* ========================mainReview====================== */

.mainReview {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(54, 253, 190, 1);
  margin-bottom: 40px;
  background: rgba(0, 15, 37, 1);
}

/* ===============================PersonInfo=========================== */

/* =============================nav-tabs============================= */

/* Убираем фон у всех табов */
.nav-tabs .nav-link {
  background-color: transparent !important;
  padding: 0 !important;
}

/* Убираем фон и границы у активного таба */
.nav-tabs .nav-link.active {
  background-color: transparent !important;
  border: 1px solid rgba(54, 253, 190, 1) !important;
  box-shadow: none !important;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
    border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.nav-tabs .nav-link:hover {
  border: 1px solid rgba(54, 253, 190, 1) !important;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
    border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  
}

.nav-tabs .nav-item:first-child .nav-link.active {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 24px !important;
}

.nav-tabs .nav-item:first-child .nav-link:hover {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 24px !important;
}

.nav-tabs .nav-item:last-child .nav-link.active {
  border-bottom-left-radius: 24px !important;
  border-bottom-right-radius: 0px !important;

}

.nav-tabs .nav-item:last-child .nav-link:hover {
  border-bottom-left-radius: 24px !important;
  border-bottom-right-radius: 0px !important;
}

.nav-tabs {
  display: flex;
  width: 100%;
  border-bottom: none !important;
}

.nav-tabs .nav-item {
  flex: 1 1 0;
}

.nav-tabs .nav-link {
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
}

/* ======================================End-nav-tabs===================================== */

.person-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.person-icon {
  width: 36px;
  height: 36px;
}

.person-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
}

.person-header strong {
  font-weight: 600;
}

.person-header .age {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.person-return {
  font-size: 13px;
  margin-top: 2px;
}

.person-return .amount {
  font-weight: 700;
}


/* =============================================tab-content============================================= */

.tab-content {
  color: white;
  padding: 20px;
}


.cisco-btn-wrapper-mobile {
    display: none;
}

.mobile-review-controls {
    display: none;
}
/* =======================================ContainerFaq===================================== */

.faq-header {
  
  color: white;
  padding: 60px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.faq-underlined {
  position: relative;
  display: inline-block;
}

.faq-underlined::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #30ffc9;
  z-index: -1;
}

.faq-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}


/* ===================== */

.containerAcordion {
  width: 70%;
  margin: 0 auto;
}


.accordion {
    --bs-accordion-border-color: none !important ;
    --bs-accordion-btn-focus-box-shadow: none !important;
}

.accordion-item {
    border-radius: 10px !important;
    background: rgba(0, 15, 37, 0.2) !important;
    color: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid #36fdbe64 !important;
    border-radius: 1.1rem !important;
}

.accordion-item.collapsed {
    border-bottom: none !important;
}

.accordion-button {
    background: none !important;
    color: white !important;
}

.accordion-header {
    background: none !important;
}

.form-section {
    color: white ;
}



.form-section .container {
    max-width: 50%;
}

.section-heading .container {
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
    margin-bottom: 60px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.form-grid div {
    display: flex;
    justify-content: space-between;
}

/* ------------------------ITI============================= */

/* Общий контейнер */
.iti {
  width: 48%;
  position: relative;
}

/* Стили флага (слева) */
.iti__selected-flag {
  background-color: transparent !important;
  border-radius: 1rem 0 0 1rem;
  padding: 0 12px;
}

/* Сам input */
.iti input,
.iti__tel-input {
  background: rgba(116, 198, 137, 0.155);
  border: none;
  border-radius: 1rem;
  padding: 1rem 1rem 1rem 70px; /* отступ слева чтобы не наезжать на флаг */
  width: 100%;
  color: white;
  font-size: 1rem;
}

/* Цвет текста placeholder */
.iti input::placeholder {
  color: white;
  opacity: 0.6;
}

/* Стили выпадающего списка */
.iti__country-list {
  background-color: #1a2b3c;
  color: white;
  z-index: 9999;
  border-radius: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

/* Стрелочка вниз */
.iti__arrow {
  border-top-color: white;
}
/* ==========================END-ITI=========================== */

.form-grid input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(54, 253, 190, 0.3);
    border-radius: 1rem;
}

.form-grid input:focus {
    outline: none;
}

.form-grid input:not(:last-child) {
    width: 48%;
}

.form-grid input:not(:last-child)::placeholder {
    color: white;
}

.surname {
    width: 48%;
}

.surname::placeholder { 
    color: white;
}

.phone-inp {
    width: 100%;
    
}

.submit-btn {
    display: inline-block;
    background-color: #36FDBE;
    color: #000;
    padding: 16px 48px;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 80px;
}



/* =======================footer========================== */

.footer {
  color: #ffffff;
  padding: 100px 16px;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-privacy {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
}

.footer-privacy:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  height: 32px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.footer a {
    text-decoration: none;
    color: white;
}