@charset "UTF-8";
:root {
  --text-black-color: #131921;
  --v-primary-base: #fff;
  --primary-500: #1a73e8;
  --primary-600: #1558d6;
  --accent-500: #12b981;
  --text-900: #0f172a;
  --text-700: #334155;
  --text-500: #64748b;
  --bg-50: #f8fafc;
  --surface-100: #ffffff;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 20px 50px rgba(15, 23, 42, 0.15);
  --radius-12: 12px;
  --radius-16: 16px;
}
* {
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  color: var(--text-700);
  background: var(--bg-50);
  line-height: 1.6;
}
.v-application-wrap {
  width: 100%;
  overflow-x: hidden;
}
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.header-navbar {
  padding: 18px 0;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.header-navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  flex-shrink: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-image {
  height: 32px;
  width: auto;
  max-width: 200px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.auth-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-link {
  color: var(--text-900);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--primary-500);
}
.login-link {
  padding: 8px 16px;
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.06);
}
.login-link:hover {
  color: var(--primary-500);
}
.nav-divider {
  color: #ccc;
  font-size: 14px;
}
.register-link {
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.3s ease;
  color: #fff !important;
  background: linear-gradient(135deg, #1a73e8, #0ea5e9);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.25);
}
.banner-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}
.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.7),
    rgba(15, 23, 42, 0.25)
  );
  display: flex;
  align-items: center;
}
.banner-overlay-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.banner-content {
  max-width: 640px;
  color: #fff;
  text-align: left;
  margin: 0;
}
.banner-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInDown-bd5cec9d 1s ease;
  letter-spacing: -0.02em;
}
.banner-desc {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 32px;
  animation: fadeInUp-bd5cec9d 1s ease 0.3s both;
}
@keyframes fadeInDown-bd5cec9d {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp-bd5cec9d {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-white {
  background-color: #fff;
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.statistics-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.header-icon {
  margin-bottom: 16px;
}
.header-icon img {
  height: 60px;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-500);
  max-width: 800px;
  margin: 0 auto;
}
.divider {
  width: 80px;
  height: 2px;
  background-color: var(--primary-500);
  margin: 32px auto;
}
.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
}
.statistics-card {
  background: var(--surface-100);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-soft);
  padding: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.map-display-area {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-12);
  background: #f1f5f9;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}
.map-display {
  position: relative;
}
.map-image {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.map-image:hover {
  transform: scale(1.02);
}
.map-note {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: var(--text-500);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 4px;
}
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.data-card {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-12);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: var(--surface-100);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.data-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.icon-wrapper {
  margin-bottom: 15px;
}
.icon-wrapper img {
  height: 40px;
  transition: transform 0.3s ease;
}
.icon-wrapper img:hover {
  transform: scale(1.1);
}
.data-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-500);
  margin: 10px 0 5px;
}
.data-label {
  font-weight: 600;
  margin: 5px 0;
  color: var(--text-900);
}
.data-desc {
  font-size: 14px;
  color: var(--text-500);
}
.data-card.active {
  background-color: #fff;
  box-shadow: 0 5px 15px #00000014;
}
.data-card.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--accent-500);
}
.advantages-section {
  padding: 80px 0;
  background: var(--bg-50);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantage-item {
  text-align: center;
  background: var(--surface-100);
  padding: 28px 24px;
  border-radius: var(--radius-16);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.advantage-icon {
  margin-bottom: 20px;
}
.advantage-icon img {
  height: 140px;
  object-fit: contain;
}
.advantage-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 15px;
}
.advantage-desc {
  color: var(--text-500);
  line-height: 1.6;
}
.dropshipping-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.dropshipping-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.dropshipping-header {
  margin-bottom: 48px;
}
.dropshipping-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 15px 35px rgba(26, 115, 232, 0.3);
  background: linear-gradient(135deg, #1a73e8, #0ea5e9);
}
.dropshipping-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.dropshipping-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 16px;
}
.title-divider {
  width: 80px;
  height: 2px;
  background-color: var(--primary-500);
  margin: 0 auto;
}
.dropshipping-description {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.description-card {
  background: var(--surface-100);
  border-radius: var(--radius-16);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
  position: relative;
}
.description-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(26, 115, 232, 0.3);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.35);
  background: linear-gradient(135deg, #1a73e8, #0ea5e9);
}
.card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.description-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-500);
  margin: 0;
  text-align: left;
}
.register-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a73e8, #0ea5e9);
}
.register-content {
  text-align: center;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
}
.register-icon {
  margin-bottom: 32px;
}
.register-icon img {
  height: 40px;
}
.register-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.btn-light {
  background-color: #fff;
  color: #333;
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  animation: fadeIna-bd5cec9d 1s ease 0.6s both;
}
.btn-light:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}
@keyframes fadeIna-bd5cec9d {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .header-navbar {
    padding: 10px 0;
  }
  .logo-image {
    height: 24px;
  }
  .nav-links {
    gap: 10px;
  }
  .auth-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .nav-link {
    font-size: 13px;
    padding: 6px 12px;
  }
  .nav-divider {
    font-size: 12px;
  }
  .banner-wrapper {
    height: 70vh;
    min-height: 400px;
  }
  .banner-content {
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
  }
  .section-title {
    font-size: clamp(24px, 4vw, 32px);
  }
  .section-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
  }
  .statistics-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .data-card {
    padding: 15px;
  }
  .data-value {
    font-size: 24px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .advantage-icon img {
    height: 120px;
  }
  .register-section,
  .dropshipping-section {
    padding: 60px 0;
  }
  .dropshipping-icon {
    width: 60px;
    height: 60px;
  }
  .dropshipping-icon img {
    width: 30px;
    height: 30px;
  }
  .dropshipping-title {
    font-size: clamp(24px, 4vw, 32px);
  }
  .dropshipping-description {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .description-card {
    padding: 24px;
  }
  .card-icon {
    width: 50px;
    height: 50px;
  }
  .description-card p {
    font-size: 16px;
    line-height: 1.6;
  }
  .register-title {
    font-size: clamp(24px, 4vw, 32px);
  }
  .btn-light {
    padding: 10px 24px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .banner-wrapper {
    height: 60vh;
    min-height: 350px;
  }
  .statistics-section,
  .advantages-section {
    padding: 60px 0;
  }
  .data-grid {
    grid-template-columns: 1fr;
  }
}
.v-expansion-panels {
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  width: 100%;
  z-index: 1;
}
.v-expansion-panel {
  flex: 1 0 100%;
  max-width: 100%;
  position: relative;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.v-expansion-panels > :first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.v-expansion-panel-header {
  align-items: center;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  display: flex;
  font-size: 15px;
  line-height: 1;
  min-height: 48px;
  outline: none;
  padding: 16px 24px;
  position: relative;
  transition: min-height 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  width: 100%;
}
.v-expansion-panel-header {
  text-align: left;
}
.v-expansion-panel-header > :not(.v-expansion-panel-header__icon) {
  flex: 1 1 auto;
}
.v-expansion-panel-header__icon {
  display: inline-flex;
  margin-bottom: -4px;
  margin-top: -4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.v-expansion-panel-header__icon {
  margin-left: auto;
}
.v-expansion-panel-header__icon .down-icon {
  width: 20px;
  height: 20px;
}
.v-expansion-panel-content {
  display: none;
}
.v-expansion-panel-content__wrap {
  padding: 0 24px 16px;
  flex: 1 1 auto;
  max-width: 100%;
}
.v-expansion-panel-header:before {
  background-color: currentColor;
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.v-expansion-panel--active .v-expansion-panel-content {
  display: flex;
}
.d-none {
  display: none !important;
}
.d3--text {
  color: #3d3d3d;
}
.footer-bg-color {
  background: #fff;
}
.footer-pb-14 {
  padding-bottom: 56px;
}
.footer-pb-md-10 {
  padding-bottom: 40px;
}
.footer-pb-lg-0 {
  padding-bottom: 0;
}
.footer-pb-7 {
  padding-bottom: 28px;
}
.footer-mb-6 {
  margin-bottom: 24px;
}
.footer-mb-5 {
  margin-bottom: 20px;
}
.footer-mb-2 {
  margin-bottom: 8px;
}
.footer-mt-1 {
  margin-top: 20px;
}
.footer-px-0 {
  padding-left: 0;
  padding-right: 0;
}
.footer-py-5 {
  padding-top: 20px;
  padding-bottom: 50px;
}
.footer-lh-1 {
  line-height: 1;
}
.footer-email-txt {
  font-size: 14px;
  color: var(--text-black-color);
  font-weight: 400;
}
.footer-v-form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 19px;
}
.footer-v-input {
  margin-right: 10px;
  height: 35px;
  background-color: #f2f2f2;
  overflow: hidden;
  border-radius: 4px;
  padding: 0 11px;
  border: 1px solid rgba(17, 17, 17, 0.2);
}
.footer-input-email {
  width: 100%;
  height: 100%;
}
.f-Subscribe-btns {
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--text-black-color);
  color: var(--v-primary-base);
}
.f-Subscribe-btns:hover {
  transform: translateY(-4px);
}
.footer-ul--text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black-color);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-fs-13 {
  font-size: 13px;
  font-weight: 400;
}
.footer-py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.footer-email-inner {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-black-color);
  margin-bottom: 8px;
}
.footer-email-txt {
  color: var(--text-black-color);
}
.f-email-icon {
  width: 18px;
  height: 13px;
  margin-right: 8px;
}
.border-gray-800 {
  border-color: #fff3 !important;
}
.border-gray-331A59 {
  border-color: #331a59 !important;
}
.footer-bg-color .primary--text {
  color: var(--text-black-color) !important;
}
.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.border-bottom {
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.1) !important;
}
.footer-py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer-pe-4 {
  padding-right: 16px;
}
.footer-pe-md-7 {
  padding-right: 28px;
}
.mt-auto {
  margin-top: auto !important;
}
.container-footer {
  width: 100%;
  padding: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 960px) {
  .container-footer {
    max-width: 900px;
  }
}
@media (min-width: 1264px) {
  .container-footer {
    max-width: 1400px;
  }
}
.mw-100 {
  max-width: 100% !important;
}
.row {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  margin: -12px;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
  width: 100%;
  padding: 12px;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 960px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 600px) {
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
@media (min-width: 1264px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}
@media (min-width: 960px) {
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1264px) {
  .d-lg-block {
    display: block !important;
  }
  .offset-lg-1 {
    margin-left: 18.6666666667%;
  }
}
.ps-0 {
  padding-left: 0 !important;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.text-reset {
  color: var(--text-700);
  transition: color 0.2s ease;
}
.text-reset:hover {
  color: var(--primary-500);
}
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
@media (min-width: 1264px) {
  .d-lg-none {
    display: none !important;
  }
}
.v-item-group {
  flex: 0 1 auto;
  position: relative;
  max-width: 100%;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}