/* V2 Landing - Scoped with .glv2 */
/* ================================ */

/* --- Base & Utilities --- */
.glv2 {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}

.glv2-text--blue {
  color: #2B7DE9;
}

.glv2-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.glv2-btn--primary {
  background: #2B7DE9;
  color: #fff;
}

.glv2-btn--primary:hover {
  background: #1a6ad4;
  text-decoration: none;
}

.glv2-btn--dark {
  background: #2a2a3e;
  color: #fff;
}

.glv2-btn--dark:hover {
  background: #1a1a2e;
  text-decoration: none;
}

.glv2-btn--outline {
  background: transparent;
  border: 2px solid #1a1a2e;
  color: #1a1a2e;
}

.glv2-btn--outline:hover {
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
}

.glv2-btn--white {
  background: #fff;
  color: #2B7DE9;
}

.glv2-btn--white:hover {
  background: #f0f4ff;
  text-decoration: none;
}

.glv2-btn--outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.glv2-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.glv2-btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* --- Hero --- */
.glv2-hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.glv2-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: lightgray;
}

.glv2-hero__bg--mobile {
  display: none;
}

.glv2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(94deg, #051133 -14.39%, rgba(13, 41, 53, 0.00) 48.92%), linear-gradient(180deg, #000 -9.13%, rgba(0, 0, 0, 0.00) 17.37%);
}

.glv2-hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 40px 0 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}

.glv2-hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glv2-hero__title {
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.glv2-hero__highlight {
  color: #2FA1FA;
}

.glv2-hero__desc {
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.glv2-hero__desc strong {
  color: #fff;
  font-weight: 700;
}

.glv2-hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.glv2-hero__buttons .button {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 13px 20px !important;
  border-radius: 10px !important;
  gap: 10px;
  font-size: 15px;
}

.glv2-hero__buttons .button.-accent {
  background: linear-gradient(213deg, #2FA1FA 31.71%, #1B45C6 131.14%) !important;
}

.glv2-hero__buttons .button.text-accent,
.glv2-hero__buttons .button.-outline-accent,
.glv2-hero__buttons .button.text-accent.-outline-accent {
  color: #fff !important;
  border-color: #fff !important;
}

.glv2-hero__buttons .button.-outline-accent:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.glv2-hero__buttons .button.-outline-accent svg path {
  fill: #fff !important;
}


/* --- Clients --- */
.glv2-clients {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.glv2-clients__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a2e;
}

.glv2-clients__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.glv2-clients__circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.glv2-clients__circle img {
  max-width: 70px;
  max-height: 40px;
  object-fit: contain;
}

/* --- Stats Cards --- */
.glv2-stats-section {
  background: #fff;
}

.glv2-stats-row {
  display: flex;
  padding: 72px 0;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.glv2-stat-card {
  width: 325.333px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 16px;
  color: #fff;
}

.glv2-stat-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.glv2-stat-card__desc {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.glv2-stat-card__number {
  font-size: 50px;
  font-weight: 600;
}

.glv2-stat-card__unit {
  font-size: 18px;
  font-weight: 600;
}

/* Pricing section */
.glv2-pricing {
  display: flex;
  width: 100%;
  padding-bottom: 72px;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.glv2-pricing__container {
  display: flex;
  align-items: stretch;
  position: relative;
  height: 750px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.glv2-pricing__left {
  width: 720px;
  flex-shrink: 0;
  padding: 100px 0 0 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 43px;
}

.glv2-pricing__right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.glv2-pricing__title {
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-size: 57px;
  font-weight: 700;
  line-height: 130%;
}

.glv2-pricing__title--blue {
  color: #2FA1FA;
}

.glv2-pricing__title--dark {
  color: #0A2240;
}

.glv2-pricing__features {
  list-style: none;
  padding: 0;
}

.glv2-pricing__features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0A2240;
  line-height: 28px;
}

.glv2-pricing__map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

/* Card section - negative margin for overlap with map */
.glv2-pricing__card-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  margin-top: -180px;
}

/* Lower Price offer header - white pill */
.glv2-pricing__card-header {
  height: 48px;
  padding: 10px 40px;
  background: #fff;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: relative;
}

.glv2-pricing__card-header span {
  text-align: center;
  color: #0A2240;
  font-size: 20px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 36px;
}

/* Card row */
.glv2-pricing__card-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -24px;
}

/* Badge - absolutely positioned on card */
.glv2-pricing__badge-wrap {
  position: absolute;
  top: 12px;
  left: -24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.glv2-pricing__badge {
  height: 32px;
  padding: 10px;
  background: #F65151;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 16.8px;
  white-space: nowrap;
}

.glv2-pricing__badge::before {
  content: "\1F525";
  margin-right: 4px;
}

.glv2-pricing__badge-arrow {
  width: 8px;
  height: 8px;
  background: #000;
}

/* Main gradient card */
.glv2-pricing__card {
  display: flex;
  width: 1008px;
  padding: 0 24px;
  background: linear-gradient(133deg, #2FA1FA 0%, #1B45C6 100%);
  border-radius: 20px;
  outline: 8px solid rgba(47, 161, 250, 0.20);
  align-items: flex-start;
  gap: 40px;
  color: #fff;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  position: relative;
}

/* Override antd Badge.Ribbon size */
.glv2-pricing__card-row .ant-ribbon {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  padding: 6px 16px;
  line-height: 16.8px;
  height: auto;
  top: 16px;
}

/* Card left: country + price */
.glv2-pricing__card-left {
  width: 240px;
  align-self: stretch;
  padding: 62px 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}

.glv2-pricing__country-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 25.6px;
}

.glv2-pricing__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: stretch;
}

.glv2-pricing__amount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 40px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 40px;
}

.glv2-pricing__amount-unit {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  align-self: flex-end;
  padding-bottom: 6px;
}

.glv2-pricing__old-price {
  color: #BEDCF0;
  font-size: 14px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 400;
  text-decoration: line-through;
  line-height: 22.4px;
}

/* Card mid: credits info */
.glv2-pricing__card-mid {
  flex: 1;
  padding: 48px 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.glv2-pricing__card-mid-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}

.glv2-pricing__card-mid-item strong {
  font-weight: 700;
}

/* Check circle icon */
.glv2-check-circle {
  width: 25px;
  height: 25px;
  min-width: 25px;
  background: #E7F4FF;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card divider */
.glv2-pricing__card-divider {
  align-self: stretch;
  padding: 0 4px;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glv2-pricing__card-divider::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
}

/* Card right: package price */
.glv2-pricing__card-right {
  width: 200px;
  align-self: stretch;
  padding: 48px 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.glv2-pricing__card-right-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.glv2-pricing__label {
  color: #fff;
  font-size: 16px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 25.6px;
}

.glv2-pricing__package-price {
  color: #fff;
  font-size: 55px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 55px;
}

.glv2-pricing__contact-btn {
  align-self: stretch;
  height: 48px;
  padding: 13px 20px;
  background: #fff;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0A2240;
  font-size: 16px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.glv2-pricing__contact-btn:hover {
  opacity: 0.9;
}

/* --- API Section --- */
.glv2-api {
  background: linear-gradient(135deg, #0a1628, #152238);
  padding: 80px 20px;
}

.glv2-api__container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
  align-items: center;
}

.glv2-api__code {
  flex: 1;
}

.glv2-api__code-header {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  padding: 12px 20px;
  background: #1a2a42;
  border-radius: 8px 8px 0 0;
}

.glv2-api__tab {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
}

.glv2-api__tab--active {
  color: #fff;
  border-bottom: 2px solid #4DA3FF;
  padding-bottom: 4px;
}

.glv2-api__code-block {
  background: #0d1a2a;
  color: #c5d0dc;
  padding: 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 0;
}

.glv2-api__text {
  flex: 1;
  color: #fff;
}

.glv2-api__text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.glv2-api__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
}

.glv2-api__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.glv2-api__links a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.glv2-api__links a:hover {
  text-decoration: underline;
}

.glv2-api__langs {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.glv2-api__langs img {
  height: 40px;
  opacity: 0.9;
}

/* API V2 Section */
.apiv2 {
  display: flex;
  flex-direction: column;
  background: url('/img/general/bg-api-intergration-2.png'), url('/img/general/bg-api-intergration.jpg');
  background-position: left bottom, center center;
  background-size: contain, cover;
  background-repeat: no-repeat, no-repeat;
}

.apiv2__row {
  display: flex;
  flex: 1;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.apiv2__left {
  flex: 1;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.apiv2__left .api-intergration {
  width: 540px;
  max-width: 100%;
}

.apiv2__right {
  flex: 1;
  padding: 120px 40px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
}

.apiv2__title {
  color: #fff;
  font-size: 45px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 63px;
  margin: 0;
}

.apiv2__desc {
  color: #8C94A4;
  font-size: 16px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 28px;
  width: 550px;
  max-width: 100%;
  margin: 0;
}

.apiv2__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  border-radius: 10px;
}

.apiv2__link:hover {
  text-decoration: underline;
  color: #fff;
}

.apiv2__icons {
  display: flex;
  width: 100%;
  align-items: center;
}

.apiv2__icon-cell {
  flex: 1;
  height: 150px;
  padding: 0 55px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: 1px solid rgba(255, 255, 255, 0.20);
  outline-offset: -1px;
}

.apiv2__icon-cell img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

/* --- Support V2 --- */
.supportv2 {
  background: linear-gradient(180deg, #fff 0%, #2FA1FA 100%);
}

.supportv2__top {
  padding: 120px 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.supportv2__left {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.supportv2__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.supportv2__text-inner {
  width: 550px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.supportv2__title {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 45px;
  font-weight: 700;
  line-height: 63px;
  word-wrap: break-word;
}

.supportv2__title--dark {
  color: #0A2240;
  font-size: 45px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 63px;
  word-wrap: break-word;
}

.supportv2__title--blue {
  color: #2FA1FA;
  font-size: 45px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 63px;
  word-wrap: break-word;
}

.supportv2__desc {
  color: #6B7589;
  font-size: 16px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 25.6px;
  margin: 0;
  max-width: 100%;
}

.supportv2__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.supportv2__item {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 100%;
  color: #0A2240;
  font-size: 18px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 28px;
}

.supportv2__item strong {
  font-weight: 700;
}

.supportv2__images {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.supportv2__img {
  border-radius: 20px;
  display: block;
}

.supportv2__img--1 {
  width: 260px;
  height: 320px;
  object-fit: cover;
}

.supportv2__img--2 {
  width: 200px;
  height: 240px;
  object-fit: cover;
}

.supportv2__img-offset {
  padding-top: 120px;
  display: flex;
  align-items: center;
}

/* --- Support CTA Banner --- */


/* --- Local Support (glv2) --- */
.glv2-support {
  padding: 80px 40px;
  background: linear-gradient(180deg, #e8f4ff 0%, #f5faff 100%);
}

.glv2-support__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.glv2-support__left {
  flex: 1;
  max-width: 500px;
}

.glv2-support__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #0A2240;
  margin: 0 0 16px;
}

.glv2-support__desc {
  color: #6B7589;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.glv2-support__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glv2-support__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #0A2240;
}

.glv2-support__list li::before {
  content: '✓';
  color: #2FA1FA;
  font-weight: 700;
}

.glv2-support__right {
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.glv2-support__img {
  border-radius: 16px;
  object-fit: cover;
}

.glv2-support__img--main {
  width: 280px;
  height: 340px;
}

.glv2-support__img--side {
  width: 200px;
  height: 260px;
  margin-top: 80px;
}

/* --- CTA --- */
.glv2-cta {
  background: linear-gradient(135deg, #1a5cc7, #43B7A8);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 0 40px;
}

.glv2-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.glv2-cta__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.glv2-cta__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.glv2-cta__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 30px;
}

.glv2-cta__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* --- Footer --- */
.glv2-footer {
  background: #0a1628;
  color: #fff;
  padding: 60px 40px 30px;
}

.glv2-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.glv2-footer__logo img {
  height: 30px;
}

.glv2-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.glv2-footer__col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.glv2-footer__col h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.glv2-footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 6px;
  text-decoration: none;
}

.glv2-footer__col a:hover {
  color: #fff;
}

.glv2-footer__col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.glv2-footer__subcols {
  display: flex;
  gap: 30px;
}

.glv2-footer__social {
  display: flex;
  gap: 16px;
}

.glv2-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.glv2-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.glv2-footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.glv2-footer__links {
  display: flex;
  gap: 20px;
}

.glv2-footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}

/* --- Features Grid --- */
.glv2-features {
  padding: 72px 100px 144px;
  background: #fff;
}

.glv2-features__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.glv2-features__title {
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-size: 57px;
  font-weight: 700;
  line-height: 79.8px;
  text-align: center;
  margin: 0;
}

.glv2-features__title--dark {
  color: #0A2240;
}

.glv2-features__title--blue {
  color: #2FA1FA;
}

/* Grid: 2 columns */
.glv2-features__grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.glv2-features__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.glv2-features__col--center {
  justify-content: center;
  align-self: stretch;
}

/* Feature Card */
.glv2-fcard {
  width: 500px;
  padding-bottom: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.glv2-fcard__content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.glv2-fcard__title {
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 43.2px;
  margin: 0;
}

.glv2-fcard__title--white {
  color: #fff;
}

.glv2-fcard__title--dark {
  color: #0A2240;
}

.glv2-fcard__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glv2-fcard__item {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}

.glv2-fcard__item--dark {
  color: #0A2240;
}

.glv2-fcard__image {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.glv2-fcard__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

/* Card variants */
.glv2-fcard--blue-solid {
  background: #1F52BA;
}

.glv2-fcard--teal-gradient {
  background: linear-gradient(196deg, #B0DBF1 0%, #057699 100%);
}

.glv2-fcard--light-blue-gradient {
  background: linear-gradient(196deg, #B8E3F8 0%, #A6C7EE 100%);
}

.glv2-fcard--blue-gradient {
  background: linear-gradient(196deg, #2FA1FA 0%, #1E4FCB 100%);
  flex: 1;
}

/* Bottom CTA */
.glv2-features__cta {
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.glv2-features__cta-text {
  text-align: center;
  color: #0A2240;
  font-size: 20px;
  font-family: var(--poppins-font), 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}

.glv2-features__cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.glv2-features__cta-buttons .button {
  min-width: unset !important;
  height: 60px !important;
  padding: 13px 30px !important;
  border-radius: 10px !important;
  font-family: var(--poppins-font), 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
}


/* --- CTA V2 (Figma-style with mockups) --- */
.glv2-cta-v2 {
  padding: 80px 20px;
  background: linear-gradient(180deg, #e0f0ff, #f0f8ff);
}

.glv2-cta-v2__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.glv2-cta-v2__mockups {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.glv2-cta-v2__mockup img {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

.glv2-cta-v2__mockup--1 img {
  max-width: 480px;
}

.glv2-cta-v2__mockup--2 img {
  max-width: 360px;
}

.glv2-cta-v2__desc {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}

.glv2-cta-v2__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.glv2-cta-v2__btn--outline {
  background: transparent !important;
  border: 2px solid #1a1a2e !important;
  color: #1a1a2e !important;
}

.glv2-cta-v2__btn--outline:hover {
  background: #1a1a2e !important;
  color: #fff !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .glv2-hero {
    height: auto;
    min-height: 100vh;
  }

  .glv2-hero__bg--desktop {
    display: none;
  }

  .glv2-hero__bg--mobile {
    display: block;
  }

  .glv2-hero__overlay {
    background: linear-gradient(180deg, #06162D 0%, rgba(6, 22, 45, 0) 100%);
  }

  .glv2-hero__content {
    padding: 140px 16px 20px 16px;
    gap: 28px;
  }

  .glv2-hero__text {
    gap: 20px;
  }

  .glv2-hero__title {
    font-size: 45px;
    line-height: 54px;
  }

  .glv2-hero__desc {
    font-size: 18px;
    line-height: 28.8px;
  }

  .glv2-hero__buttons {
    gap: 12px;
    width: 100%;
  }

  .glv2-hero__buttons>div {
    flex: 1 1 0;
  }

  .glv2-hero__buttons .button {
    width: 100%;
    height: 48px !important;
    padding: 13px 15px !important;
    font-family: var(--poppins-font), 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
  }

  .glv2-hero__btns {
    flex-direction: column;
  }

  /* Hamburger icon white on hero */
  .header:not(.is-sticky) .header__menu svg {
    color: #fff !important;
    stroke: #fff !important;
  }

  .glv2-stats-row {
    flex-wrap: wrap;
    padding: 40px 20px;
  }

  .glv2-stat-card {
    width: 100%;
  }

  .glv2-pricing {
    padding: 40px 0;
  }

  .glv2-pricing__container {
    flex-direction: column;
    height: auto;
  }

  .glv2-pricing__left {
    width: 100%;
    padding: 0 16px;
    gap: 40px;
  }

  .glv2-pricing__right {
    display: none;
  }

  .glv2-pricing__title {
    font-size: 36px;
    line-height: 46.8px;
  }

  .glv2-pricing__card-section {
    margin-top: 20px;
    padding: 0 8px;
  }

  .glv2-pricing__card {
    width: 100%;
    flex-direction: column;
    padding: 100px 0 0 0;
    gap: 24px;
  }

  .glv2-pricing__card-left {
    width: 100%;
    padding: 0 24px;
  }

  .glv2-pricing__card-mid {
    width: 100%;
    padding: 0 24px;
  }

  .glv2-pricing__card-divider {
    display: none;
  }

  .glv2-pricing__card-right {
    width: 100%;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    gap: 24px;
  }

  .glv2-pricing__contact-btn {
    width: 100%;
  }

  .glv2-pricing__card-row .ant-ribbon {
    top: 50px !important;
  }

  .glv2-api__container {
    flex-direction: column;
  }

  .glv2-api__langs {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* API Integration V2 mobile */
  .apiv2 {
    background: url('/img/general/bg-api-intergration-2.png'), url('/img/general/bg-api-intergration.jpg');
    background-position: -10px calc(100% - 448px), center center;
    background-size: 650px auto, cover;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
  }

  .apiv2__row {
    flex-direction: column-reverse;
  }

  .apiv2__right {
    padding: 80px 16px 40px 16px;
    gap: 16px;
  }

  .apiv2__title {
    font-size: 36px;
    line-height: 46.8px;
  }

  .apiv2__desc {
    font-size: 16px;
    line-height: 24px;
    width: auto;
  }

  .apiv2__link {
    font-size: 16px;
    line-height: 18px;
  }

  .apiv2__left {
    padding: 0 16px 40px 16px;
  }

  .apiv2__left .api-intergration {
    width: 100%;
  }

  .apiv2__icons {
    flex-wrap: wrap;
    background: #010510;
  }

  .apiv2__icon-cell {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 30px;
  }

  /* Support V2 mobile */
  .supportv2__top {
    padding: 80px 16px;
    flex-direction: column;
    gap: 32px;
  }

  .supportv2__left {
    gap: 32px;
  }

  .supportv2__text-inner {
    width: auto;
  }

  .supportv2__title,
  .supportv2__title--dark,
  .supportv2__title--blue {
    font-size: 36px;
    line-height: 46.8px;
  }

  .supportv2__desc {
    font-size: 16px;
    line-height: 25.6px;
    width: auto;
  }

  .supportv2__item {
    width: 100%;
  }

  .supportv2__images {
    gap: 11.55px;
  }

  .supportv2__img--1 {
    width: 184px;
    height: 218px;
  }

  .supportv2__img--2 {
    width: 160px;
    height: 172px;
  }

  .supportv2__img-offset {
    padding-top: 69.29px;
  }

  /* Support CTA mobile - uses Cta.js markup */
  .supportv2 .home-1-slider {
    margin-bottom: -100px;
    border-radius: 20px;
    overflow: hidden;
  }

  .supportv2 .home-1-slider .bg-image {
    display: none;
  }

  .supportv2 .home-1-slider .sectionHeading__title.cta {
    font-size: 28px;
    line-height: 39.2px;
  }

  .supportv2 .home-1-slider .masthead__buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .supportv2 .home-1-slider .masthead__buttons .col-sm-auto {
    width: 100%;
  }

  .supportv2 .home-1-slider .masthead__buttons .button {
    width: 100%;
    border-radius: 10px;
  }

  .glv2-support__container {
    flex-direction: column;
  }

  .glv2-cta {
    margin: 0 16px;
  }

  .glv2-footer__grid {
    grid-template-columns: 1fr;
  }

  .glv2-footer__subcols {
    flex-direction: column;
  }

  .glv2-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .glv2-features {
    padding: 40px 0;
  }

  .glv2-features__container {
    gap: 40px;
  }

  .glv2-features__title {
    font-size: 36px;
    line-height: 46.8px;
  }

  .glv2-features__grid {
    flex-direction: column;
    padding: 0 16px;
  }

  .glv2-features__col {
    gap: 16px;
  }

  .glv2-fcard {
    width: 100%;
  }

  .glv2-fcard__content {
    padding: 32px 24px;
    gap: 24px;
  }

  .glv2-fcard__title {
    font-size: 24px !important;
    line-height: 28.8px !important;
  }

  .glv2-fcard__items {
    gap: 16px;
  }

  .glv2-fcard__item {
    font-size: 16px;
    line-height: 25.6px;
  }

  .glv2-features__cta {
    gap: 24px;
    padding: 0 16px;
  }

  .glv2-features__cta-text {
    font-size: 16px;
    line-height: 25.6px;
  }

  .glv2-features__cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .glv2-features__cta-buttons > div {
    width: 100%;
  }

  .glv2-features__cta-buttons .button {
    width: 100%;
  }

  .glv2-cta-v2__mockups {
    flex-direction: column;
    align-items: center;
  }

  .glv2-cta-v2__buttons {
    flex-direction: column;
    align-items: center;
  }
}