.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 90px;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}
.header .container {
  height: 100%;
}
.header__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo img {
  width: 200px;
  height: 100px;
}

.nav__list {
  display: flex;
  gap: 50px;
  list-style: none;
  margin-right: 20px;
}
.nav a {
  color: #8a94a6;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}
.nav a:hover {
  color: #1e40af;
}

.back-link {
  margin-left: 20px;
}

.back-link a {
  padding: 10px 18px;
  border: 1px solid #1e40af;
  border-radius: 50px;
  color: #1e40af;
  transition: 0.3s;
}

.back-link a:hover {
  background: #1e40af;
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #f0eee9;
  border-radius: 5px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111111;
    padding: 20px 0;
  }
  .nav.active {
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .logo img {
    width: 175px;
    height: 85px;
  }
}
.hero {
  min-height: 100vh;
  background: url("../images/hero.png") center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: min(90%, 1300px);
  margin: auto;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.hero__left {
  max-width: 650px;
}

.hero__subtitle {
  display: inline-block;
  margin-bottom: 2rem;
  margin-top: 25px;
  color: #1e40af;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__title {
  margin-bottom: 4rem;
  color: #f0eee9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__title span {
  color: #1e40af;
}

.hero__description {
  max-width: 550px;
  color: #8a94a6;
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  line-height: 1.8;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 16px 36px;
  background: #1e40af;
  color: #f0eee9;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero__btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}

.hero__search {
  width: 100%;
  max-width: 620px;
  padding: 35px;
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero__search .search__title {
  margin-bottom: 25px;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.hero__search .search__title span {
  display: block;
  margin-top: 8px;
  color: #8a94a6;
  font-size: 32px;
  font-family: "Figtree", sans-serif;
  font-weight: 300;
}

.hero__search .search__box {
  padding: 0;
  background: transparent;
  border: none;
}

.hero__search .search__box-title {
  margin-bottom: 22px;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.hero__search .search__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero__search .search__filters-extra {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero__search .search__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.hero__search .search__group label {
  color: #8a94a6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__search .search__group select {
  height: 45px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  outline: none;
  font-family: "Figtree", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.hero__search .search__group select option {
  background: #111111;
  color: white;
}

.hero__search .search__group select:hover {
  border-color: #1e40af;
  cursor: pointer;
}

.hero__search .search__group select:focus {
  border-color: #1e40af;
}

.hero__search .search__actions {
  margin-top: 24px;
  display: flex;
}

.hero__search .search__btn {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  background: #1e40af;
  color: white;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero__search .search__btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .hero__content {
    gap: 3rem;
  }
  .hero__title {
    font-size: clamp(58px, 6vw, 72px);
  }
  .hero__search {
    max-width: 560px;
    padding: 28px;
  }
  .hero__search .search__grid,
  .hero__search .search__filters-extra {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .hero__left {
    flex: 1;
    max-width: 480px;
  }
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .hero__title {
    font-size: 60px;
    margin-bottom: 24px;
    line-height: 1;
  }
  .hero__description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 450px;
  }
  .hero__search {
    flex: 1;
    max-width: 500px;
    padding: 24px;
  }
  .hero__search .search__grid,
  .hero__search .search__filters-extra {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 990px) {
  .hero__search .search__group select {
    font-size: 13px;
    padding: 0 8px;
  }
}
@media (max-width: 860px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
  }
  .hero__left {
    max-width: 100%;
    text-align: center;
  }
  .hero__search {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .hero {
    padding: 110px 0 70px;
  }
  .hero__content {
    flex-direction: column;
  }
  .hero .container {
    width: calc(100% - 30px);
  }
  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__subtitle {
    margin-bottom: 15px;
    font-size: 11px;
  }
  .hero__title {
    margin-bottom: 20px;
    font-size: clamp(42px, 9vw, 56px);
    line-height: 1;
    font-size: 45px;
  }
  .hero__description {
    font-size: 13px;
    line-height: 1.7;
  }
  .hero__search {
    padding: 22px;
    border-radius: 18px;
  }
  .hero__search .search__title {
    text-align: center;
    font-size: 28px;
  }
  .hero__search .search__title span {
    font-size: 24px;
  }
  .hero__search .search__grid,
  .hero__search .search__filters-extra {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero__search .search__group select {
    height: 48px;
    font-size: 15px;
  }
  .hero__btn,
  .hero__search .search__btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 95px 0 55px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__description {
    font-size: 14px;
  }
  .hero__search {
    padding: 16px;
  }
  .hero__search .search__title {
    font-size: 22px;
  }
  .hero__search .search__box-title {
    font-size: 18px;
  }
  .hero__search .search__group label {
    font-size: 11px;
  }
  .hero__search .search__group select {
    font-size: 14px;
  }
  .hero__search .search__grid,
  .hero__search .search__filters-extra {
    grid-template-columns: 1fr;
  }
}
.contact-footer {
  background: #111111;
  padding: 80px 60px;
  color: #f0eee9;
}
.contact-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-footer .footer__subtitle {
  color: #1e40af;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
}
.contact-footer .footer-info h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #f0eee9;
}
.contact-footer .footer-info p {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  color: #8a94a6;
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact-footer .footer-info .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: 0.3s ease;
}
.contact-footer .footer-info .contact-item:hover {
  background: #202733;
  transform: translateY(-2px);
}
.contact-footer .footer-info .contact-item span {
  color: #1e40af;
  font-size: 20px;
}
.contact-footer .footer-info .contact-item p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #f0eee9;
}
.contact-footer .footer-info .contact-item small {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  color: #8a94a6;
}
.contact-footer .footer-map {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
}
.contact-footer .footer-map iframe {
  width: 100%;
  height: 100%;
}
.contact-footer .contact-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .contact-footer {
    padding: 60px 30px;
  }
  .contact-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-footer .footer-map {
    height: 320px;
  }
}
@media (max-width: 560px) {
  .contact-footer {
    padding: 50px 15px;
  }
  .contact-footer .footer-grid {
    display: flex;
    flex-direction: column;
  }
  .contact-footer .footer-info {
    width: 100%;
  }
  .contact-footer .footer-info h2 {
    font-size: 42px;
  }
  .contact-footer .footer-info p {
    font-size: 15px;
  }
  .contact-footer .contact-item {
    text-align: left;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-footer .footer-map {
    width: 100%;
    height: 280px;
  }
}
.search {
  padding: 60px 0;
  background: #111111;
}

.search__subtitle {
  display: inline-block;
  color: #1e40af;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.search__title {
  margin-bottom: 60px;
  color: #f0eee9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 0.95;
}

.search__title span {
  display: block;
  margin-top: 10px;
  color: #8a94a6;
  font-family: "Figtree", sans-serif;
  font-size: 40px;
  font-weight: 300;
}

.search__box {
  padding: 32px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.search__box-title {
  margin-bottom: 24px;
  color: #f0eee9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.search__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.search__group label {
  color: #8a94a6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.search__group select {
  height: 44px;
  padding: 0 12px;
  background: #202733;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #f0eee9;
  outline: none;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  transition: 0.25s;
}

.search__group select:hover {
  border-color: #1e40af;
}

.search__group select:focus {
  border-color: #1e40af;
}

.search__filters-extra {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search__actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  padding: 12px 28px;
  background: #1e40af;
  color: #f0eee9;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.search__btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}

.search__btn:active {
  transform: translateY(0);
}

.cars-results {
  margin-top: 64px;
}

.cars-results__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Figtree", sans-serif;
}

.cars-results__status,
.cars-results__count {
  margin: 0;
}

.cars-results__status {
  color: #f0eee9;
  font-weight: 500;
}

.cars-results__count {
  color: #8a94a6;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.car-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.car-card:hover {
  border-color: rgba(30, 64, 175, 0.7);
  transform: translateY(-4px);
}

.car-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #202733;
}

.car-card__accident-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 6px 12px;
  background: #dc2626;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.car-card__warranty-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 12px;
  background: #16a34a;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.car-card__image,
.car-card__placeholder {
  width: 100%;
  height: 100%;
}

.car-card__image {
  display: block;
  object-fit: cover;
}

.car-card__placeholder {
  place-items: center;
  color: #8a94a6;
  font-family: "Figtree", sans-serif;
}

.car-card__placeholder:not([hidden]) {
  display: grid;
}

.car-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.car-card__location {
  margin: 0 0 8px;
  color: #60a5fa;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.car-card__title {
  margin: 0;
  color: #f0eee9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.car-card__badge {
  margin: 8px 0 18px;
  color: #8a94a6;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.car-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.car-card__facts li {
  padding: 7px 10px;
  color: #f0eee9;
  background: #202733;
  border-radius: 6px;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
}

.car-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 22px;
  color: #8a94a6;
  font-family: "Figtree", sans-serif;
  font-size: 13px;
}

.car-card__price strong {
  color: #ee7135;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.car-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  color: #f0eee9;
  background: #1e40af;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.car-card__cta:hover,
.car-card__cta:focus-visible {
  background: #1e3a8a;
}

.cars-results__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.cars-load-more {
  padding: 14px 30px;
  color: #f0eee9;
  background: transparent;
  border: 1px solid #1e40af;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.cars-load-more:hover,
.cars-load-more:focus-visible {
  background: #1e40af;
}

.cars-load-more:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 1200px) {
  .search__title {
    font-size: 70px;
  }
  .search__title span {
    font-size: 36px;
  }
  .cars-grid {
    gap: 20px;
  }
  .car-card__title {
    font-size: 24px;
  }
  .car-card__content {
    padding: 18px;
  }
}
@media (max-width: 992px) {
  .search {
    padding: 70px 0;
  }
  .search__title {
    font-size: 56px;
  }
  .search__title span {
    font-size: 34px;
  }
  .search__box {
    padding: 24px;
  }
  .search__grid,
  .search__filters-extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .search__actions {
    justify-content: center;
  }
  .search__btn {
    width: 100%;
  }
  .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .car-card__title {
    font-size: 24px;
  }
  .car-card__content {
    padding: 18px;
  }
}
@media (max-width: 768px) {
  .search {
    padding: 60px 0;
  }
  .search__title {
    font-size: 46px;
  }
  .search__title span {
    font-size: 30px;
  }
  .search__box {
    padding: 22px;
  }
  .search__grid,
  .search__filters-extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cars-results__header {
    flex-direction: column;
    gap: 10px;
  }
  .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-card__title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .search {
    padding: 50px 0;
  }
  .search__title {
    font-size: 38px;
    margin-bottom: 35px;
  }
  .search__title span {
    font-size: 24px;
  }
  .search__box {
    padding: 18px;
  }
  .search__grid,
  .search__filters-extra {
    grid-template-columns: 1fr;
  }
  .search__actions {
    justify-content: center;
  }
  .search__btn {
    width: 100%;
  }
  .cars-results {
    margin-top: 40px;
  }
  .cars-results__header {
    display: block;
  }
  .cars-results__count {
    margin-top: 8px;
  }
  .cars-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .car-card__content {
    padding: 16px;
  }
  .car-card__title {
    font-size: 20px;
  }
  .car-card__badge {
    font-size: 13px;
  }
  .car-card__cta {
    font-size: 14px;
    padding: 12px;
  }
}
.whyus {
  padding: 80px 0;
  background: #111111;
  font-family: "Figtree", sans-serif;
}
.whyus__header {
  max-width: 750px;
  margin-bottom: 50px;
}
.whyus__subtitle {
  color: #1e40af;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
}
.whyus__title {
  font-size: 54px;
  color: #f0eee9;
  margin: 15px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}
.whyus__title span {
  color: #1e40af;
}
.whyus__description {
  color: #8a94a6;
  line-height: 1.7;
  font-size: 18px;
}
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.whyus__card {
  position: relative;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  counter-increment: card;
}
.whyus__card::before {
  content: "0" counter(card);
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}
.whyus__card:hover {
  transform: translateY(-8px);
  border-color: #1e40af;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12), rgba(255, 255, 255, 0.02));
}
.whyus__card h3 {
  color: #f0eee9;
  margin-bottom: 10px;
  font-size: 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}
.whyus__card p {
  color: #8a94a6;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .whyus {
    padding: 70px 0;
  }
  .whyus__title {
    font-size: 60px;
  }
  .whyus__grid {
    gap: 18px;
  }
  .whyus__card {
    padding: 24px;
  }
  .whyus__card h3 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .whyus {
    padding: 70px 0;
  }
  .whyus__header {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .whyus__title {
    font-size: 52px;
  }
  .whyus__description {
    font-size: 16px;
  }
  .whyus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .whyus__card {
    padding: 22px;
  }
  .whyus__card h3 {
    font-size: 24px;
  }
  .whyus__card::before {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .whyus {
    padding: 60px 0;
  }
  .whyus__title {
    font-size: 42px;
  }
  .whyus__title span {
    display: block;
  }
  .whyus__description {
    font-size: 15px;
  }
  .whyus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .whyus__card {
    padding: 20px;
  }
  .whyus__card h3 {
    font-size: 22px;
  }
  .whyus__card p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .whyus {
    padding: 50px 0;
  }
  .whyus__header {
    margin-bottom: 35px;
  }
  .whyus__title {
    font-size: 36px;
  }
  .whyus__description {
    font-size: 14px;
  }
  .whyus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .whyus__card {
    padding: 20px;
  }
  .whyus__card h3 {
    font-size: 20px;
  }
  .whyus__card::before {
    font-size: 30px;
  }
}
.faq {
  padding: 90px 0;
  background: #111111;
  font-family: "Figtree", sans-serif;
}
.faq__header {
  margin-bottom: 40px;
  max-width: 700px;
}
.faq__subtitle {
  color: #1e40af;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
}
.faq__title {
  font-size: 54px;
  color: #f0eee9;
  margin-top: 10px;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  transition: 0.3s ease;
}
.faq__item:hover {
  transform: translateY(-2px);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  color: #f0eee9;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq__question span {
  font-size: 22px;
  transition: 0.3s ease;
  color: #1e40af;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #8a94a6;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.active .faq__answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}
.faq__item.active .faq__question span {
  transform: rotate(45deg);
}
@media (max-width: 1200px) {
  .faq .faq {
    padding: 80px 0;
  }
  .faq .faq__title {
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .faq .faq {
    padding: 70px 0px;
  }
  .faq .faq__header {
    max-width: 100%;
    margin-bottom: 35px;
  }
  .faq .faq__title {
    font-size: 52px;
  }
  .faq .faq__question {
    padding: 18px;
    font-size: 17px;
  }
  .faq .faq__answer {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .faq .faq {
    padding: 60px 0;
  }
  .faq .faq__title {
    font-size: 42px;
  }
  .faq .faq__question {
    padding: 18px 16px;
    font-size: 16px;
  }
  .faq .faq__question span {
    font-size: 20px;
  }
  .faq .faq__answer {
    font-size: 14px;
    line-height: 1.7;
  }
}
@media (max-width: 576px) {
  .faq .faq {
    padding: 50px 0;
  }
  .faq .faq__header {
    margin-bottom: 30px;
  }
  .faq .faq__subtitle {
    font-size: 13px;
  }
  .faq .faq__title {
    font-size: 36px;
  }
  .faq .faq__question {
    padding: 16px 14px;
    font-size: 15px;
    gap: 12px;
  }
  .faq .faq__question span {
    font-size: 18px;
    flex-shrink: 0;
  }
  .faq .faq__answer {
    padding: 0 14px;
    font-size: 14px;
  }
  .faq .faq__item.active .faq__answer {
    padding: 0 14px 16px;
  }
}

* {
  box-sizing: border-box;
}

body {
  background-color: #111111;
  margin: 0;
  color: #f0eee9;
  font-family: "Figtree", sans-serif;
  padding: 0 15px;
}

/*# sourceMappingURL=style.css.map */
