.gk-header {
  background: #03071e;
}
.gk-navbar {
  background: #03071e;
  min-height: 100px;
}
.gk-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.gk-mobile-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.gk-center-links .nav-link,
.gk-right-links .nav-link {
  color: #fff !important;
  font-weight: 700;
  font-size: 30px;
  padding: 0.8rem 1rem;
}
.gk-dropdown {
  border: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.banner {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 30px 0 0;
}
.banner-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 520px;
  position: relative;
  z-index: 5;
}
.banner::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  top: -380px;
  left: 55%;
  transform: translateX(-50%);
  z-index: 1;
}
.banner-left {
  width: 50%;
  z-index: 10;
}
.banner-rating {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 25px;
}
.banner-rating-box {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.banner-google-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.banner-rating-title {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.banner-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-rating-number {
  font-size: 15px;
  font-weight: 800;
  color: #e94a2a;
}
.banner-stars {
  color: #f6c000;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 900;
}
.banner-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 25px;
  text-transform: uppercase;
}
.banner-title span {
  color: #e94a2a;
}
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e94a2a;
  color: #fff;
  text-decoration: none;
  padding: 16px 22px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 0 12px 12px 12px;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(233, 74, 42, 0.3);
}
.banner-btn-icon {
  font-size: 28px;
  font-weight: 900;
  color: #000;
}
.banner-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}
.banner-hero-img {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
}
.banner-line {
  width: 100%;
  height: 2px;
  background: #444;
  margin-top: 10px;
}
.banner-strip {
  background: #ebb31a;
  color: #000;
  width: fit-content;
  margin: auto;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 800;
  transform: translateY(-50%);
  border: 2px solid #da532c;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .banner-title {
    font-size: 48px;
  }
  .banner-btn {
    font-size: 20px;
    padding: 14px 20px;
  }
  .banner-strip {
    font-size: 24px;
    padding: 16px 32px;
  }
  .banner-container {
    min-height: 480px;
  }
}
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 20px 20px 0;
  }
  .banner-left,
  .banner-right {
    width: 100%;
  }
  .banner-left {
    order: 1;
    margin-bottom: 30px;
  }
  .banner-right {
    order: 2;
    justify-content: center;
  }
  .banner-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .banner-btn {
    font-size: 18px;
    padding: 14px 18px;
  }
  .banner-strip {
    font-size: 20px;
    padding: 14px 28px;
    width: 90%;
    max-width: 500px;
  }
  .banner::before {
    width: 700px;
    height: 700px;
    top: -300px;
    left: 50%;
  }
  .banner-hero-img {
    max-width: 500px;
  }
  .gk-center-links .nav-link,
  .gk-right-links .nav-link {
    font-size: 24px;
    padding: 0.6rem 0.8rem;
  }
}
@media (max-width: 768px) {
  .banner-title {
    font-size: 36px;
  }
  .banner-rating-box {
    padding: 8px 12px;
    gap: 10px;
  }
  .banner-google-icon {
    width: 24px;
    height: 24px;
  }
  .banner-rating-title {
    font-size: 12px;
  }
  .banner-rating-number,
  .banner-stars {
    font-size: 13px;
  }
  .banner-btn {
    font-size: 16px;
    padding: 12px 16px;
  }
  .banner-btn-icon {
    font-size: 24px;
  }
  .banner-strip {
    font-size: 18px;
    padding: 12px 24px;
    margin-top: 10px;
  }
  .banner-container {
    padding: 15px 15px 0;
  }
  .banner::before {
    width: 600px;
    height: 600px;
    top: -250px;
  }
  .gk-logo {
    height: 70px;
  }
  .gk-mobile-logo {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .banner-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .banner-rating {
    margin-bottom: 20px;
  }
  .banner-rating-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
  }
  .banner-rating-title {
    width: 100%;
    text-align: center;
  }
  .banner-btn {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    justify-content: center;
  }
  .banner-strip {
    font-size: 16px;
    padding: 10px 20px;
    width: 95%;
    line-height: 1.1;
  }
  .banner-hero-img {
    max-width: 100%;
  }
  .banner::before {
    width: 500px;
    height: 500px;
    top: -200px;
  }
  .banner {
    padding: 20px 0 0;
  }
  .gk-navbar {
    min-height: 80px;
  }
  .gk-center-links .nav-link,
  .gk-right-links .nav-link {
    font-size: 20px;
    padding: 0.5rem 0.6rem;
  }
  .gk-logo {
    height: 60px;
  }
  .gk-mobile-logo {
    height: 45px;
  }
}
@media (max-width: 400px) {
  .banner-title {
    font-size: 24px;
  }
  .banner-btn {
    font-size: 14px;
    padding: 10px 14px;
  }
  .banner-strip {
    font-size: 14px;
    padding: 8px 16px;
  }
  .banner-container {
    padding: 10px 10px 0;
  }
  .banner-rating-box {
    padding: 6px 8px;
  }
  .banner-google-icon {
    width: 20px;
    height: 20px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .banner-btn:hover {
    transform: none;
  }
  .banner-btn:active {
    transform: scale(0.98);
  }
}
@media print {
  .banner-btn,
  .banner-rating-box {
    border: 1px solid #000;
  }
  .banner-strip {
    border: 1px solid #000 !important;
  }
}
.special {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0 0 70px;
}
.special::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  top: -380px;
  left: 55%;
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: 1;
}
.special-container {
  max-width: 1450px;
  margin: auto;
  padding: 0 25px;
  position: relative;
  z-index: 5;
}
.special-heading {
  text-align: center;
  font-size: 54px;
  font-weight: 450;
  margin-bottom: 60px;
  line-height: 1.2;
}
.special-cards {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 25px;
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-overflow-scrolling: touch;
}
.special-cards::-webkit-scrollbar {
  height: 0px;
}
.special-cards {
  scrollbar-width: none;
}
.special-card {
  flex: 0 0 auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.special-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 1);
}
.special-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.special-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(96%) saturate(7412%)
    hue-rotate(340deg) brightness(96%) contrast(102%);
}
.special-title {
  font-size: 25px;
  font-weight: 650;
  margin: 0 0 14px;
  line-height: 1.2;
}
.special-text {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.45;
  margin: 0;
  max-width: 260px;
}
@media (max-width: 992px) {
  .special {
    padding: 50px 0 50px;
  }
  .special-heading {
    font-size: 42px;
    margin-bottom: 40px;
  }
  .special-cards {
    gap: 25px;
    justify-content: flex-start;
  }
  .special-card {
    width: 280px;
    height: 280px;
    padding: 25px;
  }
  .special-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .special-text {
    font-size: 14px;
    max-width: 220px;
  }
  .special-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .special::before {
    width: 750px;
    height: 750px;
    top: -320px;
    left: 50%;
  }
}
@media (max-width: 768px) {
  .special {
    padding: 40px 0 40px;
  }
  .special-container {
    padding: 0 20px;
  }
  .special-heading {
    font-size: 36px;
    margin-bottom: 35px;
  }
  .special-cards {
    gap: 20px;
  }
  .special-card {
    width: 260px;
    height: 260px;
    padding: 22px;
  }
  .special-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .special-text {
    font-size: 13.5px;
    line-height: 1.4;
    max-width: 200px;
  }
  .special-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }
  .special::before {
    width: 600px;
    height: 600px;
    top: -250px;
  }
}
@media (max-width: 576px) {
  .special {
    padding: 30px 0 30px;
  }
  .special-container {
    padding: 0 15px;
  }
  .special-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .special-cards {
    gap: 15px;
    padding-bottom: 20px;
    justify-content: flex-start;
  }
  .special-card {
    width: 240px;
    height: 240px;
    padding: 20px;
    border-width: 2.5px;
  }
  .special-title {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .special-text {
    font-size: 13px;
    line-height: 1.35;
    max-width: 180px;
  }
  .special-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
  .special::before {
    width: 500px;
    height: 500px;
    top: -200px;
    opacity: 0.5;
  }
}
@media (hover: none) and (pointer: coarse) {
  .special-card:hover {
    transform: none;
  }
  .special-card:active {
    transform: scale(0.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  .special-card {
    transition: none;
  }
  .special-card:hover,
  .special-card:active {
    transform: none;
  }
}
.learn {
  width: 100%;
  padding: 90px 0;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #0d1b3d 0%, #050814 55%, #02030b 100%);
}
.learn-container {
  max-width: 1500px;
  margin: auto;
  padding: 0 35px;
  display: flex;
  gap: 70px;
  align-items: center;
}
.learn-video-box {
  width: 55%;
}
.learn-video {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}
.learn-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.learn-play {
  width: 110px;
  height: 80px;
  border-radius: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.learn-play img {
  width: 95px;
  height: auto;
  object-fit: contain;
}
.learn-content {
  width: 45%;
}
.learn-heading {
  font-size: 46px;
  font-weight: 750;
  line-height: 1.05;
  margin: 0 0 20px;
}
.learn-para {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0 0 35px;
  max-width: 520px;
}
.learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #e94a2a;
  color: #fff;
  text-decoration: none;
  padding: 0;
  height: 62px;
  overflow: hidden;
  font-size: 24px;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
}
.learn-btn-text {
  position: relative;
  display: block;
  height: 62px;
  padding: 0 24px;
  overflow: hidden;
}
.learn-btn-text-1,
.learn-btn-text-2 {
  display: flex;
  align-items: center;
  height: 62px;
  white-space: nowrap;
  transition: transform 0.35s ease;
}
.learn-btn-text-2 {
  position: absolute;
  left: 24px;
  top: 62px;
}
.learn-btn-icon {
  width: 70px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e94a2a;
  font-size: 30px;
  font-weight: 900;
  color: #000;
}
.learn-btn:hover .learn-btn-text-1 {
  transform: translateY(-62px);
}
.learn-btn:hover .learn-btn-text-2 {
  transform: translateY(-62px);
}
.learn-btn:hover {
  opacity: 0.95;
}
@media (max-width: 992px) {
  .learn {
    padding: 60px 0;
  }
  .learn-container {
    flex-direction: column;
    gap: 35px;
    padding: 0 18px;
  }
  .learn-video-box,
  .learn-content {
    width: 100%;
  }
  .learn-video {
    height: 260px;
  }
  .learn-heading {
    font-size: 34px;
    text-align: center;
  }
  .learn-para {
    font-size: 16px;
    text-align: center;
    margin: 0 auto 25px;
  }
  .learn-btn {
    height: 52px;
    font-size: 18px;
    margin: auto;
  }
  .learn-btn-text {
    height: 52px;
  }
  .learn-btn-text-1,
  .learn-btn-text-2 {
    height: 52px;
  }
  .learn-btn-text-2 {
    top: 52px;
  }
  .learn-btn-icon {
    height: 52px;
    width: 55px;
    font-size: 24px;
  }
  .learn-btn:hover .learn-btn-text-1 {
    transform: translateY(-52px);
  }
  .learn-btn:hover .learn-btn-text-2 {
    transform: translateY(-52px);
  }
}
.online {
  background: #fff;
  padding: 50px 0 110px;
  overflow: hidden;
  margin-left: 30px;
  margin-right: 30px;
}
.online-container {
  max-width: 1400px;
}
.online-heading {
  text-align: center;
  font-size: 50px;
  font-weight: 630;
  color: #000;
  margin: 0 0 55px;
}
.online-carousel {
  position: relative;
  width: 100%;
}
.online-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.online-item {
  flex: 0 0 auto;
  width: 420px;
  background: #07080c;
  padding: 18px;
  border-radius: 16px;
}
.online-video {
  width: 100%;
  height: 235px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #111;
}
.online-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.online-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}
.online-play img {
  width: 95px;
  height: auto;
  object-fit: contain;
}
.online-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 50;
  padding: 0;
}
.online-prev { left: 15px; }
.online-next { right: 15px; }
.online-nav-bg {
  position: absolute;
  width: 62%;
  height: 62%;
  background: #ff5a2f;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(0px);
}
.online-nav-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.online-nav:hover .online-nav-icon {
  transform: scale(1.08);
  background: rgba(0, 0, 0, 0.55);
}
.online-nav:hover .online-nav-bg {
  box-shadow: 0 0 0 10px rgba(233, 74, 42, 0.15);
}
.online-arrow-svg {
  width: 34px;
  height: 34px;
  display: block;
}
@media (max-width: 1200px) {
  .online-item {
    width: 380px;
  }
}
@media (max-width: 992px) {
  .online {
    padding: 60px 0 90px;
  }
  .online-heading {
    font-size: 34px;
    margin-bottom: 35px;
  }
  .online-item {
    width: 320px;
    padding: 14px;
  }
  .online-video {
    height: 190px;
  }
  .online-play img {
    width: 80px;
  }
  .online-nav {
    width: 60px;
    height: 60px;
  }
  .online-nav-icon {
    font-size: 34px;
  }
   .online-arrow-svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 600px) {
  .online-prev {
    left: 0px;
  }
  .online-next {
    right: 0px;
  }
}
.price {
  background: #fff;
  margin-bottom: 30px;
}
.price-container {
  max-width: 1450px;
  margin: auto;
  padding: 0 25px;
}
.price-heading {
  text-align: center;
  font-size: 50px;
  font-weight: 630;
  color: #000;
  margin: 0 0 35px;
  line-height: 1.1;
}
.price-heading span {
  color: #f1ab27;
}
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 25px auto 40px;
  flex-wrap: wrap;
}
.price-tab {
  border: 1px solid #000;
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 14px 26px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease;
}
.price-tab.active {
  background: #f1ab27;
}
.price-tab:hover {
  transform: translateY(-2px);
}
.price-tab-icon {
  font-size: 22px;
  color: #000 !important;
}
.price-panel {
  display: none;
}
.price-panel.active {
  display: block;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: start;
}
.price-card {
  background: #03071e;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
  color: #fff;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}
.price-badge {
  background: #ef4444;
  color: #fff;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}
.price-top {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.price-top-center {
  justify-content: center;
  text-align: center;
}
.price-plan {
  font-size: 32px;
  line-height: 1.05;
  margin: 0;
}
.price-amount {
  text-align: right;
}
.price-now {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
.price-month {
  font-size: 18px;
  font-weight: 600;
}
.price-old {
  margin-top: 8px;
  font-size: 26px;
  position: relative;
  display: inline-block;
  opacity: 0.9;
}
.price-strike {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  background: #ef4444;
  transform: translateY(-50%);
  border-radius: 10px;
}
.price-divider {
  height: 2px;
  background: rgba(241, 171, 39, 0.65);
  margin: 24px 0 18px;
}
.price-subtitle {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
.price-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.7;
}
.price-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  opacity: 0.95;
}
.price-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.price-actions {
  margin-top: auto;
  text-align: center;
  padding-top: 10px;
}
.price-btn {
  display: block;
  width: 100%;
  background: #f1ab27;
  color: #000;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 800;
  transition: 0.25s ease;
  border: none;
}
.price-btn:hover {
  transform: translateY(-2px);
}
.price-btn.disabled {
  opacity: 0.85;
  cursor: not-allowed;
}
@media (max-width: 1200px) {
  .price-heading {
    font-size: 44px;
  }
  .price-grid {
    gap: 25px;
  }
  .price-now {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .price {
    padding: 65px 0;
  }
  .price-heading {
    font-size: 34px;
    margin-bottom: 25px;
  }
  .price-tab {
    font-size: 16px;
    padding: 12px 18px;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    min-height: auto;
    padding: 22px;
  }
  .price-plan {
    font-size: 28px;
  }
  .price-now {
    font-size: 36px;
  }
  .price-old {
    font-size: 22px;
  }
  .price-list {
    font-size: 16px;
  }
  .price-btn {
    font-size: 18px;
    padding: 14px 18px;
  }
}
.rating {
  width: 100%;
  padding: 90px 0;
  background: radial-gradient(circle at 30% 20%, #0d1b3d 0%, #050814 55%, #02030b 100%);
  color: #fff;
  overflow: hidden;
}
.rating-container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 0 35px;
}
.rating-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.rating-line {
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}
.rating-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.rating-dot-red { background: #e94a2a; }
.rating-dot-yellow { background: #ebb31a; }
.rating-title {
  text-align: center;
  font-size: 72px;
  font-weight: 400;
  margin: 20px 0 30px;
  line-height: 1.05;
}
.rating-google-link {
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.rating-google-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.25s ease;
}
.rating-google-card:hover {
  transform: rotate(0deg) scale(1.03);
}
.rating-google-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.rating-google-text {
  margin: 0;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.rating-google-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.rating-google-score {
  color: #e94a2a;
  font-weight: 900;
  font-size: 24px;
}
.rating-google-stars {
  color: #f6c000;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
}
.rating-reviews {
  width: 100%;
  margin-top: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 15px;
}
.rating-reviews::-webkit-scrollbar {
  height: 0px;
}
.rating-reviews {
  scrollbar-width: none;
}
.rating-reviews-track {
  display: flex;
  gap: 26px;
  width: max-content;
}
.rating-card {
  flex: 0 0 auto;
  width: 430px;
  min-height: 520px;
  border-radius: 16px;
  background: #010312;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  position: relative;
}
.rating-card-stars {
  text-align: center;
  color: #f6c000;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.rating-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
}
.rating-card-body {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px 22px;
}
.rating-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.rating-name-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}
.rating-name {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}
.rating-text {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}
.rating-quote {
  color: #f6c000;
  font-size: 30px;
  font-weight: 900;
}
.rating-video-wrap {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
.rating-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}
.rating-video-btn:hover {
  transform: translateY(-3px);
}
.rating-video-avatars {
  display: flex;
  gap: 10px;
}
.rating-video-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #ebb31a;
}
.rating-video-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rating-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}
.rating-video-text {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .rating {
    padding: 70px 0;
  }
  .rating-container {
    padding: 0 18px;
  }
  .rating-title {
    font-size: 44px;
    line-height: 1.15;
  }
  .rating-card {
    width: 320px;
    min-height: 460px;
    padding: 16px;
  }
  .rating-avatar {
    width: 90px;
    height: 90px;
  }
  .rating-name {
    font-size: 22px;
  }
  .rating-text {
    font-size: 15px;
  }
  .rating-video-avatar {
    width: 52px;
    height: 52px;
  }
  .rating-video-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .rating-line {
    width: 80px;
  }
  .rating-google-card {
    transform: rotate(0deg);
  }
}
.social{
  background: #fff;
  padding-top: 60px;
}
.social-container{
  max-width: 1500px;
  margin: auto;
  padding: 0 30px;
}
.social-top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 0 20px;
}
.social-logo{
  width: 45%;
  display: flex;
  justify-content: center;
}
.social-logo img{
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}
.social-text{
  width: 45%;
  text-align: center;
}
.social-text h2{
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #000;
}
.social-count{
  display: inline-block;
  background: #f1c40f;
  padding: 4px 10px;
  font-weight: 800;
  border-radius: 0px;
}
.social-brand{
  color: #ebb31a;
  font-weight: 500;
}
.social-strip{
  background: #ebb31a;
  margin-top: 50px;
  padding: 25px 0;
}
.social-strip-container{
  max-width: 1500px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-strip-left{
  width: 45%;
}
.social-icons{
  width: 45%;
  display: flex;
  justify-content: center;
  gap: 35px;
}
.social-icons a{
  text-decoration: none;
  color: #000;
  font-size: 42px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.social-icons a:hover{
  transform: translateY(-4px);
  opacity: 0.9;
}
@media(max-width: 992px){
  .social-top{
    flex-direction: column;
    gap: 25px;
  }
  .social-logo,
  .social-text{
    width: 100%;
  }
  .social-text h2{
    font-size: 26px;
    line-height: 1.6;
  }
  .social-strip-container{
    flex-direction: column;
  }
  .social-strip-left{
    display: none;
  }
  .social-icons{
    width: 100%;
    gap: 28px;
  }
  .social-icons a{
    font-size: 38px;
  }
}
@media(max-width: 576px){
  .social-container{
    padding: 0 18px;
  }
  .social-text h2{
    font-size: 20px;
  }
  .social-icons a{
    font-size: 34px;
  }
}
.earn{
  background: #fff;
  padding: 90px 0 110px;
  color: #000;
}
.earn-title{
  text-align: center;
  font-size: 52px;
  font-weight: 500;
  margin: 0 0 55px;
}
.earn-title span{
  color: #ebb31a;
}
.earn-wrap{
  display: flex;
  justify-content: center;
  padding: 0 22px;
}
.earn-card{
  width: 100%;
  max-width: 700px;
  background: #07080c;
  border-radius: 14px;
  padding: 45px 50px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.25);
}
.earn-desc{
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  margin: 0 0 28px;
  text-align: center;   
  font-weight: 600;    
}
.earn-list{
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}
.earn-list li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.earn-check{
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: #22c55e;
}
.earn-btn-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
}
.earn-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.earn-btn:hover{
  transform: translateY(-2px);
  opacity: 0.95;
}
@media(max-width: 992px){
  .earn{
    padding: 70px 0 90px;
  }
  .earn-title{
    font-size: 34px;
    margin-bottom: 35px;
  }
  .earn-card{
    padding: 30px 22px;
  }
  .earn-desc{
    font-size: 18px;
    margin-bottom: 22px;
  }
  .earn-list li{
    font-size: 17px;
  }
  .earn-check{
    width: 22px;
    height: 22px;
  }
  .earn-btn-wrap{
    justify-content: center;
  }
  .earn-btn{
    width: 100%;
    max-width: 340px;
    font-size: 18px;
    height: 54px;
  }
}
.faq {
  background: #03071e;
  color: #fff;
  padding: 90px 0;
}
.faq-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 22px;
}
.faq-title {
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  margin: 0 0 55px;
}
.faq-list {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.faq-item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-align: left;
}
.faq-q span:first-child {
  width: 92%;
}
.faq-arrow {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.faq-arrow-svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
  opacity: 0.95;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  margin: 18px 0 0;
  padding-left: 22px;
  padding-right: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
  color: #7c7f87;
}
.faq-item.active .faq-a {
  max-height: 220px;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
@media (max-width: 992px) {
  .faq-title {
    font-size: 38px;
    margin-bottom: 35px;
  }
  .faq-q {
    font-size: 22px;
  }
  .faq-a p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .faq {
    padding: 70px 0;
  }
  .faq-title {
    font-size: 30px;
  }
  .faq-q {
    font-size: 18px;
    gap: 15px;
  }
  .faq-arrow {
    font-size: 22px;
  }
  .faq-a p {
    padding-left: 15px;
    font-size: 14.5px;
  }
  .faq-item.active .faq-a {
    max-height: 320px;
  }
}
.footer {
  background: #010312;
  color: #fff;
  padding: 60px 30px;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 25px;
  color: #7c7f87;
  font-weight: 500;
}
.footer-social {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.footer-social a {
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.footer-icon {
  width: 36px;
  height: 36px;
}
.footer-made {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-heart {
  color: #ff3b3b;
  font-size: 18px;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 18px;
  }
  .footer-links {
    gap: 18px;
    margin-bottom: 28px;
  }
  .footer-links a {
    font-size: 18px;
  }

  .footer-copy {
    font-size: 15px;
  }
  .footer-icon {
    width: 30px;
    height: 30px;
  }
  .footer-made {
    font-size: 15px;
  }
}
.trusted-title {
  font-size: 50px; 
  font-weight: 600;
  color: rgb(249 115 22 / 1); 
  text-align: center;
  margin: 10px 0 6px;
}
.trusted-desc {
  font-size: 35px;
  color: #d1d5db; 
  text-align: center;
  margin: 0 auto;
  line-height: 1.2;
}
.founder-container {
  width: 90%;
  margin: 8vw auto 0 auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
}
.founder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  background: #070c23;
  padding: 4vw;
  position: relative;
  z-index: 20;
}
.founder-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vw 0;
  text-align: center;
}
.founder-role {
  font-size: 5vw;
  font-weight: 500;
  color: rgb(249 115 22 / 1);
  margin: 0;
}
.founder-name {
  font-size: 5.8vw;
  font-weight: 700;
  margin: 2vw 0 0 0;
  text-transform: uppercase;
  color: #fff;
}
.founder-text {
  font-size: 4vw;
  margin-top: 4vw;
  line-height: 1.7;
  color: #ffffff;
  max-width: 95%;
}
.founder-image {
  width: 100%;
  margin-top: 2vw;
  text-align: center;
}
.founder-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.founder-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%);
}
.founder-circle-1 {
  top: 70%;
  left: -20%;
  height: 100vw;
  width: 100vw;
}
.founder-circle-2 {
  top: -15%;
  left: -15%;
  height: 150vw;
  width: 150vw;
}
@media (min-width: 768px) {
  .founder-container {
    margin-top: 6vw;
  }
  .founder-box {
    flex-direction: row;
    padding: 2vw;
  }
  .founder-content {
    width: 50%;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-end;
  }
  .founder-role {
    font-size: 1.4vw;
  }
  .founder-name {
    font-size: 1.8vw;
    margin-top: 0.6vw;
  }
  .founder-text {
    font-size: 1.3vw;
    margin-top: 1.5vw;
    max-width: 100%;
  }
  .founder-image {
    width: 40%;
    margin-top: 0;
  }
  .founder-circle-1 {
    top: -40%;
    left: -8%;
    height: 30vw;
    width: 30vw;
  }
  .founder-circle-2 {
    top: -50%;
    left: 35%;
    height: 80vw;
    width: 80vw;
  }
}
