/* ====================================
   GLOBAL STYLES
   ==================================== */

:root {
  --bg-dark: #0a0d12;
  --bg-card: #131821;
  --bg-card-2: #0d1420;
  --bg-nav: rgba(15, 20, 28, 0.85);

  --cyan: #00d2ff;
  --blue: #0080ff;
  --green: #10d038;
  --amber: #ffb020;

  --text-white: #ffffff;
  --text-gray: #a0aab8;

  --border-soft: rgba(255, 255, 255, 0.07);
  --border-cyan: rgba(0, 210, 255, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn i,
.btn svg {
  display: inline-block;
  flex-shrink: 0;
}

.btn-whatsapp {
  background-color: var(--green);
  color: #000;
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(16, 208, 56, 0.35);
}

.btn-cyan {
  background-color: var(--cyan);
  color: #000;
}

.btn-cyan:hover {
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.35);
}

.btn-tiktok {
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  color: #fff;
}

.btn-tiktok:hover {
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.35);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.cyan-text {
  color: var(--cyan);
}

.green-text {
  color: var(--green);
}

/* Icon safety - fixes icons not rendering */
i.fa-brands,
i.fa-solid,
i.fa-regular,
i.fas,
i.far,
i.fab {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
  display: inline-block;
  line-height: 1;
}

/* ====================================
   NAVBAR
   ==================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 13, 18, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 4vw, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
}

.nav-logo {
  height: clamp(24px, 6vw, 38px);
  width: auto;
  display: block;
}

.logo-wrapper {
  flex-shrink: 0;
}

.nav-bar-logo {
  width: clamp(120px, 34vw, 252px);
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 30px);
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-link {
  font-size: clamp(11px, 1.4vw, 14px);
  color: var(--text-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.navbar .btn.nav-btn {
  padding: clamp(6px, 1.8vw, 10px) clamp(10px, 3vw, 22px);
  font-size: clamp(10px, 2.3vw, 14px);
  gap: clamp(4px, 1vw, 8px);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
  position: relative;
  padding-top: 70px;
  padding-bottom: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/herobagground-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 1;
}

/* Particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 4vw, 20px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 3vw, 30px);
}

/* Hero entrance animations */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeRight 1s var(--ease) 0.3s forwards;
}

[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(60px);
  animation: fadeLeft 1s var(--ease) 0.5s forwards;
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text {
  width: clamp(150px, 46%, 519px);
  flex: 1 1 46%;
  min-width: 0;
  text-align: left;
}

.hero-text h1 {
  font-size: clamp(18px, 5.6vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: clamp(6px, 1.6vw, 15px);
  letter-spacing: -0.5px;
}

.hero-subtext {
  font-size: clamp(9px, 2.6vw, 18px);
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: clamp(10px, 2.6vw, 25px);
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(6px, 1.6vw, 15px);
  margin-bottom: clamp(10px, 2.6vw, 25px);
}

.hero-cta .btn {
  padding: clamp(6px, 1.6vw, 10px) clamp(10px, 3vw, 22px);
  font-size: clamp(9px, 2.2vw, 14px);
  gap: clamp(4px, 1vw, 8px);
}

.hero-trust {
  font-size: clamp(8px, 1.9vw, 13px);
  color: var(--text-gray);
  font-weight: 500;
}

.hero-trust .divider {
  margin: 0 clamp(3px, 1vw, 8px);
  opacity: 0.4;
}

/* ====================================
   HERO CHARACTER
   ==================================== */

.hero-character-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 40%;
  min-width: 0;
}

.hero-img {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.herro-image {
  width: 100%;
  max-width: 449px;
  height: auto;
  aspect-ratio: 449 / 472;
  margin-top: 0;
  margin-bottom: 0;
  object-fit: contain;
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ====================================
   GLOW EFFECT
   ==================================== */

.glow-effect {
  position: absolute;
  width: clamp(120px, 30vw, 300px);
  height: clamp(120px, 30vw, 300px);
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(clamp(50px, 8vw, 110px));
  -webkit-filter: blur(clamp(50px, 8vw, 110px));
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.08); }
}

/* ====================================
   STATS BAR
   ==================================== */

.stats-bar {
  position: relative;
  z-index: 3;
  background-color: var(--bg-card);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
}

.stat-icon {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i,
.stat-icon svg {
  display: inline-block;
  flex-shrink: 0;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

/* ====================================
   ABOUT SECTION
   ==================================== */

.about {
  padding: 90px 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 50px;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  position: relative;
  z-index: 2;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: heroFloat 4s ease-in-out infinite;
}

.about-content.right-aligned {
  margin-left: auto;
  width: 100%;
  max-width: 580px;
}

.section-tag {
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
}

.mt-2 {
  margin-top: 25px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-description {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ====================================
   FEATURES
   ==================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.feature-item i,
.feature-item svg {
  color: var(--cyan);
  font-size: 16px;
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item i {
  font-style: normal;
}

/* ====================================
   GENERAL ICON SAFETY
   ==================================== */

i,
svg {
  vertical-align: middle;
}

i {
  line-height: 1;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  display: inline-block;
}

/* ====================================================================
   SCROLL REVEAL (shared by new sections)
   ==================================================================== */

[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

[data-aos].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="1"] {
  transition-delay: 0.08s;
}
[data-aos-delay="2"] {
  transition-delay: 0.16s;
}
[data-aos-delay="3"] {
  transition-delay: 0.24s;
}
[data-aos-delay="4"] {
  transition-delay: 0.32s;
}

/* If JS is disabled/blocked, never leave content permanently invisible */
.no-js [data-aos] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ====================================================================
   REAL TRANSACTIONS / REAL PROOF SECTION
   ==================================================================== */

.proof-section {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 128, 255, 0.12), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0, 210, 255, 0.1), transparent 45%),
    var(--bg-card-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.proof-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.proof-container .section-tag {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-container .section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.18);
}

.proof-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0 14px;
}

.proof-subtext {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
  margin-bottom: 55px;
}

.proof-item {
  position: relative;
  grid-column: span 2;
  grid-row: span 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  background: var(--bg-card);
  cursor: pointer;
}

.proof-item.large {
  grid-column: span 3;
  grid-row: span 2;
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: saturate(1.05);
}

.proof-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 10, 20, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.proof-item:hover::after {
  opacity: 1;
}

.proof-item:hover img {
  transform: scale(1.08);
}

.social-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.social-cta p {
  color: var(--text-white);
  font-weight: 700;
  font-size: 17px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn.tiktok {
  background: #0d0d0d;
  color: #fff;
}

.social-btn.tiktok:hover {
  box-shadow: 0 8px 24px rgba(255, 0, 80, 0.25);
  border-color: rgba(255, 0, 80, 0.4);
}

.social-btn.facebook {
  background: #1877f2;
  color: #fff;
}

.social-btn.facebook:hover {
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

/* ====================================================================
   BANNERS SLIDER SECTION
   ==================================================================== */

.banners-section {
  padding: 40px 0 80px;
}

.banners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.banner-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  background: var(--bg-card);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.banner-slider:hover {
  border-color: var(--cyan);
  box-shadow: 0 10px 40px rgba(0, 210, 255, 0.3);
  transform: translateY(-4px);
}

.banner-slides {
  display: flex;
  width: 200%;
  animation: slideBanner 12s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* Pause animation on hover */
.banner-slider:hover .banner-slides {
  animation-play-state: paused;
}

.banner-slide {
  width: 50%;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.banner-slide:hover img {
  transform: scale(1.03);
}

.banner-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

/* Animate the first dot */
.banner-dot:nth-child(1) {
  animation: dotHighlight1 12s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* Animate the second dot */
.banner-dot:nth-child(2) {
  animation: dotHighlight2 12s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* Pause dots on hover */
.banner-slider:hover .banner-dot {
  animation-play-state: paused;
}

@keyframes slideBanner {
  0%, 45% { transform: translateX(0); }
  50%, 95% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes dotHighlight1 {
  0%, 45% { background: var(--cyan); transform: scale(1.3); }
  50%, 95% { background: rgba(255, 255, 255, 0.3); transform: scale(1); }
  100% { background: var(--cyan); transform: scale(1.3); }
}

@keyframes dotHighlight2 {
  0%, 45% { background: rgba(255, 255, 255, 0.3); transform: scale(1); }
  50%, 95% { background: var(--cyan); transform: scale(1.3); }
  100% { background: rgba(255, 255, 255, 0.3); transform: scale(1); }
}

/* ====================================================================
   STAY IN TOUCH / CONTACT CHANNELS SECTION
   ==================================================================== */

.contact-section {
  padding: 100px 0;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0 14px;
}

.contact-container > p {
  color: var(--text-gray);
  max-width: 520px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
}

.contact-icon {
  font-size: 34px;
  color: var(--cyan);
  margin-bottom: 18px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card > p {
  color: var(--text-gray);
  font-size: 13.5px;
  margin-bottom: 24px;
}

.contact-btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================================
   REVIEWS SECTION
   ==================================================================== */

.reviews-section {
  padding: 100px 0;
  background: var(--bg-card-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.reviews-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0 14px;
}

.reviews-container > p {
  color: var(--text-gray);
  max-width: 520px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.6;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: scrollMarquee 35s linear infinite;
  padding: 10px 0;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 11px)); }
}

.review-card {
  width: 350px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 12px 40px rgba(0, 210, 255, 0.08);
}

.review-stars {
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

/* Avatar images for reviews */
.review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-cyan);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.2);
}

.review-name {
  font-size: 13.5px;
  font-weight: 700;
}

.review-tag {
  font-size: 11.5px;
  color: var(--text-gray);
}

/* ====================================================================
   FAQ SECTION
   ==================================================================== */

.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.faq-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0 14px;
}

.faq-container > p {
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--border-cyan);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

.faq-question i {
  color: var(--cyan);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 22px 20px;
}

/* ====================================================================
   CHOOSE YOUR SERVICE SECTION (Tailwind-driven)
   ==================================================================== */

.service-section {
  padding: 100px 0;
  background: var(--bg-card-2);
  border-top: 1px solid var(--border-soft);
}

.service-badge {
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  background: rgba(0, 210, 255, 0.06);
}

.badge-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
}

.badge-pill.pill-cyan {
  color: var(--cyan);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-cyan);
}

.badge-pill.pill-amber {
  color: var(--amber);
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.25);
}

.service-card {
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
}

.service-check {
  color: var(--cyan);
}

.btn-service-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: var(--cyan);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-service-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.3);
}

.btn-service-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: transparent;
  color: var(--text-white);
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-service-outline:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  color: var(--amber);
}

/* ====================================================================
   CTA SECTION - Ready to Find Your Next Account
   ==================================================================== */

.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 128, 255, 0.25) 0%, rgba(0, 210, 255, 0.12) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: ctaGlowPulse 5s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-container h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-subtext {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-note {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.cta-note i {
  color: var(--amber);
}

/* ====================================================================
   CONTACT DETAILS SECTION
   ==================================================================== */

.contact-details-section {
  padding: 100px 0;
  background: var(--bg-card-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.contact-details-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact-details-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0 8px;
}

.flag-emoji, .fire-emoji {
  font-size: 32px;
}

.contact-details-sub {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.cd-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.cd-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-cyan);
}

.cd-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cd-icon {
  font-size: 28px;
  color: var(--cyan);
}

.cd-card-header h3 {
  font-size: 20px;
  font-weight: 800;
}

.cd-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cd-link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cd-link-item:hover {
  border-color: var(--border-cyan);
  background: rgba(0, 210, 255, 0.04);
  transform: translateX(4px);
}

.cd-link-item > i {
  font-size: 22px;
  color: var(--cyan);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.cd-link-item > div {
  flex: 1;
}

.cd-link-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.cd-link-desc {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 2px;
}

.cd-link-arrow {
  font-size: 12px;
  color: var(--text-gray);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cd-link-item:hover .cd-link-arrow {
  opacity: 1;
}

.cd-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.cd-phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cd-phone-item:hover {
  border-color: var(--green);
  background: rgba(16, 208, 56, 0.06);
  transform: translateY(-2px);
}

.cd-phone-item i {
  color: var(--green);
  font-size: 18px;
}

.cd-save-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 176, 32, 0.06);
  border: 1px solid rgba(255, 176, 32, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
}

.cd-save-notice i {
  font-size: 16px;
  flex-shrink: 0;
}

/* ====================================================================
   FOOTER (Modern 4-Column)
   ==================================================================== */

.site-footer {
  padding: 80px 0 30px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  color: var(--text-gray);
  font-size: 14px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}

.brand-col .footer-logo {
  width: 180px;
  margin-bottom: 16px;
}

.brand-col .footer-desc {
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact strong {
  color: var(--text-white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-gray);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

.footer-socials-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-gray);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
  background: rgba(0, 210, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer-divider {
  border: none;
  height: 1px;
  background: var(--border-soft);
  max-width: 1200px;
  margin: 0 auto 30px;
}

.copyright-text {
  text-align: center;
  font-size: 13px;
}

/* ====================================================================
   PAGE HERO (Sub-pages)
   ==================================================================== */

.page-hero {
  padding: 140px 0 60px;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 128, 255, 0.12), transparent 50%),
    var(--bg-dark);
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}

.page-hero-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.page-hero p {
  color: var(--text-gray);
  font-size: clamp(14px, 2.5vw, 17px);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* ====================================================================
   GUIDE PAGES
   ==================================================================== */

.guide-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.guide-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
  margin-bottom: 28px;
  transition: border-color 0.3s ease;
}

.guide-card:hover {
  border-color: var(--border-cyan);
}

.guide-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.guide-card-header h2 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
}

.guide-step-badge {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.step-green {
  background: rgba(16, 208, 56, 0.12);
  color: var(--green);
  border: 1px solid rgba(16, 208, 56, 0.25);
}

.step-amber {
  background: rgba(255, 176, 32, 0.12);
  color: var(--amber);
  border: 1px solid rgba(255, 176, 32, 0.25);
}

.step-blue {
  background: rgba(0, 128, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(0, 128, 255, 0.25);
}

.step-gold {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.step-red {
  background: rgba(255, 60, 60, 0.12);
  color: #ff4444;
  border: 1px solid rgba(255, 60, 60, 0.25);
}

/* Star Rating Selector for Form */
.star-rating-selector {
  display: flex;
  gap: 8px;
  font-size: 24px;
  color: #4b5563;
  cursor: pointer;
  margin-bottom: 15px;
}
.star-rating-selector .star {
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.star-rating-selector .star:hover {
  transform: scale(1.15);
}
.star-rating-selector .star.active {
  color: #ffd700;
}

/* Review Form Styles */
.review-form-wrapper {
  max-width: 672px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-form-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px;
}

.review-form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  margin-top: 8px;
}

.review-form-desc {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 15px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

/* Language Toggle */
.lang-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.lang-toggle {
  display: flex;
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  color: var(--text-gray);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.lang-btn.active {
  background: var(--cyan);
  color: #000;
}

.lang-btn:hover:not(.active) {
  color: var(--text-white);
}

.guide-card-intro {
  color: var(--text-gray);
  font-size: clamp(13px, 2.5vw, 15px);
  line-height: 1.7;
  margin-bottom: 16px;
}

.guide-card h3 {
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--text-white);
}

.guide-card h2 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  margin-bottom: 12px;
}

.guide-steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0 0 16px;
}

.guide-steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  color: var(--text-gray);
  font-size: clamp(13px, 2.5vw, 14px);
  line-height: 1.65;
}

.guide-steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.guide-bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-gray);
  font-size: clamp(13px, 2.5vw, 14px);
  line-height: 1.65;
}

.guide-bullet-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
}

.guide-bullet-list li strong {
  color: var(--text-white);
}

.guide-sub-para {
  color: var(--text-gray);
  font-size: clamp(13px, 2.5vw, 14px);
  line-height: 1.65;
  margin-bottom: 16px;
}

.guide-sub-para strong {
  color: var(--text-white);
}

.guide-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 176, 32, 0.06);
  border: 1px solid rgba(255, 176, 32, 0.18);
  margin-top: 20px;
}

.guide-warning i {
  color: var(--amber);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-warning span {
  color: var(--text-gray);
  font-size: clamp(12px, 2.3vw, 13px);
  line-height: 1.6;
}

.guide-warning strong {
  color: var(--text-white);
}

.guide-cta {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  margin-top: 10px;
}

.guide-cta h2 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.guide-cta p {
  color: var(--text-gray);
  font-size: clamp(14px, 2.5vw, 16px);
  margin-bottom: 28px;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content.right-aligned {
    margin: 0 auto;
  }

  .features-grid {
    text-align: left;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .proof-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .proof-item,
  .proof-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .cd-phone-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 17, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 30px 30px;
    transition: right 0.4s var(--ease);
    z-index: 1050;
    border-left: 1px solid var(--border-soft);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
    font-weight: 600;
  }

  .nav-link::after {
    display: none;
  }

  .navbar .btn.nav-btn {
    display: none;
  }

  /* Hero responsive - keep banner layout */
  .hero-container {
    flex-direction: row;
    gap: clamp(8px, 3vw, 20px);
    padding: 10px clamp(12px, 4vw, 20px);
  }

  .hero-text {
    text-align: left;
  }

  .hero-character-wrapper {
    flex: 0 0 35%;
    max-width: 200px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-container h2 {
    font-size: 28px;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .guide-section {
    padding: 50px 0;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: clamp(8px, 2.5vw, 12px) 0;
  }

  .hero {
    padding-top: clamp(56px, 15vw, 65px);
  }

  .stats-bar {
    padding: 20px 0;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .about {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 15px;
    gap: 35px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-item {
    font-size: 13px;
  }

  .proof-section,
  .contact-section,
  .reviews-section,
  .faq-section,
  .service-section,
  .cta-section,
  .contact-details-section {
    padding: 60px 0;
  }

  .proof-container h2,
  .contact-container h2,
  .reviews-container h2,
  .faq-container h2,
  .contact-details-container h2,
  .cta-container h2 {
    font-size: 26px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cd-phone-grid {
    grid-template-columns: 1fr;
  }

  .cta-glow {
    width: 350px;
    height: 350px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-links {
    align-items: center;
  }

  .footer-socials-row {
    justify-content: center;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .guide-section {
    padding: 40px 0;
  }

  .guide-card {
    padding: 22px 18px;
    margin-bottom: 20px;
  }

  .guide-cta {
    padding: 40px 16px;
  }
}