/* ========================================
   FIGHTER AGENCY — Main Stylesheet
   Brand: Black + Orange + TikTok accents
   ======================================== */


/* ===== CSS VARIABLES ===== */
:root {
  --orange: #E8820C;
  --orange-deep: #C06A0A;
  --orange-light: #FF9A2E;
  --orange-glow: rgba(232, 130, 12, 0.35);
  --black: #080808;
  --black-2: #0F0F0F;
  --black-3: #141414;
  --black-4: #1A1A1A;
  --black-5: #222222;
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-10: rgba(255, 255, 255, 0.08);
  --pink: #FF2D55;
  --cyan: #00F2EA;
  --pink-glow: rgba(255, 45, 85, 0.2);
  --cyan-glow: rgba(0, 242, 234, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 0 40px var(--orange-glow);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Oswald', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

body.lang-en {
  direction: ltr;
  font-family: var(--font-en);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black-2);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 0 25px var(--orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 50px var(--orange-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
}

.pulse-btn {
  animation: pulseBorder 2.5s infinite;
}

@keyframes pulseBorder {

  0%,
  100% {
    box-shadow: 0 0 25px var(--orange-glow);
  }

  50% {
    box-shadow: 0 0 60px rgba(232, 130, 12, 0.6), 0 0 100px rgba(232, 130, 12, 0.3);
  }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--white), var(--orange-light), var(--white), var(--orange-light));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section-header p {
  color: var(--white-70);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--white-10);
  border: 1px solid rgba(232, 130, 12, 0.4);
  color: var(--orange-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(232, 130, 12, 0.15);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-fallback {
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 0.5rem;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white-70);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white-70);
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lang-toggle .lang-ar,
.lang-toggle .lang-en {
  transition: color 0.2s;
}

body.lang-en .lang-toggle .lang-en {
  color: var(--orange);
}

body:not(.lang-en) .lang-toggle .lang-ar {
  color: var(--orange);
}

.lang-divider {
  opacity: 0.3;
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta {
    display: inline-flex;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 900px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid rgba(232, 130, 12, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 130, 12, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 45, 85, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 242, 234, 0.06) 0%, transparent 60%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 130, 12, 0.18) 0%, transparent 70%);
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.12) 0%, transparent 70%);
  animation-delay: 3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  bottom: 50px;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 242, 234, 0.1) 0%, transparent 70%);
  animation-delay: 5s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(-30px) translateX(-50%);
  }
}

.orb-2 {
  animation: floatOrb2 7s ease-in-out infinite;
}

.orb-3 {
  animation: floatOrb3 9s ease-in-out infinite;
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatOrb3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(232, 130, 12, 0.5);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: visible;
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-deep), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(232, 130, 12, 0.5));
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 32px;
  backdrop-filter: blur(10px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  text-align: center;
  padding: 0 24px;
}

.stat-num {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--orange-light);
  font-family: var(--font-en);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--white-70);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: var(--white-40);
  font-size: 0.75rem;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    height: 40px;
  }

  50% {
    opacity: 1;
    height: 60px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===== HERO LOGOS ===== */
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}

.hero-logo-img {
  height: 170px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(232, 130, 12, 0.6));
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(232, 130, 12, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(232, 130, 12, 0.8));
  }
}

.hero-logos-divider {
  width: 0px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
}

.tiktok-logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--white);
  letter-spacing: 1px;
}

.tiktok-logo-badge i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.5));
}

/* ===== COMPARISON ===== */
.comparison {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.comparison-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(255, 50, 50, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(232, 130, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

/* --- Cards Base --- */
.comparison-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
}

.comparison-card:hover {
  transform: translateY(-8px);
}

/* --- Bad Card --- */
.comparison-card.bad {
  border-color: rgba(255, 60, 60, 0.15);
}

.comparison-card.bad:hover {
  border-color: rgba(255, 60, 60, 0.3);
  box-shadow: 0 20px 60px rgba(255, 50, 50, 0.08), 0 0 40px rgba(255, 50, 50, 0.05);
}

.comparison-card.bad::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF4444, transparent);
  opacity: 0.6;
}

/* --- Good Card --- */
.comparison-card.good {
  border-color: rgba(232, 130, 12, 0.25);
  box-shadow: 0 0 50px rgba(232, 130, 12, 0.08);
}

.comparison-card.good:hover {
  border-color: rgba(232, 130, 12, 0.5);
  box-shadow: 0 20px 60px rgba(232, 130, 12, 0.12), 0 0 80px rgba(232, 130, 12, 0.08);
}

.comparison-card.good::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(232, 130, 12, 0.06) 0%, transparent 40%, rgba(255, 45, 85, 0.03) 100%);
  pointer-events: none;
  z-index: 0;
}

.comparison-card.good::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--pink), transparent);
  animation: shimmerBorder 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmerBorder {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* --- Recommended Badge --- */
.comp-recommended {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(232, 130, 12, 0.4);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* --- Card Header --- */
.comparison-header {
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.comparison-card.good .comparison-header {
  padding-top: 48px;
}

.bad-header {
  background: linear-gradient(180deg, rgba(255, 50, 50, 0.08) 0%, transparent 100%);
}

.good-header {
  background: linear-gradient(180deg, rgba(232, 130, 12, 0.1) 0%, transparent 100%);
}

.comparison-header h3 {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* --- Icon --- */
.comp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card:hover .comp-icon {
  transform: scale(1.12) rotate(5deg);
}

.bad-icon {
  background: rgba(255, 50, 50, 0.12);
  color: #FF5555;
  border: 1px solid rgba(255, 50, 50, 0.2);
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.1);
}

.good-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}

/* --- List --- */
.comparison-list {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--white-70);
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  cursor: default;
}

.comparison-list li:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(-4px);
  color: var(--white);
}

body.lang-en .comparison-list li:hover {
  transform: translateX(4px);
}

.comparison-list li i {
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s;
}

.comparison-list li:hover i {
  transform: scale(1.2);
}

.bad .comparison-list li i {
  color: #FF5555;
  filter: drop-shadow(0 0 4px rgba(255, 50, 50, 0.3));
}

.good .comparison-list li i {
  color: #2ECC71;
  filter: drop-shadow(0 0 4px rgba(46, 204, 113, 0.3));
}

.comparison-list li span {
  line-height: 1.5;
}

/* --- VS Badge --- */
.vs-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  align-self: center;
}

.vs-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
  border: 2px solid rgba(232, 130, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(232, 130, 12, 0.15);
}

.vs-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--orange-light);
  z-index: 1;
  letter-spacing: 1px;
}

.vs-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(232, 130, 12, 0.3);
  animation: vsPulse 2.5s ease-in-out infinite;
}

@keyframes vsPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vs-badge-wrap {
    padding: 8px 0;
  }

  .comparison-list li:hover {
    transform: none;
  }

  body.lang-en .comparison-list li:hover {
    transform: none;
  }
}

/* ===== FEATURES ===== */
.features {
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(232, 130, 12, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--shadow-orange);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: transform 0.3s;
  box-shadow: 0 8px 20px var(--orange-glow);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.hiw-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(232, 130, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* --- Step Card --- */
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 36px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  cursor: default;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 130, 12, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(232, 130, 12, 0.1);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(232, 130, 12, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.step-card:hover::before {
  opacity: 1;
}

/* --- Step Number --- */
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(232, 130, 12, 0.4);
  letter-spacing: 0.5px;
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover .step-number {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 8px 30px rgba(232, 130, 12, 0.6);
}

/* --- Step Icon --- */
.step-icon-wrap {
  position: relative;
  margin-bottom: 20px;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.12), rgba(232, 130, 12, 0.05));
  border: 2px solid rgba(232, 130, 12, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 30px var(--orange-glow), 0 8px 24px rgba(232, 130, 12, 0.3);
  transform: scale(1.08);
}

.step-icon-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(232, 130, 12, 0.15);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.8);
}

.step-card:hover .step-icon-ring {
  opacity: 1;
  transform: scale(1);
  animation: stepRingPulse 2s ease-in-out infinite;
}

@keyframes stepRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* --- Step Text --- */
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.step-card:hover h3 {
  color: var(--orange-light);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .steps-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 500px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 130, 12, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulseCta 4s ease-in-out infinite;
}

@keyframes pulseCta {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-deep));
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 0 20px var(--orange-glow);
}

.cta-content h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--white-70);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== HOW TO JOIN ===== */
.join-methods {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.join-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(232, 130, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Tabs --- */
.join-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.join-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white-70);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-tab i {
  font-size: 1rem;
  transition: color 0.3s;
}

.join-tab:hover {
  border-color: rgba(232, 130, 12, 0.3);
  color: var(--white);
}

.join-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 30px var(--orange-glow);
}

/* --- Method Panels --- */
.join-method {
  display: none;
}

.join-method.active {
  display: block;
  animation: fadeInMethod 0.4s ease-out;
}

@keyframes fadeInMethod {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Screenshot Image --- */
.phone-frame {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.phone-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 130, 12, 0.08);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ===== METHOD 1: Easy Join ===== */
.easy-join-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.easy-join-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.04), transparent 60%);
  pointer-events: none;
}

.easy-join-info {
  position: relative;
  z-index: 1;
}

.easy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.15), rgba(255, 215, 0, 0.1));
  border: 1px solid rgba(232, 130, 12, 0.3);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.easy-badge i {
  color: #FFD700;
}

.easy-join-info h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
}

.easy-join-info p {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 28px;
}

.join-cta-btn {
  font-size: 1.05rem;
}

.easy-form-reminder {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(232, 130, 12, 0.08);
  border: 1px solid rgba(232, 130, 12, 0.2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.easy-form-reminder>i {
  color: var(--orange);
  font-size: 1.3rem;
}

.easy-form-reminder p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.easy-form-reminder .btn {
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 10px;
}

.easy-join-img {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 auto;
}

/* ===== METHOD 2: Step Cards ===== */
.join-step-card {
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.join-step-card:hover {
  border-color: rgba(232, 130, 12, 0.25);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.join-step-num {
  position: absolute;
  top: -14px;
  left: 32px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 130, 12, 0.4);
  z-index: 2;
}

body.lang-en .join-step-num {
  left: auto;
  right: 32px;
}

.join-step-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.join-step-text h4 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.join-step-text p {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 16px;
}

.join-step-btn {
  font-size: 0.88rem;
  padding: 10px 22px;
}

.join-step-img {
  width: 240px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .easy-join-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
    text-align: center;
  }

  .easy-join-info h3 {
    font-size: 1.4rem;
  }

  .easy-join-img {
    max-width: 300px;
  }

  .easy-badge {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .join-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .join-tab {
    justify-content: center;
    padding: 12px 20px;
  }

  .join-step-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .join-step-img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .join-step-card {
    padding: 28px 20px;
  }
}

/* ===== CONTACT ===== */
.contact {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 30% 60%, rgba(232, 130, 12, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 40%, rgba(0, 242, 234, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Form Card --- */
.contact-form-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
}

.contact-form-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--pink), transparent);
  background-size: 200% 100%;
  animation: shimmerBorder 3s linear infinite;
}

/* --- Form Card Header --- */
.form-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px var(--orange-glow);
}

.form-card-header h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.form-card-header p {
  font-size: 0.82rem;
  color: var(--white-40);
}

/* --- Form Fields --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--white-70);
  transition: color 0.2s;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  right: 16px;
  color: var(--orange);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.2s;
}

body.lang-en .input-wrap i {
  right: auto;
  left: 16px;
}

.input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 44px 15px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
}

body.lang-en .input-wrap input {
  padding: 15px 18px 15px 44px;
}

.input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.input-wrap input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 130, 12, 0.12), 0 0 20px rgba(232, 130, 12, 0.06);
  background: rgba(255, 255, 255, 0.06);
}

.input-wrap select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 44px 15px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23e8820c'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 12px;
}

body.lang-en .input-wrap select {
  padding: 15px 18px 15px 44px;
  background-position: right 16px center;
}

.input-wrap select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 130, 12, 0.12), 0 0 20px rgba(232, 130, 12, 0.06);
  background-color: rgba(255, 255, 255, 0.06);
}

.input-wrap select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-40);
  margin-top: 14px;
}

/* --- Contact Info Side --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Motto Card --- */
.contact-motto {
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 130, 12, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-motto:hover {
  border-color: rgba(232, 130, 12, 0.4);
  box-shadow: 0 0 40px rgba(232, 130, 12, 0.08);
}

.contact-motto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.06), rgba(255, 45, 85, 0.04));
  pointer-events: none;
}

.motto-stars {
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 3px;
  position: relative;
}

.contact-motto p {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.contact-channels-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

/* --- Social Cards 2-col Grid --- */
.contact-socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-social-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
}

.contact-social-card:hover::before {
  opacity: 1;
}

.cs-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-social-card:hover .cs-icon {
  transform: scale(1.12);
}

.cs-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.cs-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-handle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Per-platform colors */
.cs-tiktok .cs-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.cs-tiktok::before {
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), rgba(255, 45, 85, 0.06));
}

.cs-tiktok:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cs-facebook .cs-icon {
  background: rgba(24, 119, 242, 0.15);
  color: #4a9ff5;
}

.cs-facebook::before {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), transparent);
}

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

.cs-facebook:hover .cs-handle {
  color: #4a9ff5;
}

.cs-instagram .cs-icon {
  background: rgba(220, 39, 67, 0.12);
  color: #e05d7a;
}

.cs-instagram::before {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.08), rgba(188, 24, 136, 0.08));
}

.cs-instagram:hover {
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.15);
}

.cs-instagram:hover .cs-handle {
  color: #e05d7a;
}

.cs-whatsapp .cs-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.cs-whatsapp::before {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), transparent);
}

.cs-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
}

.cs-whatsapp:hover .cs-handle {
  color: #25D366;
}

.cs-website .cs-icon {
  background: rgba(232, 130, 12, 0.15);
  color: var(--orange-light);
}

.cs-website::before {
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.1), transparent);
}

.cs-website:hover {
  box-shadow: 0 8px 24px rgba(232, 130, 12, 0.15);
}

.cs-website:hover .cs-handle {
  color: var(--orange-light);
}

.cs-email .cs-icon {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white-70);
}

.cs-email::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
}

.cs-email:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cs-email:hover .cs-handle {
  color: var(--white);
}

/* --- Contact Responsive --- */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

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

/* ===== NAV SOCIAL ICONS ===== */
.nav-socials {
  display: none;
  align-items: center;
  gap: 6px;
}

@media (min-width: 1050px) {
  .nav-socials {
    display: flex;
  }
}

.nav-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white-70);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

.nav-social-icon.tiktok-icon:hover {
  background: var(--black-5);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-social-icon.facebook-icon:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 0 14px rgba(24, 119, 242, 0.4);
}

.nav-social-icon.instagram-icon:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 14px rgba(220, 39, 67, 0.4);
}

/* ===== FOOTER LINKS ROW ===== */
.footer-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-website:hover {
  color: var(--white);
}

.footer-website i {
  font-size: 0.8rem;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-70);
  background: var(--black-3);
  transition: var(--transition);
  white-space: nowrap;
}

.footer-link-item i {
  font-size: 0.9rem;
}

.footer-link-item:hover {
  transform: translateY(-2px);
}

.footer-link-item.tiktok:hover {
  background: var(--black-5);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-link-item.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.footer-link-item.instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.3);
}

.footer-link-item.wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* Social link facebook and instagram hover */
.social-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.35);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.35);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
}

.footer-logo-sub {
  font-family: var(--font-en);
  font-size: 0.6rem;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-70);
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.tiktok:hover {
  background: var(--black-5);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-link.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.social-link.email:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--white-40);
}

.footer-tag {
  color: var(--white-40);
}

/* ===== LANGUAGE TRANSITIONS ===== */
[data-ar],
[data-en] {
  transition: opacity 0.2s;
}

/* ===== AOS OVERRIDES ===== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ===== MOBILE GENERAL ===== */
@media (max-width: 600px) {
  section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-stats {
    padding: 16px 20px;
    gap: 4px;
  }

  .stat {
    padding: 0 16px;
  }

  .stat-divider {
    height: 30px;
  }

  .hero-ctas {
    gap: 12px;
  }

  .btn-lg {
    padding: 14px 26px;
    font-size: 0.95rem;
  }

  .cta-buttons {
    gap: 12px;
  }

  .btn-xl {
    padding: 15px 28px;
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== UTILITY ===== */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== TIKTOK ACCENT LINES ===== */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan), transparent 40%, var(--pink) 80%, transparent);
  opacity: 0.4;
}

body.lang-en .hero::after {
  right: auto;
  left: 0;
}

/* Subtle TikTok dual-color separator */
.comparison::before,
.features::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  opacity: 0.25;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), #FFD700);
  z-index: 100000;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--orange-glow);
}



/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== WAVE DIVIDERS ===== */
.hero {
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230F0F0F' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,40 1440,35 L1440,60 L0,60Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}