/* =========================================
   SENSIXPERT – MODERNIZED MOBILE-FIRST GAMING LP
   ========================================= */

/* ─── CSS RESET & BASE ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon-red:    #ff2d55;
  --neon-purple: #bf5fff;
  --neon-blue:   #00d4ff;
  --dark-bg:     #080a10;
  --dark-card:   #0f1320;
  --dark-card2:  #131825;
  --border:      rgba(255,255,255,0.07);
  --text:        #e8eaf0;
  --text-dim:    #7a8090;
  --font:        'Outfit', sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  /* Mobile-first touch targets */
  --min-touch: 48px;
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font);
  background: var(--dark-bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── ANNOUNCEMENT BAR ─────────────── */
@keyframes annBarShimmer {
  0%   { left: -120%; }
  100% { left: 120%; }
}
@keyframes annBarPulse {
  0%, 100% { box-shadow: 0 2px 14px rgba(191,95,255,0.35), 0 0 24px rgba(255,45,85,0.2); }
  50%       { box-shadow: 0 2px 20px rgba(191,95,255,0.5), 0 0 34px rgba(255,45,85,0.3); }
}
@keyframes annGiftWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15%       { transform: rotate(-18deg) scale(1.15); }
  35%       { transform: rotate(14deg) scale(1.1); }
  55%       { transform: rotate(-8deg) scale(1.05); }
  75%       { transform: rotate(5deg) scale(1.02); }
}
@keyframes annBadgePop {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
@keyframes annArrowBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
@keyframes annTextGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.4); }
  50%       { text-shadow: 0 0 22px rgba(255,255,255,0.9), 0 0 40px rgba(191,95,255,0.6); }
}

.top-announcement-bar {
  background: linear-gradient(90deg,
    #7c1fff 0%,
    #bf5fff 25%,
    #ff2d55 60%,
    #ff6b35 85%,
    #bf5fff 100%
  );
  background-size: 200% 100%;
  animation: annBarPulse 2.5s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: filter 0.2s, transform 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.top-announcement-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: annBarShimmer 2.2s ease-in-out infinite;
  pointer-events: none;
  transform: skewX(-20deg);
}
.top-announcement-bar:hover {
  filter: brightness(1.1);
  transform: none;
}
.top-announcement-bar:active {
  transform: scale(0.99);
}

/* Gift emoji */
.top-announcement-bar .ann-gift {
  display: inline-block;
  font-size: 18px;
  animation: annGiftWiggle 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255,200,0,0.8));
  flex-shrink: 0;
}

/* Main label */
.top-announcement-bar .ann-label {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: annTextGlow 2.5s ease-in-out infinite;
}

/* CTA badge */
.top-announcement-bar .ann-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
  animation: annBadgePop 1.8s ease-in-out infinite;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.top-announcement-bar .ann-cta .ann-arrow {
  display: inline-block;
  animation: annArrowBounce 1.2s ease-in-out infinite;
}

/* Live dot inside bar */
.top-announcement-bar .ann-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: dotBlink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .top-announcement-bar { padding: 10px 12px; gap: 7px; font-size: 12px; }
  .top-announcement-bar .ann-label { font-size: 12px; }
  .top-announcement-bar .ann-gift { font-size: 16px; }
  .top-announcement-bar .ann-cta { padding: 3px 9px; font-size: 11px; }
}

/* ─── MESH GRADIENT CANVAS ─────────────── */
#mesh-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.4;
}

/* ─── PARTICLES ────────────────────────── */
.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .particles { display: none; }
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--neon-purple);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
.particle:nth-child(1)  { left:5%;   animation-duration:12s; animation-delay:0s;    width:3px; height:3px; background:var(--neon-red); }
.particle:nth-child(2)  { left:15%;  animation-duration:9s;  animation-delay:2s;   }
.particle:nth-child(3)  { left:25%;  animation-duration:14s; animation-delay:4s;   background:var(--neon-blue); }
.particle:nth-child(4)  { left:35%;  animation-duration:10s; animation-delay:1s;   }
.particle:nth-child(5)  { left:45%;  animation-duration:11s; animation-delay:3s;   background:var(--neon-red); }
.particle:nth-child(6)  { left:55%;  animation-duration:13s; animation-delay:5s;   background:var(--neon-blue); }
.particle:nth-child(7)  { left:65%;  animation-duration:8s;  animation-delay:0.5s; }
.particle:nth-child(8)  { left:75%;  animation-duration:15s; animation-delay:2.5s; background:var(--neon-red); }
.particle:nth-child(9)  { left:85%;  animation-duration:10s; animation-delay:6s;   }
.particle:nth-child(10) { left:90%;  animation-duration:12s; animation-delay:1.5s; background:var(--neon-blue); }
.particle:nth-child(11) { left:10%;  animation-duration:16s; animation-delay:4s;   }
.particle:nth-child(12) { left:70%;  animation-duration:9s;  animation-delay:3.5s; background:var(--neon-red); }
.particle:nth-child(13) { left:30%;  animation-duration:11s; animation-delay:7s;   background:var(--neon-blue); }
.particle:nth-child(14) { left:50%;  animation-duration:14s; animation-delay:2s;   }
.particle:nth-child(15) { left:80%;  animation-duration:10s; animation-delay:5.5s; background:var(--neon-purple); width:3px; height:3px; }
.particle:nth-child(16) { left:20%;  animation-duration:13s; animation-delay:1s;   }

@keyframes floatParticle {
  0%   { bottom:-10px; opacity:0; transform:translateX(0); }
  10%  { opacity:0.6; }
  90%  { opacity:0.3; }
  100% { bottom:110vh; opacity:0; transform:translateX(30px); }
}

/* ─── MARQUEE STRIP ────────────────────── */
.marquee-strip {
  background: linear-gradient(90deg, var(--neon-red), var(--neon-purple));
  overflow: hidden; white-space: nowrap;
  padding: 9px 0;
  position: relative; z-index: 10;
}
.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: inline-block;
  margin: 0 28px;
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.5px; color: #fff;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── GLOW ORBS — SABİT, ANİMASYONSUZ ──── */
.glow-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(140px);
  /* Animasyon YOK — ışık patlaması olmasın */
  opacity: 0.6;
}
.glow-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(191,95,255,0.15), transparent 70%);
  top: -80px; right: -80px;
}
.glow-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,45,85,0.12), transparent 70%);
  bottom: 50px; left: -80px;
}
.glow-sales {
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(191,95,255,0.14), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.glow-sales2 { background: radial-gradient(circle, rgba(255,45,85,0.14), transparent 70%); }

/* orbPulse kaldırıldı — animasyon yok */


/* ─── HERO SECTION ─────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(191,95,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,45,85,0.10) 0%, transparent 60%),
    var(--dark-bg);
}

/* Brand */
.brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.brand-icon { font-size: 26px; filter: drop-shadow(0 0 10px var(--neon-red)); }
.brand-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 2px; }
.brand-accent { color: var(--neon-purple); }

/* Live badge */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,85,0.12);
  border: 1px solid rgba(255,45,85,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px; font-weight: 600;
  color: #ff8fa3;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon-red);
  box-shadow: 0 0 6px var(--neon-red);
  animation: dotBlink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,45,85,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(255,45,85,0); }
}

/* Hero title */
.hero-title {
  font-size: clamp(24px, 6.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(255,255,255,0.08);
}
.hero-title-gradient {
  background: linear-gradient(90deg, var(--neon-red), var(--neon-purple), var(--neon-blue));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

.hero-subtitle {
  font-size: clamp(15px, 4vw, 19px);
  color: #9ca3b0;
  margin-bottom: 16px;
  max-width: 400px;
  line-height: 1.6;
}
.hero-subtitle strong { color: #fff; }

.hero-desc {
  font-size: clamp(16px, 4.2vw, 20px);
  color: #e2e8f0;
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.65;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.highlight-text {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #ff8fa3, #bf5fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PRIMARY BUTTON ────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  color: #fff;
  font-family: var(--font);
  font-size: 16px; font-weight: 800;
  letter-spacing: 1px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(191,95,255,0.4), 0 8px 25px rgba(0,0,0,0.4);
  min-height: var(--min-touch);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}
.btn-primary:hover  { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 50px rgba(191,95,255,0.6), 0 15px 35px rgba(0,0,0,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-xl     { padding: 20px 48px; font-size: 17px; border-radius: 18px; }

/* Trust row */
.trust-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; flex-wrap: wrap; justify-content: center;
}
.trust-stars { font-size: 16px; filter: drop-shadow(0 0 6px #f59e0b); }
.trust-text  { color: #7a8090; font-size: 13px; }

/* Stats row */
.stats-row {
  display: flex; align-items: center;
  margin-top: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%; max-width: 400px;
}
.stat-item  { flex: 1; padding: 14px 10px; text-align: center; }
.stat-num {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label   { font-size: 10px; color: var(--text-dim); margin-top: 2px; font-weight: 500; letter-spacing: 0.3px; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* Hero image */
.hero-img-wrap {
  position: relative;
  margin-top: 36px;
  width: 100%; max-width: 600px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(191,95,255,0.25);
  box-shadow: 0 0 60px rgba(191,95,255,0.18), 0 25px 50px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .hero-img-wrap {
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }
}
.hero-img-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(191,95,255,0.2), transparent 70%);
  pointer-events: none;
}
.hero-img         { display: block; width: 100%; height: auto; }
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--dark-bg), transparent);
}

/* Floating labels */
.float-label {
  position: absolute;
  background: rgba(10,12,20,0.9);
  border: 1px solid rgba(191,95,255,0.4);
  border-radius: 10px;
  padding: 7px 12px;
  display: flex; flex-direction: column; align-items: center;
  backdrop-filter: blur(10px);
  animation: floatBob 3s ease-in-out infinite alternate;
}
.float-hs { top: 16px; left: 12px; animation-delay: 0s; }
.float-kd { bottom: 44px; right: 12px; animation-delay: 1.5s; }
.float-val { font-size: 16px; font-weight: 900; color: var(--neon-purple); }
.float-txt { font-size: 9px; color: var(--text-dim); font-weight: 600; letter-spacing: 0.5px; }

@keyframes floatBob {
  from { transform: translateY(0px); }
  to   { transform: translateY(-8px); }
}

/* ─── SECTION COMMONS ──────────────────── */
.section-wrap {
  max-width: 700px; margin: 0 auto;
  padding: 0 16px;
}
.section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--neon-purple);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 900; line-height: 1.15;
  color: #fff; text-align: center;
  margin-bottom: 36px;
}
.neon-text {
  color: var(--neon-purple);
  text-shadow: 0 0 20px rgba(191,95,255,0.6);
}

/* Repeat CTA below features */
.section-cta { text-align: center; margin-top: 36px; }
.btn-section-cta { padding: 18px 44px; }

/* ─── SHOWCASE SECTION ───────────────────── */
.showcase-section {
  position: relative; z-index: 1;
  padding: 60px 0 20px;
}
.showcase-title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}
.showcase-grid {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 600px; margin: 0 auto;
}
.showcase-card {
  background: #181c25;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 24px 20px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, border-color 0.35s;
}
.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191,95,255,0.3);
}
.showcase-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--dark-bg);
}
.sc-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.showcase-caption {
  text-align: center;
  font-size: 15px;
  color: #c0c8d8;
  font-weight: 500;
}

/* ─── PAIN SECTION ─────────────────────── */
.pain-section {
  position: relative; z-index: 1;
  padding: 70px 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pain-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.pain-card:hover  { transform: translateY(-4px); border-color: rgba(255,45,85,0.3); }
.pain-icon        { font-size: 30px; margin-bottom: 10px; }
.pain-card p      { font-size: 13px; color: #9ca3b0; line-height: 1.5; }

/* ─── FEATURES SECTION ─────────────────── */
.features-section {
  position: relative; z-index: 1;
  padding: 70px 0;
  background: linear-gradient(180deg, transparent, rgba(191,95,255,0.04), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Feature cards with hover animation */
.feat-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.feat-card-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(191,95,255,0.1), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card-shine {
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  transition: left 0.5s ease;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover                        { transform: translateY(-6px); border-color: rgba(191,95,255,0.4); box-shadow: 0 0 40px rgba(191,95,255,0.12), 0 12px 30px rgba(0,0,0,0.4); }
.feat-card:hover .feat-card-bg          { opacity: 1; }
.feat-card:hover::before                { opacity: 1; }
.feat-card:hover .feat-card-shine       { left: 120%; }

.feat-card-glow {
  border-color: rgba(191,95,255,0.4);
  box-shadow: 0 0 30px rgba(191,95,255,0.15);
  background: linear-gradient(135deg, rgba(191,95,255,0.08), var(--dark-card));
}
.feat-best {
  font-size: 10px; font-weight: 800;
  color: var(--neon-purple); letter-spacing: 1px;
  background: rgba(191,95,255,0.15);
  border-radius: 6px; padding: 4px 10px;
  display: inline-block; margin-bottom: 12px;
}
.feat-icon-wrap  { margin-bottom: 10px; }
.feat-icon       { font-size: 28px; filter: drop-shadow(0 0 8px rgba(191,95,255,0.5)); }
.feat-card h3    { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; position: relative; z-index: 1; }
.feat-card p     { font-size: 12px; color: #7a8090; line-height: 1.55; position: relative; z-index: 1; }

/* ─── SALES BLOCK ──────────────────────── */
.sales-block {
  position: relative; z-index: 1;
  padding: 70px 16px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(191,95,255,0.08), transparent 70%);
}
.sales-block-bottom {
  background: radial-gradient(ellipse at center, rgba(255,45,85,0.08), transparent 70%);
}
.sales-inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  text-align: center;
}

/* Urgency row */
.urgency-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.urgency-chip {
  background: rgba(255,45,85,0.12);
  border: 1px solid rgba(255,45,85,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 700;
  color: #ff8fa3;
}
.urgency-hot {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.3);
  color: #ffa07a;
}

.sales-title {
  font-size: clamp(28px, 8vw, 50px);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 12px;
}
.sales-gradient {
  background: linear-gradient(90deg, var(--neon-red), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sales-sub { color: #7a8090; font-size: 14px; margin-bottom: 26px; line-height: 1.5; }

/* ─── PRICING GRID ─────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 32px;
  align-items: stretch;
}
.pr-card {
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
  text-align: left;
}
.pr-card:hover { border-color: rgba(191,95,255,0.3); transform: translateY(-4px); }
.pr-header { text-align: center; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 24px; position: relative; z-index: 2; }
.pr-header h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: 1px; }
.pr-desc { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; min-height: 20px;}
.pr-price-old { font-size: 16px; color: var(--text-dim); text-decoration: line-through; margin-bottom: 4px; text-align: center; font-weight: 600; }
.pr-price { font-size: 46px; font-weight: 900; color: #fff; display: flex; align-items: flex-start; justify-content: center; line-height: 1; }
.pr-currency { font-size: 20px; color: var(--text-dim); margin-top: 6px; margin-right: 4px; }

.pr-features { list-style: none; margin-bottom: 32px; flex-grow: 1; position: relative; z-index: 2; padding-left: 0; }
.pr-features li { font-size: 13px; color: #c0c8d8; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.pr-neg { color: #5a6070 !important; }
.pr-check { font-size: 14px; color: #4ade80; flex-shrink: 0; margin-top: 1px; }
.pr-cross { font-size: 12px; color: #ef4444; flex-shrink: 0; margin-top: 2px; }

.btn-pr {
  display: block; width: 100%; text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative; z-index: 2;
}
.btn-pr:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-pr:active { transform: translateY(0); }

/* BAŞLANGIÇ */
.pr-card:not(.pr-popular):not(.pr-vip) .btn-pr {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}
.pr-card:not(.pr-popular):not(.pr-vip) .btn-pr:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.4));
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

/* PRO (Popular) */
.pr-popular { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 0 20px rgba(245, 158, 11, 0.05); }
.pr-popular:hover { border-color: rgba(245, 158, 11, 0.6); }
.pr-popular .btn-pr {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border: none;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.pr-popular .btn-pr:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}
.pr-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap; z-index: 3;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* VIP */
.pr-vip {
  border-color: rgba(255,45,85,0.5);
  box-shadow: 0 0 40px rgba(255,45,85,0.15);
  background: linear-gradient(180deg, rgba(255,45,85,0.08), var(--dark-card2));
}
.pr-vip:hover { border-color: rgba(255,45,85,0.8); box-shadow: 0 0 60px rgba(255,45,85,0.3); }
.pr-badge-vip { background: linear-gradient(90deg, var(--neon-red), #ff0a34); box-shadow: 0 4px 15px rgba(255,45,85,0.5); }
.pr-vip .pr-header h3 { background: linear-gradient(90deg, var(--neon-red), #ff4d6d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn-pr-vip {
  background: linear-gradient(135deg, var(--neon-red), #ff0a34);
  border: none; box-shadow: 0 0 20px rgba(255,45,85,0.4);
}
.btn-pr-vip:hover { background: linear-gradient(135deg, #ff4d6d, #e60023); border: none; box-shadow: 0 0 30px rgba(255,45,85,0.6); }
.pr-vip-glow {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 150px; height: 150px; background: radial-gradient(circle, rgba(255,45,85,0.4), transparent 70%);
  pointer-events: none; opacity: 0.8; z-index: 0; filter: blur(30px);
}

/* Countdown */
.countdown-wrap  { margin-bottom: 24px; }
.countdown-label { font-size: 12px; color: var(--text-dim); margin-bottom: 8px; }
.countdown-clock {
  display: flex; align-items: flex-end; justify-content: center; gap: 6px;
}
.countdown-unit { text-align: center; }
.countdown-unit span {
  display: block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 900; color: #fff;
  min-width: 60px;
  font-variant-numeric: tabular-nums;
}
.countdown-unit small { display: block; font-size: 10px; color: var(--text-dim); margin-top: 5px; letter-spacing: 0.5px; }
.countdown-sep { font-size: 26px; font-weight: 900; color: var(--neon-purple); padding-bottom: 16px; }

.payment-note { font-size: 12px; color: var(--text-dim); margin-top: 12px; }

/* ─── TRUST BADGES (Enhanced) ──────────── */
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 20px;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px; color: #7a8090;
  transition: border-color 0.25s;
  min-width: 140px;
}
.trust-badge:hover { border-color: rgba(191,95,255,0.3); }
.trust-badge-icon { font-size: 20px; flex-shrink: 0; }
.trust-badge-title { font-size: 12px; font-weight: 700; color: #fff; }
.trust-badge-sub   { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.trust-badge-highlight {
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.07);
}
.trust-badge-highlight .trust-badge-title { color: #4ade80; }

/* ─── PAYMENT ICONS ────────────────────── */
.payment-icons {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; flex-wrap: wrap;
}
.payment-icon-badge {
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px;
}
.payment-icon-badge.stripe {
  background: #635bff;
  color: #fff;
}
.payment-icon-badge.visa {
  background: #1a1f71;
  color: #fff;
  font-style: italic;
}
.payment-icon-badge.mc {
  background: linear-gradient(135deg, #eb001b, #f79e1b);
  color: #fff;
}
.payment-icon-badge.ssl {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}

/* ─── SOCIAL PROOF ─────────────────────── */
.social-section {
  position: relative; z-index: 1;
  padding: 70px 0;
}

.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 36px;
}
.rating-big {
  font-size: clamp(48px, 12vw, 76px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rating-stars { font-size: 20px; filter: drop-shadow(0 0 6px #f59e0b); }
.rating-count { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

/* ─── TESTIMONIALS CAROUSEL ─────────────── */
.testimonials-wrap { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.tcard {
  min-width: 100%; padding: 0 4px;
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.25s;
  box-sizing: border-box;
}
.tcard:hover { border-color: rgba(191,95,255,0.3); }
.tcard-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.tcard-name     { font-size: 14px; font-weight: 700; color: #fff; }
.tcard-stars    { font-size: 12px; margin-top: 2px; }
.tcard-verified { margin-left: auto; font-size: 11px; color: #22c55e; white-space: nowrap; }
.tcard-text     { font-size: 14px; line-height: 1.65; color: #c0c8d8; font-style: italic; }
.tcard-meta     { font-size: 11px; color: var(--text-dim); margin-top: 12px; }

/* Carousel controls */
.carousel-controls {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 16px;
}
.carousel-prev, .carousel-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: #fff; font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  min-width: var(--min-touch); min-height: var(--min-touch);
  touch-action: manipulation;
}
.carousel-prev:hover, .carousel-next:hover {
  background: rgba(191,95,255,0.15);
  border-color: rgba(191,95,255,0.4);
}

/* Carousel dots */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.cdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  min-width: var(--min-touch); min-height: var(--min-touch);
  display: flex; align-items: center; justify-content: center;
  touch-action: manipulation;
  background-clip: content-box;
  padding: 18px 5px;
  box-sizing: content-box;
}
.cdot::after {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.cdot-active::after { background: var(--neon-purple); width: 20px; border-radius: 4px; }

/* Proof bar */
.proof-bar {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; margin-top: 36px;
}
.proof-item          { flex: 1; padding: 16px 10px; text-align: center; font-size: 13px; color: #7a8090; }
.proof-item strong   { color: var(--neon-purple); display: block; font-size: 20px; font-weight: 900; }
.proof-divider       { width: 1px; background: var(--border); align-self: stretch; }

/* ─── FAQ ──────────────────────────────── */
.faq-section {
  position: relative; z-index: 1;
  padding: 70px 0 60px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(191,95,255,0.25); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: #fff; text-align: left; gap: 12px;
  min-height: var(--min-touch);
  touch-action: manipulation;
}
.faq-arrow       { color: var(--neon-purple); font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-arrow.open  { transform: rotate(-180deg); }
.faq-ans         { padding: 0 18px 16px; overflow: hidden; }
.faq-ans p       { font-size: 13px; color: #7a8090; line-height: 1.7; }
.faq-ans p strong { color: #c0c8d8; }

/* ─── FOOTER ───────────────────────────── */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 16px 32px;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  font-size: 20px; font-weight: 900;
  color: #fff; letter-spacing: 2px; margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  touch-action: manipulation;
}
.footer-social-btn:hover { background: rgba(191,95,255,0.15); border-color: rgba(191,95,255,0.4); }
.footer-links-col h4 { font-size: 12px; font-weight: 700; color: var(--neon-purple); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-link {
  display: block;
  font-size: 13px; color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  padding: 4px 0;
  min-height: 32px;
}
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-copy { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.footer-sub  { font-size: 11px; color: rgba(122,128,144,0.5); }

/* ─── STICKY CTA ───────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(8,10,16,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: none;
}
.btn-sticky {
  display: flex; width: 100%;
  align-items: center; justify-content: center;
  padding: 16px;
  border-radius: var(--radius); font-size: 16px;
  min-height: 54px;
}

/* ─── TOAST ────────────────────────────── */
.toast-container {
  position: fixed; bottom: 80px; left: 12px;
  z-index: 200;
  pointer-events: none;
}
.toast-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(15,19,32,0.97);
  border: 1px solid rgba(191,95,255,0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  opacity: 0; transform: translateX(-120%);
  transition: opacity 0.35s, transform 0.35s;
  max-width: 240px;
}
.toast-item.show { opacity: 1; transform: translateX(0); }
.toast-icon { font-size: 16px; flex-shrink: 0; }

/* ─── SCROLL ANIMATIONS ────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE: TABLET+ ───────────────── */
@media (min-width: 600px) {
  .hero { padding: 44px 24px 70px; }
  .section-wrap { padding: 0 24px; }
  .pain-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr 1fr; }
  .sticky-cta { display: none !important; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
}

/* ─── RESPONSIVE: MOBILE ────────────────── */
@media (max-width: 599px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  .hero { padding-bottom: 100px; }
  .sales-block { padding-bottom: 100px; }
  .proof-bar { flex-direction: column; }
  .proof-divider { width: 100%; height: 1px; }
  .btn-xl { padding: 18px 28px; font-size: 16px; }
  .rating-summary { flex-direction: column; text-align: center; gap: 6px; }
  .trust-badge { min-width: 0; flex: 1; min-width: calc(50% - 6px); }
  .toast-container { bottom: 90px; left: 8px; right: 8px; }
  .toast-item { max-width: 100%; }
  .countdown-unit span { min-width: 50px; }
}

/* ─── RESPONSIVE: SMALL MOBILE ─────────── */
@media (max-width: 380px) {
  .features-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 0; }
  .stat-item { padding: 12px 6px; }
  .trust-badge { min-width: 100%; }
}

/* ─── PAYMENT MODAL & OVERLAY ───────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8, 10, 16, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  background: linear-gradient(145deg, rgba(20,24,36,0.95), rgba(12,14,20,0.98));
  border: 1px solid rgba(191,95,255,0.25);
  box-shadow: 0 0 50px rgba(191,95,255,0.15), inset 0 0 20px rgba(255,255,255,0.02);
  border-radius: 24px;
  width: 100%; max-width: 440px;
  padding: 32px 24px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.05); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(255,45,85,0.2); color: #ff2d55; transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 24px; }
.modal-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.modal-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

.payment-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pay-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 16px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pay-option:hover {
  background: rgba(191,95,255,0.08);
  border-color: rgba(191,95,255,0.3);
  transform: translateY(-2px);
}
.pay-option:active { transform: translateY(0); }
.pay-option-icon { font-size: 32px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.pay-option-details { flex-grow: 1; }
.pay-option-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pay-option-sub { font-size: 12px; color: #8fa0ba; }
.pay-option-badges { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.p-b { background: rgba(255,255,255,0.1); color: #e8eaf0; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }

.modal-footer-badges {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
}
.modal-footer-badges span { font-size: 11px; color: #7a8090; font-weight: 600; }

/* REDIRECT OVERLAY */
.redirect-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.redirect-overlay.active { opacity: 1; visibility: visible; }
.redirect-spinner {
  width: 50px; height: 50px;
  border: 4px solid rgba(191,95,255,0.2);
  border-top-color: var(--neon-purple);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(191,95,255,0.4);
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.redirect-text { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: 0.5px; text-align: center; padding: 0 20px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ─── LANGUAGE SELECTION MODAL ─────────────── */
.language-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 10, 16, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}

.language-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.language-modal-content {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 100px rgba(191, 95, 255, 0.15);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.language-modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.language-modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.language-modal-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: var(--min-touch);
}

.language-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.language-option:hover {
  border-color: var(--neon-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 95, 255, 0.25);
}

.language-option:hover::before {
  opacity: 0.1;
}

.language-option:active {
  transform: translateY(0);
}

.language-flag {
  font-size: 40px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.language-details {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.language-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.language-native {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.language-check {
  font-size: 24px;
  color: var(--neon-purple);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.language-option:hover .language-check {
  transform: translateX(4px);
}

.language-modal-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.language-modal-footer p {
  font-size: 11px;
  color: var(--text-dim);
  margin: 4px 0;
  font-weight: 500;
}

@media (max-width: 480px) {
  .language-modal-content {
    padding: 32px 20px;
  }
  
  .language-modal-title {
    font-size: 22px;
  }
  
  .language-option {
    padding: 16px;
  }
  
  .language-flag {
    font-size: 32px;
  }
  
  .language-name {
    font-size: 16px;
  }
}

/* ─── FLOATING IG BUTTON ─────────────────── */
.floating-ig-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  text-decoration: none;
}
.floating-ig-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 32px rgba(220, 39, 67, 0.6);
}
.floating-ig-btn:active {
  transform: scale(0.95);
}

/* Move sticky CTA up a bit on mobile so it doesn't overlap the IG button */
@media (max-width: 768px) {
  .floating-ig-btn {
    bottom: 90px; /* Above the sticky CTA */
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .floating-ig-btn img {
    width: 24px;
    height: 24px;
  }
}


