
.home-hero-section {
  position: relative;
  background: linear-gradient(145deg, #edf4fd 0%, #dceffe 40%, #c8e4fc 100%);
  overflow: hidden;
  padding: 64px 0 56px;
}


.home-hero-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 172, 247, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 40px;
}

.home-hero-content {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-hero-title {
  font-size: 88px;
  font-weight: 900;
  color: #0175e9;
  background: linear-gradient(to right, #0175e9, #0d4ef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -25px;
}

.home-hero-description {
  font-size: 22.5px;
  color: #3a5580;
  line-height: 1.65;
  margin: 0;
}

.home-hero-order-widget {
  display: flex;
  gap: 0;
}

.home-hero-order-bar {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  overflow: visible;
  position: relative;
  padding: 10px;
  z-index: 1;
}

.home-hero-order-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px;
  flex: 1;
  gap: 5px;
  position: relative;
  border-radius: 18px;
  transition: background 0.15s;
}

.home-hero-order-field.has-dropdown:hover,
.home-hero-order-field.is-open {
  background: #f0f6ff;
}

.home-hero-order-field.is-open {
  border: 1.5px solid #a8cdf5;
  margin: -1px;
  padding: 15px 33px;
  z-index: 10;
  border-radius: 14px;
  background: #f0f6ff;
}

.home-order-field__label {
  font-size: 11px;
  color: #a0aec0;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.home-order-field__select {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  user-select: none;
}

.home-order-field__value {
  font-size: 14px;
  font-weight: 600;
  color: #2d3f5c;
  white-space: nowrap;
}

.home-hero-order-field.has-qty {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.home-order-qty-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-order-qty-input {
  width: 58px;
  height: 30px;
  text-align: center;
  border: 1.5px solid #c7d9f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3f5c;
  background: #fff;
  padding: 0 6px;
  outline: none;
  transition: border-color 0.15s;
  -moz-appearance: textfield;
}
.home-order-qty-input::-webkit-inner-spin-button,
.home-order-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.home-order-qty-input:focus {
  border-color: #0175e9;
}

.home-order-qty-unit {
  font-size: 13px;
  font-weight: 600;
  color: #2d3f5c;
}

.home-order-chevron {
  font-size: 10px;
  color: #a0aec0;
  transition:
    transform 0.2s ease,
    color 0.2s;
  margin-left: auto;
}

.home-hero-order-field.is-open .home-order-chevron {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.home-hero-order-divider {
  width: 1px;
  background: #e8f0f8;
  align-self: stretch;
  margin: 12px 0;
  flex-shrink: 0;
}

.home-order-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #dce8f5;
  border-radius: 14px;
  box-shadow:
    0 12px 36px rgba(0, 80, 180, 0.13),
    0 2px 8px rgba(0, 0, 0, 0.06);
  list-style: none;
  margin: 0;
  padding: 6px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  pointer-events: none;
}

.home-hero-order-field.is-open .home-order-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.home-order-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2d3f5c;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.home-order-dropdown__item:hover {
  background: #edf5ff;
  color: var(--primary-color, #0175e9);
}

.home-order-dropdown__item.is-selected {
  color: var(--primary-color, #0175e9);
  font-weight: 600;
  background: #edf5ff;
}

.home-hero-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background: linear-gradient(135deg, #0076ea 0%, #005cbd 100%);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    filter 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  border-radius: 16px;
  letter-spacing: 0.01em;
  min-width: 140px;
  margin: 5px;
  box-shadow: 0 4px 16px rgba(0, 123, 243, 0.3);
}

.home-hero-order-btn:hover {
  filter: brightness(1.07);
  box-shadow: 0 6px 22px rgba(0, 123, 243, 0.4);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.home-hero-order-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 123, 243, 0.25);
}

.home-hero-order-meta,
.home-order-cost,
.home-order-promo {
  display: none;
}

.home-hero-image-wrap {
  position: absolute;
  right: -500px;
  top: 300px;
  transform: translateY(-50%);
  width: 110%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-hero-image {
  width: 100%;
  object-fit: contain;
  object-position: center right;
  display: block;
  filter: drop-shadow(-8px 0 40px rgba(0, 80, 200, 0.12));
}

.home-hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-globe-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 16px 40px rgba(0, 80, 200, 0.2));
}

@media (max-width: 1024px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .home-hero-content {
    max-width: 100%;
    align-items: center;
  }

  .home-hero-image-wrap {
    position: static;
    display: flex;
    width: 100%;
    max-width: 430px;
    margin: 10px auto 0;
    transform: none;
    justify-content: center;
  }

  .home-hero-image {
    width: 100%;
    max-height: 240px;
    object-position: center;
  }

  .home-hero-description {
    text-align: center;
  }

  .home-hero-title {
    font-size: 50px;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

@media (max-width: 480px) {
  .home-hero-section {
    padding: 30px 0;
  }

  .home-hero-image-wrap {
    max-width: 320px;
    margin-top: 4px;
  }

  .home-hero-image {
    max-height: 180px;
  }

  .home-hero-order-bar {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 6px;
    gap: 4px;
  }

  .home-hero-order-field {
    flex: 1 1 calc(50% - 8px);
    padding: 10px 14px;
    border-radius: 12px;
    background: #f5f8fc;
  }

  .home-hero-order-field.is-open {
    padding: 11px 15px;
  }

  .home-hero-order-divider {
    display: none;
  }

  .home-hero-order-btn {
    width: 100%;
    margin: 4px 0 0;
    border-radius: 12px;
    padding: 13px;
    font-size: 18px;
  }

  .home-order-dropdown {
    min-width: 160px;
  }
}


.home-why-choose-section {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow-x: clip;
}

.home-why-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #0076ea 0%, #015ab9 100%);
  pointer-events: none;
  opacity: 0.95;
  z-index: 0;
}

.home-why-circle--left {
  width: 500px;
  height: 500px;
  top: 20%;
  left: -280px;
  transform: translateY(-50%);
  box-shadow: 0 20px 60px rgba(0, 123, 243, 0.25);
}

.home-why-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.home-why-content {
  max-width: 715px;
  width: 100%;
}

.home-why-title {
  font-size: 65px;
  font-weight: 850;
  color: #172b4c;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.home-why-description {
  font-size: 18px;
  color: #172b4c;
  line-height: 1.65;
  max-width: 600px;
}

.home-why-slider-container {
  position: relative;
  width: 100%;
  margin-top: 32px;
  overflow: visible;
}

.home-why-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 20px;
  cursor: grab;
  user-select: none;
  scroll-snap-type: x mandatory;
}

.home-why-slider::-webkit-scrollbar {
  display: none;
}

.home-why-slider.is-grabbing {
  cursor: grabbing;
}

.home-why-slider.is-grabbing .home-why-card {
  pointer-events: none;
}

.home-why-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 240px;
  background: linear-gradient(160deg, #ffffff17, #d0d0d073);
  border: 1.5px solid #d3d3d3;
  border-radius: 16px;
  padding: 28px 24px;
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: default;
  scroll-snap-align: start;
}

.home-why-card:hover {
  box-shadow: 0 8px 24px rgba(0, 123, 243, 0.15);
  border-color: var(--primary-color, #0175e9);
}

.home-why-card-title {
  font-size: 32px;
  font-weight: 850;
  color: var(--primary-color, #0175e9);
  margin: 0 0 12px;
  line-height: 1.3;
}

.home-why-card-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .home-why-circle--left {
    width: 350px;
    height: 350px;
    left: -175px;
    opacity: 0.2;
  }

  .home-why-inner {
    justify-content: center;
  }

  .home-why-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .home-why-choose-section {
    padding: 30px 0;
  }

  .home-why-circle--left {
    width: 175px;
    height: 175px;
    left: -145px;
  }

  .home-why-title {
    text-align: center;
    font-size: 30px;
  }

  .home-why-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-why-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .home-why-card {
    flex: 0 0 85%;
    min-width: 200px;
  }

  .home-why-title {
    font-size: 30px;
  }

  .home-why-card-title {
    font-size: 25px;
  }
}


.home-proxy-list-section {
  padding: 60px 0;
  background: #ffffff;
}

.home-proxy-list-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-proxy-list-title {
  font-size: 52px;
  font-weight: 850;
  color: #172b4c;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

.home-highlight-text {
  color: var(--primary-color);
}

.home-proxy-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f3f4f6;
  user-select: none;
}

.home-proxy-tabs.is-grabbing {
  cursor: grabbing !important;
}

.home-proxy-tabs.is-grabbing .home-proxy-tab {
  pointer-events: none;
}

.home-proxy-tabs::-webkit-scrollbar {
  height: 6px;
}

.home-proxy-tabs::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}

.home-proxy-tabs::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.home-proxy-tabs::-webkit-scrollbar-thumb:hover {
  background: #aeaeae;
}

.home-proxy-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.home-proxy-tab:hover {
  border-color: var(--primary-color, #0175e9);
  color: var(--primary-color, #0175e9);
  background: #f0f6ff;
}

.home-proxy-tab.is-active {
  background: var(--primary-color, #0175e9);
  border-color: var(--primary-color, #0175e9);
  color: #ffffff;
  font-weight: 600;
}

.home-tab-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.home-proxy-table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 32px;
  background: #ffffff;
  user-select: none;
}

.home-proxy-table-container.is-grabbing {
  cursor: grabbing !important;
}

.home-proxy-table-container::-webkit-scrollbar {
  height: 8px;
}

.home-proxy-table-container::-webkit-scrollbar-track {
  background: #f9fafb;
}

.home-proxy-table-container::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.home-proxy-table-container::-webkit-scrollbar-thumb:hover {
  background: #aeaeae;
}

.home-proxy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.home-proxy-table thead {
  background: linear-gradient(135deg, #4facf7 0%, #0175e9 100%);
}

.home-proxy-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.home-proxy-table thead th:first-child {
  border-top-left-radius: 16px;
}

.home-proxy-table thead th:last-child {
  border-top-right-radius: 16px;
}

.home-proxy-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}

.home-proxy-table tbody tr:hover {
  background: #f9fafb;
}

.home-proxy-table tbody tr:last-child {
  border-bottom: none;
}

.home-proxy-table tbody td {
  padding: 20px;
  vertical-align: middle;
}

.home-service-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 350px;
}

.home-service-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  flex: 1;
}

.home-service-link:hover {
  transform: translateX(4px);
}

.home-service-link:hover .home-service-name {
  color: #0175e9;
}

.home-service-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  padding: 6px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.home-service-link:hover .home-service-logo {
  border-color: #0175e9;
  box-shadow: 0 4px 12px rgba(30, 107, 168, 0.15);
}

.home-service-info {
  flex: 1;
  min-width: 0;
}

.home-service-name {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.home-service-desc {
  font-size: 13px;
  color: #172b4c;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-quantity-select {
  padding: 10px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 180px;
  min-width: 180px;
  max-width: 180px;
}

.home-quantity-select:hover {
  border-color: var(--primary-color, #0175e9);
}

.home-quantity-select:focus {
  outline: none;
  border-color: var(--primary-color, #0175e9);
  box-shadow: 0 0 0 3px rgba(0, 123, 243, 0.1);
}

.home-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.home-status-available {
  background: #d1fae5;
  color: #065f46;
}

.home-status-out {
  background: #fee2e2;
  color: #991b1b;
}

.home-price-cell {
  min-width: 130px;
  transition: transform 0.2s ease;
}

.home-price-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.home-price-per-unit {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #aeaeae;
}

.home-price-per-unit i {
  color: #aeaeae;
  font-size: 11px;
}

.home-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1.5px solid var(--primary-color, #0175e9);
  border-radius: 10px;
  color: var(--primary-color, #0175e9);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  text-decoration: none;
}

.home-btn-cart:hover {
  background: var(--primary-color, #0175e9);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 243, 0.25);
}

.home-btn-buy {
  padding: 11px 24px;
  background: var(--primary-color, #0175e9);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.home-btn-buy:hover {
  background: #0175e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 243, 0.3);
}

.home-proxy-list-footer {
  text-align: center;
}

.home-btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 28px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.home-btn-view-more:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.home-btn-view-more:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .home-proxy-list-section {
    padding: 30px 0;
  }

  .home-proxy-list-header {
    margin-bottom: 32px;
  }

  .home-proxy-tabs {
    gap: 8px;
    margin-bottom: 24px;
  }

  .home-proxy-tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  .home-tab-icon {
    width: 18px;
    height: 18px;
  }

  .home-proxy-table-container {
    overflow-x: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    margin-bottom: 24px;
  }

  .home-proxy-table thead {
    display: none;
  }

  .home-proxy-table {
    min-width: unset;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .home-proxy-table tbody tr {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
  }

  .home-proxy-table tbody tr:last-child {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
  }

  .home-proxy-table tbody td {
    display: block;
    padding: 0;
    border: none;
  }

  .home-proxy-table tbody td:nth-child(1) {
    margin-bottom: 12px;
  }

  .home-service-cell {
    min-width: unset;
    width: 100%;
  }

  .home-service-logo {
    width: 44px;
    height: 44px;
  }

  .home-service-name {
    font-size: 15px;
  }

  .home-service-desc {
    font-size: 12px;
  }

  .home-proxy-table tbody td:nth-child(2),
  .home-proxy-table tbody td:nth-child(3),
  .home-proxy-table tbody td:nth-child(4) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
  }

  .home-proxy-table tbody td:nth-child(2)::before {
    content: "Số lượng";
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
  }

  .home-proxy-table tbody td:nth-child(3)::before {
    content: "Hiện có";
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
  }

  .home-proxy-table tbody td:nth-child(4)::before {
    content: "Giá";
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    align-self: flex-start;
    padding-top: 2px;
  }

  .home-quantity-select {
    padding: 8px 12px;
    font-size: 13px;
    min-width: unset;
  }

  .home-price-cell {
    min-width: unset;
    text-align: right;
  }

  .home-price-amount {
    font-size: 16px;
  }

  .home-price-per-unit {
    font-size: 11px;
    justify-content: flex-end;
  }

  .home-proxy-table tbody td:nth-child(5) {
    display: flex;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
  }

  .home-action-buttons {
    width: 100%;
    gap: 10px;
  }

  .home-btn-cart {
    flex-shrink: 0;
  }

  .home-btn-buy {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
  }
}

.home-why-slider-lines {
  position: relative;
  height: 3px;
  background: #d1d5db;
  margin-top: 24px;
}

.home-why-slider-lines__bar {
  position: absolute;
  top: 0;
  height: 100%;
  background: #0175e9;
  left: 0;
  width: 0;
    left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-why-line {
  display: none;
}

@media (max-width: 768px) {
  .home-why-slider-lines {
    height: 2.5px;
    margin-top: 16px;
  }

  .home-proxy-list-title {
    font-size: 30px;
  }
}


.home-commitment-section {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.home-commitment-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  background: linear-gradient(90deg, #0175e9 0%, #015ab9 100%);
  border-radius: 24px;
  overflow: visible;
  position: relative;
  width: 1380px;
    20px 20px 40px rgb(100 100 100 / 55%),
    0 4px 16px rgb(0 80 200 / 25%);
}

.home-commitment-content {
  padding: 60px 115px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.home-commitment-title {
  font-size: 62px;
  font-weight: 850;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.home-commitment-title__big {
  display: block;
  font-weight: 800;
  color: #ffffff;
}

.home-commitment-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.home-commitment-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-commitment-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-commitment-feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-commitment-feature__icon i {
  font-size: 40px;
  color: #ffffff;
}

.home-commitment-feature__icon svg,
.home-commitment-feature__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.home-commitment-feature__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-commitment-feature__title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.home-commitment-feature__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}

.home-commitment-image-wrap {
  align-self: flex-end;
  flex-shrink: 0;
  width: 480px;
  position: relative;
  z-index: 2;
  margin-right: -90px;
  margin-bottom: 202px;
}

.home-commitment-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-8px 0 24px rgba(0, 50, 150, 0.2));
  transform: scale(2.5);
}

@media (max-width: 1024px) {
  .home-commitment-inner {
    grid-template-columns: 1fr;
  }

  .home-commitment-image-wrap {
    display: none;
  }

  .home-commitment-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .home-commitment-section {
    padding: 30px 0;
  }

  .home-commitment-content {
    padding: 30px;
  }

  .home-commitment-title__big {
    font-size: 28px;
  }

  h2.home-commitment-title {
    font-size: 30px;
  }
}


.home-pricing-section {
  padding: 60px 0;
  background: #ffffff;
}

.home-pricing-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-pricing-title {
  font-size: 65px;
  font-weight: 850;
  color: #172b4c;
  line-height: 1.3;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.home-pricing-title__highlight {
  color: var(--primary-color);
}

.home-pricing-description {
  font-size: 18px;
  color: #172b4c;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

.home-pricing-slider-container {
  position: relative;
  overflow: visible;
  padding: 0 80px;
  margin: 0 -4px;
}

.home-pricing-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  margin-top: -48px;
  padding-bottom: 63px;
  margin-bottom: -63px;
  padding-left: 12px;
  margin-left: -12px;
  padding-right: 12px;
  margin-right: -12px;
  touch-action: pan-y;
}

.home-pricing-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 4px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.home-pricing-slider.is-dragging {
  cursor: grabbing;
  transition: none;
}

.home-pricing-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #aeaeae;
  font-size: 18px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-pricing-slider__arrow--prev {
  left: 0;
}

.home-pricing-slider__arrow--next {
  right: 0;
}

.home-pricing-slider__arrow:hover {
  background: var(--primary-color, #0175e9);
  border-color: var(--primary-color, #0175e9);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 123, 243, 0.25);
}

.home-pricing-slider__arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.home-pricing-slider__arrow.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.home-pricing-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.home-pricing-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-pricing-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 15px;
}

.home-pricing-slider__dot.is-active {
  background: var(--primary-color, #0175e9);
  width: 24px;
  border-radius: 4px;
}

@media (min-width: 1025px) and (max-width: 1080px) {
  .home-pricing-slider {
    gap: 24px;
  }

  .home-pricing-slider-container {
    padding: 0 75px;
  }
}

@media (max-width: 1024px) {
  .home-pricing-slider {
    gap: 20px;
  }

  .home-pricing-slider-container {
    padding: 0 70px;
  }

  .home-pricing-slider__arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .home-pricing-slider {
    gap: 16px;
  }

  .home-pricing-slider-container {
    padding: 0 60px;
  }

  .home-pricing-slider-controls {
    margin-top: 40px;
  }

  .home-pricing-slider__arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  h2.home-pricing-title {
    font-size: 30px;
  }

  .home-pricing-section {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .home-pricing-slider__arrow {
    display: none !important;
  }

  .home-pricing-slider-container {
    padding: 0 16px;
  }

  .home-pricing-slider-wrapper {
    overflow: visible;
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
    padding-top: 48px;
    margin-top: -48px;
    padding-bottom: 48px;
    margin-bottom: -48px;
  }

  .home-pricing-slider {
    gap: 16px;
    padding: 0;
  }

  .home-pricing-slider .pricing-card {
    flex-shrink: 0;
  }

  .home-pricing-slider-controls {
    margin-top: 20px;
  }
}


.home-coverage-section {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.home-coverage-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.home-coverage-header {
  text-align: center;
  margin: 0 auto;
}

.home-coverage-title {
  font-size: 65px;
  font-weight: 800;
  color: #172b4c;
  line-height: 1.25;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

span.home-coverage-title__highlight {
  color: var(--primary-color);
}

.home-coverage-description {
  font-size: 18px;
  color: #172b4c;
  max-width: 660px;
  margin-inline: auto;
}

.home-coverage-map {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.home-coverage-map__bg {
  width: 100%;
  line-height: 0;
}

.home-coverage-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

.home-coverage-map__pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coverage-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
  cursor: default;
  z-index: 2;
}

.coverage-pin__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0175e9;
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 3px rgba(0, 123, 243, 0.25),
    0 2px 6px rgba(0, 123, 243, 0.35);
  flex-shrink: 0;
  position: relative;
}

.coverage-pin__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0, 123, 243, 0.3);
  animation: pin-pulse 2s ease-out infinite;
}

@keyframes pin-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.coverage-pin__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid #0175e9;
  border-radius: 20px;
  padding: 5px 10px 5px 6px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1;
}

.coverage-pin__label img {
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.coverage-pin {
  transform: translateX(-50%);
}

.coverage-pin--right {
  transform: translateX(-100%);
}

.coverage-pin:hover .coverage-pin__label {
  background: #0175e9;
  border-color: #0175e9;
  color: #ffffff;
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

@media (max-width: 1024px) {
  .home-coverage-section {
    padding: 60px 0;
  }

  .home-coverage-inner {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .home-coverage-section {
    padding: 30px 0;
  }

  .home-coverage-inner {
    gap: 28px;
  }

  .home-coverage-title {
    font-size: 30px;
  }

  .home-coverage-description {
    font-size: 14px;
  }

  .coverage-pin__label {
    font-size: 11px;
    padding: 4px 8px 4px 5px;
  }

  .coverage-pin__dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .home-coverage-section {
    padding: 30px 0;
  }

  .home-coverage-title {
    font-size: 30px;
  }

  .coverage-pin__label {
    font-size: 9px;
    padding: 3px 6px 3px 4px;
    gap: 3px;
  }

  .coverage-pin__label img {
    width: 12px;
    height: 9px;
  }

  .coverage-pin__dot {
    width: 8px;
    height: 8px;
    border: 1.5px solid #ffffff;
    box-shadow:
      0 0 0 2px rgba(0, 123, 243, 0.2),
      0 1px 3px rgba(0, 123, 243, 0.3);
  }

  .coverage-pin__dot::after {
    inset: -3px;
    border-width: 1.5px;
  }

  .coverage-pin {
    gap: 2px;
  }
}


.home-rating-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.home-rating-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(100vw - ((100vw - 1220px) / 2));
  max-width: 100vw;
  height: 530px;
  background: linear-gradient(135deg, #0f2d8a 0%, #0076ea 40%, #015ab9 100%);
  border-radius: 0 300px 300px 0;
  z-index: 0;
  box-shadow:
    inset 0 2px 40px rgba(0, 0, 80, 0.3),
    inset 0 -2px 40px rgba(0, 0, 80, 0.2),
    0 0 40px 4px rgba(59, 130, 246, 0.12),
    20px 0px 20px rgb(146 181 239 / 90%);
}

.home-rating-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.home-rating-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.home-rating-slider-wrapper {
  position: relative;
  overflow: hidden;
  height: 460px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 60%,
    black 30%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 60%,
    black 30%,
    transparent 100%
  );
}

.home-rating-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.home-rating-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.home-rating-column__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.home-rating-column--left .home-rating-column__track {
  animation-name: rating-scroll-down;
  animation-duration: 35s;
}

.home-rating-column--right .home-rating-column__track {
  animation-name: rating-scroll-up;
  animation-duration: 35s;
}

@keyframes rating-scroll-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes rating-scroll-up {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.home-rating-column:hover .home-rating-column__track {
  animation-play-state: paused;
}

.home-rating-card {
  backdrop-filter: blur(12px);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 16px;
  padding: 18px 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 60, 0.1);
}

.home-rating-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 60, 0.15);
}

.home-rating-card__quote {
  width: 28px;
  height: 28px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.home-rating-card__quote i {
  font-size: 14px;
  color: #0175e9;
}

.home-rating-card__comment {
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 14px;
}

.home-rating-card__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.home-rating-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(99, 102, 241, 0.2);
  background: #e0e7ff;
}

.home-rating-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-rating-card__info {
  flex: 1;
  min-width: 0;
}

.home-rating-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.3;
}

.home-rating-card__position {
  font-size: 11px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.home-rating-header {
  text-align: left;
}

.home-rating-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 850;
  color: #ffffff;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-rating-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

@media (min-width: 2560px) {
  .home-rating-section::before {
    width: 100%;
    border-radius: 0;
    top: 0;
    bottom: 0;
    height: auto;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .home-rating-section::before {
    width: calc(100vw - ((100vw - 1000px) / 2));
  }

  .home-rating-inner {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .home-rating-section::before {
    height: 380px;
    border-radius: 0 190px 190px 0;
  }

  .home-rating-inner {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

  .home-rating-slider-wrapper {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .home-rating-section {
    padding: 30px 0;
  }

  .home-rating-section::before {
    width: 100%;
    height: auto;
    top: 0;
    bottom: 0;
    transform: none;
    border-radius: 0;
  }

  .home-rating-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-rating-header {
    text-align: center;
    order: -1;
  }

  .home-rating-title {
    align-items: center;
    font-size: 30px;
  }

  .home-rating-description {
    margin: 0 auto;
    max-width: none;
  }

  .home-rating-slider-wrapper {
    height: 350px;
  }

  .home-rating-columns {
    gap: 16px;
  }

  .home-rating-card {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .home-rating-inner {
    gap: 32px;
  }

  .home-rating-slider-wrapper {
    height: 400px;
  }

  .home-rating-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-rating-column--right {
    display: none;
  }

  .home-rating-column--left .home-rating-column__track {
    animation-duration: 45s;
  }

  .home-rating-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .home-rating-card__quote {
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
  }

  .home-rating-card__quote i {
    font-size: 13px;
  }

  .home-rating-card__comment {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .home-rating-card__avatar {
    width: 32px;
    height: 32px;
  }

  .home-rating-card__name {
    font-size: 12px;
  }

  .home-rating-card__position {
    font-size: 10px;
  }

  .home-rating-title {
    font-size: 30px;
  }

  .home-rating-description {
    font-size: 14px;
  }

  .home-rating-card {
    box-shadow: none;
  }
}

.home-partners {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
}

.home-partners .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 10px;
}

.home-partners .section-title {
  font-size: 65px;
  font-weight: 850;
  line-height: 1.2;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.home-partners .section-title .main {
  color: #172b4c;
}

.home-partners .section-title .highlight {
  color: var(--primary-color);
}

.home-partners .section-description {
  font-size: 18px;
  line-height: 1.7;
  color: #172b4c;
  max-width: 640px;
  margin: 0 auto;
}

.partners-slider-container {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.partners-slider-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  width: fit-content;
}

.partners-slider-row:last-child {
  margin-bottom: 0;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
  min-width: 160px;
  width: 160px;
  height: 90px;
}

.partner-card:hover .partner-logo {
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 123, 243, 0.12);
}

.partner-logo img {
  max-width: 120px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.partner-card:hover .partner-logo img {
  opacity: 1;
}

.partner-name {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.partner-card:hover .partner-name {
  color: var(--primary-color);
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .home-partners {
    padding: 30px 0;
  }

  .partners-slider-row {
    gap: 40px;
    margin-bottom: 32px;
  }

  .partner-card .partner-logo {
    min-width: 120px;
    width: 120px;
    height: 72px;
    padding: 14px 20px;
  }

  .partner-logo img {
    max-width: 90px;
    max-height: 44px;
  }

  .partner-name {
    font-size: 11px;
  }

  .home-partners .section-title {
    font-size: 30px;
  }
}


.section-divider-circle {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}

.section-divider-circle::before {
  content: "";
  position: absolute;
  top: 0;
  right: -400px;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 243, 0.08) 0%,
    rgba(0, 123, 243, 0.03) 60%,
    transparent 100%
  );
  border-radius: 50%;
  pointer-events: none;
}

.section-divider-circle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(200px, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 243, 0.08) 0%,
    rgba(0, 123, 243, 0.04) 50%,
    transparent 100%
  );
  border-radius: 50%;
  pointer-events: none;
}


.home-faq {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-header-col {
  position: relative;
}

.faq-header-sticky {
  position: sticky;
  top: 100px;
}

.faq-header-sticky .section-title {
  font-size: 65px;
  font-weight: 850;
  line-height: 1.2;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.faq-header-sticky .section-title .main {
  color: #172b4c;
  display: block;
}

.faq-header-sticky .section-title .highlight {
  color: var(--primary-color);
  display: block;
}

.faq-header-sticky .section-description {
  font-size: 18px;
  line-height: 1.7;
  color: #172b4c;
  margin: 0;
}

.faq-list-col {
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 123, 243, 0.08);
}

.faq-item.is-open {
  border-color: var(--primary-color);
  box-shadow: 0 6px 24px rgba(0, 123, 243, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
  position: relative;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-item.is-open .faq-question {
  background: #f0f6ff;
}

.faq-question-text {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.faq-icon i {
  font-size: 16px;
  color: #aeaeae;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  background: var(--primary-color);
}

.faq-item.is-open .faq-icon i {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 28px;
}

.faq-answer-text {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-header-sticky {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .home-faq {
    padding: 30px 0;
  }

  .faq-header-sticky .section-title {
    font-size: 30px;
  }

  .faq-grid {
    gap: 30px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    padding: 20px;
    gap: 16px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer-text {
    font-size: 14px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-icon i {
    font-size: 14px;
  }
}
