/* ===================== DESIGN TOKENS ===================== */
:root {
  --bg-deep:    #080808;
  --bg-dark:    #0f0f0f;
  --bg-card:    #161616;
  --bg-card2:   #1c1c1c;
  --red:        #cc1111;
  --red-bright: #e8190e;
  --red-glow:   rgba(204,17,17,.35);
  --red-muted:  #7a0d0d;
  --red-line:   #3a0808;
  --white:      #f2f2f2;
  --gray:       #888;
  --gray-lt:    #aaa;
  --border:     rgba(255,255,255,.06);
  --font-head:  'Syncopate', sans-serif;
  --font-body:  'Inter', sans-serif;
  --green:      #25d366;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: .04em; }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===================== UTILITY ===================== */
.text-red  { color: var(--red-bright) !important; }
.text-gray { color: var(--gray); }
.swipper-text { background-color:#710600; color:white; }

.section-pad { padding: 15px 0; }
@media (max-width: 767px) { .section-pad { padding: 56px 0; } }

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-head);
  letter-spacing: .18em;
  color: var(--red-bright);
  border: 1px solid var(--red-line);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
  background: rgba(204,17,17,.08);
}

.section-sub {
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 14px;
}

/* ===================== BUTTONS ===================== */
.btn-red {
  font-family: var(--font-head);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .12em;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-red:hover {
  background: var(--red-bright);
  box-shadow: 0 0 26px var(--red-glow);
  color: #fff;
}
.btn-red-outline {
  font-family: var(--font-head);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  background: transparent;
  color: var(--red-bright);
  border: 1px solid var(--red);
  padding: 13px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  display: inline-block;
}
.btn-red-outline:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 22px var(--red-glow);
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50%       { box-shadow: 0 0 0 10px rgba(204,17,17,0); }
}
.btn-red-pulse { animation: pulse-red 2.2s infinite; }


/* ===================== NAVBAR ===================== */
.gx-navbar {
  background: black;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--red-line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.gx-navbar .navbar-brand {
  font-family: var(--font-head);
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: .22em;
  color: var(--white) !important;
}
.gx-navbar .navbar-brand span { color: var(--red-bright); }
.gx-navbar .nav-link {
  font-family: var(--font-head);
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--gray-lt) !important;
  padding: 8px 14px !important;
  transition: color .2s;
}
.gx-navbar .nav-link:hover     { background-color: var(--red-bright); color:black; }
.gx-navbar .navbar-toggler     { border-color: var(--red-line); }
.gx-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28204,17,17,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Floating Dropdown Left-Side Mini Panel */
.gx-navbar .gx-absolute-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 280px; /* Limits width to feel like a side menu panel */
  background: rgba(13, 13, 13, 0.98); 
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--red-line);
  border-bottom: 1px solid var(--red-line);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

/* Maintain behavior smoothly during opening/closing animations */
.gx-navbar .gx-absolute-menu.collapsing {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 280px;
  background: rgba(13, 13, 13, 0.98);
  transition: height 0.25s ease-out;
  z-index: 1000;
}




/* ===================== HERO ===================== */
.hero-section .hero-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.hero-section .hero-col-video,
.hero-section .hero-col-pkg  { width: 100%; max-width: 100%; }

@media (min-width: 768px) {
  .hero-section .hero-row      { flex-direction: row; gap: 36px; }
  .hero-section .hero-col-video,
  .hero-section .hero-col-pkg  { flex: 0 0 50%; max-width: 50%; }
}

/* Video panel */
.video-panel {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--red-line);
  background: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 30px 60px -20px rgba(204,17,17,.25);
}
.video-panel .ratio { --bs-aspect-ratio: 133%; }
.video-panel video  { width: 100%; height: auto; display: block; }

/* ===================== PACKAGE SELECTOR ===================== */
.pkg-head h1 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.pkg-head h1 .accent { color: var(--red-bright); }
.pkg-head p {
  color: var(--gray-lt);
  font-size: 14px;
  margin-bottom: 24px;
}
.pkg-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.pkg-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-option:hover   { border-color: var(--red-line); transform: translateY(-2px); }
.pkg-option.selected {
  border-color: var(--red);
  background: linear-gradient(160deg, #160404 0%, var(--bg-card) 100%);
  box-shadow: 0 0 0 1px var(--red-glow);
  transform: scale(1.045);
  z-index: 3;
}
.pkg-option.selected:hover { transform: scale(1.045) translateY(-2px); }
.pkg-option .pkg-radio {
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background: rgba(8,8,8,.5);
  z-index: 2;
  transition: border-color .2s;
}
.pkg-option.selected .pkg-radio              { border-color: var(--red-bright); }
.pkg-option.selected .pkg-radio::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
}
.pkg-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  background:#bdab85;
}
.pkg-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
}
.pkg-info { width: 100%; }
.pkg-name {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: .07em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pkg-sub         { font-size: 11.5px; color: var(--gray); margin-bottom: 10px; }
.pkg-price-block { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.pkg-price       { font-family: var(--font-head); font-size: 19px; }
.pkg-strike      { font-size: 11px; color: var(--gray); text-decoration: line-through; opacity: .6; }
.pkg-best-tag {
  font-family: var(--font-head);
  font-size: 8.5px;
  letter-spacing: .1em;
  color: #fff;
  background: var(--red);
  padding: 2px 8px;
  border-radius: 2px;
}


.pkg-cta { 
    margin: 12px auto 0px auto;
    display: block;
    width: fit-content;
    background-color:#a20008;
    font:arial;
    font-size: 20px;
    border-radius: 8px;
    padding: 12px 50px;   
    
}


#prepaid-cta {
    position: relative; 
    overflow: hidden;   
    display: block;
    width: fit-content;
    margin: 30px auto 16px auto;

    padding: 8px 18px;         
    line-height: 1;          
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
     border-radius: 6px;
    
    /* Red Theme with White Text */
    background-color: #e5000c;
    color: #ffffff;          
}

/* The Thick White Glowing Splash Line */
#prepaid-cta::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 60px; 
    
    /* Intense white glowing gradient center */
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    
    transform: skewX(-25deg); 
    
    /* Total loop time is 2 seconds (Rest period + Flash period) */
    animation: white-splash-with-rest 2s infinite linear; 
}

#prepaid-cta:hover {
    background-color: #bd2130; 
    color: #ffffff;
}

#prepaid-cta:hover::after {
    animation-play-state: paused; 
}

/* Right to Left Animation with built-in Rest Time */
@keyframes white-splash-with-rest {
    0%, 60% {
        left: 150%; /* 😴 It waits here off-screen for 60% of the duration */
    }
    100% {
        left: -60%; /* ⚡ Then it shoots across to the left quickly at the end */
    }
}



.pkg-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 11px;
  color: var(--gray);
}
.pkg-trust-row span { display: flex; align-items: center; gap: 6px; }

@media (max-width: 767px) {
  .pkg-head h1     { font-size: 22px; }
  .pkg-head p      { font-size: 13px; margin-bottom: 18px; }
  .pkg-list        { gap: 10px; margin-bottom: 8px; }
  .pkg-img-wrap    { aspect-ratio: 4/5; }
  .pkg-trust-row   { font-size: 9.5px; gap: 6px 10px; margin-top: 14px; }
  .hero-section    { padding: 16px 0; }
}
@media (max-width: 420px) {
  .pkg-head h1  { font-size: 18px; }
  .pkg-option   { padding: 12px; }
}







/* ===================== INFO / TOGGLES ===================== */
.info-section { background: var(--bg-dark); border-top: 1px solid var(--border); }

.payment-banner {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}
.payment-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 21px;
}

.gx-toggle-group { max-width: 760px; margin: 0 auto; }
.gx-toggle-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}
.gx-toggle-btn {
  width: 100%;
  background: var(--bg-card);
  color: var(--white);
  border: none;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 11.5px;
  letter-spacing: .08em;
}
.gx-toggle-btn .ttl-text  { flex: 1; display: flex; align-items: center; gap: 12px; }
.gx-toggle-btn .ttl-icon  { font-size: 16px; }
.gx-toggle-btn .chev      { font-size: 12px; color: var(--red); transition: transform .25s; flex-shrink: 0; }
.gx-toggle-btn[aria-expanded="true"]       { color: var(--red-bright); background: rgba(204,17,17,.06); }
.gx-toggle-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.gx-toggle-body {
  padding: 0 22px 20px;
  font-size: 13.5px;
  color: var(--gray-lt);
  border-top: 1px solid var(--red-line);
}
.gx-toggle-body p:last-child { margin-bottom: 0; }
.gx-toggle-body ul { padding-left: 18px; margin-bottom: 10px; }
.gx-toggle-body li { margin-bottom: 4px; }

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 4px;
}
@media (max-width: 575px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.spec-row span:first-child { color: var(--gray); }
.spec-row span:last-child  { color: var(--white); font-weight: 500; text-align: right; }




/* ===================== HOW TO USE ===================== */
.how-section   { background: var(--bg-deep); }
.how-section h2 { font-size: clamp(22px, 4vw, 38px); margin-bottom: 12px; }

.how-video-wrapper {
    position: relative;
    width: 100%;
}

/* 2. Background Video - Highly Optimized for Mobile & Desktop */
.how-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover; /* Acts like background-size: cover; eliminates skewing */
}

/* 3. Backdrop Blur / Darkener Overlay */
.how-video-overlay {
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); /* Safe fallback for iOS Safari */
}

/* ==========================================================================
   Mobile Responsive Tweak (Optional but Recommended)
   ========================================================================== */
@media (max-width: 768px) {
    /* Prevents content layout from growing overly huge on tight displays */
    .how-video-wrapper .container.py-5.my-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}




/* ===================== HOW Does IT WORKS ===================== */
.hiw-carousel-wrap { position: relative; overflow: hidden; }
.how-it-works-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    will-change: transform;
}
.hiw-card { flex: 0 0 220px; }
.hiw-thumb {
    position: relative;
    width: 220px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}
.hiw-thumb video { width: 100%; height: 100%; object-fit: cover; }
.hiw-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px; color: #fff;
    background: rgba(0,0,0,0.5);
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hiw-caption { text-align: center; margin-top: 8px; }
.hiw-title { font-weight: 600; font-size: 13px; letter-spacing: .04em; }
.hiw-nav-btn {
    position: absolute; top: 40%; transform: translateY(-50%);
    z-index: 5; background: #fff; border: 1px solid #ddd;
    border-radius: 50%; width: 36px; height: 36px; font-size: 20px; cursor: pointer;
}
.hiw-nav-prev { left: 4px; }
.hiw-nav-next { right: 4px; }
.hiw-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.hiw-dots .dot { width: 7px; height: 7px; border-radius: 50%; background: #ccc; cursor: pointer; }
.hiw-dots .dot.active { background: #333; }








/* ===================== HOW IT WORKS ===================== */
.works-section   { background: var(--bg-dark); border-top: 1px solid var(--border); }
.works-section h2 { font-size: clamp(22px, 4vw, 38px); }

.mechanism-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.mech-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
  border-radius: 4px;
  padding: 16px 18px;
}
.mech-item .mech-icon { font-size: 20px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.mech-item h4 { font-size: 12px; letter-spacing: .08em; margin-bottom: 4px; }
.mech-item p  { font-size: 13px; color: var(--gray); margin: 0; }

/* Video results carousel */
.vr-carousel-wrap    { position: relative; margin-top: 36px; }
.video-results-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.video-results-track::-webkit-scrollbar { display: none; }
.vr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 300px;
  scroll-snap-align: start;
  transition: border-color .2s, transform .2s;
}
.vr-card:hover { border-color: var(--red-line); transform: translateY(-3px); }
@media (max-width: 480px) { .vr-card { flex: 0 0 168px; } }

.vr-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #1a0000 0%, #2a0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vr-thumb video,
.vr-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vr-play {
  position: relative; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(204,17,17,.9);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
  box-shadow: 0 0 22px rgba(204,17,17,.5);
}
.vr-day-tag {
  position: absolute; top: 9px; left: 9px; z-index: 2;
  font-family: var(--font-head);
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--white);
  background: rgba(8,8,8,.75);
  border: 1px solid var(--red-line);
  padding: 3px 8px;
  border-radius: 2px;
}
.vr-caption         { padding: 10px 12px; }
.vr-caption .vr-name   { font-family: var(--font-head); font-size: 10px; letter-spacing: .08em; margin-bottom: 2px; }
.vr-caption .vr-result { font-size: 11px; color: var(--red-bright); }

.vr-nav-btn {
  position: absolute;
  top: 38%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(8,8,8,.85);
  border: 1px solid var(--red-line);
  color: var(--red-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 3;
  transition: background .2s, color .2s;
}
.vr-nav-btn:hover { background: var(--red); color: #fff; }
.vr-nav-prev { left: -6px; }
.vr-nav-next { right: -6px; }
@media (max-width: 767px) { .vr-nav-btn { display: none; } }

.vr-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.vr-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--red-line); cursor: pointer; transition: background .2s, width .2s; }
.vr-dot.active { background: var(--red-bright); width: 18px; border-radius: 3px; }

/* ===================== BENEFITS ===================== */
.benefits-section   { background: var(--bg-deep); border-top: 1px solid var(--border); }
.benefits-section h2 { font-size: clamp(22px, 4vw, 38px); }
.benefits-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
@media (max-width: 767px) { .benefits-list { grid-template-columns: 1fr; gap: 14px; } }

.benefit-bullet { display: flex; align-items: flex-start; gap: 12px; }
.bb-mark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 2px solid green;
  color: green;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}
.bb-text          { font-size: 14px; color: var(--gray-lt); line-height: 1.5; }
.bb-text strong   { color: var(--white); font-weight: 600; }

/* ===================== REVIEWS ===================== */
.reviews-section   { background: var(--bg-dark); border-top: 1px solid var(--border); }
.reviews-section h2 { font-size: clamp(22px, 4vw, 38px); }
.stars-gold        { color: #e8b500; font-size: 14px; letter-spacing: 2px; }

.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  width: 70%;
  margin: 0 auto 8px;
}
@media (max-width: 767px) { .rating-overview { grid-template-columns: 1fr; gap: 24px; width: 100%; } }

.rating-count-card          { text-align: center; min-width: 140px; }
.rating-count-card .rc-num  { font-family: var(--font-head); font-size: 36px; color: #FFA500; line-height: 1; }
.rating-count-card .rc-label { font-family: var(--font-head); font-size: 11px; letter-spacing: .08em; margin-bottom: 10px; }
.rating-count-card .stars-gold { display: block; margin-bottom: 6px; }
.rating-count-card .rc-sub  { font-size: 11.5px; color: var(--gray); }

.rating-bars     { display: flex; flex-direction: column; gap: 9px; width: 100%; }
.rating-bar-row  { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--gray-lt); }
.rb-label        { width: 26px; flex-shrink: 0; display: flex; align-items: center; gap: 3px; font-size: 11px; }
.rb-label .star-ic { color: #e8b500; font-size: 11px; }
.rating-bar-track  { flex: 1; height: 7px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.rating-bar-fill   { height: 100%; background:#FFA500; border-radius: 4px; }
.rb-count          { width: 46px; text-align: right; flex-shrink: 0; font-size: 12px; color:#ffa500; }

/* "What Customers Said" list */
.said-list        { margin-top: 50px; }
.said-head        { text-align: center; margin-bottom: 30px; }
.said-head h3 {
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 10px;
}
.said-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}
.said-item:first-child { padding-top: 6px; }
.said-item:last-child  { border-bottom: none; }
.said-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.said-rating-num { font-family: var(--font-head); font-size: 12px; letter-spacing: .04em; }
.said-stars      { color: #e8b500; font-size: 13px; letter-spacing: 1px; }
.said-text       { font-size: 13.5px; color: var(--gray-lt); line-height: 1.6; margin: 0 0 14px; }
.said-photos     { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.said-photos img {
  width: 80px; height: 80px;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .15s, border-color .15s;
}
.said-photos img:hover { transform: translateY(-2px); border-color: var(--red-line); }
.said-meta        { font-size: 12px; color: var(--gray); }
.said-meta strong { color: var(--gray-lt); font-weight: 600; }
.said-votes {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--gray-lt);
  white-space: nowrap;
  padding-top: 4px;
}
.said-votes span    { display: flex; align-items: center; gap: 5px; }
.said-votes .vote-up { color: var(--red-bright); }
@media (max-width: 575px) {
  .said-item  { grid-template-columns: 1fr; }
  .said-votes { padding-top: 0; }
}

/* ===================== FAQ ===================== */
.faq-section   { background: var(--bg-deep); border-top: 1px solid var(--border); }
.faq-section h2 { font-size: clamp(20px, 4vw, 34px); }

.gx-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.gx-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 18px 22px;
  box-shadow: none !important;
}
.gx-accordion .accordion-button:not(.collapsed) {
  color: var(--red-bright);
  background: rgba(204,17,17,.06);
}
.gx-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(320deg);
}
.gx-accordion .accordion-body {
  background: var(--bg-card);
  color: var(--gray-lt);
  font-size: 14px;
  padding: 0 22px 20px;
  border-top: 1px solid var(--red-line);
}

/* ===================== FOOTER ===================== */
.gx-footer {
  background: #050505;
  border-top: 1px solid var(--red-line);
  padding: 48px 0 32px;
  text-align: center;
}
.gx-footer .logo {
  font-family: var(--font-head);
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: .2em;
  color: var(--white);
  margin-bottom: 28px;
  display: block;
}
.gx-footer .logo span { color: var(--red-bright); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 28px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--red-bright); }
.footer-copy { font-size: 12px; color: var(--gray); margin: 0; }

/* ===================== FLOATING CHAT ===================== */
.quick-chat-btn {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 1000;
  width: 56px; height: 56px;
  background-color:transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.quick-chat-btn:hover { transform: translateY(-2px) scale(1.04); }

@keyframes chat-pop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}
.quick-chat-btn { animation: chat-pop 2.6s infinite; }


.btn-sticky-bottom {
  position: fixed;
  bottom: 20px;       /* Distance from the bottom of the screen */
  left: 50%;          /* Move to the middle of the screen horizontally */
  transform: translateX(-50%); /* Shift it back by half its own width to perfectly center it */
  z-index: 1050;      /* Keeps it on top of other content (Bootstrap standard for fixed items) */
  
  /* Optional: Ensures it stays visible on all screen sizes, overriding Bootstrap's utility classes */
  display: inline-block !important; 
  border-radius: 25px;
}